From 1dcb81fd3bfbf35edcec648f909443677773bfaa Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Fri, 5 Feb 2010 12:57:33 +0000 Subject: added null output plugin git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1550 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Output/CMakeLists.txt | 5 + src/plugins/Output/Output.pro | 1 + src/plugins/Output/null/CMakeLists.txt | 53 +++++++ src/plugins/Output/null/null.pro | 42 ++++++ src/plugins/Output/null/outputnull.cpp | 70 ++++++++++ src/plugins/Output/null/outputnull.h | 50 +++++++ src/plugins/Output/null/outputnullfactory.cpp | 67 +++++++++ src/plugins/Output/null/outputnullfactory.h | 49 +++++++ .../Output/null/translations/null_plugin_cs.ts | 27 ++++ .../Output/null/translations/null_plugin_de.ts | 27 ++++ .../Output/null/translations/null_plugin_it.ts | 27 ++++ .../Output/null/translations/null_plugin_lt.ts | 27 ++++ .../Output/null/translations/null_plugin_pl.ts | 27 ++++ .../Output/null/translations/null_plugin_ru.ts | 27 ++++ .../Output/null/translations/null_plugin_tr.ts | 27 ++++ .../Output/null/translations/null_plugin_uk_UA.ts | 27 ++++ .../Output/null/translations/null_plugin_zh_CN.ts | 27 ++++ .../Output/null/translations/null_plugin_zh_TW.ts | 27 ++++ .../Output/null/translations/translations.qrc | 15 ++ src/qmmp/output.cpp | 1 - src/qmmp/output.h | 1 - src/ui/forms/configdialog.ui | 11 +- src/ui/translations/qmmp_cs.ts | 154 ++++++++++----------- src/ui/translations/qmmp_de.ts | 154 ++++++++++----------- src/ui/translations/qmmp_it.ts | 154 ++++++++++----------- src/ui/translations/qmmp_lt.ts | 154 ++++++++++----------- src/ui/translations/qmmp_pl_PL.ts | 154 ++++++++++----------- src/ui/translations/qmmp_pt_BR.ts | 154 ++++++++++----------- src/ui/translations/qmmp_ru.ts | 154 ++++++++++----------- src/ui/translations/qmmp_tr.ts | 154 ++++++++++----------- src/ui/translations/qmmp_uk_UA.ts | 154 ++++++++++----------- src/ui/translations/qmmp_zh_CN.ts | 154 ++++++++++----------- src/ui/translations/qmmp_zh_TW.ts | 154 ++++++++++----------- 33 files changed, 1479 insertions(+), 850 deletions(-) create mode 100644 src/plugins/Output/null/CMakeLists.txt create mode 100644 src/plugins/Output/null/null.pro create mode 100644 src/plugins/Output/null/outputnull.cpp create mode 100644 src/plugins/Output/null/outputnull.h create mode 100644 src/plugins/Output/null/outputnullfactory.cpp create mode 100644 src/plugins/Output/null/outputnullfactory.h create mode 100644 src/plugins/Output/null/translations/null_plugin_cs.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_de.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_it.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_lt.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_pl.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_ru.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_tr.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_uk_UA.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_zh_CN.ts create mode 100644 src/plugins/Output/null/translations/null_plugin_zh_TW.ts create mode 100644 src/plugins/Output/null/translations/translations.qrc (limited to 'src') diff --git a/src/plugins/Output/CMakeLists.txt b/src/plugins/Output/CMakeLists.txt index bf04f3b47..de01f25e6 100644 --- a/src/plugins/Output/CMakeLists.txt +++ b/src/plugins/Output/CMakeLists.txt @@ -2,6 +2,7 @@ SET(USE_ALSA TRUE CACHE BOOL "enable/disable alsa plugin") SET(USE_JACK TRUE CACHE BOOL "enable/disable jack plugin") SET(USE_OSS TRUE CACHE BOOL "enable/disable oss plugin") SET(USE_PULSE TRUE CACHE BOOL "enable/disable pulse audio plugin") +SET(USE_NULL TRUE CACHE BOOL "enable/disable null output plugin") SET(USE_WAVEOUT TRUE CACHE BOOL "enable/disable Win32 waveout plugin") IF(USE_ALSA) @@ -20,6 +21,10 @@ IF(USE_PULSE) add_subdirectory(pulseaudio) ENDIF(USE_PULSE) +IF(USE_NULL) +add_subdirectory(null) +ENDIF(USE_NULL) + IF(USE_WAVEOUT) add_subdirectory(waveout) ENDIF(USE_WAVEOUT) diff --git a/src/plugins/Output/Output.pro b/src/plugins/Output/Output.pro index 95a9baf4d..47ade3786 100644 --- a/src/plugins/Output/Output.pro +++ b/src/plugins/Output/Output.pro @@ -2,6 +2,7 @@ include(../../../qmmp.pri) CONFIG += release warn_on TEMPLATE = subdirs +SUBDIRS += null win32:SUBDIRS += waveout unix{ contains(CONFIG, JACK_PLUGIN){ diff --git a/src/plugins/Output/null/CMakeLists.txt b/src/plugins/Output/null/CMakeLists.txt new file mode 100644 index 000000000..80ade1b8d --- /dev/null +++ b/src/plugins/Output/null/CMakeLists.txt @@ -0,0 +1,53 @@ +project(libnull) + +cmake_minimum_required(VERSION 2.4.7) + +if(COMMAND cmake_policy) +cmake_policy(SET CMP0003 NEW) +endif(COMMAND cmake_policy) + +# qt plugin +ADD_DEFINITIONS( -Wall ) +ADD_DEFINITIONS(${QT_DEFINITIONS}) +ADD_DEFINITIONS(-DQT_PLUGIN) +ADD_DEFINITIONS(-DQT_NO_DEBUG) +ADD_DEFINITIONS(-DQT_SHARED) +ADD_DEFINITIONS(-DQT_THREAD) + +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +SET(QT_INCLUDES + ${QT_INCLUDES} + ${CMAKE_CURRENT_SOURCE_DIR}/../../../ +) + +# libqmmp +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) +link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) + +SET(libnull_SRCS + outputnull.cpp + outputnullfactory.cpp +) + +SET(libnull_MOC_HDRS + outputnull.h + outputnullfactory.h +) + +SET(libnull_RCCS translations/translations.qrc) + +QT4_ADD_RESOURCES(libnull_RCC_SRCS ${libnull_RCCS}) + +QT4_WRAP_CPP(libnull_MOC_SRCS ${libnull_MOC_HDRS}) + + +# Don't forget to include output directory, otherwise +# the UI file won't be wrapped! +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + + +ADD_LIBRARY(null MODULE ${libnull_SRCS} ${libnull_MOC_SRCS} ${libnull_UIS_H} ${libnull_RCC_SRCS}) +add_dependencies(null qmmp) +target_link_libraries(null ${QT_LIBRARIES} -lqmmp) +install(TARGETS null DESTINATION ${LIB_DIR}/qmmp/Output) diff --git a/src/plugins/Output/null/null.pro b/src/plugins/Output/null/null.pro new file mode 100644 index 000000000..08675e6fb --- /dev/null +++ b/src/plugins/Output/null/null.pro @@ -0,0 +1,42 @@ +include(../../plugins.pri) + +HEADERS += outputnullfactory.h \ + outputnull.h + +SOURCES += outputnullfactory.cpp \ + outputnull.cpp + + +TARGET=$$PLUGINS_PREFIX/Output/null +QMAKE_CLEAN =$$PLUGINS_PREFIX/Output/libnull.so + +INCLUDEPATH += ../../../ +QMAKE_LIBDIR += ../../../../lib + +CONFIG += release \ +warn_on \ +thread \ +plugin + +TEMPLATE = lib +LIBS += -lqmmp + + +TRANSLATIONS = translations/null_plugin_cs.ts \ + translations/null_plugin_de.ts \ + translations/null_plugin_zh_CN.ts \ + translations/null_plugin_zh_TW.ts \ + translations/null_plugin_ru.ts \ + translations/null_plugin_pl.ts \ + translations/null_plugin_uk_UA.ts \ + translations/null_plugin_it.ts \ + translations/null_plugin_tr.ts \ + translations/null_plugin_lt.ts +RESOURCES = translations/translations.qrc + +isEmpty (LIB_DIR){ +LIB_DIR = /lib +} + +target.path = $$LIB_DIR/qmmp/Output +INSTALLS += target diff --git a/src/plugins/Output/null/outputnull.cpp b/src/plugins/Output/null/outputnull.cpp new file mode 100644 index 000000000..796ba8c5b --- /dev/null +++ b/src/plugins/Output/null/outputnull.cpp @@ -0,0 +1,70 @@ +/*************************************************************************** + * Copyright (C) 2010 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 "outputnull.h" + +#define MAX_SIZE 50000 + +OutputNull::OutputNull(QObject * parent) : Output(parent) +{ + m_bytes_per_second = 0; +} + +OutputNull::~OutputNull() +{} + +void OutputNull::configure(quint32 freq, int chan, Qmmp::AudioFormat format) +{ + switch (format) + { + case Qmmp::PCM_S8: + m_bytes_per_second = freq * chan; + break; + case Qmmp::PCM_S24LE: + case Qmmp::PCM_S32LE: + m_bytes_per_second = freq * chan * 4; + break; + case Qmmp::PCM_S16LE: + default: + m_bytes_per_second = freq * chan * 2; + } + Output::configure(freq, chan, format); +} + +bool OutputNull::initialize() +{ + return TRUE; +} + + +qint64 OutputNull::latency() +{ + return 0; +} + +qint64 OutputNull::writeAudio(unsigned char *data, qint64 maxSize) +{ + Q_UNUSED(data); + usleep(maxSize * 1000000 / m_bytes_per_second); + return maxSize; +} + +void OutputNull::flush() +{} diff --git a/src/plugins/Output/null/outputnull.h b/src/plugins/Output/null/outputnull.h new file mode 100644 index 000000000..32b406271 --- /dev/null +++ b/src/plugins/Output/null/outputnull.h @@ -0,0 +1,50 @@ +/*************************************************************************** + * Copyright (C) 2010 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 OUTPUTNULL_H +#define OUTPUTNULL_H + +#include +#include + +/** + @author Ilya Kotov +*/ +class OutputNull : public Output +{ + Q_OBJECT +public: + OutputNull(QObject * parent = 0); + ~OutputNull(); + + bool initialize(); + void configure(quint32, int, Qmmp::AudioFormat format); + qint64 latency(); + + +private: + //output api + qint64 writeAudio(unsigned char *data, qint64 maxSize); + void flush(); + qint64 m_bytes_per_second; +}; + + +#endif // OutputNull_H diff --git a/src/plugins/Output/null/outputnullfactory.cpp b/src/plugins/Output/null/outputnullfactory.cpp new file mode 100644 index 000000000..c55a6bfa3 --- /dev/null +++ b/src/plugins/Output/null/outputnullfactory.cpp @@ -0,0 +1,67 @@ +/*************************************************************************** + * Copyright (C) 2010 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 +#include +#include "outputnull.h" +#include "outputnullfactory.h" + + +const OutputProperties OutputNullFactory::properties() const +{ + OutputProperties properties; + properties.name = tr("Null Plugin"); + properties.hasAbout = TRUE; + properties.hasSettings = FALSE; + properties.shortName = "null"; + return properties; +} + +Output* OutputNullFactory::create(QObject* parent) +{ + return new OutputNull(parent); +} + +VolumeControl *OutputNullFactory::createVolumeControl(QObject *) +{ + return 0; +} + +void OutputNullFactory::showSettings(QWidget* parent) +{ + Q_UNUSED(parent); +} + +void OutputNullFactory::showAbout(QWidget *parent) +{ + QMessageBox::about (parent, tr("About Null Output Plugin"), + tr("Qmmp Null Output Plugin")+"\n"+ + tr("Writen by: Ilya Kotov ")); +} + +QTranslator *OutputNullFactory::createTranslator(QObject *parent) +{ + QTranslator *translator = new QTranslator(parent); + QString locale = Qmmp::systemLanguageID(); + translator->load(QString(":/null_plugin_") + locale); + return translator; +} + +Q_EXPORT_PLUGIN2(null, OutputNullFactory) diff --git a/src/plugins/Output/null/outputnullfactory.h b/src/plugins/Output/null/outputnullfactory.h new file mode 100644 index 000000000..566d299dd --- /dev/null +++ b/src/plugins/Output/null/outputnullfactory.h @@ -0,0 +1,49 @@ +/*************************************************************************** + * Copyright (C) 2010 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 OUTPUTNULLFACTORY_H +#define OUTPUTNULLFACTORY_H + + +#include +#include +#include +#include + +#include +#include + + +class OutputNullFactory : public QObject, + OutputFactory +{ +Q_OBJECT +Q_INTERFACES(OutputFactory); + +public: + const OutputProperties properties() const; + Output* create(QObject* parent); + VolumeControl *createVolumeControl(QObject *parent); + void showSettings(QWidget* parent); + void showAbout(QWidget *parent); + QTranslator *createTranslator(QObject *parent); + +}; + +#endif diff --git a/src/plugins/Output/null/translations/null_plugin_cs.ts b/src/plugins/Output/null/translations/null_plugin_cs.ts new file mode 100644 index 000000000..f21c30463 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_cs.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Autor: Ilja Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_de.ts b/src/plugins/Output/null/translations/null_plugin_de.ts new file mode 100644 index 000000000..6c83323f0 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_de.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Autor: Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_it.ts b/src/plugins/Output/null/translations/null_plugin_it.ts new file mode 100644 index 000000000..78675ff46 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_it.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Autore: Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_lt.ts b/src/plugins/Output/null/translations/null_plugin_lt.ts new file mode 100644 index 000000000..f120da302 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_lt.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Sukūrė: Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_pl.ts b/src/plugins/Output/null/translations/null_plugin_pl.ts new file mode 100644 index 000000000..c99aa29a7 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_pl.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Autor: Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_ru.ts b/src/plugins/Output/null/translations/null_plugin_ru.ts new file mode 100644 index 000000000..7a0fef32e --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_ru.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + Модуль нулевого вывода + + + + About Null Output Plugin + О модуле нулевого вывода + + + + Qmmp Null Output Plugin + Модуль нулевого вывода для Qmmp + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Разработчик: Илья Котов <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_tr.ts b/src/plugins/Output/null/translations/null_plugin_tr.ts new file mode 100644 index 000000000..87408b3d3 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_tr.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Yazan: Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_uk_UA.ts b/src/plugins/Output/null/translations/null_plugin_uk_UA.ts new file mode 100644 index 000000000..9f49f7e2b --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_uk_UA.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Розробник: Ілля Котов <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_zh_CN.ts b/src/plugins/Output/null/translations/null_plugin_zh_CN.ts new file mode 100644 index 000000000..b237533a0 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_zh_CN.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + 作者:Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/null_plugin_zh_TW.ts b/src/plugins/Output/null/translations/null_plugin_zh_TW.ts new file mode 100644 index 000000000..84e3494a2 --- /dev/null +++ b/src/plugins/Output/null/translations/null_plugin_zh_TW.ts @@ -0,0 +1,27 @@ + + + + + OutputNullFactory + + + Null Plugin + + + + + About Null Output Plugin + + + + + Qmmp Null Output Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + 作者:Ilya Kotov <forkotov02@hotmail.ru> + + + diff --git a/src/plugins/Output/null/translations/translations.qrc b/src/plugins/Output/null/translations/translations.qrc new file mode 100644 index 000000000..64bf89bee --- /dev/null +++ b/src/plugins/Output/null/translations/translations.qrc @@ -0,0 +1,15 @@ + + + + null_plugin_it.qm + null_plugin_cs.qm + null_plugin_de.qm + null_plugin_zh_CN.qm + null_plugin_zh_TW.qm + null_plugin_ru.qm + null_plugin_uk_UA.qm + null_plugin_tr.qm + null_plugin_lt.qm + null_plugin_pl.qm + + diff --git a/src/qmmp/output.cpp b/src/qmmp/output.cpp index 6adb7ef5b..827d5bbda 100644 --- a/src/qmmp/output.cpp +++ b/src/qmmp/output.cpp @@ -325,7 +325,6 @@ void Output::status() QList *Output::m_factories = 0; QStringList Output::m_files; -QTimer *Output::m_timer = 0; void Output::checkFactories() { diff --git a/src/qmmp/output.h b/src/qmmp/output.h index 265f118a1..82e1b343e 100644 --- a/src/qmmp/output.h +++ b/src/qmmp/output.h @@ -172,7 +172,6 @@ private: //TODO use QMap instead static QList *m_factories; static QStringList m_files; - static QTimer *m_timer; }; diff --git a/src/ui/forms/configdialog.ui b/src/ui/forms/configdialog.ui index 29dccdff5..a355740a8 100644 --- a/src/ui/forms/configdialog.ui +++ b/src/ui/forms/configdialog.ui @@ -40,11 +40,17 @@ - + 0 0 + + + 170 + 0 + + 180 @@ -1138,6 +1144,9 @@ Qt::Horizontal + + QSizePolicy::Expanding + 110 diff --git a/src/ui/translations/qmmp_cs.ts b/src/ui/translations/qmmp_cs.ts index d2c0e18a3..a333a626c 100644 --- a/src/ui/translations/qmmp_cs.ts +++ b/src/ui/translations/qmmp_cs.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Popis - + Filename Soubor @@ -279,260 +279,260 @@ Nastavení Qmmp - + Appearance Vzhled - - + + Playlist Seznam skladeb - + Plugins Moduly - + Advanced Pokročilé - + Skins Témata - + Fonts Písma - + Player: Přehrávač: - + Playlist: Seznam skladeb: - - + + ??? ??? - + Replay Gain Zisk při přehrávání - + Miscellaneous Různé - - - + + + ... ... - + Use bitmap font if available Použít bitmapové písmo, je-li dostupné - + Skin Options Volby tématu - + Use skin cursors Použít kurzory z tématu - + Double size Dvojitá velikost - + Metadata Metadata - + Load metadata from files Číst ze souborů metadata - + Song Display Zobrazení skladby - + Title format: Formát titulku: - + Show song numbers Zobrazit čísla skladeb - + Show playlists Zobrazit seznam skladeb - + Show popup information Zobrazit informace ve vyskakovacím okně - + Customize Přizpůsobit - - + + Preferences Nastavení - - - + + + Information Informace - + Compatibility Kompatibilita - + Openbox compatibility Kompatibilita s Openbox - + Metacity compatibility Kompatibilita s Metacity - + Cover Image Retrieve Získat obrázek obalu - + 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 - + Output: - + 16-bit output - + Connectivity Síť - + File Dialog 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: @@ -562,38 +562,38 @@ Obecné - - + + Audio Zvuk - + Use software volume control Používat softwarové ovládání hlasitosti - + Visibility Control Viditelnost - + Hide on close Skrýt při zavření - + Start hidden Spustit skryté - + Convert underscores to blanks Převést podtržítka na mezery - + Convert %20 to blanks Převést %20 na mezery @@ -608,39 +608,39 @@ Soubory s tématy - + Add... Přidat... - + Refresh Obnovit - + Show protocol Zobrazit protokol - + Transparency Průhlednost - + Main window Hlavní okno - - - + + + 0 0 - + Equalizer Ekvalizér diff --git a/src/ui/translations/qmmp_de.ts b/src/ui/translations/qmmp_de.ts index 4e348fb8b..6b21812d1 100644 --- a/src/ui/translations/qmmp_de.ts +++ b/src/ui/translations/qmmp_de.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Beschreibung - + Filename Dateiname @@ -279,260 +279,260 @@ Einstellungen - + Appearance Erscheinungsbild - - + + Playlist Wiedergabeliste - + Plugins Module - + Advanced Erweitert - + Skins Designs - + Fonts Schriftarten - + Player: Player: - + Playlist: Wiedergabeliste: - - + + ??? ??? - + Replay Gain - + Miscellaneous Verschiedenes - - - + + + ... ... - + Use bitmap font if available Bitmap-Schriftart verwenden, falls verfügbar - + Skin Options Design-Einstellungen - + Use skin cursors Design-Mauszeiger verwenden - + Double size Doppelte Größe - + Metadata Metadaten - + Load metadata from files Metadaten aus Dateien laden - + Song Display Titelanzeige - + Title format: Titelformat: - + Show song numbers Titelnummern anzeigen - + Show playlists Wiedergabelisten anzeigen - + Show popup information - + Customize Anpassen - - + + Preferences Konfiguration - - - + + + Information Information - + Compatibility Kompatibilität - + Openbox compatibility Openbox-Kompatibilität - + Metacity compatibility Metacity-Kompatibilität - + Cover Image Retrieve - + Use separate image files - + Include files: - + Exclude files: - + Recursive search depth: - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + 16-bit output - + Connectivity Verbindung - + File Dialog 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: @@ -562,38 +562,38 @@ Sonstige - - + + Audio Audio - + Use software volume control Softwaregesteuerte Lautstärkeregelung - + Visibility Control Tray-Steuerung - + Hide on close Beim Schließen in den Systemabschnitt der Kontrollleiste minimieren - + Start hidden Minimiert starten - + Convert underscores to blanks Unterstriche in Leerzeichen umwandeln - + Convert %20 to blanks %20 in Leerzeichen umwandeln @@ -608,39 +608,39 @@ Design-Dateien - + Add... Hinzufügen... - + Refresh Aktualisieren - + Show protocol Protokoll anzeigen - + Transparency Transparenz - + Main window Hauptfenster - - - + + + 0 0 - + Equalizer Equalizer diff --git a/src/ui/translations/qmmp_it.ts b/src/ui/translations/qmmp_it.ts index 65fc2c164..71ae3fe44 100644 --- a/src/ui/translations/qmmp_it.ts +++ b/src/ui/translations/qmmp_it.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Descrizione - + Filename File @@ -279,94 +279,94 @@ Configurazione di Qmmp - + Skins Temi - + Fonts Caratteri - + Player: Player: - + Playlist: Lista brani : - - + + ??? ??? - - - + + + ... ... - + Metadata Metadati - + Load metadata from files Carica i metadati dai brani - + Song Display Mostra il brano - + Title format: Formato del titolo : - - + + Preferences Impostazioni preferite - - - + + + Information Informazioni - + Appearance Aspetto - - + + Playlist Lista dei brani - + Plugins Moduli - + Advanced Avanzato - + 16-bit output @@ -381,7 +381,7 @@ Tema non archiviato - + Connectivity Connettività @@ -401,199 +401,199 @@ Generale - + File Dialog Menu brani - - + + Audio Audio - + Replay Gain Guadagno riesecuzione - + Miscellaneous Varie - + Use bitmap font if available Usa carattere bitmap se disponibile - + Skin Options Opzioni skin - + Use skin cursors Usa cursore skin - + Double size Dimensione doppia - + Show song numbers Mostra numero brani - + Show playlists Mostra lista esecuzione brani - + Show popup information Mostra informazioni popup - + Customize Personalizza - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Utilizza il controllo volume del programma - + Visibility Control Controllo dell'aspetto - + Hide on close Nascondi alla chiusura - + Start hidden Avvia nascosto - + Compatibility Compatibilità - + Openbox compatibility Compatibilità openbox - + Metacity compatibility Compatibilità Metacity - + Cover Image Retrieve Trova immagine copertina - + 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 : - + Convert underscores to blanks Converti il carattere « _ » in spazi - + Convert %20 to blanks Converti il carattere « %20 » in spazi @@ -608,39 +608,39 @@ Aspetto - + Add... Aggiungi... - + Refresh Aggiorna - + Show protocol Motra protocollo - + Transparency Transparenza - + Main window Finestra principale - - - + + + 0 0 - + Equalizer Equalizzatore diff --git a/src/ui/translations/qmmp_lt.ts b/src/ui/translations/qmmp_lt.ts index 56440fca4..3681e0030 100644 --- a/src/ui/translations/qmmp_lt.ts +++ b/src/ui/translations/qmmp_lt.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Aprašymas - + Filename Bylos pavadinimas @@ -279,94 +279,94 @@ Qmmp nustatymai - + Skins Temos - + Fonts Šriftai - + Player: Grotuvas: - + Playlist: Gojaraštis: - - + + ??? ??? - - - + + + ... ... - + Metadata Meta duomenys - + Load metadata from files Įkelti meta duomenis iš bylų - + Song Display Dainų sąrašas - + Title format: Pavadinimo formatas: - - + + Preferences Nustatymai - - - + + + Information Informacija - + Appearance Išvaizda - - + + Playlist Grojaraštis - + Plugins Įskiepiai - + Advanced Papildomi - + 16-bit output @@ -381,7 +381,7 @@ Išskleista tema - + Connectivity Tinklas @@ -401,200 +401,200 @@ Bendri - + File Dialog Pasirinkimo langas - - + + Audio Audio - + Replay Gain Neįsivaizduoju kaip verst - + Miscellaneous Kiti - + Use bitmap font if available Naudoti bitmap šriftą, jei įmanoma - + Skin Options Temos nustatymai - + Use skin cursors Naudoti temos kursorių - + Double size Dvigubas dydis - + Show song numbers Rodyti takelių numerius - + Show playlists Rodyti grojanaščius - + Show popup information Rodyti iššokančią informaciją - + Customize Nustatyti - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Naudoti programinį garso valdymą - + Visibility Control Matomumo valdymas - + Hide on close Paslėpti išjungus - + Start hidden Įjungti paslėptą - + Compatibility Suderinamumas - + Openbox compatibility Openbox suderinamumas - + Metacity compatibility Metacity suderinamumas - + Cover Image Retrieve Parsiųsti cd viršelį - + 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: - + Convert underscores to blanks Paversti brūkšnius į tarpus - + Convert %20 to blanks Paversti %20 į tarpus @@ -609,39 +609,39 @@ Temų bylos - + Add... Pridėti... - + Refresh Atnaujinti - + Show protocol Rodyti bylos galūnę - + Transparency Permatomumas - + Main window Pagrindinis langas - - - + + + 0 - + Equalizer Glodintuvas diff --git a/src/ui/translations/qmmp_pl_PL.ts b/src/ui/translations/qmmp_pl_PL.ts index 3af85bbd5..6ec29a893 100644 --- a/src/ui/translations/qmmp_pl_PL.ts +++ b/src/ui/translations/qmmp_pl_PL.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Opis - + Filename Nazwa pliku @@ -279,94 +279,94 @@ Ustawienia Qmmp - + Skins Skóry - + Fonts Czcionki - + Player: Odtwarzacz: - + Playlist: Lista odtwarzania: - - + + ??? ??? - - - + + + ... ... - + Metadata Metadane - + Load metadata from files Załaduj metadane z pliku - + Song Display Wyświetlanie utworu - + Title format: Format tytułu: - - + + Preferences Ustawienia - - - + + + Information Informacje - + Appearance Wygląd - - + + Playlist Lista odtwarzania - + Plugins Wtyczki - + Advanced Zaawansowane - + 16-bit output @@ -381,7 +381,7 @@ Niekompresowana skórka - + Connectivity Sieć @@ -401,199 +401,199 @@ Ogólne - + File Dialog Okno dialogowe - - + + Audio Dźwięk - + Replay Gain - + Miscellaneous Zaawansowane - + Use bitmap font if available Użyj czcionki bitmapowej jeśli jest dostępna - + Skin Options Opcje skór - + Use skin cursors Użyj kursorów z motywu - + Double size Podwójny rozmiar - + Show song numbers Wyświetl numery utworów na liście odtwarzania - + Show playlists Pokaż listy odtwarzania - + Show popup information Pokaż informację popup - + Customize 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" - + Output: - + Use software volume control Użyj programowej regulacji głośności - + Visibility Control Sterowanie - + Hide on close Zminimalizuj przy zamykaniu - + Start hidden Uruchom zminimalizowany - + Compatibility Kompatybilność - + Openbox compatibility Zgodność z Openbox - + Metacity compatibility Zgodność z Metacity - + Cover Image Retrieve Pobieranie okładek - + 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: - + Convert underscores to blanks Konwertuj podkreślenia na spacje - + Convert %20 to blanks Konwertuj sekwencje %20 na spacje @@ -608,39 +608,39 @@ Pliki skór - + Add... Dodaj... - + Refresh Odśwież - + Show protocol Pokaż protokół - + Transparency Przezroczystość - + Main window Okno główne - - - + + + 0 0 - + Equalizer Equalizer diff --git a/src/ui/translations/qmmp_pt_BR.ts b/src/ui/translations/qmmp_pt_BR.ts index 5800bea19..634d4f508 100644 --- a/src/ui/translations/qmmp_pt_BR.ts +++ b/src/ui/translations/qmmp_pt_BR.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Descrição - + Filename Nome do Arquivo @@ -279,94 +279,94 @@ Configurações - + Skins Temas - + Fonts Fontes - + Player: Player - + Playlist: Lista de músicas: - - + + ??? ??? - - - + + + ... ... - + Metadata MetaData - + Load metadata from files Carregar arquivo MetaData - + Song Display Mostrar música - + Title format: Tipo de Formato: - - + + Preferences Preferências - - - + + + Information Informações - + Appearance Aparência - - + + Playlist Lista de músicas - + Plugins Plugins - + Advanced Avançado - + 16-bit output @@ -381,7 +381,7 @@ - + Connectivity @@ -401,199 +401,199 @@ - + File Dialog - - + + Audio - + Replay Gain - + Miscellaneous - + Use bitmap font if available - + Skin Options - + Use skin cursors - + Double size - + Show song numbers - + Show playlists - + Show popup information - + Customize - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control - + Visibility Control - + Hide on close - + Start hidden - + Compatibility - + Openbox compatibility - + Metacity compatibility - + Cover Image Retrieve - + 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: - + Convert underscores to blanks - + Convert %20 to blanks @@ -608,39 +608,39 @@ - + Add... - + Refresh Recarregar - + Show protocol - + Transparency - + Main window - - - + + + 0 - + Equalizer diff --git a/src/ui/translations/qmmp_ru.ts b/src/ui/translations/qmmp_ru.ts index 859b5b31e..325e721dc 100644 --- a/src/ui/translations/qmmp_ru.ts +++ b/src/ui/translations/qmmp_ru.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Описание - + Filename Имя файла @@ -279,94 +279,94 @@ Настройки Qmmp - + Skins Обложки - + Fonts Шрифты - + Player: Плеер: - + Playlist: Список: - - + + ??? ??? - - - + + + ... ... - + Metadata Метаданные - + Load metadata from files Считывать метаданные из файлов - + Song Display Список песен - + Title format: Формат названия: - - + + Preferences Настройки - - - + + + Information Информация - + Appearance Внешний вид - - + + Playlist Список - + Plugins Модули - + Advanced Дополнительно - + 16-bit output 16-битный вывод @@ -381,7 +381,7 @@ Распакованная тема - + Connectivity Сеть @@ -401,199 +401,199 @@ Общие - + File Dialog Файловый диалог - - + + Audio Аудио - + Replay Gain Выравнивание громкости (Replay Gain) - + Miscellaneous Разное - + Use bitmap font if available Использовать растровые шрифты, если возможно - + Skin Options Параметры обложки - + Use skin cursors Использовать встроенные курсоры - + Double size Двойной размер - + Show song numbers Показывать номера песен - + Show playlists Показывать списки воспроизведения - + Show popup information Показывать всплывающее окно с информацией - + Customize Настроить - + Replay Gain mode: Режим Replay Gain: - + Preamp: Предусиление: - - + + dB дБ - + Default gain: Усиление по умолчанию: - + Use peak info to prevent clipping Использовать пиковое значение для предотвращения срезания - + Output: Вывод: - + Use software volume control Использовать программную регулировку громкости - + Visibility Control Управление видимостью - + Hide on close Скрывать при закрытии - + Start hidden Запускать скрытым - + Compatibility Совместимость - + Openbox compatibility Совместимость с Openbox - + Metacity compatibility Совместимость с Metacity - + Cover Image Retrieve Поиск обложки альбома - + 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: Пароль прокси: - + Convert underscores to blanks Преобразовывать подчёркивание в пробел - + Convert %20 to blanks Преобразовывать %20 в пробел @@ -608,39 +608,39 @@ Файлы обложек - + Add... Добавить... - + Refresh Обновить - + Show protocol Показывать протокол - + Transparency Прозрачность - + Main window Главное окно - - - + + + 0 0 - + Equalizer Эквалайзер diff --git a/src/ui/translations/qmmp_tr.ts b/src/ui/translations/qmmp_tr.ts index b6a6d69da..5950eccec 100644 --- a/src/ui/translations/qmmp_tr.ts +++ b/src/ui/translations/qmmp_tr.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Açıklama - + Filename Dosya adı @@ -279,94 +279,94 @@ Qmmp Ayarları - + Skins Kabuklar - + Fonts Fontlar - + Player: Oynatıcı: - + Playlist: Çalma Listesi: - - + + ??? ??? - - - + + + ... ... - + Metadata Veri bilgisi - + Load metadata from files Veri bilgisini dosyadan yükle - + Song Display Şarkı Göstergesi - + Title format: Başlık formatı: - - + + Preferences Tercihler - - - + + + Information Bilgi - + Appearance Görünüm - - + + Playlist Çalma Listesi - + Plugins Eklentiler - + Advanced Gelişmiş - + 16-bit output @@ -381,7 +381,7 @@ Arşivlenmemiş kabuk - + Connectivity Bağlanırlık @@ -401,199 +401,199 @@ Genel - + File Dialog Dosya Diyaloğu - - + + Audio Ses - + Replay Gain - + Miscellaneous - + Use bitmap font if available - + Skin Options - + Use skin cursors - + Double size - + Show song numbers Şarkı numaralarını göster - + Show playlists - + Show popup information - + Customize - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Yazılımsal ses kontrolünü kullan - + Visibility Control Görünürlük Kontrolü - + Hide on close Kapatınca saklan - + Start hidden Gizli başlat - + Compatibility Uyumluluk - + Openbox compatibility Openbox uyumluluğu - + Metacity compatibility - + Cover Image Retrieve - + 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ı: - + Convert underscores to blanks Alt çizgileri boşluğa çevir - + Convert %20 to blanks %20 yi boşluğa çevir @@ -608,39 +608,39 @@ Kabuk dosyaları - + Add... Ekle... - + Refresh Yenile - + Show protocol Protokolü göster - + Transparency Transparanlık - + Main window Ana pencere - - - + + + 0 0 - + Equalizer Ekolayzır diff --git a/src/ui/translations/qmmp_uk_UA.ts b/src/ui/translations/qmmp_uk_UA.ts index 7f4b01686..7ba4672ce 100644 --- a/src/ui/translations/qmmp_uk_UA.ts +++ b/src/ui/translations/qmmp_uk_UA.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description Пояснення - + Filename Ім'я файлу @@ -279,94 +279,94 @@ Налаштування Qmmp - + Skins Шкурки - + Fonts Шрифти - + Player: Програвач: - + Playlist: Список: - - + + ??? ??? - - - + + + ... ... - + Metadata Метадані - + Load metadata from files Зчитувати метадані з файлів - + Song Display Список пісень - + Title format: Формат назви: - - + + Preferences Налаштування - - - + + + Information Інформація - + Appearance Зовнішній вигляд - - + + Playlist Список - + Plugins Модулі - + Advanced Додатково - + 16-bit output 16-бітний вивід @@ -381,7 +381,7 @@ Розпакована тема - + Connectivity Мережа @@ -401,199 +401,199 @@ Загальне - + File Dialog Файловий діалог - - + + Audio Звук - + Replay Gain Нормалізація гучності - + Miscellaneous Різне - + Use bitmap font if available Використовувати растрові шрифти, якщо доступні - + Skin Options Опції скіна - + Use skin cursors Використовувати курсори скіна - + Double size Подвійний розмір - + Show song numbers Відображати номера пісень - + Show playlists Показати списки - + Show popup information Показувати спливаюче вікно з інформацією - + Customize Налаштувати - + Replay Gain mode: Режим нормалізації гучності: - + Preamp: Преамплітуда: - - + + dB - + Default gain: Нормалізація за умовчанням: - + Use peak info to prevent clipping Використовувати інформацію піків для запобігання відсікання - + Output: Виведення: - + Use software volume control Використовувати програмний контроль гучності - + Visibility Control Керування видимістю - + Hide on close Ховати при закритті - + Start hidden Запускати схованим - + Compatibility Сумісність - + Openbox compatibility Сумісність з Openbox - + Metacity compatibility Сумісність з Metacity - + Cover Image Retrieve Пошук обладинки альбома - + 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: Пароль проксі: - + Convert underscores to blanks Конвертувати підкреслювання в пробіл - + Convert %20 to blanks Конвертувати %20 в пробіл @@ -608,39 +608,39 @@ Файли скінів - + Add... Додати... - + Refresh Поновити - + Show protocol Показати протокол - + Transparency Прозорість - + Main window Головне вікно - - - + + + 0 - + Equalizer Еквалайзер diff --git a/src/ui/translations/qmmp_zh_CN.ts b/src/ui/translations/qmmp_zh_CN.ts index d0235b3de..2030c6737 100644 --- a/src/ui/translations/qmmp_zh_CN.ts +++ b/src/ui/translations/qmmp_zh_CN.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description 描述 - + Filename 文件名 @@ -279,94 +279,94 @@ Qmmp 设置 - + Skins 皮肤 - + Fonts 字体 - + Player: 播放器: - + Playlist: 播放列表: - - + + ??? ??? - - - + + + ... ... - + Metadata 元数据 - + Load metadata from files 从文件载入元数据 - + Song Display 显示歌曲 - + Title format: 标题格式: - - + + Preferences 参数设置 - - - + + + Information 信息 - + Appearance 外观 - - + + Playlist 播放列表 - + Plugins 插件 - + Advanced 高级 - + 16-bit output @@ -381,7 +381,7 @@ 未压缩皮肤 - + Connectivity 连接 @@ -401,199 +401,199 @@ 常规 - + File Dialog 文件对话 - - + + Audio 音频 - + Replay Gain - + Miscellaneous - + Use bitmap font if available - + Skin Options - + Use skin cursors - + Double size - + Show song numbers 显示曲目编号 - + Show playlists - + Show popup information - + Customize - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control 使用软设备音量控制 - + Visibility Control 可见性控制 - + Hide on close 关闭时隐藏 - + Start hidden 启动时隐藏 - + Compatibility - + Openbox compatibility - + Metacity compatibility - + Cover Image Retrieve - + 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: 密码: - + Convert underscores to blanks 转换下划线为空格 - + Convert %20 to blanks 转换 %20 为空格 @@ -608,39 +608,39 @@ 皮肤文件 - + Add... 添加... - + Refresh 刷新 - + Show protocol 显示协议 - + Transparency 透明度 - + Main window 主窗口 - - - + + + 0 0 - + Equalizer 均衡器 diff --git a/src/ui/translations/qmmp_zh_TW.ts b/src/ui/translations/qmmp_zh_TW.ts index 248e7c037..0e57a3140 100644 --- a/src/ui/translations/qmmp_zh_TW.ts +++ b/src/ui/translations/qmmp_zh_TW.ts @@ -173,12 +173,12 @@ ConfigDialog - + Description 說明 - + Filename 檔名 @@ -279,94 +279,94 @@ Qmmp 設定 - + Skins 皮膚 - + Fonts 字型 - + Player: 播放器: - + Playlist: 播放清單: - - + + ??? ??? - - - + + + ... ... - + Metadata 元資料 - + Load metadata from files 從檔案載入元資料 - + Song Display 察看歌曲 - + Title format: 標題格式: - - + + Preferences 引數設定 - - - + + + Information 資訊 - + Appearance 外觀 - - + + Playlist 播放清單 - + Plugins 插件 - + Advanced 進階 - + 16-bit output @@ -381,7 +381,7 @@ 未封包皮膚 - + Connectivity 連線 @@ -401,199 +401,199 @@ 常規 - + File Dialog 檔案對話 - - + + Audio 聲訊 - + Replay Gain - + Miscellaneous - + Use bitmap font if available - + Skin Options - + Use skin cursors - + Double size - + Show song numbers 顯示曲目編號 - + Show playlists - + Show popup information - + Customize - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control 使用軟裝置音量控制 - + Visibility Control 可見性控制 - + Hide on close 關閉時隱藏 - + Start hidden 啟動時隱藏 - + Compatibility - + Openbox compatibility - + Metacity compatibility - + Cover Image Retrieve - + 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: 密碼: - + Convert underscores to blanks 轉換底線為空格 - + Convert %20 to blanks 轉換 %20 為空格 @@ -608,39 +608,39 @@ 皮膚檔案 - + Add... 添加... - + Refresh 刷新 - + Show protocol 顯示協議 - + Transparency 透明度 - + Main window 主窗口 - - - + + + 0 0 - + Equalizer 均衡器 -- cgit v1.2.3-13-gbd6f