From fe909604f007b30b1aa0388c35cfeb514d066589 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 23 Jan 2010 10:48:58 +0000 Subject: added possibility to disable cover files search git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1524 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmp/metadatamanager.cpp | 4 +- src/ui/configdialog.cpp | 4 +- src/ui/forms/configdialog.ui | 136 +++++++++++++++++++++++++++----------- src/ui/translations/qmmp_cs.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_de.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_it.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_lt.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_pl_PL.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_pt_BR.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_ru.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_tr.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_uk_UA.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_zh_CN.ts | 109 +++++++++++++++--------------- src/ui/translations/qmmp_zh_TW.ts | 109 +++++++++++++++--------------- 14 files changed, 730 insertions(+), 613 deletions(-) (limited to 'src') diff --git a/src/qmmp/metadatamanager.cpp b/src/qmmp/metadatamanager.cpp index f4e2c993c..3b9b2af76 100644 --- a/src/qmmp/metadatamanager.cpp +++ b/src/qmmp/metadatamanager.cpp @@ -182,7 +182,7 @@ bool MetaDataManager::supports(const QString &fileName) const QPixmap MetaDataManager::getCover(const QString &url) const { - if(!url.contains("://")) + if(!url.contains("://") && m_settings->useCoverFiles()) { QString p = getCoverPath(url); if(!p.isEmpty()) @@ -200,6 +200,8 @@ QPixmap MetaDataManager::getCover(const QString &url) const QString MetaDataManager::getCoverPath(const QString &url) const { + if(!m_settings->useCoverFiles()) + return QString(); if(url.contains("://")) //url { MetaDataModel *model = createMetaDataModel(url); diff --git a/src/ui/configdialog.cpp b/src/ui/configdialog.cpp index 3bd39bdc1..cf8741439 100644 --- a/src/ui/configdialog.cpp +++ b/src/ui/configdialog.cpp @@ -148,6 +148,7 @@ void ConfigDialog::readSettings() ui.coverIncludeLineEdit->setText(gs->coverNameFilters(TRUE).join(",")); ui.coverExcludeLineEdit->setText(gs->coverNameFilters(FALSE).join(",")); ui.coverDepthSpinBox->setValue(gs->coverSearchDepth()); + ui.useCoverFilesCheckBox->setChecked(gs->useCoverFiles()); //replay gain ui.clippingCheckBox->setChecked(gs->replayGainPreventClipping()); ui.replayGainModeComboBox->setCurrentIndex(ui.replayGainModeComboBox->findData(gs->replayGainMode())); @@ -657,7 +658,8 @@ void ConfigDialog::saveSettings() settings.setValue ("General/double_size", ui.doubleSizeCheckBox->isChecked()); gs->setCoverSettings(ui.coverIncludeLineEdit->text().split(","), ui.coverExcludeLineEdit->text().split(","), - ui.coverDepthSpinBox->value(), TRUE); + ui.coverDepthSpinBox->value(), + ui.useCoverFilesCheckBox->isChecked()); int i = ui.replayGainModeComboBox->currentIndex(); gs->setReplayGainSettings((QmmpSettings::ReplayGainMode) ui.replayGainModeComboBox->itemData(i).toInt(), diff --git a/src/ui/forms/configdialog.ui b/src/ui/forms/configdialog.ui index fd983b57c..78823091f 100644 --- a/src/ui/forms/configdialog.ui +++ b/src/ui/forms/configdialog.ui @@ -853,27 +853,37 @@ Cover Image Retrieve - + + + + Use separate image files + + + true + + + + Include files: - + - + Exclude files: - + - + @@ -1260,8 +1270,8 @@ accept() - 590 - 402 + 625 + 429 316 @@ -1276,12 +1286,12 @@ setEnabled(bool) - 276 - 39 + 472 + 60 - 276 - 39 + 581 + 86 @@ -1292,12 +1302,12 @@ setEnabled(bool) - 276 - 39 + 472 + 60 - 276 - 39 + 581 + 112 @@ -1308,12 +1318,12 @@ setEnabled(bool) - 276 - 39 + 472 + 138 - 276 - 39 + 581 + 164 @@ -1324,12 +1334,12 @@ setEnabled(bool) - 276 - 39 + 472 + 138 - 276 - 39 + 581 + 190 @@ -1340,12 +1350,12 @@ setEnabled(bool) - 276 - 39 + 357 + 287 - 276 - 39 + 435 + 290 @@ -1356,12 +1366,12 @@ setNum(int) - 397 - 294 + 296 + 275 - 540 - 289 + 296 + 275 @@ -1372,12 +1382,12 @@ setNum(int) - 496 - 315 + 296 + 275 - 550 - 315 + 296 + 275 @@ -1388,12 +1398,60 @@ setNum(int) - 494 - 333 + 296 + 275 - 542 - 332 + 296 + 275 + + + + + useCoverFilesCheckBox + toggled(bool) + coverIncludeLineEdit + setEnabled(bool) + + + 264 + 207 + + + 290 + 238 + + + + + useCoverFilesCheckBox + toggled(bool) + coverExcludeLineEdit + setEnabled(bool) + + + 232 + 208 + + + 292 + 259 + + + + + useCoverFilesCheckBox + toggled(bool) + coverDepthSpinBox + setEnabled(bool) + + + 209 + 214 + + + 360 + 289 diff --git a/src/ui/translations/qmmp_cs.ts b/src/ui/translations/qmmp_cs.ts index ada1aca00..03b01d7f0 100644 --- a/src/ui/translations/qmmp_cs.ts +++ b/src/ui/translations/qmmp_cs.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Povoleno - - - - - + + + + + Description Popis - - - - - + + + + + Filename Soubor - + Artist Umělec - + Album Album @@ -221,57 +221,57 @@ Vypnuto - + Title Název - + Track number Číslo stopy - + Two-digit track number Dvoumístné číslo stopy - + Disc number Číslo disku - + Condition Stav - + Composer Skladatel - + File name Název souboru - + File path Cesta k souboru - + Genre Žánr - + Year Rok - + Comment Poznámka @@ -328,7 +328,7 @@ ??? - + Replay Gain Zisk při přehrávání @@ -447,52 +447,57 @@ + Use separate image files + + + + Include files: Zahrnout soubory: - + Exclude files: Vynechat soubory: - + Recursive search depth: Hloubka rekurzivního hledání: - + Replay Gain mode: Režim úpravy zisku při přehrávání: - + Preamp: Předzesílení: - - + + dB dB - + Default gain: Výchozí zisk: - + Use peak info to prevent clipping Použít informaci o vrcholu k zabránění ořezu - + 16-bit output - + Close Zavřít @@ -507,47 +512,47 @@ Souborový dialog - + Proxy Proxy - + Enable proxy usage Povolit používání proxy - + Proxy host name: Adresa proxy: - + Proxy port: Port proxy: - + Use authentication with proxy Použít autorizaci pro proxy - + Proxy user name: Uživatelské jméno: - + Proxy password: Heslo: - + Archived skin Sbalené téma - + Unarchived skin Rozbalené téma @@ -568,12 +573,12 @@ - + Audio Zvuk - + Use software volume control Používat softwarové ovládání hlasitosti @@ -603,12 +608,12 @@ Převést %20 na mezery - + Select Skin Files Vybrat soubory s tématy - + Skin files Soubory s tématy diff --git a/src/ui/translations/qmmp_de.ts b/src/ui/translations/qmmp_de.ts index d3d485f81..953fdd47c 100644 --- a/src/ui/translations/qmmp_de.ts +++ b/src/ui/translations/qmmp_de.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Aktiviert - - - - - + + + + + Description Beschreibung - - - - - + + + + + Filename Dateiname - + Artist Interpret - + Album Album @@ -221,57 +221,57 @@ - + Title Titel - + Track number Stücknummer - + Two-digit track number Zweistellige Stücknummer - + Disc number CD-Nummer - + Condition - + Genre Genre - + Composer Komponist - + File name Dateiname - + File path Dateipfad - + Year Jahr - + Comment Kommentar @@ -328,7 +328,7 @@ ??? - + Replay Gain @@ -447,52 +447,57 @@ - Include files: + Use separate image files + Include files: + + + + Exclude files: - + Recursive search depth: - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + 16-bit output - + Close Schließen @@ -507,47 +512,47 @@ Datei-Dialog - + Proxy Proxyserver - + Enable proxy usage Proxyserver verwenden - + Proxy host name: Name des Proxyservers: - + Proxy port: Port: - + Use authentication with proxy Authentisierung verwenden - + Proxy user name: Benutzername: - + Proxy password: Passwort: - + Archived skin Archiviertes Design - + Unarchived skin Nicht archiviertes Design @@ -568,12 +573,12 @@ - + Audio Audio - + Use software volume control Softwaregesteuerte Lautstärkeregelung @@ -603,12 +608,12 @@ %20 in Leerzeichen umwandeln - + Select Skin Files Design-Dateien auswählen - + Skin files Design-Dateien diff --git a/src/ui/translations/qmmp_it.ts b/src/ui/translations/qmmp_it.ts index 623f1482f..bfb1b40b1 100644 --- a/src/ui/translations/qmmp_it.ts +++ b/src/ui/translations/qmmp_it.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Attivo - - - - - + + + + + Description Descrizione - - - - - + + + + + Filename File - + Artist Interprete - + Album Album @@ -221,57 +221,57 @@ - + Title Titolo - + Track number Traccia n° - + Two-digit track number Traccia n° a due cifre - + Disc number Disco n° - + Condition Condizione - + Genre Genere - + Composer Compositore - + File name Nome file - + File path Percorso file - + Year Anno - + Comment Commento @@ -376,22 +376,22 @@ Avanzato - + 16-bit output - + Close Chiudi - + Archived skin Tema archiviato - + Unarchived skin Tema non archiviato @@ -422,12 +422,12 @@ - + Audio Audio - + Replay Gain Guadagno riesecuzione @@ -477,33 +477,33 @@ Personalizza - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Use software volume control Utilizza il controllo volume del programma @@ -544,51 +544,56 @@ + Use separate image files + + + + Include files: Includi i file: - + Exclude files: Escludi i file: - + Recursive search depth: Profondità ricerca ricorsiva: - + Proxy Proxy - + Enable proxy usage Attiva il proxy - + Proxy host name: Nome del server : - + Proxy port: Porta del server : - + Use authentication with proxy Usa autenticazione con il proxy - + Proxy user name: Utente: - + Proxy password: Password : @@ -603,12 +608,12 @@ Converti il carattere « %20 » in spazi - + Select Skin Files Seleziona aspetto - + Skin files Aspetto diff --git a/src/ui/translations/qmmp_lt.ts b/src/ui/translations/qmmp_lt.ts index 6a036d882..52c7e19c6 100644 --- a/src/ui/translations/qmmp_lt.ts +++ b/src/ui/translations/qmmp_lt.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Įjungtas - - - - - + + + + + Description Aprašymas - - - - - + + + + + Filename Bylos pavadinimas - + Artist Atlikėjas - + Album Albumas @@ -221,57 +221,57 @@ - + Title Pavadinimas - + Track number Takelio numeris - + Two-digit track number Dviejų skaičių takelio numeris - + Disc number Disko numeris - + Condition Būklė - + Composer Autorius - + File name Bylos pavadinimas - + File path Bylos kelias - + Genre Žanras - + Year Metai - + Comment Komentaras @@ -376,22 +376,22 @@ Papildomi - + 16-bit output - + Close Užverti - + Archived skin Suspausta tema - + Unarchived skin Išskleista tema @@ -422,12 +422,12 @@ - + Audio Audio - + Replay Gain Neįsivaizduoju kaip verst @@ -478,33 +478,33 @@ Nustatyti - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Use software volume control Naudoti programinį garso valdymą @@ -545,51 +545,56 @@ + Use separate image files + + + + Include files: Įtraukti bylas - + Exclude files: Išskirti bylas - + Recursive search depth: Rekursinės paieškos gylis - + Proxy Proxy - + Enable proxy usage Įjungti proxy palaikymą - + Proxy host name: Proxy serveris: - + Proxy port: Proxy portas: - + Use authentication with proxy Naudoti proxy autentifikavimą - + Proxy user name: Proxy vartotojo vardas: - + Proxy password: Proxy slaptažodis: @@ -604,12 +609,12 @@ Paversti %20 į tarpus - + Select Skin Files Pasirinkti temų bylas - + Skin files Temų bylos diff --git a/src/ui/translations/qmmp_pl_PL.ts b/src/ui/translations/qmmp_pl_PL.ts index 69af6cb05..65e20003b 100644 --- a/src/ui/translations/qmmp_pl_PL.ts +++ b/src/ui/translations/qmmp_pl_PL.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Włączone - - - - - + + + + + Description Opis - - - - - + + + + + Filename Nazwa pliku - + Artist Artysta - + Album Album @@ -221,57 +221,57 @@ Wyłączone - + Title Tytuł - + Track number Numer utworu - + Two-digit track number Dwuznakowy numer utworu - + Disc number Numer albumu - + Condition Warunek - + Genre Gatunek - + Composer Kompozytor - + File name Nazwa pliku - + File path Lokalizacja - + Year Rok - + Comment Komentarz @@ -376,22 +376,22 @@ Zaawansowane - + 16-bit output - + Close Zamknij - + Archived skin Skompresowana skórka - + Unarchived skin Niekompresowana skórka @@ -422,12 +422,12 @@ - + Audio Dźwięk - + Replay Gain @@ -477,33 +477,33 @@ Dostosuj - + Replay Gain mode: Tryb Replay Gain: - + Preamp: - - + + dB - + Default gain: Domyślne wzmocnienie: - + Use peak info to prevent clipping Użyj informacji peak by zapobiec "klipnięciom" - + Use software volume control Użyj programowej regulacji głośności @@ -544,51 +544,56 @@ + Use separate image files + + + + Include files: Użyj plików: - + Exclude files: Wyłącz pliki: - + Recursive search depth: Głębokość rekursywnego przeszukiwania: - + Proxy Proxy - + Enable proxy usage Włącz proxy - + Proxy host name: Nazwa hosta proxy: - + Proxy port: Port proxy: - + Use authentication with proxy Użyj autoryzacji z proxy - + Proxy user name: Nazwa użytkownika: - + Proxy password: Hasło: @@ -603,12 +608,12 @@ Konwertuj sekwencje %20 na spacje - + Select Skin Files Wybierz skórę - + Skin files Pliki skór diff --git a/src/ui/translations/qmmp_pt_BR.ts b/src/ui/translations/qmmp_pt_BR.ts index 11e42937f..c8067e599 100644 --- a/src/ui/translations/qmmp_pt_BR.ts +++ b/src/ui/translations/qmmp_pt_BR.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Ligado - - - - - + + + + + Description Descrição - - - - - + + + + + Filename Nome do Arquivo - + Artist Artista - + Album Álbum @@ -221,57 +221,57 @@ - + Title Título - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre Gênero - + Composer - + File name - + File path - + Year Ano - + Comment Comentário @@ -376,22 +376,22 @@ Avançado - + 16-bit output - + Close Fechar - + Archived skin - + Unarchived skin @@ -422,12 +422,12 @@ - + Audio - + Replay Gain @@ -477,33 +477,33 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Use software volume control @@ -544,51 +544,56 @@ - Include files: + Use separate image files + Include files: + + + + Exclude files: - + Recursive search depth: - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: @@ -603,12 +608,12 @@ - + Select Skin Files - + Skin files diff --git a/src/ui/translations/qmmp_ru.ts b/src/ui/translations/qmmp_ru.ts index ab6fd19f0..35879d1e3 100644 --- a/src/ui/translations/qmmp_ru.ts +++ b/src/ui/translations/qmmp_ru.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Включён - - - - - + + + + + Description Описание - - - - - + + + + + Filename Имя файла - + Artist Исполнитель - + Album Альбом @@ -221,57 +221,57 @@ Отключено - + Title Название - + Track number Номер трека - + Two-digit track number 2-x разрядный номер трека - + Disc number Номер диска - + Condition Условие - + Genre Жанр - + Composer Композитор - + File name Имя файла - + File path Путь к файлу - + Year Год - + Comment Комментарий @@ -376,22 +376,22 @@ Дополнительно - + 16-bit output 16-битный вывод - + Close Закрыть - + Archived skin Упакованная тема - + Unarchived skin Распакованная тема @@ -422,12 +422,12 @@ - + Audio Аудио - + Replay Gain Выравнивание громкости (Replay Gain) @@ -477,33 +477,33 @@ Настроить - + Replay Gain mode: Режим Replay Gain: - + Preamp: Предусиление: - - + + dB дБ - + Default gain: Усиление по умолчанию: - + Use peak info to prevent clipping Использовать пиковое значение для предотвращения срезания - + Use software volume control Использовать программную регулировку громкости @@ -544,51 +544,56 @@ + Use separate image files + Использовать отдельные файлы с изображениями + + + Include files: Включить файлы: - + Exclude files: Исключить файлы: - + Recursive search depth: Глубина рекурсивного поиска: - + Proxy Прокси - + Enable proxy usage Использовать прокси - + Proxy host name: Прокси сервер: - + Proxy port: Прокси порт: - + Use authentication with proxy Использовать авторизацию на прокси - + Proxy user name: Имя пользователя прокси: - + Proxy password: Пароль прокси: @@ -603,12 +608,12 @@ Преобразовывать %20 в пробел - + Select Skin Files Выберите файлы обложек - + Skin files Файлы обложек diff --git a/src/ui/translations/qmmp_tr.ts b/src/ui/translations/qmmp_tr.ts index cb847e67e..437a333c8 100644 --- a/src/ui/translations/qmmp_tr.ts +++ b/src/ui/translations/qmmp_tr.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Etkinleştirildi - - - - - + + + + + Description Açıklama - - - - - + + + + + Filename Dosya adı - + Artist Sanatçı - + Album Albüm @@ -221,57 +221,57 @@ - + Title Başlık - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre Tarz - + Composer - + File name - + File path - + Year Yıl - + Comment Yorum @@ -376,22 +376,22 @@ Gelişmiş - + 16-bit output - + Close Kapat - + Archived skin Arşivlenmiş kabuk - + Unarchived skin Arşivlenmemiş kabuk @@ -422,12 +422,12 @@ - + Audio Ses - + Replay Gain @@ -477,33 +477,33 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Use software volume control Yazılımsal ses kontrolünü kullan @@ -544,51 +544,56 @@ - Include files: + Use separate image files + Include files: + + + + Exclude files: - + Recursive search depth: - + Proxy Vekil sunucu - + Enable proxy usage Vekil sunucu kullanımını etkinleştir - + Proxy host name: Vekil sunucu adı: - + Proxy port: Vekil sunucu portu: - + Use authentication with proxy Vekil sunucu yetkilendirmesi kullan - + Proxy user name: Vekil sunucu kullanıcı adı: - + Proxy password: Vekil sunucu parolası: @@ -603,12 +608,12 @@ %20 yi boşluğa çevir - + Select Skin Files Kabuk Dosyası Seç - + Skin files Kabuk dosyaları diff --git a/src/ui/translations/qmmp_uk_UA.ts b/src/ui/translations/qmmp_uk_UA.ts index f451f130d..83ab3f9e1 100644 --- a/src/ui/translations/qmmp_uk_UA.ts +++ b/src/ui/translations/qmmp_uk_UA.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled Увімкнено - - - - - + + + + + Description Пояснення - - - - - + + + + + Filename Ім'я файлу - + Artist Виконавець - + Album Альбом @@ -221,57 +221,57 @@ Вимкнено - + Title Назва - + Track number Номер треку - + Two-digit track number 2- розрядний номер трека - + Disc number Номер диску - + Condition Умова - + Genre Жанр - + Composer Композитор - + File name Ім'я файлу - + File path Шлях файлу - + Year Рік - + Comment Коментар @@ -376,22 +376,22 @@ Додатково - + 16-bit output 16-бітний вивід - + Close Закрити - + Archived skin Упакована тема - + Unarchived skin Розпакована тема @@ -422,12 +422,12 @@ - + Audio Звук - + Replay Gain Нормалізація гучності @@ -477,33 +477,33 @@ Налаштувати - + Replay Gain mode: Режим нормалізації гучності: - + Preamp: Преамплітуда: - - + + dB - + Default gain: Нормалізація за умовчанням: - + Use peak info to prevent clipping Використовувати інформацію піків для запобігання відсікання - + Use software volume control Використовувати програмний контроль гучності @@ -544,51 +544,56 @@ + Use separate image files + + + + Include files: Включити файли: - + Exclude files: Виключити файли: - + Recursive search depth: Глибина рекурсивного пошуку: - + Proxy Проксі - + Enable proxy usage Використосувати проксі - + Proxy host name: Сервер проксі: - + Proxy port: Порт проксі: - + Use authentication with proxy Використовувати авторизацію на проксі - + Proxy user name: Ім'я користвача проксі: - + Proxy password: Пароль проксі: @@ -603,12 +608,12 @@ Конвертувати %20 в пробіл - + Select Skin Files Вибрати файли скінів - + Skin files Файли скінів diff --git a/src/ui/translations/qmmp_zh_CN.ts b/src/ui/translations/qmmp_zh_CN.ts index c52d3310a..3ef34faff 100644 --- a/src/ui/translations/qmmp_zh_CN.ts +++ b/src/ui/translations/qmmp_zh_CN.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled 启用 - - - - - + + + + + Description 描述 - - - - - + + + + + Filename 文件名 - + Artist 艺术家 - + Album 专辑 @@ -221,57 +221,57 @@ - + Title 标题 - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre 流派 - + Composer - + File name - + File path - + Year 年代 - + Comment 备注 @@ -376,22 +376,22 @@ 高级 - + 16-bit output - + Close 关闭 - + Archived skin 压缩皮肤 - + Unarchived skin 未压缩皮肤 @@ -422,12 +422,12 @@ - + Audio 音频 - + Replay Gain @@ -477,33 +477,33 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Use software volume control 使用软设备音量控制 @@ -544,51 +544,56 @@ - Include files: + Use separate image files + Include files: + + + + Exclude files: - + Recursive search depth: - + Proxy 代理 - + Enable proxy usage 启用代理 - + Proxy host name: 主机名: - + Proxy port: 端口: - + Use authentication with proxy 需要身份验证 - + Proxy user name: 用户名: - + Proxy password: 密码: @@ -603,12 +608,12 @@ 转换 %20 为空格 - + Select Skin Files 选择皮肤文件 - + Skin files 皮肤文件 diff --git a/src/ui/translations/qmmp_zh_TW.ts b/src/ui/translations/qmmp_zh_TW.ts index d08ac82fb..e29fd34a5 100644 --- a/src/ui/translations/qmmp_zh_TW.ts +++ b/src/ui/translations/qmmp_zh_TW.ts @@ -173,40 +173,40 @@ ConfigDialog - - - - - + + + + + Enabled 啟用 - - - - - + + + + + Description 說明 - - - - - + + + + + Filename 檔名 - + Artist 藝術家 - + Album 專輯 @@ -221,57 +221,57 @@ - + Title 標題 - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre 流派 - + Composer - + File name - + File path - + Year 年代 - + Comment 備註 @@ -376,22 +376,22 @@ 進階 - + 16-bit output - + Close 關閉 - + Archived skin 封包皮膚 - + Unarchived skin 未封包皮膚 @@ -422,12 +422,12 @@ - + Audio 聲訊 - + Replay Gain @@ -477,33 +477,33 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Use software volume control 使用軟裝置音量控制 @@ -544,51 +544,56 @@ - Include files: + Use separate image files + Include files: + + + + Exclude files: - + Recursive search depth: - + Proxy 代理 - + Enable proxy usage 啟用代理 - + Proxy host name: 主機名: - + Proxy port: 通訊埠: - + Use authentication with proxy 需要身份驗證 - + Proxy user name: 用戶名: - + Proxy password: 密碼: @@ -603,12 +608,12 @@ 轉換 %20 為空格 - + Select Skin Files 選取皮膚檔案 - + Skin files 皮膚檔案 -- cgit v1.2.3-13-gbd6f