From 383ece97c822aed0b01a654717a5cf8b17612087 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 2 Oct 2011 12:42:24 +0000 Subject: 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 --- src/plugins/General/converter/converter.pro | 12 +- src/plugins/General/converter/converterdialog.cpp | 62 ++++++--- src/plugins/General/converter/converterdialog.h | 4 + src/plugins/General/converter/converterdialog.ui | 2 +- src/plugins/General/converter/preseteditor.cpp | 34 +++++ src/plugins/General/converter/preseteditor.h | 42 ++++++ src/plugins/General/converter/preseteditor.ui | 142 +++++++++++++++++++++ .../converter/translations/converter_plugin_cs.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_de.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_es.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_it.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_ja.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_lt.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_nl.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_pl.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_ru.ts | 103 ++++++++++++--- .../converter/translations/converter_plugin_tr.ts | 103 ++++++++++++--- .../translations/converter_plugin_uk_UA.ts | 103 ++++++++++++--- .../translations/converter_plugin_zh_CN.ts | 103 ++++++++++++--- .../translations/converter_plugin_zh_TW.ts | 103 ++++++++++++--- 20 files changed, 1421 insertions(+), 216 deletions(-) create mode 100644 src/plugins/General/converter/preseteditor.cpp create mode 100644 src/plugins/General/converter/preseteditor.h create mode 100644 src/plugins/General/converter/preseteditor.ui (limited to 'src') 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 @@ - + ... 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 + +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 @@ + + + PresetEditor + + + + 0 + 0 + 400 + 293 + + + + Preset Editor + + + + + + General + + + + + + Name: + + + + + + + + + + Extension: + + + + + + + + + + + + + Command + + + + + + + + + ... + + + + + + + + + + Options + + + + + + Write tags + + + + + + + Convert to 16 bit + + + + + + + CheckBox + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + buttonBox + accepted() + PresetEditor + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + PresetEditor + reject() + + + 316 + 260 + + + 286 + 274 + + + + + 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 @@ - + Choose a directory Vyberte adresář - + Artist Umělec - + Album Album - + Title Název - + Track number Číslo stopy - + Two-digit track number Dvoumístné číslo stopy - + Genre Žánr - + Comment Poznámka - + Composer Skladatel - + Duration Délka - + Disc number Číslo disku - + File name Název souboru - + File path Cesta k souboru - + Year Rok - + Condition Stav + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ - + Choose a directory Ein Verzeichnis wählen - + Artist Interpret - + Album Album - + Title Titel - + Track number Stücknummer - + Two-digit track number Zweistellige Stücknummer - + Genre Genre - + Comment Kommentar - + Composer Komponist - + Duration Abspieldauer - + Disc number CD-Nummer - + File name Dateiname - + File path Dateipfad - + Year Jahr - + Condition Zustand + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory Elija un directorio - + Artist Intérprete - + Album Album - + Title Título - + Track number Número de pista - + Two-digit track number Número de pista con dos cifras - + Genre Género - + Comment Comentario - + Composer Compositor - + Duration Duración - + Disc number Número de disco - + File name Nombre del archivo - + File path Ruta del archivo - + Year Año - + Condition Condición + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory Scegli una cartella - + Artist Interprete - + Album Album - + Title Titolo - + Track number Numero traccia - + Two-digit track number Numero traccia su due cifre - + Genre Genere - + Comment Commento - + Composer Compositore - + Duration Durata - + Disc number Disco num. - + File name Nome documento - + File path - + Year Anno - + Condition PErcorso documento + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory ディレクトリを選択 - + Artist アーティスト - + Album アルバム - + Title タイトル - + Track number トラック番号 - + Two-digit track number トラック番号 数字2桁 - + Genre ジャンル - + Comment コメント - + Composer 作曲者 - + Duration 演奏時間 - + Disc number ディスク番号 - + File name ファイル名 - + File path ファイルパス - + Year - + Condition 定番 + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory Pasirinkite aplanką - + Artist Atlikėjas - + Album Albumas - + Title Pavadinimas - + Track number Takelio numeris - + Two-digit track number Dviejų skaitmenų takelio numeris - + Genre Žanras - + Comment Komentaras - + Composer Autorius - + Duration Trukmė - + Disc number Disko numeris - + File name Bylos pavadinimas - + File path Bylos kelias - + Year Metai - + Condition Būklė + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ - + Choose a directory Kies een map - + Artist Artiest - + Album Album - + Title Naam - + Track number Liednummer - + Two-digit track number Twee-getal liednummer - + Genre Genre - + Comment Commentaar - + Composer Componist - + Duration Duur - + Disc number CD nummer - + File name Bestandsnaam - + File path Pad - + Year Jaar - + Condition Staat + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ - + Choose a directory Wybierz katalog - + Artist Artysta - + Album Album - + Title Tytuł - + Track number Numer utworu - + Two-digit track number Dwucyfrowy numer utworu - + Genre Gatunek - + Comment Komentarz - + Composer Kompozytor - + Duration Długość - + Disc number Numer płyty - + File name Nazwa pliku - + File path Ścieżka pliku - + Year Rok - + Condition Warunek + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory Выберите директорию - + Artist Исполнитель - + Album Альбом - + Title Название - + Track number Номер трека - + Two-digit track number 2-х разрядный номер трека - + Genre Жанр - + Comment Комментарий - + Composer Композитор - + Duration Длительность - + Disc number Номер диска - + File name Имя файла - + File path Путь к файлу - + Year Год - + Condition Условие + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory Dizin seç - + Artist - + Album - + Title - + Track number - + Two-digit track number - + Genre - + Comment Yorum - + Composer - + Duration - + Disc number - + File name - + File path - + Year Yıl - + Condition + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ - + Choose a directory Виберіть теку - + Artist Виконавець - + Album Альбом - + Title Назва - + Track number Номер трека - + Two-digit track number 2-розрядний номер трека - + Genre Жанр - + Comment Коментар - + Composer Композитор - + Duration Тривалість - + Disc number Номер диска - + File name Ім'я файла - + File path Шлях до файла - + Year Рік - + Condition Умова + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ Відміна + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory 选择一个目录 - + Artist 艺术家 - + Album 专辑 - + Title 标题 - + Track number 音轨编号 - + Two-digit track number 两位数音轨编号 - + Genre 流派 - + Comment 备注 - + Composer 作曲 - + Duration 持续时间 - + Disc number 光盘编号 - + File name 文件名 - + File path 文件路径 - + Year 年代 - + Condition 条件 + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + 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 @@ ... - + Choose a directory 選取一個目錄 - + Artist 藝術家 - + Album 專輯 - + Title 標題 - + Track number 音軌編號 - + Two-digit track number 兩位數音軌編號 - + Genre 流派 - + Comment 備註 - + Composer 作曲 - + Duration 持續時間 - + Disc number 光槃編號 - + File name 文件名 - + File path 文件路徑 - + Year 年代 - + Condition 條件 + + + Create + + + + + Edit + + + + + Copy + + + + + Delete + + ConverterFactory @@ -162,4 +182,57 @@ + + PresetEditor + + + Preset Editor + + + + + General + + + + + Name: + + + + + Extension: + + + + + Command + + + + + ... + ... + + + + Options + + + + + Write tags + + + + + Convert to 16 bit + + + + + CheckBox + + + -- cgit v1.2.3-13-gbd6f