From 77a62c6f5aeb4984e9bba2d7cb1c31d8179c03aa Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 19 Aug 2013 22:17:12 +0000 Subject: added 'group format' option git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3626 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/configdialog.cpp | 59 ++++++--- src/qmmpui/configdialog.h | 5 +- src/qmmpui/forms/configdialog.ui | 44 ++++--- src/qmmpui/translations/libqmmpui_cs.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_de.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_es.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_fr.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_he.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_hu.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_it.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_ja.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_kk.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_lt.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_nl.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_pl_PL.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_pt_BR.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_ru.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_sk.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_tr.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_uk_UA.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_zh_CN.ts | 204 ++++++++++++++++------------- src/qmmpui/translations/libqmmpui_zh_TW.ts | 204 ++++++++++++++++------------- 22 files changed, 2241 insertions(+), 1743 deletions(-) (limited to 'src/qmmpui') diff --git a/src/qmmpui/configdialog.cpp b/src/qmmpui/configdialog.cpp index ab307fb3d..e3a753bab 100644 --- a/src/qmmpui/configdialog.cpp +++ b/src/qmmpui/configdialog.cpp @@ -97,6 +97,7 @@ void ConfigDialog::readSettings() //playlist options QmmpUiSettings *guis = QmmpUiSettings::instance(); m_ui->formatLineEdit->setText(guis->titleFormat()); + m_ui->groupLineEdit->setText(guis->groupFormat()); m_ui->metadataCheckBox->setChecked(guis->useMetadata()); m_ui->underscoresCheckBox->setChecked(guis->convertUnderscore()); m_ui->per20CheckBox->setChecked(guis->convertTwenty()); @@ -281,25 +282,42 @@ void ConfigDialog::on_informationButton_clicked() void ConfigDialog::createMenus() { - QMenu *menu = new QMenu(this); + QMenu *titleMenu = 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("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)"); + titleMenu->addAction(tr("Artist"))->setData("%p"); + titleMenu->addAction(tr("Album"))->setData("%a"); + titleMenu->addAction(tr("Title"))->setData("%t"); + titleMenu->addAction(tr("Track number"))->setData("%n"); + titleMenu->addAction(tr("Two-digit track number"))->setData("%NN"); + titleMenu->addAction(tr("Genre"))->setData("%g"); + titleMenu->addAction(tr("Comment"))->setData("%c"); + titleMenu->addAction(tr("Composer"))->setData("%C"); + titleMenu->addAction(tr("Disc number"))->setData("%D"); + titleMenu->addAction(tr("File name"))->setData("%f"); + titleMenu->addAction(tr("File path"))->setData("%F"); + titleMenu->addAction(tr("Year"))->setData("%y"); + titleMenu->addAction(tr("Condition"))->setData("%if(%p&%t,%p - %t,%f)"); - m_ui->titleButton->setMenu(menu); + m_ui->titleButton->setMenu(titleMenu); m_ui->titleButton->setPopupMode(QToolButton::InstantPopup); - connect(menu, SIGNAL(triggered (QAction *)), SLOT(addTitleString(QAction *))); + connect(titleMenu, SIGNAL(triggered (QAction *)), SLOT(addTitleString(QAction *))); + + QMenu *groupMenu = new QMenu(this); + + groupMenu->addAction(tr("Artist"))->setData("%p"); + groupMenu->addAction(tr("Album"))->setData("%a"); + groupMenu->addAction(tr("Genre"))->setData("%g"); + groupMenu->addAction(tr("Comment"))->setData("%c"); + groupMenu->addAction(tr("Composer"))->setData("%C"); + groupMenu->addAction(tr("Disc number"))->setData("%D"); + groupMenu->addAction(tr("Year"))->setData("%y"); + groupMenu->addAction(tr("Condition"))->setData("%if(%p&%a,%p - %a,%f)"); + groupMenu->addAction(tr("Artist/Album"))->setData("%p%if(%p&%a, - ,)%a"); + groupMenu->addAction(tr("Artist/Year/Album"))->setData("%p%if(%p&%a, - ,)%if(%y,[%y] ,)%a"); + + m_ui->groupButton->setMenu(groupMenu); + m_ui->groupButton->setPopupMode(QToolButton::InstantPopup); + connect(groupMenu, SIGNAL(triggered (QAction *)), SLOT(addGroupString(QAction *))); } void ConfigDialog::loadLanguages() @@ -348,11 +366,20 @@ void ConfigDialog::addTitleString(QAction * a) m_ui->formatLineEdit->insert(" - "+a->data().toString()); } +void ConfigDialog::addGroupString(QAction *a) +{ + if (m_ui->groupLineEdit->cursorPosition () < 1) + m_ui->groupLineEdit->insert(a->data().toString()); + else + m_ui->groupLineEdit->insert(" - "+a->data().toString()); +} + void ConfigDialog::saveSettings() { if (QmmpUiSettings *guis = QmmpUiSettings::instance()) { guis->setTitleFormat(m_ui->formatLineEdit->text().trimmed()); + guis->setGroupFormat(m_ui->groupLineEdit->text().trimmed()); guis->setUseMetadata(m_ui->metadataCheckBox->isChecked()); guis->setConvertUnderscore(m_ui->underscoresCheckBox->isChecked()); guis->setConvertTwenty(m_ui->per20CheckBox->isChecked()); diff --git a/src/qmmpui/configdialog.h b/src/qmmpui/configdialog.h index b039c3529..3675ab14b 100644 --- a/src/qmmpui/configdialog.h +++ b/src/qmmpui/configdialog.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2012 by Ilya Kotov * + * Copyright (C) 2007-2013 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -62,7 +62,8 @@ private slots: void on_contentsWidget_currentItemChanged (QListWidgetItem *current, QListWidgetItem *previous); void on_preferencesButton_clicked(); void on_informationButton_clicked(); - void addTitleString(QAction *); + void addTitleString(QAction *a); + void addGroupString(QAction *a); void saveSettings(); void on_treeWidget_itemChanged (QTreeWidgetItem *item, int column); void on_treeWidget_currentItemChanged (QTreeWidgetItem *current, QTreeWidgetItem *); diff --git a/src/qmmpui/forms/configdialog.ui b/src/qmmpui/forms/configdialog.ui index 081030b06..a0c029af5 100644 --- a/src/qmmpui/forms/configdialog.ui +++ b/src/qmmpui/forms/configdialog.ui @@ -112,9 +112,6 @@ QFrame::Raised - - 0 - @@ -129,39 +126,56 @@ 6 - + + + + Convert %20 to blanks + + + + + + + Title format: + + + + Load metadata from files - + Convert underscores to blanks - - + + - Convert %20 to blanks + Group format: - - + + + + + - Title format: + ... - - + + - - + + ... diff --git a/src/qmmpui/translations/libqmmpui_cs.ts b/src/qmmpui/translations/libqmmpui_cs.ts index aca39a904..ce451a0d0 100644 --- a/src/qmmpui/translations/libqmmpui_cs.ts +++ b/src/qmmpui/translations/libqmmpui_cs.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Popis - + Filename Soubor - + + Artist Umělec - + + Album Album @@ -136,192 +138,208 @@ Vypnuto - + Transports Protokoly - + Decoders Dekodéry - + Engines Přehrávače - + Output Výstup - + File Dialogs Souborové dialogy - + User Interfaces Uživatelská rozhraní - + Title Název - + Track number Číslo stopy - + Two-digit track number Dvoumístné číslo stopy - + + Disc number Číslo disku - + + Condition Stav - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> <Autodetekce> - + Brazilian Portuguese Brazilská portugalština - + Chinese Simplified Zjednodušená čínština - + Chinese Traditional Tradiční čínština - + Czech Čeština - + Dutch Nizozemština - + English Angličtina - + French Francouzština - + German Němčina - + Hebrew Hebrejština - + Hungarian Maďarština - + Italian Italština - + Japanese Japonština - + Kazakh Kazaština - + Lithuanian Litevština - + Polish Polština - + Russian Ruština - + Slovak Slovenština - + Spanish Španělština - + Turkish Turečtina - + Ukrainian Ukrajinština - + + Composer Skladatel - + File name Název souboru - + File path Cesta k souboru - + + Genre Žánr - + + Year Rok - + + Comment Poznámka @@ -346,165 +364,171 @@ Pokročilé - + Replay Gain Zisk při přehrávání - + + ... ... - + Metadata Metadata - + Load metadata from files Číst ze souborů metadata - + Title format: Formát titulku: - + Preferences Nastavení - + Information Informace - + Cover Image Retrieve Získat obrázek obalu - + Use separate image files Použít samostatné obrázky - + Include files: Zahrnout soubory: - - + + Exclude files: Vynechat soubory: - + Recursive search depth: Hloubka rekurzivního hledání: - + Playback Přehrávání - + Continue playback on startup Po startu pokračovat v přehrávání - + Determine file type by content Zjistit formát souboru dle obsahu - + Directory Scanning Options Možnosti prohledávání adresářů - + + Group format: + + + + Restrict files to: Omezit soubory na: - + Miscellaneous Různé - + Auto-save playlist when modified Automaticky uložit seznam skladeb, je-li změněn - + Look and Feel ... sakra jak se tohle překládá :-( Vzhled a chování - + Language: Jazyk: - + Add files from command line to this playlist: Přidat soubory z příkazové řádky do tohoto seznamu: - + URL Dialog Dialog URL - + Auto-paste URL from clipboard Automaticky vložit URL ze schránky - + 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 - + Buffer size: Velikost vyrovnávací paměti: - + ms ms - + 16-bit output 16bitový výstup @@ -514,73 +538,73 @@ Síť - + 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: - + Visualization Vizualizace - + Effects Efekty - + General Obecné - + Audio Zvuk - + Use software volume control Používat softwarové ovládání hlasitosti - + Convert underscores to blanks Převést podtržítka na mezery - + Convert %20 to blanks Převést %20 na mezery diff --git a/src/qmmpui/translations/libqmmpui_de.ts b/src/qmmpui/translations/libqmmpui_de.ts index 21d212984..cdc3998da 100644 --- a/src/qmmpui/translations/libqmmpui_de.ts +++ b/src/qmmpui/translations/libqmmpui_de.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Beschreibung - + Filename Dateiname - + + Artist Interpret - + + Album Album @@ -136,192 +138,208 @@ Deaktiviert - + Transports Transporte - + Decoders Dekoder - + Engines - + Output - + File Dialogs - + User Interfaces - + Title Titel - + Track number Stücknummer - + Two-digit track number Zweistellige Stücknummer - + + Disc number CD-Nummer - + + Condition Zustand - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre Genre - + + Composer Komponist - + File name Dateiname - + File path Dateipfad - + + Year Jahr - + + Comment Kommentar @@ -346,164 +364,170 @@ Erweitert - + Replay Gain Replay Gain - + + ... ... - + Metadata Metadaten - + Load metadata from files Metadaten aus Dateien laden - + Title format: Titelformat: - + Preferences Konfiguration - + Information Information - + Cover Image Retrieve Holen von Cover-Bildern - + Use separate image files Separate Bilddateien verwenden - + Include files: Einzubeziehende Dateien: - - + + Exclude files: Auszuschließende Dateien: - + Recursive search depth: Rekursive Suchtiefe: - + Playback Wiedergabe - + Continue playback on startup Wiedergabe beim Start fortsetzen - + Determine file type by content Dateityp anhand des Inhalts bestimmen - + Directory Scanning Options Einstellungen zum Durchsuchen von Ordnern - + + Group format: + + + + Restrict files to: Dateien beschränken auf: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: Von der Befehlszeile hinzugefügte Dateien zu dieser Wiedergabeliste hinzufügen: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain mode: Replay-Gain-Modus: - + Preamp: Vorverstärkung: - - + + dB dB - + Default gain: - + Use peak info to prevent clipping Peak-Informationen verwenden, um Clipping zu verhindern - + Buffer size: Puffergröße: - + ms ms - + 16-bit output 16-Bit-Ausgabe @@ -513,73 +537,73 @@ Verbindung - + 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: - + Visualization Visualisierung - + Effects Effekte - + General Sonstige - + Audio Audio - + Use software volume control Softwaregesteuerte Lautstärkeregelung - + Convert underscores to blanks Unterstriche in Leerzeichen umwandeln - + Convert %20 to blanks %20 in Leerzeichen umwandeln diff --git a/src/qmmpui/translations/libqmmpui_es.ts b/src/qmmpui/translations/libqmmpui_es.ts index 799e5508c..9e266a378 100644 --- a/src/qmmpui/translations/libqmmpui_es.ts +++ b/src/qmmpui/translations/libqmmpui_es.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Descripción - + Filename Nombre del archivo - + + Artist Intérprete - + + Album Album @@ -136,192 +138,208 @@ Deshabilitado - + Transports Transportes - + Decoders Decodificadores - + Engines Motores - + Output - + File Dialogs - + User Interfaces - + Title Título - + Track number Número de pista - + Two-digit track number Número de pista con dos cifras - + + Disc number Número de disco - + + Condition Condición - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre Género - + + Composer Compositor - + File name Nombre del archivo - + File path Ruta del archivo - + + Year Año - + + Comment Comentario @@ -331,32 +349,33 @@ Configuración de Qmmp - + + ... ... - + Metadata Metainformación - + Load metadata from files Cargar la metainformación de los archivos - + Title format: Formato del título: - + Preferences Preferencias - + Information Información @@ -376,7 +395,7 @@ Avanzado - + 16-bit output Salida de 16 bits @@ -386,200 +405,205 @@ Conectividad - + Visualization Visualización - + Effects Efectos - + General General - + Audio Sonido - + + Group format: + + + + Directory Scanning Options - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain Normalización - + Replay Gain mode: Método de normalización: - + Preamp: Preamp: - - + + dB dB - + Default gain: Normalización predeterminada: - + Use peak info to prevent clipping Procesar picos para evitar cortes - + Buffer size: Tamaño del buffer: - + ms ms - + Use software volume control Usar control de volumen por software - + Cover Image Retrieve Obtener las imagenes de carátula - + Use separate image files Usar archivos de imágen separados - + Include files: Incluir archivos: - - + + Exclude files: Excluir archivos: - + Recursive search depth: Profundidad de la búsqueda recursiva: - + Playback Reproducción - + Continue playback on startup Continuar la reproducción al iniciar - + Determine file type by content - + Proxy Proxy - + Enable proxy usage Habilitar el uso de proxy - + Proxy host name: Nombre del servidor proxy: - + Proxy port: Puerto del proxy: - + Use authentication with proxy Usar autentificación con el proxy - + Proxy user name: Usuario del proxy: - + Proxy password: Contraseña del proxy: - + Convert underscores to blanks Convertir los guiones bajos en espacios - + Convert %20 to blanks Convertir los %20 en espacios diff --git a/src/qmmpui/translations/libqmmpui_fr.ts b/src/qmmpui/translations/libqmmpui_fr.ts index 717b79e30..249faa7e9 100644 --- a/src/qmmpui/translations/libqmmpui_fr.ts +++ b/src/qmmpui/translations/libqmmpui_fr.ts @@ -131,229 +131,235 @@ - + Audio - + Metadata - + Load metadata from files - + Convert underscores to blanks - + Convert %20 to blanks - + Title format: - + + ... - + Directory Scanning Options - + Restrict files to: - - + + Exclude files: - + Cover Image Retrieve - + Use separate image files - + Include files: - + Recursive search depth: - + Preferences - + + Group format: + + + + Miscellaneous - + Auto-save playlist when modified - + Information - + Description - + Filename - + Look and Feel - + Language: - + Playback - + Continue playback on startup - + Determine file type by content - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control - + 16-bit output @@ -364,7 +370,8 @@ - + + Album @@ -374,212 +381,229 @@ - + Transports - + Decoders - + Engines - + Effects - + Visualization - + General - + Output - + File Dialogs - + User Interfaces - + + Artist - + Title - + Track number - + Two-digit track number - + + Genre - + + Comment - + + Composer - + + Disc number - + File name - + File path - + + Year - + + Condition - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian diff --git a/src/qmmpui/translations/libqmmpui_he.ts b/src/qmmpui/translations/libqmmpui_he.ts index 3909d451f..f2087fe41 100644 --- a/src/qmmpui/translations/libqmmpui_he.ts +++ b/src/qmmpui/translations/libqmmpui_he.ts @@ -131,229 +131,235 @@ - + Audio שמע - + Metadata מידע-מוצמד - + Load metadata from files טען מידע-מוצמד מן קבצים - + Convert underscores to blanks המר הדגשות אל תווי רווח - + Convert %20 to blanks המר ‎%20 אל תווי רווח - + Title format: פורמט כותרת: - + + ... - + Directory Scanning Options אפשרויות סריקת מדור - + Restrict files to: הגבל קבצים אל: - - + + Exclude files: הוצא קבצים: - + Miscellaneous שונות - + Auto-save playlist when modified שמור אוטומטית רשימת השמעה כאשר משתנה - + Look and Feel מראה ותחושה - + Language: שפה: - + Cover Image Retrieve אחזור תמונת כיסוי - + Use separate image files השתמש בקבצי תמונה פרודים - + Include files: הכלל קבצים: - + Recursive search depth: חיפוש עומק רקורסיבי: - + Preferences העדפות - + + Group format: + + + + Information מידע - + Description תיאור - + Filename שם קובץ - + Playback פס קול - + Continue playback on startup המשך ניגון פס קול בעת הפעלה - + Determine file type by content קבע טיפוס קובץ על פי תוכן - + Add files from command line to this playlist: הוסף קבצים מן שורת פקודה אל רשימת השמעה זו: - + URL Dialog דו שיח URL - + Auto-paste URL from clipboard הדבק אוטומטית URL מן לוח גזירה - + Proxy פרוקסי - + Enable proxy usage אפשר שימוש בפרוקסי - + Proxy host name: שם מארח פרוקסי: - + Proxy port: פורט פרוקסי: - + Use authentication with proxy השתמש באימות עם פרוקסי - + Proxy user name: שם משתמש פרוקסי: - + Proxy password: סיסמת פרוקסי: - + Replay Gain הגברת שמע - + Replay Gain mode: מצב הגברת שמע: - + Preamp: מגבר קדמי: - - + + dB דציבל - + Default gain: מגבר משתמט: - + Use peak info to prevent clipping השתמש במידע שיא למניעת קיצץ - + Buffer size: שיעור אגירה: - + ms מ״ש - + Use software volume control נצל בקרת שמע של תוכנה - + 16-bit output פלט 16 סיביות @@ -364,7 +370,8 @@ - + + Album אלבום @@ -374,212 +381,229 @@ מנוטרלת - + Transports מובילים - + Decoders מפענחים - + Engines מנועים - + Effects אפקטים - + Visualization חיזוי - + General כללי - + Output פלט - + File Dialogs תיבות דו שיח קובץ - + User Interfaces ממשקי משתמש - + + Artist אמן - + Title כותרת - + Track number מספר רצועה - + Two-digit track number מספר רצועה דו ספרתי - + + Genre ז'אנר - + + Comment הערה - + + Composer מלחין - + + Disc number מספר תקליטור - + File name שם קובץ - + File path נתיב קובץ - + + Year שנה - + + Condition תנאי - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> <איתור אוטומטי> - + Brazilian Portuguese ברזילאית פורטוגזית - + Chinese Simplified סינית מפושטת - + Chinese Traditional סינית מסורתית - + Czech צ׳כית - + Dutch הולנדית - + English אנגלית - + French צרפתית - + German גרמנית - + Hebrew עברית - + Hungarian הונגרית - + Italian איטלקית - + Japanese יפנית - + Kazakh קזחית - + Lithuanian ליטאית - + Polish פולנית - + Russian רוסית - + Slovak סלובקית - + Spanish ספרדית - + Turkish טורקית - + Ukrainian אוקראינית diff --git a/src/qmmpui/translations/libqmmpui_hu.ts b/src/qmmpui/translations/libqmmpui_hu.ts index f1c2e6340..6898c5819 100644 --- a/src/qmmpui/translations/libqmmpui_hu.ts +++ b/src/qmmpui/translations/libqmmpui_hu.ts @@ -131,229 +131,235 @@ - + Audio - + Metadata - + Load metadata from files - + Convert underscores to blanks - + Convert %20 to blanks - + Title format: - + + ... - + Directory Scanning Options - + Restrict files to: - - + + Exclude files: - + Cover Image Retrieve - + Use separate image files - + Include files: - + Recursive search depth: - + Preferences - + + Group format: + + + + Miscellaneous - + Auto-save playlist when modified - + Information - + Description - + Filename - + Look and Feel - + Language: - + Playback - + Continue playback on startup - + Determine file type by content - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control - + 16-bit output @@ -364,7 +370,8 @@ - + + Album @@ -374,212 +381,229 @@ - + Transports - + Decoders - + Engines - + Effects - + Visualization - + General - + Output - + File Dialogs - + User Interfaces - + + Artist - + Title - + Track number - + Two-digit track number - + + Genre - + + Comment - + + Composer - + + Disc number - + File name - + File path - + + Year - + + Condition - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian diff --git a/src/qmmpui/translations/libqmmpui_it.ts b/src/qmmpui/translations/libqmmpui_it.ts index cbce6c8db..81c315818 100644 --- a/src/qmmpui/translations/libqmmpui_it.ts +++ b/src/qmmpui/translations/libqmmpui_it.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Descrizione - + Filename File - + + Artist Interprete - + + Album Album @@ -136,192 +138,208 @@ Disabilitato - + Transports Protocolli di trasporto - + Decoders Decodificatori - + Engines Meccanismi - + Output - + File Dialogs - + User Interfaces - + Title Titolo - + Track number Traccia n° - + Two-digit track number Traccia n° a due cifre - + + Disc number Disco n° - + + Condition Condizione - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre Genere - + + Composer Compositore - + File name Nome file - + File path Percorso file - + + Year Anno - + + Comment Commento @@ -331,32 +349,33 @@ Configurazione di Qmmp - + + ... ... - + Metadata Metadati - + Load metadata from files Carica i metadati dai brani - + Title format: Formato del titolo : - + Preferences Impostazioni preferite - + Information Informazioni @@ -376,7 +395,7 @@ Avanzato - + 16-bit output uscita a 16 bit @@ -386,200 +405,205 @@ Connettività - + Visualization Visualizzazione - + Effects Effetti - + General Generale - + Audio Audio - + + Group format: + + + + Directory Scanning Options - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain Normalizzazione - + Replay Gain mode: Metodo di normalizzazione - + Preamp: Preamp: - - + + dB dB - + Default gain: Normalizzazione predefinita - + Use peak info to prevent clipping Utilizza informazioni di picco per evitare tagli - + Buffer size: - + ms ms - + Use software volume control Utilizza il controllo volume del programma - + Cover Image Retrieve Trova immagine copertina - + Use separate image files Usa immagini separate - + Include files: Includi i file: - - + + Exclude files: Escludi i file: - + Recursive search depth: Profondità ricerca ricorsiva: - + Playback Riproduzione - + Continue playback on startup Continua la riproduzione all'avvio - + Determine file type by content - + 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 : - + Convert underscores to blanks Converti il carattere « _ » in spazi - + Convert %20 to blanks Converti il carattere « %20 » in spazi diff --git a/src/qmmpui/translations/libqmmpui_ja.ts b/src/qmmpui/translations/libqmmpui_ja.ts index 44bd14a22..0e354ae64 100644 --- a/src/qmmpui/translations/libqmmpui_ja.ts +++ b/src/qmmpui/translations/libqmmpui_ja.ts @@ -131,229 +131,235 @@ - + Audio 音響 - + + ... ... - + Metadata メタデータ - + Load metadata from files ファイルからメタデータを読み込む - + Title format: タイトルの表示形式: - + Convert underscores to blanks 下線記号 _ を空白文字で表示 - + Convert %20 to blanks %20 を空白文字で表示 - + Preferences プラグイン調整 - + Information 情報 - + Description プラグイン分類 - + Filename ファイル名 - + Cover Image Retrieve アルバム表紙画像の取得 - + Use separate image files 分割された画像ファイルを利用 - + Include files: 対象ファイル形式: - - + + Exclude files: 除外ファイル形式: - + Recursive search depth: 再帰検索の深度: - + Playback 再生 - + Continue playback on startup 前回終了時の曲から継続して再生 - + Determine file type by content ファイル内容をみて形式を判断 - + Directory Scanning Options ディレクトリ探査のオプション - + + Group format: + + + + Restrict files to: ファイルを限定(拡張子による): - + Miscellaneous その他いろいろ - + Auto-save playlist when modified プレイリストの変更を自動保存 - + Look and Feel 外観と感触 - + Language: 言語: - + Add files from command line to this playlist: コマンド行からファイルを追加できるプレイリスト: - + URL Dialog URL ダイアログ - + Auto-paste URL from clipboard クリップボードから URL を自動取り込み - + Proxy 代理 - + Enable proxy usage 代理を利用する - + Proxy host name: 代理ホスト名: - + Proxy port: 代理ポート: - + Use authentication with proxy 代理経由の認証を利用 - + Proxy user name: 代理者ユーザー名: - + Proxy password: 代理者パスワード: - + Replay Gain リプレイゲイン - + Replay Gain mode: リプレイゲインモード: - + Preamp: プリアンプ: - - + + dB dB - + Default gain: デフォルトゲイン: - + Use peak info to prevent clipping クリッピング現象を抑えるためピーク情報を使う - + Buffer size: バッファーサイズ: - + ms ミリ秒 - + Use software volume control ソフトウェアによる音量制御を利用 - + 16-bit output 16ビット出力 @@ -364,7 +370,8 @@ - + + Album アルバム @@ -374,212 +381,229 @@ 無効 - + Transports 転送 - + Decoders デコーダー - + Engines エンジン - + Effects 音響効果 - + Visualization 視覚効果 - + General 一般 - + Output 出力 - + File Dialogs ファイルダイアログ - + User Interfaces ユーザーインターフェイス - + + Artist アーティスト - + Title タイトル - + Track number トラック番号 - + Two-digit track number トラック番号 数字2桁 - + + Genre ジャンル - + + Comment コメント - + + Composer 作曲者 - + + Disc number ディスク番号 - + File name ファイル名 - + File path ファイルパス - + + Year - + + Condition 定番 - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> <自動判定> - + Brazilian Portuguese ブラジル ポルトガル語 - + Chinese Simplified 簡体字中国語 - + Chinese Traditional 繁体字中国語 - + Czech チェコ語 - + Dutch オランダ語 - + English 英語 - + French フランス語 - + German ドイツ語 - + Hebrew ヘブライ語 - + Hungarian ハンガリー語 - + Italian イタリア語 - + Japanese 日本語 - + Kazakh カザフ語 - + Lithuanian リトアニア語 - + Polish ポーランド語 - + Russian ロシア語 - + Slovak スロバキア語 - + Spanish スペイン語 - + Turkish トルコ語 - + Ukrainian ウクライナ語 diff --git a/src/qmmpui/translations/libqmmpui_kk.ts b/src/qmmpui/translations/libqmmpui_kk.ts index 40952d594..2d81f1529 100644 --- a/src/qmmpui/translations/libqmmpui_kk.ts +++ b/src/qmmpui/translations/libqmmpui_kk.ts @@ -131,229 +131,235 @@ - + Audio - + Metadata - + Load metadata from files - + Convert underscores to blanks - + Convert %20 to blanks - + Title format: - + + ... - + Directory Scanning Options - + Restrict files to: - - + + Exclude files: - + Cover Image Retrieve - + Use separate image files - + Include files: - + Recursive search depth: - + Preferences - + + Group format: + + + + Miscellaneous - + Auto-save playlist when modified - + Information - + Description - + Filename - + Look and Feel - + Language: - + Playback - + Continue playback on startup - + Determine file type by content - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control - + 16-bit output @@ -364,7 +370,8 @@ - + + Album @@ -374,212 +381,229 @@ - + Transports - + Decoders - + Engines - + Effects - + Visualization - + General - + Output - + File Dialogs - + User Interfaces - + + Artist - + Title - + Track number - + Two-digit track number - + + Genre - + + Comment - + + Composer - + + Disc number - + File name - + File path - + + Year - + + Condition - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian diff --git a/src/qmmpui/translations/libqmmpui_lt.ts b/src/qmmpui/translations/libqmmpui_lt.ts index 11344200f..0cc08a0c8 100644 --- a/src/qmmpui/translations/libqmmpui_lt.ts +++ b/src/qmmpui/translations/libqmmpui_lt.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Aprašymas - + Filename Bylos pavadinimas - + + Artist Atlikėjas - + + Album Albumas @@ -136,192 +138,208 @@ Išjungta - + Transports Transportas - + Decoders Dekoderiai - + Engines Varikliai - + Output - + File Dialogs - + User Interfaces - + Title Pavadinimas - + Track number Takelio numeris - + Two-digit track number Dviejų skaičių takelio numeris - + + Disc number Disko numeris - + + Condition Būklė - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Composer Autorius - + File name Bylos pavadinimas - + File path Bylos kelias - + + Genre Žanras - + + Year Metai - + + Comment Komentaras @@ -331,32 +349,33 @@ Qmmp nustatymai - + + ... ... - + Metadata Meta duomenys - + Load metadata from files Įkelti metaduomenis iš bylų - + Title format: Pavadinimo formatas: - + Preferences Nustatymai - + Information Informacija @@ -376,7 +395,7 @@ Papildomi - + 16-bit output 16 bitų išvestis @@ -386,201 +405,206 @@ Tinklas - + Visualization Vizualizacija - + Effects Efektai - + General Bendri - + Audio Audio - + + Group format: + + + + Directory Scanning Options Aplanko skenavimo pasirinkimai - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: Į šį grojaraštį įkelti bylas iš komandinės eilutės: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain Neįsivaizduoju kaip verst Replay Gain - + Replay Gain mode: Replay Gain metodas: - + Preamp: Išankstinis stiprinimas: - - + + dB dB - + Default gain: Stiprinimas pagal nutylėjima: - + Use peak info to prevent clipping Naudoti pikų informaciją trūkinėjimo išvengimui - + Buffer size: Buferio dydis: - + ms ms - + Use software volume control Naudoti programinį garso valdymą - + Cover Image Retrieve Parsiųsti cd viršelį - + Use separate image files Naudoti atskiras paveiksliukų bylas - + Include files: Įtraukti bylas - - + + Exclude files: Išskirti bylas - + Recursive search depth: Rekursinės paieškos gylis - + Playback Grojimas - + Continue playback on startup Tęsti grojimą įjungus - + Determine file type by content Nustatyti bylos tipą pagal turinį - + 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: - + Convert underscores to blanks Paversti brūkšnius į tarpus - + Convert %20 to blanks Paversti %20 į tarpus diff --git a/src/qmmpui/translations/libqmmpui_nl.ts b/src/qmmpui/translations/libqmmpui_nl.ts index 9f4deed0f..afc9b1f21 100644 --- a/src/qmmpui/translations/libqmmpui_nl.ts +++ b/src/qmmpui/translations/libqmmpui_nl.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Beschrijving - + Filename Bestandsnaam - + + Artist Artiest - + + Album Album @@ -136,192 +138,208 @@ Uitgeschakeld - + Transports Protocols - + Decoders Decoders - + Engines - + Output - + File Dialogs - + User Interfaces - + Title Naam - + Track number Liednummer - + Two-digit track number Liednummer (twee cijfer formaat) - + + Disc number CD nummer - + + Condition Staat - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Composer Componist - + File name Bestandsnaam - + File path Bestandspad - + + Genre - + + Year Jaar - + + Comment Commentaar @@ -346,164 +364,170 @@ Geavanceerd - + Replay Gain - + + ... - + Metadata - + Load metadata from files Laad metadata van bestanden - + Title format: Titel formaat: - + Preferences Voorkeuren - + Information Informatie - + Cover Image Retrieve Gebruik afbeeldingshoes - + Use separate image files Gebruik aparte afbeeldingsbestanden - + Include files: Inclusief de bestanden: - - + + Exclude files: Exclusief de bestanden: - + Recursive search depth: Recursieve zoekdiepte: - + Playback Afspelen - + Continue playback on startup Verdergaan met afspelen bij opstarten - + Determine file type by content Bepaal bestandstype op basis van inhoud - + Directory Scanning Options Opties voor het scannen van mappen - + + Group format: + + + + Restrict files to: Gebruikte bestandsformaten: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: Voeg bestanden van het commando prompt toe aan de afspeellijst: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain mode: Replay Gain modus: - + Preamp: Voorversterking: - - + + dB - + Default gain: Standaard verhoging: - + Use peak info to prevent clipping Gebruik piek info om stotteren te voorkomen - + Buffer size: Buffer-grootte: - + ms - + 16-bit output 16bit uitvoer @@ -513,73 +537,73 @@ Connectiviteit - + Proxy - + Enable proxy usage Gebruik proxy - + Proxy host name: Proxy host naam: - + Proxy port: Proxy poort: - + Use authentication with proxy Gebruik authenticatie bij proxy - + Proxy user name: Proxy gebruikersnaam: - + Proxy password: Proxy wachtwoord: - + Visualization Visualisatie - + Effects Effecten - + General Algemeen - + Audio - + Use software volume control Gebruik software volume - + Convert underscores to blanks Zet lage strepen om in spaties - + Convert %20 to blanks Zet %20 om in spaties diff --git a/src/qmmpui/translations/libqmmpui_pl_PL.ts b/src/qmmpui/translations/libqmmpui_pl_PL.ts index 8ef40f8be..d093f820d 100644 --- a/src/qmmpui/translations/libqmmpui_pl_PL.ts +++ b/src/qmmpui/translations/libqmmpui_pl_PL.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Opis - + Filename Nazwa pliku - + + Artist Artysta - + + Album Album @@ -136,192 +138,208 @@ Wyłączone - + Transports Transporty - + Decoders Dekodery - + Engines Silniki - + Output Wyjście - + File Dialogs Okno dialogowe - + User Interfaces Interfejs użytkownika - + Title Tytuł - + Track number Numer utworu - + Two-digit track number Dwuznakowy numer utworu - + + Disc number Numer albumu - + + Condition Warunek - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> <Automatyczne> - + Brazilian Portuguese Brazylijski Portugalski - + Chinese Simplified Chiński Uproszczony - + Chinese Traditional Chiński Tradycyjny - + Czech Czeski - + Dutch Holenderski - + English Angielski - + French Francuski - + German Niemiecki - + Hebrew Hebrajski - + Hungarian Węgierski - + Italian Włoski - + Japanese Japoński - + Kazakh Kazaski - + Lithuanian Litewski - + Polish Polski - + Russian Rosyjski - + Slovak Słowacki - + Spanish Hiszpański - + Turkish Turecki - + Ukrainian Ukraiński - + + Genre Gatunek - + + Composer Kompozytor - + File name Nazwa pliku - + File path Lokalizacja - + + Year Rok - + + Comment Komentarz @@ -331,32 +349,33 @@ Ustawienia Qmmp - + + ... ... - + Metadata Metadane - + Load metadata from files Załaduj metadane z pliku - + Title format: Format tytułu: - + Preferences Ustawienia - + Information Informacje @@ -376,7 +395,7 @@ Zaawansowane - + 16-bit output 16-bitowe odtwarzanie @@ -386,200 +405,205 @@ Sieć - + Visualization Wizualizacje - + Effects Efekty - + General Ogólne - + Audio Dźwięk - + + Group format: + + + + Directory Scanning Options Opcje skanowania katalogów - + Restrict files to: Ogranicz pliki do: - + Miscellaneous Różne - + Auto-save playlist when modified Automatyczny zapis listy odtwarzania przy modyfikacji - + Look and Feel Wygląd i zachowanie - + Language: Język: - + Add files from command line to this playlist: Dodaj pliki z linii poleceń do listy odtwarzania: - + URL Dialog Okno dialogowe URL - + Auto-paste URL from clipboard Automatycznie wklejaj URL ze schowka - + Replay Gain - + 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" - + Buffer size: Rozmiar bufora: - + ms ms - + Use software volume control Użyj programowej regulacji głośności - + Cover Image Retrieve Pobieranie okładek - + Use separate image files Użyj oddzielnych obrazków - + Include files: Użyj plików: - - + + Exclude files: Wyłącz pliki: - + Recursive search depth: Głębokość rekursywnego przeszukiwania: - + Playback Odtwarzanie - + Continue playback on startup Wznów odtwarzanie po uruchomieniu programu - + Determine file type by content Określ typ pliku po zawartości - + 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: - + Convert underscores to blanks Konwertuj podkreślenia na spacje - + Convert %20 to blanks Konwertuj sekwencje %20 na spacje diff --git a/src/qmmpui/translations/libqmmpui_pt_BR.ts b/src/qmmpui/translations/libqmmpui_pt_BR.ts index e66dd7f5e..db623839a 100644 --- a/src/qmmpui/translations/libqmmpui_pt_BR.ts +++ b/src/qmmpui/translations/libqmmpui_pt_BR.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Descrição - + Filename Nome do Arquivo - + + Artist Artista - + + Album Álbum @@ -136,192 +138,208 @@ - + Transports - + Decoders - + Engines - + Output - + File Dialogs - + User Interfaces - + Title Título - + Track number - + Two-digit track number - + + Disc number - + + Condition - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre Gênero - + + Composer - + File name - + File path - + + Year Ano - + + Comment Comentário @@ -331,32 +349,33 @@ Configurações - + + ... ... - + Metadata MetaData - + Load metadata from files Carregar arquivo MetaData - + Title format: Tipo de Formato: - + Preferences Preferências - + Information Informações @@ -376,7 +395,7 @@ Avançado - + 16-bit output @@ -386,200 +405,205 @@ - + Visualization - + Effects - + General - + Audio - + + Group format: + + + + Directory Scanning Options - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control - + Cover Image Retrieve - + Use separate image files - + Include files: - - + + Exclude files: - + Recursive search depth: - + Playback - + Continue playback on startup - + Determine file type by content - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: - + Convert underscores to blanks - + Convert %20 to blanks diff --git a/src/qmmpui/translations/libqmmpui_ru.ts b/src/qmmpui/translations/libqmmpui_ru.ts index b37c855c5..92bf55c29 100644 --- a/src/qmmpui/translations/libqmmpui_ru.ts +++ b/src/qmmpui/translations/libqmmpui_ru.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Описание - + Filename Имя файла - + + Artist Исполнитель - + + Album Альбом @@ -136,192 +138,208 @@ Отключено - + Transports Транспорты - + Decoders Декодеры - + Engines Внешние проигрыватели - + Output Вывод - + File Dialogs Файловые диалоги - + User Interfaces Пользовательские интерфейсы - + Title Название - + Track number Номер трека - + Two-digit track number 2-x разрядный номер трека - + + Disc number Номер диска - + + Condition Условие - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> <aвтоопределение> - + Brazilian Portuguese бразильский португальский - + Chinese Simplified китайский упрощённый - + Chinese Traditional китайский традиционный - + Czech чешский - + Dutch голландский - + English английский - + French французский - + German немецкий - + Hebrew иврит - + Hungarian венгерский - + Italian итальянский - + Japanese японский - + Kazakh казахский - + Lithuanian литовский - + Polish польский - + Russian русский - + Slovak словацкий - + Spanish испанский - + Turkish турецкий - + Ukrainian украинский - + + Genre Жанр - + + Composer Композитор - + File name Имя файла - + File path Путь к файлу - + + Year Год - + + Comment Комментарий @@ -331,32 +349,33 @@ Настройки Qmmp - + + ... ... - + Metadata Метаданные - + Load metadata from files Считывать метаданные из файлов - + Title format: Формат названия: - + Preferences Настройки - + Information Информация @@ -376,7 +395,7 @@ Дополнительно - + 16-bit output 16-битный вывод @@ -386,200 +405,205 @@ Сеть - + Visualization Визуализация - + Effects Эффекты - + General Общие - + Audio Аудио - + + Group format: + + + + Directory Scanning Options Опции сканирования директорий - + Restrict files to: Ограничить выбор файлов до: - + Miscellaneous Разное - + Auto-save playlist when modified Автоматически сохранять список после изменения - + Look and Feel Параметры интерфейса - + Language: Язык: - + Add files from command line to this playlist: Добавлять файлы из командной строки в этот список: - + URL Dialog URL-диалог - + Auto-paste URL from clipboard Автоматически вставлять URL из буфера обмена - + Replay Gain Выравнивание громкости (Replay Gain) - + Replay Gain mode: Режим Replay Gain: - + Preamp: Предусиление: - - + + dB дБ - + Default gain: Усиление по умолчанию: - + Use peak info to prevent clipping Использовать пиковое значение для предотвращения срезания - + Buffer size: Размер буфера: - + ms мс - + Use software volume control Использовать программную регулировку громкости - + Cover Image Retrieve Поиск обложки альбома - + Use separate image files Использовать отдельные файлы с изображениями - + Include files: Включить файлы: - - + + Exclude files: Исключить файлы: - + Recursive search depth: Глубина рекурсивного поиска: - + Playback Воспроизведение - + Continue playback on startup Продолжить воспроизведение после запуска - + Determine file type by content Определять тип файла по содержимому - + Proxy Прокси - + Enable proxy usage Использовать прокси - + Proxy host name: Прокси сервер: - + Proxy port: Прокси порт: - + Use authentication with proxy Использовать авторизацию на прокси - + Proxy user name: Имя пользователя прокси: - + Proxy password: Пароль прокси: - + Convert underscores to blanks Преобразовывать подчёркивание в пробел - + Convert %20 to blanks Преобразовывать %20 в пробел diff --git a/src/qmmpui/translations/libqmmpui_sk.ts b/src/qmmpui/translations/libqmmpui_sk.ts index 115d6fd2d..5407ef458 100644 --- a/src/qmmpui/translations/libqmmpui_sk.ts +++ b/src/qmmpui/translations/libqmmpui_sk.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Popis - + Filename Názov súboru - + + Artist Interprét - + + Album Album @@ -136,192 +138,208 @@ Zakázané - + Transports Protokoly - + Decoders Dekodéry - + Engines Prehrávače - + Output - + File Dialogs - + User Interfaces - + Title Názov - + Track number Číslo skladby - + Two-digit track number Dvojmiestne číslo skladby - + + Disc number Číslo disku - + + Condition Stav - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Composer Skladateľ - + File name Názov súboru - + File path Cesta k súboru - + + Genre Žáner - + + Year Rok - + + Comment Poznámka @@ -346,164 +364,170 @@ Pokročilé - + Replay Gain Zisk pri prehrávaní - + + ... ... - + Metadata Metadáta - + Load metadata from files Čítať metadáta zo súborov - + Title format: Formát titulku: - + Preferences Nastavenia - + Information Informácie - + Cover Image Retrieve Získať obrázok obalu - + Use separate image files Používať samostatné súbory obrázkov - + Include files: Zahrnúť súbory: - - + + Exclude files: Vynechať súbory: - + Recursive search depth: Hĺbka rekurzívneho hľadania: - + Playback Prehrávanie - + Continue playback on startup Pri štarte pokračovať v prehrávaní - + Determine file type by content - + Directory Scanning Options - + + Group format: + + + + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain mode: Režim úpravy zisku pri prehrávaní: - + Preamp: Predzosilnenie: - - + + dB dB - + Default gain: Východzý zisk: - + Use peak info to prevent clipping Použiť informáciu o vrchole k zabráneniu orezu - + Buffer size: Veľkosť bufferu: - + ms ms - + 16-bit output 16bitový výstup @@ -513,73 +537,73 @@ Pripojenie k sieti - + Proxy Proxy - + Enable proxy usage Povoliť používanie proxy - + Proxy host name: Adresa proxy: - + Proxy port: Port proxy: - + Use authentication with proxy Použiť autentifikáciu s proxy - + Proxy user name: Proxy použivateľské meno: - + Proxy password: Proxy heslo: - + Visualization Vizualizácie - + Effects Efekty - + General Všeobecné - + Audio Zvuk - + Use software volume control Používať softwarové ovládanie hlasitosti - + Convert underscores to blanks Previesť podčiarknutia na medzery - + Convert %20 to blanks Previesť %20 na mdezery diff --git a/src/qmmpui/translations/libqmmpui_tr.ts b/src/qmmpui/translations/libqmmpui_tr.ts index dc85c58e3..81297f1ea 100644 --- a/src/qmmpui/translations/libqmmpui_tr.ts +++ b/src/qmmpui/translations/libqmmpui_tr.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Açıklama - + Filename Dosya adı - + + Artist Sanatçı - + + Album Albüm @@ -136,192 +138,208 @@ - + Transports - + Decoders - + Engines - + Output - + File Dialogs - + User Interfaces - + Title Başlık - + Track number - + Two-digit track number - + + Disc number - + + Condition - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre Tarz - + + Composer - + File name - + File path - + + Year Yıl - + + Comment Yorum @@ -331,32 +349,33 @@ Qmmp Ayarları - + + ... ... - + Metadata Veri bilgisi - + Load metadata from files Veri bilgisini dosyadan yükle - + Title format: Başlık formatı: - + Preferences Tercihler - + Information Bilgi @@ -376,7 +395,7 @@ Gelişmiş - + 16-bit output @@ -386,200 +405,205 @@ Bağlanırlık - + Visualization Görsellik - + Effects Efektler - + General Genel - + Audio Ses - + + Group format: + + + + Directory Scanning Options - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control Yazılımsal ses kontrolünü kullan - + Cover Image Retrieve - + Use separate image files - + Include files: - - + + Exclude files: - + Recursive search depth: - + Playback - + Continue playback on startup - + Determine file type by content - + 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ı: - + Convert underscores to blanks Alt çizgileri boşluğa çevir - + Convert %20 to blanks %20 yi boşluğa çevir diff --git a/src/qmmpui/translations/libqmmpui_uk_UA.ts b/src/qmmpui/translations/libqmmpui_uk_UA.ts index f2898bd1f..7fb29c1ef 100644 --- a/src/qmmpui/translations/libqmmpui_uk_UA.ts +++ b/src/qmmpui/translations/libqmmpui_uk_UA.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description Пояснення - + Filename Ім'я файлу - + + Artist Виконавець - + + Album Альбом @@ -136,192 +138,208 @@ Вимкнено - + Transports Транспорти - + Decoders Декодери - + Engines Зовнішні програвачі - + Output Вивід - + File Dialogs Файлові діалоги - + User Interfaces Інтерфейси користувача - + Title Назва - + Track number Номер треку - + Two-digit track number 2- розрядний номер трека - + + Disc number Номер диску - + + Condition Умова - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> <Автоматично> - + Brazilian Portuguese Бразильська португальська - + Chinese Simplified Китайська спрощена - + Chinese Traditional Китайська традиційна - + Czech Чеська - + Dutch Голландська - + English Англійська - + French Французька - + German Німецька - + Hebrew Іврит - + Hungarian Угорська - + Italian Італійська - + Japanese Японська - + Kazakh Казахська - + Lithuanian Литовська - + Polish Польська - + Russian Російська - + Slovak Словацька - + Spanish Іспанська - + Turkish Турецька - + Ukrainian Українська - + + Genre Жанр - + + Composer Композитор - + File name Ім'я файлу - + File path Шлях файлу - + + Year Рік - + + Comment Коментар @@ -331,32 +349,33 @@ Налаштування Qmmp - + + ... ... - + Metadata Метадані - + Load metadata from files Зчитувати метадані з файлів - + Title format: Формат назви: - + Preferences Налаштування - + Information Інформація @@ -376,7 +395,7 @@ Додатково - + 16-bit output 16-бітний вивід @@ -386,200 +405,205 @@ Мережа - + Visualization Візуалізація - + Effects Ефекти - + General Загальне - + Audio Звук - + + Group format: + + + + Directory Scanning Options Опції сканування тек - + Restrict files to: Обмежити вибір файлів до: - + Miscellaneous Різне - + Auto-save playlist when modified Автозбереження переліку після зміни - + Look and Feel Параметри інтерфейсу - + Language: Мова: - + Add files from command line to this playlist: Додавати файли з командного рядка в цей список: - + URL Dialog URL-діалог - + Auto-paste URL from clipboard Автоматично додавати URL з буферу обміну - + Replay Gain Нормалізація гучності - + Replay Gain mode: Режим нормалізації гучності: - + Preamp: Преамплітуда: - - + + dB - + Default gain: Нормалізація за умовчанням: - + Use peak info to prevent clipping Використовувати інформацію піків для запобігання відсікання - + Buffer size: Розмір буферу: - + ms мс - + Use software volume control Використовувати програмний контроль гучності - + Cover Image Retrieve Пошук обладинки альбома - + Use separate image files Використовувати окремі файли зображень - + Include files: Включити файли: - - + + Exclude files: Виключити файли: - + Recursive search depth: Глибина рекурсивного пошуку: - + Playback Відтворення - + Continue playback on startup Продовжити відтворення при запуску - + Determine file type by content Визначати тип файлу за вмістом - + Proxy Проксі - + Enable proxy usage Використосувати проксі - + Proxy host name: Сервер проксі: - + Proxy port: Порт проксі: - + Use authentication with proxy Використовувати авторизацію на проксі - + Proxy user name: Ім'я користвача проксі: - + Proxy password: Пароль проксі: - + Convert underscores to blanks Конвертувати підкреслювання в пробіл - + Convert %20 to blanks Конвертувати %20 в пробіл diff --git a/src/qmmpui/translations/libqmmpui_zh_CN.ts b/src/qmmpui/translations/libqmmpui_zh_CN.ts index f42fc01b1..01cec5e1e 100644 --- a/src/qmmpui/translations/libqmmpui_zh_CN.ts +++ b/src/qmmpui/translations/libqmmpui_zh_CN.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description 描述 - + Filename 文件名 - + + Artist 艺术家 - + + Album 专辑 @@ -136,192 +138,208 @@ - + Transports - + Decoders - + Engines - + Output - + File Dialogs - + User Interfaces - + Title 标题 - + Track number 音轨编号 - + Two-digit track number 两位数音轨编号 - + + Disc number 光盘编号 - + + Condition 条件 - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre 流派 - + + Composer 作曲 - + File name 文件名 - + File path 文件路径 - + + Year 年代 - + + Comment 备注 @@ -331,32 +349,33 @@ Qmmp 设置 - + + ... ... - + Metadata 元数据 - + Load metadata from files 从文件载入元数据 - + Title format: 标题格式: - + Preferences 参数设置 - + Information 信息 @@ -376,7 +395,7 @@ 高级 - + 16-bit output @@ -386,200 +405,205 @@ 连接 - + Visualization 可视化 - + Effects 特效 - + General 常规 - + Audio 音频 - + + Group format: + + + + Directory Scanning Options - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control 使用软设备音量控制 - + Cover Image Retrieve - + Use separate image files - + Include files: - - + + Exclude files: - + Recursive search depth: - + Playback - + Continue playback on startup - + Determine file type by content - + Proxy 代理 - + Enable proxy usage 启用代理 - + Proxy host name: 主机名: - + Proxy port: 端口: - + Use authentication with proxy 需要身份验证 - + Proxy user name: 用户名: - + Proxy password: 密码: - + Convert underscores to blanks 转换下划线为空格 - + Convert %20 to blanks 转换 %20 为空格 diff --git a/src/qmmpui/translations/libqmmpui_zh_TW.ts b/src/qmmpui/translations/libqmmpui_zh_TW.ts index 5ebb5920f..78d55e252 100644 --- a/src/qmmpui/translations/libqmmpui_zh_TW.ts +++ b/src/qmmpui/translations/libqmmpui_zh_TW.ts @@ -105,23 +105,25 @@ ConfigDialog - + Description 說明 - + Filename 檔名 - + + Artist 藝術家 - + + Album 專輯 @@ -136,192 +138,208 @@ - + Transports - + Decoders - + Engines - + Output - + File Dialogs - + User Interfaces - + Title 標題 - + Track number 音軌編號 - + Two-digit track number 兩位數音軌編號 - + + Disc number 光槃編號 - + + Condition 條件 - + + Artist/Album + + + + + Artist/Year/Album + + + + <Autodetect> - + Brazilian Portuguese - + Chinese Simplified - + Chinese Traditional - + Czech - + Dutch - + English - + French - + German - + Hebrew - + Hungarian - + Italian - + Japanese - + Kazakh - + Lithuanian - + Polish - + Russian - + Slovak - + Spanish - + Turkish - + Ukrainian - + + Genre 流派 - + + Composer 作曲 - + File name 文件名 - + File path 文件路徑 - + + Year 年代 - + + Comment 備註 @@ -331,32 +349,33 @@ Qmmp 設定 - + + ... ... - + Metadata 元資料 - + Load metadata from files 從檔案載入元資料 - + Title format: 標題格式: - + Preferences 引數設定 - + Information 資訊 @@ -376,7 +395,7 @@ 進階 - + 16-bit output @@ -386,200 +405,205 @@ 連線 - + Visualization 可視化 - + Effects 特效 - + General 常規 - + Audio 聲訊 - + + Group format: + + + + Directory Scanning Options - + Restrict files to: - + Miscellaneous - + Auto-save playlist when modified - + Look and Feel - + Language: - + Add files from command line to this playlist: - + URL Dialog - + Auto-paste URL from clipboard - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Buffer size: - + ms - + Use software volume control 使用軟裝置音量控制 - + Cover Image Retrieve - + Use separate image files - + Include files: - - + + Exclude files: - + Recursive search depth: - + Playback - + Continue playback on startup - + Determine file type by content - + Proxy 代理 - + Enable proxy usage 啟用代理 - + Proxy host name: 主機名: - + Proxy port: 通訊埠: - + Use authentication with proxy 需要身份驗證 - + Proxy user name: 用戶名: - + Proxy password: 密碼: - + Convert underscores to blanks 轉換底線為空格 - + Convert %20 to blanks 轉換 %20 為空格 -- cgit v1.2.3-13-gbd6f