aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/converter
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-10-02 12:42:24 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-10-02 12:42:24 +0000
commit383ece97c822aed0b01a654717a5cf8b17612087 (patch)
treed1a6bce8dba89c94e2e0f7b7f859bcc7ef9d088f /src/plugins/General/converter
parent6f788ad5024ca1218d84da25d6721508c4935e37 (diff)
downloadqmmp-383ece97c822aed0b01a654717a5cf8b17612087.tar.gz
qmmp-383ece97c822aed0b01a654717a5cf8b17612087.tar.bz2
qmmp-383ece97c822aed0b01a654717a5cf8b17612087.zip
converter: added preset editor form (not ready yet)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2369 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/converter')
-rw-r--r--src/plugins/General/converter/converter.pro12
-rw-r--r--src/plugins/General/converter/converterdialog.cpp62
-rw-r--r--src/plugins/General/converter/converterdialog.h4
-rw-r--r--src/plugins/General/converter/converterdialog.ui2
-rw-r--r--src/plugins/General/converter/preseteditor.cpp34
-rw-r--r--src/plugins/General/converter/preseteditor.h42
-rw-r--r--src/plugins/General/converter/preseteditor.ui142
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_cs.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_de.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_es.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_it.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_ja.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_lt.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_nl.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_pl.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_ru.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_tr.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_uk_UA.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_zh_CN.ts103
-rw-r--r--src/plugins/General/converter/translations/converter_plugin_zh_TW.ts103
20 files changed, 1421 insertions, 216 deletions
diff --git a/src/plugins/General/converter/converter.pro b/src/plugins/General/converter/converter.pro
index 32a60eb82..d3a395b3a 100644
--- a/src/plugins/General/converter/converter.pro
+++ b/src/plugins/General/converter/converter.pro
@@ -40,11 +40,17 @@ INSTALLS += target
HEADERS += converterfactory.h \
converterhelper.h \
converterdialog.h \
- converter.h
+ converter.h \
+ preseteditor.h
win32:HEADERS += ../../../../src/qmmpui/general.h
SOURCES += converterfactory.cpp \
converterhelper.cpp \
converterdialog.cpp \
- converter.cpp
+ converter.cpp \
+ preseteditor.cpp
+
+FORMS += converterdialog.ui \
+ preseteditor.ui
+
+
-FORMS += converterdialog.ui
diff --git a/src/plugins/General/converter/converterdialog.cpp b/src/plugins/General/converter/converterdialog.cpp
index be6cf6f33..193b0bdd3 100644
--- a/src/plugins/General/converter/converterdialog.cpp
+++ b/src/plugins/General/converter/converterdialog.cpp
@@ -80,24 +80,32 @@ void ConverterDialog::accept()
void ConverterDialog::createMenus()
{
- QMenu *menu = new QMenu(this);
- menu->addAction(tr("Artist"))->setData("%p");
- menu->addAction(tr("Album"))->setData("%a");
- menu->addAction(tr("Title"))->setData("%t");
- menu->addAction(tr("Track number"))->setData("%n");
- menu->addAction(tr("Two-digit track number"))->setData("%NN");
- menu->addAction(tr("Genre"))->setData("%g");
- menu->addAction(tr("Comment"))->setData("%c");
- menu->addAction(tr("Composer"))->setData("%C");
- menu->addAction(tr("Duration"))->setData("%l");
- menu->addAction(tr("Disc number"))->setData("%D");
- menu->addAction(tr("File name"))->setData("%f");
- menu->addAction(tr("File path"))->setData("%F");
- menu->addAction(tr("Year"))->setData("%y");
- menu->addAction(tr("Condition"))->setData("%if(%p&%t,%p - %t,%f)");
- ui.fileNameButton->setMenu(menu);
+ QMenu *fileNameMenu = new QMenu(this);
+ fileNameMenu->addAction(tr("Artist"))->setData("%p");
+ fileNameMenu->addAction(tr("Album"))->setData("%a");
+ fileNameMenu->addAction(tr("Title"))->setData("%t");
+ fileNameMenu->addAction(tr("Track number"))->setData("%n");
+ fileNameMenu->addAction(tr("Two-digit track number"))->setData("%NN");
+ fileNameMenu->addAction(tr("Genre"))->setData("%g");
+ fileNameMenu->addAction(tr("Comment"))->setData("%c");
+ fileNameMenu->addAction(tr("Composer"))->setData("%C");
+ fileNameMenu->addAction(tr("Duration"))->setData("%l");
+ fileNameMenu->addAction(tr("Disc number"))->setData("%D");
+ fileNameMenu->addAction(tr("File name"))->setData("%f");
+ fileNameMenu->addAction(tr("File path"))->setData("%F");
+ fileNameMenu->addAction(tr("Year"))->setData("%y");
+ fileNameMenu->addAction(tr("Condition"))->setData("%if(%p&%t,%p - %t,%f)");
+ ui.fileNameButton->setMenu(fileNameMenu);
ui.fileNameButton->setPopupMode(QToolButton::InstantPopup);
- connect(menu, SIGNAL(triggered(QAction *)), SLOT(addTitleString(QAction *)));
+ connect(fileNameMenu, SIGNAL(triggered(QAction *)), SLOT(addTitleString(QAction *)));
+
+ QMenu *presetMenu = new QMenu(this);
+ presetMenu->addAction(tr("Create"), this, SLOT(copyPreset()));
+ presetMenu->addAction(tr("Edit"), this, SLOT(editPreset()));
+ presetMenu->addAction(tr("Copy"), this, SLOT(copyPreset()));
+ presetMenu->addAction(tr("Delete"), this, SLOT(deletePreset()));
+ ui.presetButton->setMenu(presetMenu);
+ ui.presetButton->setPopupMode(QToolButton::InstantPopup);
}
void ConverterDialog::addTitleString(QAction *a)
@@ -107,3 +115,23 @@ void ConverterDialog::addTitleString(QAction *a)
else
ui.outFileEdit->insert(" - "+a->data().toString());
}
+
+void ConverterDialog::createPreset()
+{
+
+}
+
+void ConverterDialog::editPreset()
+{
+
+}
+
+void ConverterDialog::copyPreset()
+{
+
+}
+
+void ConverterDialog::deletePreset()
+{
+
+}
diff --git a/src/plugins/General/converter/converterdialog.h b/src/plugins/General/converter/converterdialog.h
index 025b209e8..5671c07bf 100644
--- a/src/plugins/General/converter/converterdialog.h
+++ b/src/plugins/General/converter/converterdialog.h
@@ -44,6 +44,10 @@ public slots:
private slots:
void on_dirButton_clicked();
void addTitleString(QAction *a);
+ void createPreset();
+ void editPreset();
+ void copyPreset();
+ void deletePreset();
private:
void createMenus();
diff --git a/src/plugins/General/converter/converterdialog.ui b/src/plugins/General/converter/converterdialog.ui
index c2a593c47..e026b5083 100644
--- a/src/plugins/General/converter/converterdialog.ui
+++ b/src/plugins/General/converter/converterdialog.ui
@@ -96,7 +96,7 @@
</widget>
</item>
<item row="4" column="2">
- <widget class="QToolButton" name="toolButton">
+ <widget class="QToolButton" name="presetButton">
<property name="text">
<string>...</string>
</property>
diff --git a/src/plugins/General/converter/preseteditor.cpp b/src/plugins/General/converter/preseteditor.cpp
new file mode 100644
index 000000000..36228f37f
--- /dev/null
+++ b/src/plugins/General/converter/preseteditor.cpp
@@ -0,0 +1,34 @@
+/***************************************************************************
+ * Copyright (C) 2011 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 "preseteditor.h"
+#include "ui_preseteditor.h"
+
+PresetEditor::PresetEditor(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::PresetEditor)
+{
+ ui->setupUi(this);
+}
+
+PresetEditor::~PresetEditor()
+{
+ delete ui;
+}
diff --git a/src/plugins/General/converter/preseteditor.h b/src/plugins/General/converter/preseteditor.h
new file mode 100644
index 000000000..e45226d72
--- /dev/null
+++ b/src/plugins/General/converter/preseteditor.h
@@ -0,0 +1,42 @@
+/***************************************************************************
+ * Copyright (C) 2011 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. *
+ ***************************************************************************/
+
+#ifndef PRESETEDITOR_H
+#define PRESETEDITOR_H
+
+#include <QDialog>
+
+namespace Ui {
+ class PresetEditor;
+}
+
+class PresetEditor : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit PresetEditor(QWidget *parent = 0);
+ ~PresetEditor();
+
+private:
+ Ui::PresetEditor *ui;
+};
+
+#endif // PRESETEDITOR_H
diff --git a/src/plugins/General/converter/preseteditor.ui b/src/plugins/General/converter/preseteditor.ui
new file mode 100644
index 000000000..d9976a5af
--- /dev/null
+++ b/src/plugins/General/converter/preseteditor.ui
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>PresetEditor</class>
+ <widget class="QDialog" name="PresetEditor">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>293</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Preset Editor</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout">
+ <item>
+ <widget class="QGroupBox" name="groupBox">
+ <property name="title">
+ <string>General</string>
+ </property>
+ <layout class="QGridLayout" name="gridLayout">
+ <item row="0" column="0" colspan="2">
+ <widget class="QLabel" name="label">
+ <property name="text">
+ <string>Name:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="2">
+ <widget class="QLineEdit" name="lineEdit"/>
+ </item>
+ <item row="1" column="0" colspan="2">
+ <widget class="QLabel" name="label_2">
+ <property name="text">
+ <string>Extension:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="2">
+ <widget class="QLineEdit" name="lineEdit_2"/>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="groupBox_2">
+ <property name="title">
+ <string>Command</string>
+ </property>
+ <layout class="QHBoxLayout" name="horizontalLayout">
+ <item>
+ <widget class="QLineEdit" name="lineEdit_3"/>
+ </item>
+ <item>
+ <widget class="QToolButton" name="toolButton">
+ <property name="text">
+ <string>...</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="groupBox_3">
+ <property name="title">
+ <string>Options</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout_2">
+ <item>
+ <widget class="QCheckBox" name="checkBox">
+ <property name="text">
+ <string>Write tags</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QCheckBox" name="checkBox_2">
+ <property name="text">
+ <string>Convert to 16 bit</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QCheckBox" name="checkBox_3">
+ <property name="text">
+ <string>CheckBox</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QDialogButtonBox" name="buttonBox">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="standardButtons">
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <resources/>
+ <connections>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>accepted()</signal>
+ <receiver>PresetEditor</receiver>
+ <slot>accept()</slot>
+ <hints>
+ <hint type="sourcelabel">
+ <x>248</x>
+ <y>254</y>
+ </hint>
+ <hint type="destinationlabel">
+ <x>157</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>rejected()</signal>
+ <receiver>PresetEditor</receiver>
+ <slot>reject()</slot>
+ <hints>
+ <hint type="sourcelabel">
+ <x>316</x>
+ <y>260</y>
+ </hint>
+ <hint type="destinationlabel">
+ <x>286</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ </connections>
+</ui>
diff --git a/src/plugins/General/converter/translations/converter_plugin_cs.ts b/src/plugins/General/converter/translations/converter_plugin_cs.ts
index 6fb78b176..03406b938 100644
--- a/src/plugins/General/converter/translations/converter_plugin_cs.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_cs.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">…</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Vyberte adresář</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Umělec</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Album</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Název</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Číslo stopy</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Dvoumístné číslo stopy</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Žánr</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Poznámka</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Skladatel</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Délka</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">Číslo disku</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Název souboru</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Cesta k souboru</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Rok</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Stav</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">…</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_de.ts b/src/plugins/General/converter/translations/converter_plugin_de.ts
index a501923e5..9655dd02f 100644
--- a/src/plugins/General/converter/translations/converter_plugin_de.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_de.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">…</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Ein Verzeichnis wählen</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Interpret</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Album</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Titel</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Stücknummer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Zweistellige Stücknummer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Genre</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Kommentar</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Komponist</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Abspieldauer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">CD-Nummer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Dateiname</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Dateipfad</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Jahr</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Zustand</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">…</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_es.ts b/src/plugins/General/converter/translations/converter_plugin_es.ts
index 1aeb826bd..234014ca1 100644
--- a/src/plugins/General/converter/translations/converter_plugin_es.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_es.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Elija un directorio</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Intérprete</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Album</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Título</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Número de pista</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Número de pista con dos cifras</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Género</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Comentario</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Compositor</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Duración</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">Número de disco</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Nombre del archivo</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Ruta del archivo</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Año</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Condición</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_it.ts b/src/plugins/General/converter/translations/converter_plugin_it.ts
index 55d6b742f..03b99c845 100644
--- a/src/plugins/General/converter/translations/converter_plugin_it.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_it.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Scegli una cartella</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Interprete</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Album</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Titolo</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Numero traccia</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Numero traccia su due cifre</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Genere</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Commento</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Compositore</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Durata</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">Disco num.</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Nome documento</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Anno</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">PErcorso documento</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_ja.ts b/src/plugins/General/converter/translations/converter_plugin_ja.ts
index a72951862..0897de333 100644
--- a/src/plugins/General/converter/translations/converter_plugin_ja.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_ja.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">ディレクトリを選択</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">アーティスト</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">アルバム</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">タイトル</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">トラック番号</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">トラック番号 数字2桁</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">ジャンル</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">コメント</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">作曲者</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">演奏時間</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">ディスク番号</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">ファイル名</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">ファイルパス</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">年</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">定番</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_lt.ts b/src/plugins/General/converter/translations/converter_plugin_lt.ts
index 9f673ed54..aee9bd477 100644
--- a/src/plugins/General/converter/translations/converter_plugin_lt.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_lt.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Pasirinkite aplanką</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Atlikėjas</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Albumas</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Pavadinimas</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Takelio numeris</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Dviejų skaitmenų takelio numeris</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Žanras</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Komentaras</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Autorius</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Trukmė</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">Disko numeris</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Bylos pavadinimas</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Bylos kelias</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Metai</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Būklė</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_nl.ts b/src/plugins/General/converter/translations/converter_plugin_nl.ts
index 507a196c5..7c88b79ac 100644
--- a/src/plugins/General/converter/translations/converter_plugin_nl.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_nl.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">…</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Kies een map</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Artiest</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Album</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Naam</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Liednummer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Twee-getal liednummer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Genre</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Commentaar</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Componist</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Duur</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">CD nummer</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Bestandsnaam</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Pad</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Jaar</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Staat</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">…</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_pl.ts b/src/plugins/General/converter/translations/converter_plugin_pl.ts
index 160f37541..e08c37fe0 100644
--- a/src/plugins/General/converter/translations/converter_plugin_pl.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_pl.ts
@@ -41,80 +41,100 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Wybierz katalog</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Artysta</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Album</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Tytuł</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Numer utworu</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">Dwucyfrowy numer utworu</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Gatunek</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Komentarz</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Kompozytor</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Długość</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">Numer płyty</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Nazwa pliku</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Ścieżka pliku</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Rok</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Warunek</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_ru.ts b/src/plugins/General/converter/translations/converter_plugin_ru.ts
index bda9c85b9..cd5a46056 100644
--- a/src/plugins/General/converter/translations/converter_plugin_ru.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_ru.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Выберите директорию</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">Исполнитель</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">Альбом</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">Название</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">Номер трека</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">2-х разрядный номер трека</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">Жанр</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Комментарий</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">Композитор</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">Длительность</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">Номер диска</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">Имя файла</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">Путь к файлу</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Год</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">Условие</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_tr.ts b/src/plugins/General/converter/translations/converter_plugin_tr.ts
index 1d3ef6997..83e3f1a17 100644
--- a/src/plugins/General/converter/translations/converter_plugin_tr.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_tr.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">Dizin seç</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">Yorum</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">Yıl</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts b/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts
index 33273b3b2..1c8d3c591 100644
--- a/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts
@@ -41,80 +41,100 @@
<translation></translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation>Виберіть теку</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation>Виконавець</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation>Альбом</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation>Назва</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation>Номер трека</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation>2-розрядний номер трека</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation>Жанр</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation>Коментар</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation>Композитор</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation>Тривалість</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation>Номер диска</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation>Ім&apos;я файла</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation>Шлях до файла</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation>Рік</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation>Умова</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation>Відміна</translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts b/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts
index 186505f95..698535300 100644
--- a/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">选择一个目录</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">艺术家</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">专辑</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">标题</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">音轨编号</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">两位数音轨编号</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">流派</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">备注</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">作曲</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">持续时间</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">光盘编号</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">文件名</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">文件路径</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">年代</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">条件</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>
diff --git a/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts b/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts
index ed45b8334..b2527eb07 100644
--- a/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts
+++ b/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts
@@ -41,80 +41,100 @@
<translation type="unfinished">...</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="63"/>
+ <location filename="../converterdialog.cpp" line="65"/>
<source>Choose a directory</source>
<translation type="unfinished">選取一個目錄</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="82"/>
+ <location filename="../converterdialog.cpp" line="84"/>
<source>Artist</source>
<translation type="unfinished">藝術家</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="83"/>
+ <location filename="../converterdialog.cpp" line="85"/>
<source>Album</source>
<translation type="unfinished">專輯</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="84"/>
+ <location filename="../converterdialog.cpp" line="86"/>
<source>Title</source>
<translation type="unfinished">標題</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="85"/>
+ <location filename="../converterdialog.cpp" line="87"/>
<source>Track number</source>
<translation type="unfinished">音軌編號</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="86"/>
+ <location filename="../converterdialog.cpp" line="88"/>
<source>Two-digit track number</source>
<translation type="unfinished">兩位數音軌編號</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="87"/>
+ <location filename="../converterdialog.cpp" line="89"/>
<source>Genre</source>
<translation type="unfinished">流派</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="88"/>
+ <location filename="../converterdialog.cpp" line="90"/>
<source>Comment</source>
<translation type="unfinished">備註</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="89"/>
+ <location filename="../converterdialog.cpp" line="91"/>
<source>Composer</source>
<translation type="unfinished">作曲</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="90"/>
+ <location filename="../converterdialog.cpp" line="92"/>
<source>Duration</source>
<translation type="unfinished">持續時間</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="91"/>
+ <location filename="../converterdialog.cpp" line="93"/>
<source>Disc number</source>
<translation type="unfinished">光槃編號</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="92"/>
+ <location filename="../converterdialog.cpp" line="94"/>
<source>File name</source>
<translation type="unfinished">文件名</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="93"/>
+ <location filename="../converterdialog.cpp" line="95"/>
<source>File path</source>
<translation type="unfinished">文件路徑</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="94"/>
+ <location filename="../converterdialog.cpp" line="96"/>
<source>Year</source>
<translation type="unfinished">年代</translation>
</message>
<message>
- <location filename="../converterdialog.cpp" line="95"/>
+ <location filename="../converterdialog.cpp" line="97"/>
<source>Condition</source>
<translation type="unfinished">條件</translation>
</message>
+ <message>
+ <location filename="../converterdialog.cpp" line="103"/>
+ <source>Create</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="104"/>
+ <source>Edit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="105"/>
+ <source>Copy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../converterdialog.cpp" line="106"/>
+ <source>Delete</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>ConverterFactory</name>
@@ -162,4 +182,57 @@
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>PresetEditor</name>
+ <message>
+ <location filename="../preseteditor.ui" line="14"/>
+ <source>Preset Editor</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="20"/>
+ <source>General</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="26"/>
+ <source>Name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="36"/>
+ <source>Extension:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="49"/>
+ <source>Command</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="58"/>
+ <source>...</source>
+ <translation type="unfinished">...</translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="68"/>
+ <source>Options</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="74"/>
+ <source>Write tags</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="81"/>
+ <source>Convert to 16 bit</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../preseteditor.ui" line="88"/>
+ <source>CheckBox</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
</TS>