From 4cb1b12751e486cea156c94c826c693fcf3d2f47 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 12 Jul 2011 17:45:06 +0000 Subject: added configuration dialog git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2270 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Ui/skinned/configdialog.cpp | 596 ------- src/plugins/Ui/skinned/configdialog.h | 83 - src/plugins/Ui/skinned/forms/configdialog.ui | 1576 ----------------- src/plugins/Ui/skinned/forms/hotkeyeditor.ui | 61 + src/plugins/Ui/skinned/forms/skinnedsettings.ui | 530 ++++++ src/plugins/Ui/skinned/hotkeyeditor.cpp | 80 + src/plugins/Ui/skinned/hotkeyeditor.h | 46 + src/plugins/Ui/skinned/mainwindow.cpp | 10 +- src/plugins/Ui/skinned/pluginitem.cpp | 187 -- src/plugins/Ui/skinned/pluginitem.h | 73 - src/plugins/Ui/skinned/skinned.pro | 18 +- src/plugins/Ui/skinned/skinnedsettings.cpp | 227 +++ src/plugins/Ui/skinned/skinnedsettings.h | 62 + .../Ui/skinned/translations/skinned_plugin_cs.ts | 699 +++++--- .../Ui/skinned/translations/skinned_plugin_de.ts | 691 +++++--- .../Ui/skinned/translations/skinned_plugin_es.ts | 685 +++++--- .../Ui/skinned/translations/skinned_plugin_hu.ts | 699 +++++--- .../Ui/skinned/translations/skinned_plugin_it.ts | 697 +++++--- .../Ui/skinned/translations/skinned_plugin_ja.ts | 685 +++++--- .../Ui/skinned/translations/skinned_plugin_lt.ts | 677 +++++--- .../Ui/skinned/translations/skinned_plugin_nl.ts | 699 +++++--- .../skinned/translations/skinned_plugin_pl_PL.ts | 687 +++++--- .../skinned/translations/skinned_plugin_pt_BR.ts | 723 ++++---- .../Ui/skinned/translations/skinned_plugin_ru.ts | 673 ++++--- .../Ui/skinned/translations/skinned_plugin_sk.ts | 685 +++++--- .../Ui/skinned/translations/skinned_plugin_tr.ts | 725 ++++---- .../skinned/translations/skinned_plugin_uk_UA.ts | 679 +++++--- .../skinned/translations/skinned_plugin_zh_CN.ts | 979 ++++++----- .../skinned/translations/skinned_plugin_zh_TW.ts | 983 ++++++----- src/plugins/Ui/skinned/visualmenu.cpp | 5 +- src/qmmpui/configdialog.cpp | 371 ++++ src/qmmpui/configdialog.h | 71 + src/qmmpui/detailsdialog.h | 1 - src/qmmpui/forms/configdialog.ui | 1005 +++++++++++ src/qmmpui/images/advanced.png | Bin 0 -> 1054 bytes src/qmmpui/images/images.qrc | 10 + src/qmmpui/images/logo-qmmp.png | Bin 0 -> 22844 bytes src/qmmpui/images/network.png | Bin 0 -> 1465 bytes src/qmmpui/images/playlist.png | Bin 0 -> 743 bytes src/qmmpui/images/plugins.png | Bin 0 -> 1378 bytes src/qmmpui/images/replaygain.png | Bin 0 -> 624 bytes src/qmmpui/pluginitem.cpp | 184 ++ src/qmmpui/pluginitem_p.h | 73 + src/qmmpui/qmmpui.pro | 14 +- src/qmmpui/translations/libqmmpui_cs.ts | 1509 +++++++++++++++- src/qmmpui/translations/libqmmpui_de.ts | 1640 +++++++++++++++++- src/qmmpui/translations/libqmmpui_es.ts | 1652 +++++++++++++++++- src/qmmpui/translations/libqmmpui_it.ts | 1489 +++++++++++++++- src/qmmpui/translations/libqmmpui_ja.ts | 1652 +++++++++++++++++- src/qmmpui/translations/libqmmpui_locales.qrc | 1 + src/qmmpui/translations/libqmmpui_lt.ts | 1518 +++++++++++++++- src/qmmpui/translations/libqmmpui_nl.ts | 1509 +++++++++++++++- src/qmmpui/translations/libqmmpui_pl.ts | 1548 ++++++++++++++++- src/qmmpui/translations/libqmmpui_pt_BR.ts | 700 +++++++- src/qmmpui/translations/libqmmpui_ru.ts | 1492 +++++++++++++++- src/qmmpui/translations/libqmmpui_sk.ts | 1830 ++++++++++++++++++++ src/qmmpui/translations/libqmmpui_tr.ts | 1196 ++++++++++++- src/qmmpui/translations/libqmmpui_uk_UA.ts | 1508 +++++++++++++++- src/qmmpui/translations/libqmmpui_zh_CN.ts | 1170 ++++++++++++- src/qmmpui/translations/libqmmpui_zh_TW.ts | 1168 ++++++++++++- 60 files changed, 30629 insertions(+), 7902 deletions(-) delete mode 100644 src/plugins/Ui/skinned/configdialog.cpp delete mode 100644 src/plugins/Ui/skinned/configdialog.h delete mode 100644 src/plugins/Ui/skinned/forms/configdialog.ui create mode 100644 src/plugins/Ui/skinned/forms/hotkeyeditor.ui create mode 100644 src/plugins/Ui/skinned/forms/skinnedsettings.ui create mode 100644 src/plugins/Ui/skinned/hotkeyeditor.cpp create mode 100644 src/plugins/Ui/skinned/hotkeyeditor.h delete mode 100644 src/plugins/Ui/skinned/pluginitem.cpp delete mode 100644 src/plugins/Ui/skinned/pluginitem.h create mode 100644 src/plugins/Ui/skinned/skinnedsettings.cpp create mode 100644 src/plugins/Ui/skinned/skinnedsettings.h create mode 100644 src/qmmpui/configdialog.cpp create mode 100644 src/qmmpui/configdialog.h create mode 100644 src/qmmpui/forms/configdialog.ui create mode 100644 src/qmmpui/images/advanced.png create mode 100644 src/qmmpui/images/images.qrc create mode 100644 src/qmmpui/images/logo-qmmp.png create mode 100644 src/qmmpui/images/network.png create mode 100644 src/qmmpui/images/playlist.png create mode 100644 src/qmmpui/images/plugins.png create mode 100644 src/qmmpui/images/replaygain.png create mode 100644 src/qmmpui/pluginitem.cpp create mode 100644 src/qmmpui/pluginitem_p.h create mode 100644 src/qmmpui/translations/libqmmpui_sk.ts (limited to 'src') diff --git a/src/plugins/Ui/skinned/configdialog.cpp b/src/plugins/Ui/skinned/configdialog.cpp deleted file mode 100644 index 6a531a37d..000000000 --- a/src/plugins/Ui/skinned/configdialog.cpp +++ /dev/null @@ -1,596 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2011 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "shortcutdialog.h" -#include "actionmanager.h" -#include "shortcutitem.h" -#include "popupsettings.h" -#include "skin.h" -#include "pluginitem.h" -#include "configdialog.h" -#include "skinreader.h" - -ConfigDialog::ConfigDialog (QWidget *parent) - : QDialog (parent) -{ - ui.setupUi (this); - setAttribute(Qt::WA_QuitOnClose, false); - setAttribute(Qt::WA_DeleteOnClose, false); - ui.preferencesButton->setEnabled(false); - ui.informationButton->setEnabled(false); - connect (ui.mainFontButton, SIGNAL (clicked()), SLOT (setMainFont())); - connect (ui.plFontButton, SIGNAL (clicked()), SLOT (setPlFont())); - connect (this, SIGNAL(rejected()),SLOT(saveSettings())); - connect (ui.fileDialogComboBox, SIGNAL (currentIndexChanged (int)), SLOT(updateDialogButton(int))); - connect (ui.skinInstallButton, SIGNAL (clicked()), SLOT(installSkin())); - connect (ui.skinReloadButton, SIGNAL (clicked()), SLOT(loadSkins())); - connect (ui.listWidget, SIGNAL (itemClicked (QListWidgetItem *)), this, SLOT (changeSkin())); - ui.listWidget->setIconSize (QSize (105,34)); - m_skin = Skin::instance(); - ui.replayGainModeComboBox->addItem (tr("Track"), QmmpSettings::REPLAYGAIN_TRACK); - ui.replayGainModeComboBox->addItem (tr("Album"), QmmpSettings::REPLAYGAIN_ALBUM); - ui.replayGainModeComboBox->addItem (tr("Disabled"), QmmpSettings::REPLAYGAIN_DISABLED); - readSettings(); - m_reader = new SkinReader(this); - loadSkins(); - loadPluginsInfo(); - loadShortcuts(); - loadFonts(); - createMenus(); - //setup icons - ui.skinInstallButton->setIcon(QIcon::fromTheme("list-add")); - ui.skinReloadButton->setIcon(QIcon::fromTheme("view-refresh")); - ui.popupTemplateButton->setIcon(QIcon::fromTheme("configure")); - ui.preferencesButton->setIcon(QIcon::fromTheme("configure")); - ui.informationButton->setIcon(QIcon::fromTheme("dialog-information")); - ui.fdInformationButton->setIcon(QIcon::fromTheme("dialog-information")); - ui.outputInformationButton->setIcon(QIcon::fromTheme("dialog-information")); - ui.outputPreferencesButton->setIcon(QIcon::fromTheme("configure")); -} - -ConfigDialog::~ConfigDialog() -{} - -void ConfigDialog::readSettings() -{ - QSettings settings (Qmmp::configFile(), QSettings::IniFormat); - if (MediaPlayer *player = MediaPlayer::instance()) - { - ui.formatLineEdit->setText(player->playListManager()->format()); - ui.metadataCheckBox->setChecked(player->playListManager()->useMetadata()); - ui.underscoresCheckBox->setChecked(player->playListManager()->convertUnderscore()); - ui.per20CheckBox->setChecked(player->playListManager()->convertTwenty()); - } - settings.beginGroup("Skinned"); - ui.protocolCheckBox->setChecked(settings.value ("pl_show_protocol", false).toBool()); - ui.numbersCheckBox->setChecked(settings.value ("pl_show_numbers", true).toBool()); - ui.alignCheckBox->setChecked(settings.value ("pl_align_numbers", false).toBool()); - ui.anchorCheckBox->setChecked(settings.value("pl_show_anchor", false).toBool()); - ui.playlistsCheckBox->setChecked(settings.value("pl_show_plalists", false).toBool()); - ui.popupCheckBox->setChecked(settings.value("pl_show_popup", false).toBool()); - QmmpSettings *gs = QmmpSettings::instance(); - //proxy settings - ui.enableProxyCheckBox->setChecked(gs->isProxyEnabled()); - ui.authProxyCheckBox->setChecked(gs->useProxyAuth()); - ui.hostLineEdit->setText(gs->proxy().host()); - if (gs->proxy().port(0)) - ui.portLineEdit->setText(QString::number(gs->proxy().port(0))); - ui.proxyUserLineEdit->setText(gs->proxy().userName()); - ui.proxyPasswLineEdit->setText(gs->proxy().password()); - - ui.hostLineEdit->setEnabled(ui.enableProxyCheckBox->isChecked()); - ui.portLineEdit->setEnabled(ui.enableProxyCheckBox->isChecked()); - ui.proxyUserLineEdit->setEnabled(ui.authProxyCheckBox->isChecked()); - ui.proxyPasswLineEdit->setEnabled(ui.authProxyCheckBox->isChecked()); - //transparency - ui.mwTransparencySlider->setValue(100 - settings.value("mw_opacity", 1.0).toDouble()*100); - ui.eqTransparencySlider->setValue(100 - settings.value("eq_opacity", 1.0).toDouble()*100); - ui.plTransparencySlider->setValue(100 - settings.value("pl_opacity", 1.0).toDouble()*100); - //view - ui.skinCursorsCheckBox->setChecked(settings.value("skin_cursors", false).toBool()); - m_currentSkinName = settings.value("skin_name", "default").toString(); - ui.hiddenCheckBox->setChecked(settings.value("start_hidden", false).toBool()); - ui.hideOnCloseCheckBox->setChecked(settings.value("hide_on_close", false).toBool()); - settings.endGroup(); - //resume playback - ui.continuePlaybackCheckBox->setChecked(settings.value("General/resume_on_startup", false).toBool()); - //cover options - ui.coverIncludeLineEdit->setText(gs->coverNameFilters(true).join(",")); - ui.coverExcludeLineEdit->setText(gs->coverNameFilters(false).join(",")); - ui.coverDepthSpinBox->setValue(gs->coverSearchDepth()); - ui.useCoverFilesCheckBox->setChecked(gs->useCoverFiles()); - //replay gain - ui.clippingCheckBox->setChecked(gs->replayGainPreventClipping()); - ui.replayGainModeComboBox->setCurrentIndex(ui.replayGainModeComboBox->findData(gs->replayGainMode())); - ui.preampDoubleSpinBox->setValue(gs->replayGainPreamp()); - ui.defaultGainDoubleSpinBox->setValue(gs->replayGainDefaultGain()); - //audio - ui.softVolumeCheckBox->setChecked(gs->useSoftVolume()); - ui.use16BitCheckBox->setChecked(gs->use16BitOutput()); - ui.bufferSizeSpinBox->setValue(gs->bufferSize()); -} - -void ConfigDialog::on_contentsWidget_currentItemChanged (QListWidgetItem *current, - QListWidgetItem *previous) -{ - if (!current) - current = previous; - ui.stackedWidget->setCurrentIndex (ui.contentsWidget->row (current)); - ui.hiddenCheckBox->setEnabled(UiHelper::instance()->visibilityControl()); - ui.hideOnCloseCheckBox->setEnabled(UiHelper::instance()->visibilityControl()); -} - -void ConfigDialog::changeSkin() -{ - int row = ui.listWidget->currentRow(); - QString path; - if (m_skinList.at (row).isDir()) - { - path = m_skinList.at (row).canonicalFilePath(); - m_skin->setSkin (path); - } - else if (m_skinList.at (row).isFile()) - { - m_reader->unpackSkin(m_skinList.at (row).canonicalFilePath()); - m_skin->setSkin(QDir::homePath() +"/.qmmp/cache/skin"); - } - if(ui.listWidget->currentItem()) - m_currentSkinName = ui.listWidget->currentItem()->text(); - else - m_currentSkinName.clear(); -} - -void ConfigDialog::loadSkins() -{ - m_reader->generateThumbs(); - m_skinList.clear(); - ui.listWidget->clear(); - QFileInfo fileInfo (":/default"); - QPixmap preview = Skin::getPixmap ("main", QDir (fileInfo.filePath())); - QListWidgetItem *item = new QListWidgetItem (fileInfo.fileName ()); - item->setIcon (preview); - ui.listWidget->addItem (item); - m_skinList << fileInfo; - if(item->text() == m_currentSkinName) - ui.listWidget->setCurrentItem(item); - - findSkins(QDir::homePath() +"/.qmmp/skins"); -#ifdef Q_OS_WIN32 - findSkins(qApp->applicationDirPath()+"/skins"); -#else - findSkins(qApp->applicationDirPath()+"/../share/qmmp/skins"); -#endif - foreach(QString path, m_reader->skins()) - { - QListWidgetItem *item = new QListWidgetItem (path.section('/', -1)); - item->setIcon (m_reader->getPreview(path)); - item->setToolTip(tr("Archived skin") + " " + path); - ui.listWidget->addItem (item); - m_skinList << QFileInfo(path); - if(item->text() == m_currentSkinName) - ui.listWidget->setCurrentItem(item); - } -} - -void ConfigDialog::findSkins(const QString &path) -{ - QDir dir(path); - dir.setFilter (QDir::Dirs | QDir::NoDotAndDotDot); - QList fileList = dir.entryInfoList(); - if (fileList.count() == 0) - return; - foreach (QFileInfo fileInfo, fileList) - { - QPixmap preview = Skin::getPixmap ("main", QDir(fileInfo.filePath ())); - if (!preview.isNull()) - { - QListWidgetItem *item = new QListWidgetItem (fileInfo.fileName ()); - item->setIcon (preview); - item->setToolTip(tr("Unarchived skin") + " " + fileInfo.filePath ()); - ui.listWidget->addItem (item); - m_skinList << fileInfo; - } - } -} - -void ConfigDialog::loadPluginsInfo() -{ - ui.treeWidget->blockSignals(true); - /* - load transport plugin information - */ - QTreeWidgetItem *item = new QTreeWidgetItem (ui.treeWidget, QStringList() << tr("Transports")); - QList *transports = InputSource::factories(); - QStringList files = InputSource::files(); - for (int i = 0; i < transports->count (); ++i) - new PluginItem (item, transports->at(i), files.at (i)); - ui.treeWidget->addTopLevelItem(item); - item->setExpanded(true); - - /* - load input plugins information - */ - item = new QTreeWidgetItem (ui.treeWidget, QStringList() << tr("Decoders")); - QList *decoders = Decoder::factories(); - files = Decoder::files(); - for (int i = 0; i < decoders->count (); ++i) - new PluginItem (item, decoders->at(i), files.at (i)); - ui.treeWidget->addTopLevelItem(item); - item->setExpanded(true); - /* - load audio engines information - */ - item = new QTreeWidgetItem (ui.treeWidget, QStringList() << tr("Engines")); - QList *engines = AbstractEngine::factories(); - files = AbstractEngine::files(); - for (int i = 0; i < engines->count (); ++i) - new PluginItem (item, engines->at(i), files.at (i)); - ui.treeWidget->addTopLevelItem(item); - item->setExpanded(true); - /* - load effect plugin information - */ - item = new QTreeWidgetItem (ui.treeWidget, QStringList() << tr("Effects")); - QList *effects = Effect::factories(); - files = Effect::files(); - for (int i = 0; i < effects->count (); ++i) - new PluginItem (item, effects->at(i), files.at (i)); - ui.treeWidget->addTopLevelItem(item); - item->setExpanded(true); - /* - load visual plugin information - */ - item = new QTreeWidgetItem (ui.treeWidget, QStringList() << tr("Visualization")); - QList *visuals = Visual::factories(); - files = Visual::files(); - for (int i = 0; i < visuals->count (); ++i) - new PluginItem (item, visuals->at(i), files.at (i)); - ui.treeWidget->addTopLevelItem(item); - item->setExpanded(true); - /* - load general plugin information - */ - item = new QTreeWidgetItem (ui.treeWidget, QStringList() << tr("General")); - QList *generals = General::factories(); - files = General::files(); - for (int i = 0; i < generals->count (); ++i) - new PluginItem (item, generals->at(i), files.at (i)); - ui.treeWidget->addTopLevelItem(item); - item->setExpanded(true); - - ui.treeWidget->blockSignals(false); - ui.treeWidget->resizeColumnToContents(0); - ui.treeWidget->resizeColumnToContents(1); - /* - load output plugins information - */ - ui.outputInformationButton->setEnabled(false); - ui.outputPreferencesButton->setEnabled(false); - QList *outputs = Output::factories(); - for (int i = 0; i < outputs->count (); ++i) - { - ui.outputComboBox->addItem(outputs->at(i)->properties().name); - if(Output::currentFactory() == outputs->at(i)) - { - ui.outputComboBox->setCurrentIndex(i); - on_outputComboBox_activated (i); - } - } - /* - load file dialog information - */ - foreach(FileDialogFactory *factory, FileDialog::registeredFactories()) - { - ui.fileDialogComboBox->addItem(factory->properties().name); - if (FileDialog::isEnabled(factory)) - ui.fileDialogComboBox->setCurrentIndex(ui.fileDialogComboBox->count()-1); - } -} - -void ConfigDialog::loadFonts() -{ - QSettings settings (Qmmp::configFile(), QSettings::IniFormat); - QString fontname = settings.value ("Skinned/pl_font").toString(); - QFont font = QApplication::font(); - if(!fontname.isEmpty()) - font.fromString(fontname); - ui.plFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); - ui.plFontLabel->setFont(font); - - font = QApplication::font (); - fontname = settings.value ("Skinned/mw_font").toString(); - if(!fontname.isEmpty()) - font.fromString(fontname); - ui.mainFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); - ui.mainFontLabel->setFont(font); - ui.useBitmapCheckBox->setChecked(settings.value("Skinned/bitmap_font", false).toBool()); -} - -void ConfigDialog::loadShortcuts() -{ - //playback - QTreeWidgetItem *item = new QTreeWidgetItem (ui.shortcutTreeWidget, QStringList() << tr("Playback")); - for(int i = ActionManager::PLAY; i <= ActionManager::CLEAR_QUEUE; ++i) - new ShortcutItem(item, i); - item->setExpanded(true); - ui.shortcutTreeWidget->addTopLevelItem(item); - //view - item = new QTreeWidgetItem (ui.shortcutTreeWidget, QStringList() << tr("View")); - for(int i = ActionManager::SHOW_PLAYLIST; i <= ActionManager::WM_DOUBLE_SIZE; ++i) - new ShortcutItem(item, i); - item->setExpanded(true); - ui.shortcutTreeWidget->addTopLevelItem(item); - //playlist - item = new QTreeWidgetItem (ui.shortcutTreeWidget, QStringList() << tr("Playlist")); - for(int i = ActionManager::PL_ADD_FILE; i <= ActionManager::PL_SHOW_MANAGER; ++i) - new ShortcutItem(item, i); - item->setExpanded(true); - ui.shortcutTreeWidget->addTopLevelItem(item); - //misc - item = new QTreeWidgetItem (ui.shortcutTreeWidget, QStringList() << tr("Misc")); - for(int i = ActionManager::SETTINGS; i <= ActionManager::QUIT; ++i) - new ShortcutItem(item, i); - item->setExpanded(true); - ui.shortcutTreeWidget->addTopLevelItem(item); - - ui.shortcutTreeWidget->resizeColumnToContents(0); - ui.shortcutTreeWidget->resizeColumnToContents(1); -} - -void ConfigDialog::setPlFont() -{ - bool ok; - QFont font = ui.plFontLabel->font(); - font = QFontDialog::getFont (&ok, font, this); - if (ok) - { - ui.plFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); - ui.plFontLabel->setFont(font); - QSettings settings (Qmmp::configFile(), QSettings::IniFormat); - settings.setValue ("Skinned/pl_font", font.toString()); - } -} - -void ConfigDialog::setMainFont() -{ - bool ok; - QFont font = ui.mainFontLabel->font(); - font = QFontDialog::getFont (&ok, font, this); - if (ok) - { - ui.mainFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); - ui.mainFontLabel->setFont(font); - QSettings settings (Qmmp::configFile(), QSettings::IniFormat); - settings.setValue ("Skinned/mw_font", font.toString()); - } -} - -void ConfigDialog::on_preferencesButton_clicked() -{ - QTreeWidgetItem *item = ui.treeWidget->currentItem(); - if(item && item->type() >= PluginItem::TRANSPORT) - dynamic_cast(item)->showSettings(this); - -} - -void ConfigDialog::on_informationButton_clicked() -{ - QTreeWidgetItem *item = ui.treeWidget->currentItem(); - if(item && item->type() >= PluginItem::TRANSPORT) - dynamic_cast(item)->showAbout(this); -} - -void ConfigDialog::createMenus() -{ - QMenu *menu = new QMenu(this); - - menu->addAction(tr("Artist"))->setData("%p"); - menu->addAction(tr("Album"))->setData("%a"); - menu->addAction(tr("Title"))->setData("%t"); - menu->addAction(tr("Track number"))->setData("%n"); - menu->addAction(tr("Two-digit track number"))->setData("%NN"); - menu->addAction(tr("Genre"))->setData("%g"); - menu->addAction(tr("Comment"))->setData("%c"); - menu->addAction(tr("Composer"))->setData("%C"); - menu->addAction(tr("Disc number"))->setData("%D"); - menu->addAction(tr("File name"))->setData("%f"); - menu->addAction(tr("File path"))->setData("%F"); - menu->addAction(tr("Year"))->setData("%y"); - menu->addAction(tr("Condition"))->setData("%if(%p&%t,%p - %t,%f)"); - - ui.titleButton->setMenu(menu); - ui.titleButton->setPopupMode(QToolButton::InstantPopup); - connect(menu, SIGNAL(triggered (QAction *)), SLOT(addTitleString(QAction *))); -} - -void ConfigDialog::addTitleString(QAction * a) -{ - if (ui.formatLineEdit->cursorPosition () < 1) - ui.formatLineEdit->insert(a->data().toString()); - else - ui.formatLineEdit->insert(" - "+a->data().toString()); -} - -void ConfigDialog::saveSettings() -{ - QSettings settings (Qmmp::configFile(), QSettings::IniFormat); - settings.beginGroup("Skinned"); - if (MediaPlayer *player = MediaPlayer::instance()) - { - player->playListManager()->setFormat(ui.formatLineEdit->text().trimmed()); - player->playListManager()->setUseMetadata(ui.metadataCheckBox->isChecked()); - player->playListManager()->setConvertUnderscore(ui.underscoresCheckBox->isChecked()); - player->playListManager()->setConvertTwenty(ui.per20CheckBox->isChecked()); - } - settings.setValue ("pl_show_protocol", ui.protocolCheckBox->isChecked()); - settings.setValue ("pl_show_numbers", ui.numbersCheckBox->isChecked()); - settings.setValue ("pl_align_numbers", ui.alignCheckBox->isChecked()); - settings.setValue ("pl_show_anchor", ui.anchorCheckBox->isChecked()); - settings.setValue ("pl_show_plalists", ui.playlistsCheckBox->isChecked()); - settings.setValue ("pl_show_popup", ui.popupCheckBox->isChecked()); - FileDialog::setEnabled(FileDialog::registeredFactories().at(ui.fileDialogComboBox->currentIndex())); - QmmpSettings *gs = QmmpSettings::instance(); - //proxy - QUrl proxyUrl; - proxyUrl.setHost(ui.hostLineEdit->text()); - proxyUrl.setPort(ui.portLineEdit->text().toUInt()); - proxyUrl.setUserName(ui.proxyUserLineEdit->text()); - proxyUrl.setPassword(ui.proxyPasswLineEdit->text()); - gs->setNetworkSettings(ui.enableProxyCheckBox->isChecked(), - ui.authProxyCheckBox->isChecked(), - proxyUrl); - - - settings.setValue ("mw_opacity", 1.0 - (double)ui.mwTransparencySlider->value()/100); - settings.setValue ("eq_opacity", 1.0 - (double)ui.eqTransparencySlider->value()/100); - settings.setValue ("pl_opacity", 1.0 - (double)ui.plTransparencySlider->value()/100); - - settings.setValue ("bitmap_font", ui.useBitmapCheckBox->isChecked()); - settings.setValue ("skin_cursors", ui.skinCursorsCheckBox->isChecked()); - settings.setValue ("skin_name", m_currentSkinName); - settings.setValue ("start_hidden", ui.hiddenCheckBox->isChecked()); - settings.setValue ("hide_on_close", ui.hideOnCloseCheckBox->isChecked()); - settings.endGroup(); - settings.setValue ("General/resume_on_startup", ui.continuePlaybackCheckBox->isChecked()); - gs->setCoverSettings(ui.coverIncludeLineEdit->text().split(","), - ui.coverExcludeLineEdit->text().split(","), - ui.coverDepthSpinBox->value(), - ui.useCoverFilesCheckBox->isChecked()); - int i = ui.replayGainModeComboBox->currentIndex(); - gs->setReplayGainSettings((QmmpSettings::ReplayGainMode) - ui.replayGainModeComboBox->itemData(i).toInt(), - ui.preampDoubleSpinBox->value(), - ui.defaultGainDoubleSpinBox->value(), - ui.clippingCheckBox->isChecked()); - gs->setAudioSettings(ui.softVolumeCheckBox->isChecked(), ui.use16BitCheckBox->isChecked()); - gs->setBufferSize(ui.bufferSizeSpinBox->value()); - QList *outputs = Output::factories(); - if(ui.outputComboBox->currentIndex() >= 0 && outputs->count()) - Output::setCurrentFactory(outputs->at(ui.outputComboBox->currentIndex())); -} - -void ConfigDialog::updateDialogButton(int index) -{ - ui.fdInformationButton->setEnabled(FileDialog::registeredFactories()[index]->properties().hasAbout); -} - -void ConfigDialog::on_fdInformationButton_clicked() -{ - int index = ui.fileDialogComboBox->currentIndex (); - FileDialog::registeredFactories()[index]->showAbout(this); -} - -void ConfigDialog::installSkin() -{ - QStringList files = FileDialog::getOpenFileNames(this,tr("Select Skin Files"), QDir::homePath(), - tr("Skin files") + " (*.tar.gz *.tgz *.tar.bz2 *.zip *.wsz)"); - foreach(QString path, files) - { - QFile file(path); - file.copy(QDir::homePath() +"/.qmmp/skins/" + QFileInfo(path).fileName()); - } - loadSkins(); -} - -void ConfigDialog::on_popupTemplateButton_clicked() -{ - PopupSettings *p = new PopupSettings(this); - p->exec(); - p->deleteLater(); -} - -void ConfigDialog::on_treeWidget_itemChanged (QTreeWidgetItem *item, int column) -{ - if(column == 0 && item->type() >= PluginItem::TRANSPORT) - dynamic_cast(item)->setEnabled(item->checkState(0) == Qt::Checked); -} - -void ConfigDialog::on_treeWidget_currentItemChanged (QTreeWidgetItem *current, QTreeWidgetItem *) -{ - if(current->type() >= PluginItem::TRANSPORT) - { - ui.preferencesButton->setEnabled(dynamic_cast(current)->hasSettings()); - ui.informationButton->setEnabled(dynamic_cast(current)->hasAbout()); - } - else - { - ui.preferencesButton->setEnabled(false); - ui.informationButton->setEnabled(false); - } -} - -void ConfigDialog::on_outputComboBox_activated (int index) -{ - OutputFactory *factory = Output::factories()->at(index); - ui.outputInformationButton->setEnabled(factory->properties().hasAbout); - ui.outputPreferencesButton->setEnabled(factory->properties().hasSettings); -} - -void ConfigDialog::on_outputPreferencesButton_clicked() -{ - int index = ui.outputComboBox->currentIndex(); - Output::factories()->at(index)->showSettings(this); -} - -void ConfigDialog::on_outputInformationButton_clicked() -{ - int index = ui.outputComboBox->currentIndex(); - Output::factories()->at(index)->showAbout(this); -} - -void ConfigDialog::on_changeShortcutButton_clicked() -{ - ShortcutItem *item = dynamic_cast (ui.shortcutTreeWidget->currentItem()); - if(!item) - return; - ShortcutDialog editor(item->action()->shortcut().toString(), this); - if(editor.exec() == QDialog::Accepted) - { - item->action()->setShortcut(editor.key()); - item->setText(1, item->action()->shortcut().toString()); - } -} diff --git a/src/plugins/Ui/skinned/configdialog.h b/src/plugins/Ui/skinned/configdialog.h deleted file mode 100644 index ad8d62ae5..000000000 --- a/src/plugins/Ui/skinned/configdialog.h +++ /dev/null @@ -1,83 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2011 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef CONFIGDIALOG_H -#define CONFIGDIALOG_H - -#include -#include - -#include "ui_configdialog.h" - - -/** - @author Ilya Kotov -*/ -class QFileInfo; - -class Skin; -class SkinReader; - -class ConfigDialog : public QDialog -{ - Q_OBJECT -public: - ConfigDialog(QWidget *parent = 0); - - ~ConfigDialog(); - -private slots: - void on_contentsWidget_currentItemChanged (QListWidgetItem *current, QListWidgetItem *previous); - void changeSkin(); - void setPlFont(); - void setMainFont(); - void on_preferencesButton_clicked(); - void on_informationButton_clicked(); - void addTitleString(QAction *); - void saveSettings(); - void updateDialogButton(int); - void on_fdInformationButton_clicked(); - void installSkin(); - void loadSkins(); - void on_popupTemplateButton_clicked(); - void on_treeWidget_itemChanged (QTreeWidgetItem *item, int column); - void on_treeWidget_currentItemChanged (QTreeWidgetItem *current, QTreeWidgetItem *); - void on_outputComboBox_activated (int index); - void on_outputPreferencesButton_clicked(); - void on_outputInformationButton_clicked(); - void on_changeShortcutButton_clicked(); - -private: - void readSettings(); - void findSkins(const QString &path); - void loadPluginsInfo(); - void loadFonts(); - void loadShortcuts(); - void createMenus(); - - - QList m_skinList; - Ui::ConfigDialog ui; - QString m_currentSkinName; - Skin *m_skin; - QPixmap pixmap; - SkinReader *m_reader; -}; - -#endif diff --git a/src/plugins/Ui/skinned/forms/configdialog.ui b/src/plugins/Ui/skinned/forms/configdialog.ui deleted file mode 100644 index d6a6f7a47..000000000 --- a/src/plugins/Ui/skinned/forms/configdialog.ui +++ /dev/null @@ -1,1576 +0,0 @@ - - - ConfigDialog - - - - 0 - 0 - 659 - 466 - - - - Qmmp Settings - - - - 6 - - - 6 - - - 9 - - - 6 - - - 6 - - - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - 170 - 0 - - - - - 180 - 16777215 - - - - - 38 - 38 - - - - QListView::Static - - - QListView::TopToBottom - - - false - - - QListView::Adjust - - - 2 - - - QListView::ListMode - - - false - - - 100 - - - false - - - 0 - - - - Appearance - - - - :/interface.png:/interface.png - - - - - Playlist - - - - :/playlist.png:/playlist.png - - - - - Plugins - - - - :/plugins.png:/plugins.png - - - - - Advanced - - - - :/advanced.png:/advanced.png - - - - - Connectivity - - - - :/network.png:/network.png - - - - - Audio - - - - :/replaygain.png:/replaygain.png - - - - - Shortcuts - - - - :/shortcuts.png:/shortcuts.png - - - - - - - - - 0 - 0 - - - - QFrame::Raised - - - 0 - - - - - - - 0 - - - - Skins - - - - - - true - - - QListView::Static - - - QListView::TopToBottom - - - QListView::ListMode - - - 0 - - - - - - - - 0 - 0 - - - - Add... - - - - - - - - 0 - 0 - - - - Refresh - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - Miscellaneous - - - - - - View - - - - - - Hide on close - - - - - - - Start hidden - - - - - - - Use skin cursors - - - - - - - - - - - 0 - 0 - - - - Fonts - - - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - Player: - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Sunken - - - ??? - - - - - - - ... - - - - - - - - 0 - 0 - - - - - 80 - 16777215 - - - - Playlist: - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Sunken - - - ??? - - - - - - - ... - - - - - - - Use bitmap font if available - - - - - - - - - - Transparency - - - - - - Main window - - - - - - - 90 - - - Qt::Horizontal - - - - - - - - 25 - 0 - - - - 0 - - - - - - - Equalizer - - - - - - - 90 - - - Qt::Horizontal - - - - - - - 0 - - - - - - - Playlist - - - - - - - 90 - - - Qt::Horizontal - - - - - - - 0 - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - - - - Metadata - - - - 9 - - - 6 - - - - - Load metadata from files - - - - - - - - - - Song Display - - - - - - Title format: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - ... - - - - - - - Convert underscores to blanks - - - - - - - Convert %20 to blanks - - - - - - - Show protocol - - - - - - - Show song numbers - - - - - - - Show playlists - - - - - - - - - Show popup information - - - - - - - false - - - Edit template - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - Show anchor - - - - - - - false - - - Align song numbers - - - - - - - - - - Qt::Vertical - - - - 20 - 54 - - - - - - - - - - 9 - - - 5 - - - 0 - - - 0 - - - 6 - - - - - - 0 - 0 - - - - Preferences - - - - - - - - 0 - 0 - - - - Information - - - - - - - Qt::Horizontal - - - - 101 - 20 - - - - - - - - true - - - QAbstractItemView::SelectRows - - - true - - - false - - - 2 - - - - Description - - - - - Filename - - - - - - - - - - - - File Dialog - - - - - - - - - Information - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - Cover Image Retrieve - - - - - - Use separate image files - - - true - - - - - - - Include files: - - - - - - - - - - Exclude files: - - - - - - - - - - - - Recursive search depth: - - - - - - - 6 - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Playback - - - - - - Continue playback on startup - - - - - - - - - - - - 9 - - - 5 - - - 0 - - - 0 - - - - - Proxy - - - false - - - false - - - - - - Enable proxy usage - - - - - - - Proxy host name: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - Proxy port: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - Use authentication with proxy - - - - - - - Proxy user name: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - Proxy password: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - QLineEdit::Password - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - Replay Gain - - - - - - Replay Gain mode: - - - - - - - - 0 - 0 - - - - - - - - Preamp: - - - - - - - - 0 - 0 - - - - -15.000000000000000 - - - 15.000000000000000 - - - 0.010000000000000 - - - - - - - - 0 - 0 - - - - dB - - - - - - - - 0 - 0 - - - - Default gain: - - - - - - - - 0 - 0 - - - - -15.000000000000000 - - - 15.000000000000000 - - - 0.010000000000000 - - - - - - - - 0 - 0 - - - - dB - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Use peak info to prevent clipping - - - - - - - - - - Audio - - - - - - Output: - - - - - - - - - - - 0 - 0 - - - - Preferences - - - - - - - - 0 - 0 - - - - Information - - - - - - - Qt::Horizontal - - - QSizePolicy::Expanding - - - - 20 - 20 - - - - - - - - Buffer size: - - - - - - - - 0 - 0 - - - - ms - - - 500 - - - 6000 - - - 50 - - - - - - - Qt::Horizontal - - - - 266 - 20 - - - - - - - - Use software volume control - - - - - - - 16-bit output - - - - - - - - - - Qt::Vertical - - - - 20 - 132 - - - - - - - - - - - - true - - - true - - - - Action - - - - - Shortcut - - - - - - - - Change shortcut... - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - - Qt::Horizontal - - - - - - - 6 - - - 0 - - - - - Qt::Horizontal - - - - 341 - 20 - - - - - - - - QDialogButtonBox::Close - - - - - - - - - - - - - enableProxyCheckBox - toggled(bool) - hostLineEdit - setEnabled(bool) - - - 286 - 39 - - - 286 - 39 - - - - - enableProxyCheckBox - toggled(bool) - portLineEdit - setEnabled(bool) - - - 286 - 39 - - - 272 - 39 - - - - - authProxyCheckBox - toggled(bool) - proxyUserLineEdit - setEnabled(bool) - - - 272 - 38 - - - 272 - 38 - - - - - authProxyCheckBox - toggled(bool) - proxyPasswLineEdit - setEnabled(bool) - - - 272 - 38 - - - 272 - 37 - - - - - popupCheckBox - toggled(bool) - popupTemplateButton - setEnabled(bool) - - - 362 - 310 - - - 455 - 315 - - - - - mwTransparencySlider - valueChanged(int) - mwTransparencyLabel - setNum(int) - - - 252 - 90 - - - 283 - 90 - - - - - eqTransparencySlider - valueChanged(int) - eqTransparencyLabel - setNum(int) - - - 252 - 84 - - - 274 - 84 - - - - - plTransparencySlider - valueChanged(int) - plTransparencyLabel - setNum(int) - - - 252 - 78 - - - 274 - 78 - - - - - useCoverFilesCheckBox - toggled(bool) - coverIncludeLineEdit - setEnabled(bool) - - - 286 - 39 - - - 286 - 39 - - - - - useCoverFilesCheckBox - toggled(bool) - coverExcludeLineEdit - setEnabled(bool) - - - 286 - 39 - - - 286 - 39 - - - - - useCoverFilesCheckBox - toggled(bool) - coverDepthSpinBox - setEnabled(bool) - - - 286 - 39 - - - 286 - 39 - - - - - buttonBox - rejected() - ConfigDialog - reject() - - - 651 - 458 - - - 225 - 421 - - - - - buttonBox - accepted() - ConfigDialog - accept() - - - 651 - 458 - - - 141 - 414 - - - - - numbersCheckBox - toggled(bool) - alignCheckBox - setEnabled(bool) - - - 278 - 208 - - - 271 - 236 - - - - - diff --git a/src/plugins/Ui/skinned/forms/hotkeyeditor.ui b/src/plugins/Ui/skinned/forms/hotkeyeditor.ui new file mode 100644 index 000000000..128223c4e --- /dev/null +++ b/src/plugins/Ui/skinned/forms/hotkeyeditor.ui @@ -0,0 +1,61 @@ + + + HotkeyEditor + + + + 0 + 0 + 406 + 365 + + + + Shortcuts + + + + + + true + + + true + + + + Action + + + + + Shortcut + + + + + + + + Change shortcut... + + + + + + + Qt::Horizontal + + + + 262 + 20 + + + + + + + + + diff --git a/src/plugins/Ui/skinned/forms/skinnedsettings.ui b/src/plugins/Ui/skinned/forms/skinnedsettings.ui new file mode 100644 index 000000000..4554c017b --- /dev/null +++ b/src/plugins/Ui/skinned/forms/skinnedsettings.ui @@ -0,0 +1,530 @@ + + + SkinnedSettings + + + + 0 + 0 + 447 + 391 + + + + Form + + + + + + 0 + + + + Skins + + + + + + true + + + QListView::Static + + + QListView::TopToBottom + + + QListView::ListMode + + + 0 + + + + + + + + 0 + 0 + + + + Add... + + + + + + + + 0 + 0 + + + + Refresh + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + View + + + + + + View + + + + + + Hide on close + + + + + + + Start hidden + + + + + + + Use skin cursors + + + + + + + + + + + 0 + 0 + + + + Fonts + + + + + + + 0 + 0 + + + + + 80 + 16777215 + + + + Player: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + QFrame::StyledPanel + + + QFrame::Sunken + + + ??? + + + + + + + ... + + + + + + + + 0 + 0 + + + + + 80 + 16777215 + + + + Playlist: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + QFrame::StyledPanel + + + QFrame::Sunken + + + ??? + + + + + + + ... + + + + + + + Use bitmap font if available + + + + + + + + + + Transparency + + + + + + Main window + + + + + + + 90 + + + Qt::Horizontal + + + + + + + + 25 + 0 + + + + 0 + + + + + + + Equalizer + + + + + + + 90 + + + Qt::Horizontal + + + + + + + 0 + + + + + + + Playlist + + + + + + + 90 + + + Qt::Horizontal + + + + + + + 0 + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + Miscellaneous + + + + + + Song Display + + + + + + Show protocol + + + + + + + Show song numbers + + + + + + + Show playlists + + + + + + + + + Show popup information + + + + + + + false + + + Edit template + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Show anchor + + + + + + + false + + + Align song numbers + + + + + + + + + + Qt::Vertical + + + + 20 + 144 + + + + + + + + + + + + + + mwTransparencySlider + valueChanged(int) + mwTransparencyLabel + setNum(int) + + + 366 + 287 + + + 393 + 283 + + + + + eqTransparencySlider + valueChanged(int) + eqTransparencyLabel + setNum(int) + + + 377 + 312 + + + 393 + 311 + + + + + plTransparencySlider + valueChanged(int) + plTransparencyLabel + setNum(int) + + + 373 + 334 + + + 395 + 334 + + + + + popupCheckBox + toggled(bool) + popupTemplateButton + setEnabled(bool) + + + 130 + 198 + + + 210 + 200 + + + + + numbersCheckBox + toggled(bool) + alignCheckBox + setEnabled(bool) + + + 148 + 103 + + + 151 + 118 + + + + + diff --git a/src/plugins/Ui/skinned/hotkeyeditor.cpp b/src/plugins/Ui/skinned/hotkeyeditor.cpp new file mode 100644 index 000000000..9c687a1d7 --- /dev/null +++ b/src/plugins/Ui/skinned/hotkeyeditor.cpp @@ -0,0 +1,80 @@ +/*************************************************************************** + * Copyright (C) 2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "actionmanager.h" +#include "hotkeyeditor.h" +#include "shortcutdialog.h" +#include "shortcutitem.h" +#include "ui_hotkeyeditor.h" + +HotkeyEditor::HotkeyEditor(QWidget *parent) : QWidget(parent), m_ui(new Ui::HotkeyEditor) +{ + m_ui->setupUi(this); + loadShortcuts(); +} + +HotkeyEditor::~HotkeyEditor() +{ + delete m_ui; +} + +void HotkeyEditor::on_changeShortcutButton_clicked() +{ + ShortcutItem *item = dynamic_cast (m_ui->shortcutTreeWidget->currentItem()); + if(!item) + return; + ShortcutDialog editor(item->action()->shortcut().toString(), this); + if(editor.exec() == QDialog::Accepted) + { + item->action()->setShortcut(editor.key()); + item->setText(1, item->action()->shortcut().toString()); + } +} + +void HotkeyEditor::loadShortcuts() +{ + //playback + QTreeWidgetItem *item = new QTreeWidgetItem (m_ui->shortcutTreeWidget, QStringList() << tr("Playback")); + for(int i = ActionManager::PLAY; i <= ActionManager::CLEAR_QUEUE; ++i) + new ShortcutItem(item, i); + item->setExpanded(true); + m_ui->shortcutTreeWidget->addTopLevelItem(item); + //view + item = new QTreeWidgetItem (m_ui->shortcutTreeWidget, QStringList() << tr("View")); + for(int i = ActionManager::SHOW_PLAYLIST; i <= ActionManager::WM_DOUBLE_SIZE; ++i) + new ShortcutItem(item, i); + item->setExpanded(true); + m_ui->shortcutTreeWidget->addTopLevelItem(item); + //playlist + item = new QTreeWidgetItem (m_ui->shortcutTreeWidget, QStringList() << tr("Playlist")); + for(int i = ActionManager::PL_ADD_FILE; i <= ActionManager::PL_SHOW_MANAGER; ++i) + new ShortcutItem(item, i); + item->setExpanded(true); + m_ui->shortcutTreeWidget->addTopLevelItem(item); + //misc + item = new QTreeWidgetItem (m_ui->shortcutTreeWidget, QStringList() << tr("Misc")); + for(int i = ActionManager::SETTINGS; i <= ActionManager::QUIT; ++i) + new ShortcutItem(item, i); + item->setExpanded(true); + m_ui->shortcutTreeWidget->addTopLevelItem(item); + + m_ui->shortcutTreeWidget->resizeColumnToContents(0); + m_ui->shortcutTreeWidget->resizeColumnToContents(1); +} diff --git a/src/plugins/Ui/skinned/hotkeyeditor.h b/src/plugins/Ui/skinned/hotkeyeditor.h new file mode 100644 index 000000000..49cb8c9ac --- /dev/null +++ b/src/plugins/Ui/skinned/hotkeyeditor.h @@ -0,0 +1,46 @@ +/*************************************************************************** + * Copyright (C) 2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef HOTKEYEDITOR_H +#define HOTKEYEDITOR_H + +#include + +namespace Ui { + class HotkeyEditor; +} + +class HotkeyEditor : public QWidget +{ + Q_OBJECT + +public: + explicit HotkeyEditor(QWidget *parent = 0); + virtual ~HotkeyEditor(); + +private slots: + void on_changeShortcutButton_clicked(); + +private: + void loadShortcuts(); + Ui::HotkeyEditor *m_ui; +}; + +#endif // HOTKEYEDITOR_H diff --git a/src/plugins/Ui/skinned/mainwindow.cpp b/src/plugins/Ui/skinned/mainwindow.cpp index d30c874e9..667270367 100644 --- a/src/plugins/Ui/skinned/mainwindow.cpp +++ b/src/plugins/Ui/skinned/mainwindow.cpp @@ -35,10 +35,12 @@ #include #include #include +#include +#include "hotkeyeditor.h" +#include "skinnedsettings.h" #include "mainwindow.h" #include "skin.h" #include "playlist.h" -#include "configdialog.h" #include "dock.h" #include "eqwidget.h" #include "mainvisual.h" @@ -312,9 +314,13 @@ void MainWindow::writeSettings() void MainWindow::showSettings() { ConfigDialog *confDialog = new ConfigDialog(this); + SkinnedSettings *skinnedSettings = new SkinnedSettings(this); + confDialog->addPage(tr("Appearance"), skinnedSettings, QIcon(":/interface.png")); + confDialog->addPage(tr("Shortcuts"), new HotkeyEditor(this), QIcon(":/shortcuts.png")); confDialog->exec(); - updateSettings(); + skinnedSettings->writeSettings(); confDialog->deleteLater(); + updateSettings(); ActionManager::instance()->saveActions(); } diff --git a/src/plugins/Ui/skinned/pluginitem.cpp b/src/plugins/Ui/skinned/pluginitem.cpp deleted file mode 100644 index 57daf7dc0..000000000 --- a/src/plugins/Ui/skinned/pluginitem.cpp +++ /dev/null @@ -1,187 +0,0 @@ -/*************************************************************************** - * 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 -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "pluginitem.h" - - -PluginItem::PluginItem(QTreeWidgetItem *parent, InputSourceFactory *factory, const QString &path) - : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), TRANSPORT) -{ - m_has_about = factory->properties().hasAbout; - m_has_config = factory->properties().hasSettings; - m_factory = factory; -} - - -PluginItem::PluginItem(QTreeWidgetItem *parent, DecoderFactory *factory, const QString &path) - : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), DECODER) -{ - setCheckState(0, Decoder::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); - m_has_about = factory->properties().hasAbout; - m_has_config = factory->properties().hasSettings; - m_factory = factory; -} - -PluginItem::PluginItem(QTreeWidgetItem *parent, EngineFactory *factory, const QString &path) - : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), ENGINE) -{ - setCheckState(0, AbstractEngine::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); - m_has_about = factory->properties().hasAbout; - m_has_config = factory->properties().hasSettings; - m_factory = factory; -} - -PluginItem::PluginItem(QTreeWidgetItem *parent, EffectFactory *factory, const QString &path) - : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), EFFECT) -{ - setCheckState(0, Effect::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); - m_has_about = factory->properties().hasAbout; - m_has_config = factory->properties().hasSettings; - m_factory = factory; -} - -PluginItem::PluginItem(QTreeWidgetItem *parent, VisualFactory *factory, const QString &path) - : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), VISUAL) -{ - setCheckState(0, Visual::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); - m_has_about = factory->properties().hasAbout; - m_has_config = factory->properties().hasSettings; - m_factory = factory; -} - -PluginItem::PluginItem(QTreeWidgetItem *parent, GeneralFactory *factory, const QString &path) - : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), GENERAL) -{ - setCheckState(0, General::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); - m_has_about = factory->properties().hasAbout; - m_has_config = factory->properties().hasSettings; - m_factory = factory; -} - -PluginItem::~PluginItem() -{ - -} - -bool PluginItem::hasAbout() const -{ - return m_has_about; -} -bool PluginItem::hasSettings() const -{ - return m_has_config; -} - -void PluginItem::showAbout(QWidget *parent) -{ - switch(type()) - { - case PluginItem::TRANSPORT: - static_cast(m_factory)->showAbout(parent); - break; - case PluginItem::DECODER: - static_cast(m_factory)->showAbout(parent); - break; - case PluginItem::ENGINE: - static_cast(m_factory)->showAbout(parent); - break; - case PluginItem::EFFECT: - static_cast(m_factory)->showAbout(parent); - break; - case PluginItem::VISUAL: - static_cast(m_factory)->showAbout(parent); - break; - case PluginItem::GENERAL: - static_cast(m_factory)->showAbout(parent); - break; - default: - ; - } -} - -void PluginItem::showSettings(QWidget *parent) -{ - switch(type()) - { - case PluginItem::TRANSPORT: - static_cast(m_factory)->showSettings(parent); - break; - case PluginItem::DECODER: - static_cast(m_factory)->showSettings (parent); - break; - case PluginItem::ENGINE: - static_cast(m_factory)->showSettings (parent); - break; - case PluginItem::EFFECT: - static_cast(m_factory)->showSettings (parent); - break; - case PluginItem::VISUAL: - Visual::showSettings(static_cast(m_factory), parent); - break; - case PluginItem::GENERAL: - General::showSettings(static_cast(m_factory), parent); - break; - default: - ; - } -} - -void PluginItem::setEnabled(bool enabled) -{ - switch(type()) - { - case PluginItem::TRANSPORT: - //dynamic_cast(m_factory) - break; - case PluginItem::DECODER: - Decoder::setEnabled(static_cast(m_factory), enabled); - break; - case PluginItem::ENGINE: - AbstractEngine::setEnabled(static_cast(m_factory), enabled); - break; - case PluginItem::EFFECT: - Effect::setEnabled(static_cast(m_factory), enabled); - break; - case PluginItem::VISUAL: - Visual::setEnabled(static_cast(m_factory), enabled); - break; - case PluginItem::GENERAL: - General::setEnabled(static_cast(m_factory), enabled); - break; - default: - ; - } -} diff --git a/src/plugins/Ui/skinned/pluginitem.h b/src/plugins/Ui/skinned/pluginitem.h deleted file mode 100644 index da1ba4909..000000000 --- a/src/plugins/Ui/skinned/pluginitem.h +++ /dev/null @@ -1,73 +0,0 @@ -/*************************************************************************** - * 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 PLUGINITEM_H -#define PLUGINITEM_H - -#include - -/** - @author Ilya Kotov -*/ - -class QWidget; -class InputSourceFactory; -class DecoderFactory; -class EngineFactory; -class OutputFactory; -class VisualFactory; -class EffectFactory; -class GeneralFactory; - -class PluginItem : public QTreeWidgetItem -{ -public: - - PluginItem(QTreeWidgetItem *parent, InputSourceFactory *factory, const QString &path); - PluginItem(QTreeWidgetItem *parent, DecoderFactory *factory, const QString &path); - PluginItem(QTreeWidgetItem *parent, EngineFactory *factory, const QString &path); - PluginItem(QTreeWidgetItem *parent, EffectFactory *factory, const QString &path); - PluginItem(QTreeWidgetItem *parent, VisualFactory *factory, const QString &path); - PluginItem(QTreeWidgetItem *parent, GeneralFactory *factory, const QString &path); - ~PluginItem(); - - enum PluginType - { - TRANSPORT = QTreeWidgetItem::UserType, - DECODER, - ENGINE, - EFFECT, - VISUAL, - GENERAL - }; - - bool hasAbout() const; - bool hasSettings() const; - void showAbout(QWidget *parent); - void showSettings(QWidget *parent); - void setEnabled(bool enabled); - - -private: - bool m_has_about; - bool m_has_config; - void *m_factory; -}; - -#endif diff --git a/src/plugins/Ui/skinned/skinned.pro b/src/plugins/Ui/skinned/skinned.pro index 1364167d3..4b5ffe3d3 100644 --- a/src/plugins/Ui/skinned/skinned.pro +++ b/src/plugins/Ui/skinned/skinned.pro @@ -1,11 +1,13 @@ include(../../plugins.pri) -FORMS += forms/configdialog.ui \ +FORMS += \ forms/preseteditor.ui \ forms/aboutdialog.ui \ forms/addurldialog.ui \ forms/playlistbrowser.ui \ forms/popupsettings.ui \ - forms/shortcutdialog.ui + forms/shortcutdialog.ui \ + forms/skinnedsettings.ui \ + forms/hotkeyeditor.ui HEADERS += mainwindow.h \ button.h \ display.h \ @@ -17,7 +19,6 @@ HEADERS += mainwindow.h \ listwidget.h \ pixmapwidget.h \ playlisttitlebar.h \ - configdialog.h \ playlistslider.h \ dock.h \ eqwidget.h \ @@ -31,7 +32,6 @@ HEADERS += mainwindow.h \ textscroller.h \ monostereo.h \ playstatus.h \ - pluginitem.h \ volumebar.h \ balancebar.h \ symboldisplay.h \ @@ -57,7 +57,9 @@ HEADERS += mainwindow.h \ actionmanager.h \ shortcutitem.h \ shortcutdialog.h \ - skinnedfactory.h + skinnedfactory.h \ + skinnedsettings.h \ + hotkeyeditor.h SOURCES += mainwindow.cpp \ button.cpp \ display.cpp \ @@ -69,7 +71,6 @@ SOURCES += mainwindow.cpp \ listwidget.cpp \ pixmapwidget.cpp \ playlisttitlebar.cpp \ - configdialog.cpp \ playlistslider.cpp \ dock.cpp \ eqwidget.cpp \ @@ -82,7 +83,6 @@ SOURCES += mainwindow.cpp \ textscroller.cpp \ monostereo.cpp \ playstatus.cpp \ - pluginitem.cpp \ volumebar.cpp \ balancebar.cpp \ symboldisplay.cpp \ @@ -108,7 +108,9 @@ SOURCES += mainwindow.cpp \ actionmanager.cpp \ shortcutitem.cpp \ shortcutdialog.cpp \ - skinnedfactory.cpp + skinnedfactory.cpp \ + skinnedsettings.cpp \ + hotkeyeditor.cpp QT += network diff --git a/src/plugins/Ui/skinned/skinnedsettings.cpp b/src/plugins/Ui/skinned/skinnedsettings.cpp new file mode 100644 index 000000000..95fb2a055 --- /dev/null +++ b/src/plugins/Ui/skinned/skinnedsettings.cpp @@ -0,0 +1,227 @@ +/*************************************************************************** + * Copyright (C) 2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include +#include "skinreader.h" +#include "skin.h" +#include "popupsettings.h" +#include "skinnedsettings.h" + +SkinnedSettings::SkinnedSettings(QWidget *parent) : QWidget(parent) +{ + ui.setupUi(this); + ui.listWidget->setIconSize (QSize (105,34)); + m_skin = Skin::instance(); + m_reader = new SkinReader(this); + connect(ui.skinReloadButton, SIGNAL (clicked()), SLOT(loadSkins())); + readSettings(); + loadSkins(); + loadFonts(); +} + +SkinnedSettings::~SkinnedSettings() +{} + +void SkinnedSettings::on_listWidget_itemClicked(QListWidgetItem *) +{ + int row = ui.listWidget->currentRow(); + QString path; + if (m_skinList.at (row).isDir()) + { + path = m_skinList.at (row).canonicalFilePath(); + m_skin->setSkin (path); + } + else if (m_skinList.at (row).isFile()) + { + m_reader->unpackSkin(m_skinList.at (row).canonicalFilePath()); + m_skin->setSkin(QDir::homePath() +"/.qmmp/cache/skin"); + } + if(ui.listWidget->currentItem()) + m_currentSkinName = ui.listWidget->currentItem()->text(); + else + m_currentSkinName.clear(); +} + +void SkinnedSettings::on_plFontButton_clicked() +{ + bool ok; + QFont font = ui.plFontLabel->font(); + font = QFontDialog::getFont (&ok, font, this); + if (ok) + { + ui.plFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); + ui.plFontLabel->setFont(font); + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + settings.setValue ("Skinned/pl_font", font.toString()); + } +} + +void SkinnedSettings::on_mainFontButton_clicked() +{ + bool ok; + QFont font = ui.mainFontLabel->font(); + font = QFontDialog::getFont (&ok, font, this); + if (ok) + { + ui.mainFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); + ui.mainFontLabel->setFont(font); + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + settings.setValue ("Skinned/mw_font", font.toString()); + } +} + +void SkinnedSettings::on_skinInstallButton_clicked() +{ + QStringList files = FileDialog::getOpenFileNames(this,tr("Select Skin Files"), QDir::homePath(), + tr("Skin files") + " (*.tar.gz *.tgz *.tar.bz2 *.zip *.wsz)"); + foreach(QString path, files) + { + QFile file(path); + file.copy(QDir::homePath() +"/.qmmp/skins/" + QFileInfo(path).fileName()); + } + loadSkins(); +} + +void SkinnedSettings::loadFonts() +{ + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + QString fontname = settings.value ("Skinned/pl_font").toString(); + QFont font = QApplication::font(); + if(!fontname.isEmpty()) + font.fromString(fontname); + ui.plFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); + ui.plFontLabel->setFont(font); + + font = QApplication::font (); + fontname = settings.value ("Skinned/mw_font").toString(); + if(!fontname.isEmpty()) + font.fromString(fontname); + ui.mainFontLabel->setText (font.family () + " " + QString::number(font.pointSize ())); + ui.mainFontLabel->setFont(font); + ui.useBitmapCheckBox->setChecked(settings.value("Skinned/bitmap_font", false).toBool()); +} + +void SkinnedSettings::findSkins(const QString &path) +{ + QDir dir(path); + dir.setFilter (QDir::Dirs | QDir::NoDotAndDotDot); + QList fileList = dir.entryInfoList(); + if (fileList.count() == 0) + return; + foreach (QFileInfo fileInfo, fileList) + { + QPixmap preview = Skin::getPixmap ("main", QDir(fileInfo.filePath ())); + if (!preview.isNull()) + { + QListWidgetItem *item = new QListWidgetItem (fileInfo.fileName ()); + item->setIcon (preview); + item->setToolTip(tr("Unarchived skin") + " " + fileInfo.filePath ()); + ui.listWidget->addItem (item); + m_skinList << fileInfo; + } + } +} + +void SkinnedSettings::loadSkins() +{ + m_reader->generateThumbs(); + m_skinList.clear(); + ui.listWidget->clear(); + QFileInfo fileInfo (":/default"); + QPixmap preview = Skin::getPixmap ("main", QDir (fileInfo.filePath())); + QListWidgetItem *item = new QListWidgetItem (fileInfo.fileName ()); + item->setIcon (preview); + ui.listWidget->addItem (item); + m_skinList << fileInfo; + if(item->text() == m_currentSkinName) + ui.listWidget->setCurrentItem(item); + + findSkins(QDir::homePath() +"/.qmmp/skins"); +#ifdef Q_OS_WIN32 + findSkins(qApp->applicationDirPath()+"/skins"); +#else + findSkins(qApp->applicationDirPath()+"/../share/qmmp/skins"); +#endif + foreach(QString path, m_reader->skins()) + { + QListWidgetItem *item = new QListWidgetItem (path.section('/', -1)); + item->setIcon (m_reader->getPreview(path)); + item->setToolTip(tr("Archived skin") + " " + path); + ui.listWidget->addItem (item); + m_skinList << QFileInfo(path); + if(item->text() == m_currentSkinName) + ui.listWidget->setCurrentItem(item); + } +} + +void SkinnedSettings::on_popupTemplateButton_clicked() +{ + PopupSettings *p = new PopupSettings(this); + p->exec(); + p->deleteLater(); +} + +void SkinnedSettings::readSettings() +{ + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + settings.beginGroup("Skinned"); + //playlist + ui.protocolCheckBox->setChecked(settings.value ("pl_show_protocol", false).toBool()); + ui.numbersCheckBox->setChecked(settings.value ("pl_show_numbers", true).toBool()); + ui.alignCheckBox->setChecked(settings.value ("pl_align_numbers", false).toBool()); + ui.anchorCheckBox->setChecked(settings.value("pl_show_anchor", false).toBool()); + ui.playlistsCheckBox->setChecked(settings.value("pl_show_plalists", false).toBool()); + ui.popupCheckBox->setChecked(settings.value("pl_show_popup", false).toBool()); + //transparency + ui.mwTransparencySlider->setValue(100 - settings.value("mw_opacity", 1.0).toDouble()*100); + ui.eqTransparencySlider->setValue(100 - settings.value("eq_opacity", 1.0).toDouble()*100); + ui.plTransparencySlider->setValue(100 - settings.value("pl_opacity", 1.0).toDouble()*100); + //view + ui.skinCursorsCheckBox->setChecked(settings.value("skin_cursors", false).toBool()); + m_currentSkinName = settings.value("skin_name", "default").toString(); + ui.hiddenCheckBox->setChecked(settings.value("start_hidden", false).toBool()); + ui.hideOnCloseCheckBox->setChecked(settings.value("hide_on_close", false).toBool()); + settings.endGroup(); +} + +void SkinnedSettings::writeSettings() +{ + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + settings.beginGroup("Skinned"); + settings.setValue ("pl_show_protocol", ui.protocolCheckBox->isChecked()); + settings.setValue ("pl_show_numbers", ui.numbersCheckBox->isChecked()); + settings.setValue ("pl_align_numbers", ui.alignCheckBox->isChecked()); + settings.setValue ("pl_show_anchor", ui.anchorCheckBox->isChecked()); + settings.setValue ("pl_show_plalists", ui.playlistsCheckBox->isChecked()); + settings.setValue ("pl_show_popup", ui.popupCheckBox->isChecked()); + settings.setValue ("mw_opacity", 1.0 - (double)ui.mwTransparencySlider->value()/100); + settings.setValue ("eq_opacity", 1.0 - (double)ui.eqTransparencySlider->value()/100); + settings.setValue ("pl_opacity", 1.0 - (double)ui.plTransparencySlider->value()/100); + settings.setValue ("bitmap_font", ui.useBitmapCheckBox->isChecked()); + settings.setValue ("skin_cursors", ui.skinCursorsCheckBox->isChecked()); + settings.setValue ("skin_name", m_currentSkinName); + settings.setValue ("start_hidden", ui.hiddenCheckBox->isChecked()); + settings.setValue ("hide_on_close", ui.hideOnCloseCheckBox->isChecked()); + settings.endGroup(); +} diff --git a/src/plugins/Ui/skinned/skinnedsettings.h b/src/plugins/Ui/skinned/skinnedsettings.h new file mode 100644 index 000000000..ac6befe9e --- /dev/null +++ b/src/plugins/Ui/skinned/skinnedsettings.h @@ -0,0 +1,62 @@ +/*************************************************************************** + * Copyright (C) 2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef SKINNEDSETTINGS_H +#define SKINNEDSETTINGS_H + +#include +#include +#include "ui_skinnedsettings.h" + +class SkinReader; +class Skin; + +class SkinnedSettings : public QWidget +{ + Q_OBJECT +public: + explicit SkinnedSettings(QWidget *parent = 0); + virtual ~SkinnedSettings(); + void writeSettings(); + + +private slots: + void on_listWidget_itemClicked(QListWidgetItem *); + void on_plFontButton_clicked(); + void on_mainFontButton_clicked(); + void on_skinInstallButton_clicked(); + void loadSkins(); + void on_popupTemplateButton_clicked(); + +private: + void loadFonts(); + void findSkins(const QString &path); + void readSettings(); + + Ui::SkinnedSettings ui; + QList m_skinList; + QString m_currentSkinName; + Skin *m_skin; + QPixmap pixmap; + SkinReader *m_reader; + +}; + +#endif // SKINNEDSETTINGS_H diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts index 7622fee29..a0b3c2c49 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts @@ -485,512 +485,414 @@ Z&rušit + + BuiltinCommandLineOption + + Skip forward in playlist + Přejít vpřed v seznamu skladeb + + + Skip backwards in playlist + Přejít zpět v seznamu skladeb + + + Start playing current song + Spustit přehrávání aktuální skladby + + + Don't clear the playlist + Nevyprazdňovat seznam skladeb + + + Pause current song + Pozastavit aktuální skladbu + + + Pause if playing, play otherwise + Pozastavit, přehrává-li se, jinak přehrávat + + + Stop current song + Zastavit aktuální skladbu + + + Display Jump to File dialog + Zobrazit dialog Přeskočit na soubor + + + Set playback volume (example: qmmp --volume 20) + Nastavit hlasitost přehrávání (příklad: qmmp --volume 20) + + + Show/hide application + Zobrazit/skrýt aplikaci + + + Display Add File dialog + Zobrazit dialog Přidat soubor + + + Display Add Directory dialog + Zobrazit dialog Přidat adresář + + ConfigDialog - Description - Popis + Popis - Filename - Soubor + Soubor - Artist - Umělec + Umělec - - Album - Album + Album - Track - Stopa + Stopa - Disabled - Vypnuto + Vypnuto - Transports - Protokoly + Protokoly - Decoders - Dekodéry + Dekodéry - Engines - Přehrávače - - - - Misc - + Přehrávače - Title - Název + Název - Track number - Číslo stopy + Číslo stopy - Two-digit track number - Dvoumístné číslo stopy + Dvoumístné číslo stopy - Disc number - Číslo disku + Číslo disku - Condition - Stav + Stav - Composer - Skladatel + Skladatel - File name - Název souboru + Název souboru - File path - Cesta k souboru + Cesta k souboru - Genre - Žánr + Žánr - Year - Rok + Rok - Comment - Poznámka + Poznámka - Qmmp Settings - Nastavení Qmmp + Nastavení Qmmp - Appearance - Vzhled + Vzhled - - - Playlist - Seznam skladeb + Seznam skladeb - Plugins - Moduly + Moduly - Advanced - Pokročilé + Pokročilé - Skins - Témata + Témata - Fonts - Písma + Písma - Player: - Přehrávač: + Přehrávač: - Playlist: - Seznam skladeb: + Seznam skladeb: - - ??? - ??? + ??? - Replay Gain - Zisk při přehrávání + Zisk při přehrávání - Miscellaneous - Různé + Různé - - - ... - ... + ... - Use bitmap font if available - Použít bitmapové písmo, je-li dostupné + Použít bitmapové písmo, je-li dostupné - Use skin cursors - Použít kurzory z tématu - - - - Shortcuts - + Použít kurzory z tématu - Metadata - Metadata + Metadata - Load metadata from files - Číst ze souborů metadata + Číst ze souborů metadata - Song Display - Zobrazení skladby + Zobrazení skladby - Title format: - Formát titulku: + Formát titulku: - Show song numbers - Zobrazit čísla skladeb + Zobrazit čísla skladeb - Show playlists - Zobrazit seznam skladeb + Zobrazit seznam skladeb - Show popup information - Zobrazit informace ve vyskakovacím okně - - - - Show anchor - + Zobrazit informace ve vyskakovacím okně - - Align song numbers - - - - - Preferences - Nastavení + Nastavení - - - Information - Informace + Informace - Cover Image Retrieve - Získat obrázek obalu + Získat obrázek obalu - Use separate image files - Použít samostatné obrázky + Použít samostatné obrázky - Include files: - Zahrnout soubory: + Zahrnout soubory: - Exclude files: - Vynechat soubory: + Vynechat soubory: - Recursive search depth: - Hloubka rekurzivního hledání: + Hloubka rekurzivního hledání: - - Playback - Přehrávání + Přehrávání - Continue playback on startup - Po startu pokračovat v přehrávání + Po startu pokračovat v přehrávání - Replay Gain mode: - Režim úpravy zisku při přehrávání: + Režim úpravy zisku při přehrávání: - Preamp: - Předzesílení: + Předzesílení: - - dB - dB + dB - Default gain: - Výchozí zisk: + Výchozí zisk: - Use peak info to prevent clipping - Použít informaci o vrcholu k zabránění ořezu + Použít informaci o vrcholu k zabránění ořezu - Output: - Výstup: + Výstup: - - Buffer size: - - - - ms - ms + ms - 16-bit output - 16bitový výstup - - - - Action - + 16bitový výstup - - Shortcut - - - - - Change shortcut... - - - - Connectivity - Síť + Síť - - View - Zobrazení - - - - Edit template - + Zobrazení - File Dialog - Souborový dialog + Souborový dialog - Proxy - Proxy + Proxy - Enable proxy usage - Povolit používání proxy + Povolit používání proxy - Proxy host name: - Adresa proxy: + Adresa proxy: - Proxy port: - Port proxy: + Port proxy: - Use authentication with proxy - Použít autorizaci pro proxy + Použít autorizaci pro proxy - Proxy user name: - Uživatelské jméno: + Uživatelské jméno: - Proxy password: - Heslo: + Heslo: - Archived skin - Sbalené téma + Sbalené téma - Unarchived skin - Rozbalené téma + Rozbalené téma - Visualization - Vizualizace + Vizualizace - Effects - Efekty + Efekty - General - Obecné + Obecné - - Audio - Zvuk + Zvuk - Use software volume control - Používat softwarové ovládání hlasitosti + Používat softwarové ovládání hlasitosti - Hide on close - Skrýt při zavření + Skrýt při zavření - Start hidden - Spustit skryté + Spustit skryté - Convert underscores to blanks - Převést podtržítka na mezery + Převést podtržítka na mezery - Convert %20 to blanks - Převést %20 na mezery + Převést %20 na mezery - Select Skin Files - Vybrat soubory s tématy + Vybrat soubory s tématy - Skin files - Soubory s tématy + Soubory s tématy - Add... - Přidat... + Přidat... - Refresh - Obnovit + Obnovit - Show protocol - Zobrazit protokol + Zobrazit protokol - Transparency - Průhlednost + Průhlednost - Main window - Hlavní okno + Hlavní okno - - - 0 - 0 + 0 - Equalizer - Ekvalizér + Ekvalizér @@ -1052,6 +954,83 @@ Importovat předvolbu + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + Přehrávání + + + + View + Zobrazení + + + + Playlist + Seznam skladeb + + + + Misc + + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Vyřadit + + + Queue + Zařadit + + + Jump To Track + Přeskočit na skladbu + + + Filter + Filtr + + + Refresh + Načíst znovu + + + Jump To + Přeskočit na + + MainDisplay @@ -1276,27 +1255,61 @@ MainWindow - + Choose a directory + Výběr adresáře + + + Select one or more files to open + Vyberte jeden či více souborů k otevření + + + + Appearance + Vzhled + + + + Shortcuts + + + + &Jump To File Přeskočit na soubo&r - + J J - + View Zobrazení - + Playlist Seznam skladeb - + Playlist Files + Seznamy skladeb + + + Open Playlist + Načíst seznam skladeb + + + Save Playlist + Uložit seznam skladeb + + + All Supported Bitstreams + Všechny podporované formáty + + + Tools Nástroje @@ -1595,6 +1608,41 @@ Automatická předvolba + + QMMPStarter + + Usage: qmmp [options] [files] + Použití: qmmp [volby] [soubory] + + + Options: + Volby: + + + Print version number and exit + Vypsat číslo verze a skončit + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Nápady, patche, hlášení chyb posílejte na forkotov02@hotmail.ru (anglicky) + + + Display this text and exit + Zobrazit tento text a skončit + + + Unknown command + Neznámý příkaz + + + QMMP version: + Verze QMMP: + + + Qt version: + Verze Qt: + + ShortcutDialog @@ -1613,6 +1661,169 @@ + + SkinnedSettings + + + Skins + Témata + + + + Add... + Přidat... + + + + Refresh + + + + + + View + Zobrazení + + + + Hide on close + Skrýt při zavření + + + + Start hidden + Spustit skryté + + + + Use skin cursors + Použít kurzory z tématu + + + + Fonts + Písma + + + + Player: + Přehrávač: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Seznam skladeb: + + + + Use bitmap font if available + Použít bitmapové písmo, je-li dostupné + + + + Transparency + Průhlednost + + + + Main window + Hlavní okno + + + + + + 0 + 0 + + + + Equalizer + Ekvalizér + + + + Playlist + Seznam skladeb + + + + Miscellaneous + Různé + + + + Song Display + Zobrazení skladby + + + + Show protocol + Zobrazit protokol + + + + Show song numbers + Zobrazit čísla skladeb + + + + Show playlists + Zobrazit seznam skladeb + + + + Show popup information + Zobrazit informace ve vyskakovacím okně + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + Vybrat soubory s tématy + + + + Skin files + Soubory s tématy + + + + Unarchived skin + Rozbalené téma + + + + Archived skin + Sbalené téma + + TextScroller @@ -1629,7 +1840,7 @@ VisualMenu - + Visualization Vizualizace diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts index 4756766c8..6320a56e4 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts @@ -485,512 +485,438 @@ &Abbrechen + + BuiltinCommandLineOption + + Skip forward in playlist + Nächsten Titel in Wiedergabeliste abspielen + + + Skip backwards in playlist + Vorherigen Titel in Wiedergabeliste abspielen + + + Start playing current song + Aktuellen Titel abspielen + + + Don't clear the playlist + Titel an Wiedergabeliste anhängen + + + Pause current song + Aktuellen Titel anhalten + + + Pause if playing, play otherwise + Wiedergabe anhalten oder fortsetzen + + + Stop current song + Aktuellen Titel stoppen + + + Display Jump to File dialog + „Springe zu Titel“-Dialog anzeigen + + + Set playback volume (example: qmmp --volume 20) + Lautstärke der Wiedergabe einstellen (Beispiel: qmmp --volume 20) + + + Show/hide application + Anwendung ein-/ausblenden + + + Display Add File dialog + „Datei hinzufügen“-Dialog anzeigen + + + Display Add Directory dialog + „Verzeichnis hinzufügen“-Dialog anzeigen + + ConfigDialog - Description - Beschreibung + Beschreibung - Filename - Dateiname + Dateiname - Artist - Interpret + Interpret - - Album - Album + Album - Track - Stück + Stück - Disabled - Deaktiviert + Deaktiviert - Transports - Transporte + Transporte - Decoders - Dekoder - - - - Engines - + Dekoder - Misc - Verschiedenes + Verschiedenes - Title - Titel + Titel - Track number - Stücknummer + Stücknummer - Two-digit track number - Zweistellige Stücknummer + Zweistellige Stücknummer - Disc number - CD-Nummer + CD-Nummer - Condition - Zustand + Zustand - Genre - Genre + Genre - Composer - Komponist + Komponist - File name - Dateiname + Dateiname - File path - Dateipfad + Dateipfad - Year - Jahr + Jahr - Comment - Kommentar + Kommentar - Qmmp Settings - Einstellungen + Einstellungen - Appearance - Erscheinungsbild + Erscheinungsbild - - - Playlist - Wiedergabeliste + Wiedergabeliste - Plugins - Module + Module - Advanced - Erweitert + Erweitert - Skins - Designs + Designs - Fonts - Schriftarten + Schriftarten - Player: - Player: + Player: - Playlist: - Wiedergabeliste: + Wiedergabeliste: - - ??? - ??? + ??? - Replay Gain - Replay Gain + Replay Gain - Miscellaneous - Verschiedenes + Verschiedenes - - - ... - ... + ... - Use bitmap font if available - Bitmap-Schriftart verwenden, falls verfügbar + Bitmap-Schriftart verwenden, falls verfügbar - Use skin cursors - Design-Mauszeiger verwenden + Design-Mauszeiger verwenden - Shortcuts - Kurzbefehle + Kurzbefehle - Metadata - Metadaten + Metadaten - Load metadata from files - Metadaten aus Dateien laden + Metadaten aus Dateien laden - Song Display - Titelanzeige + Titelanzeige - Title format: - Titelformat: + Titelformat: - Show song numbers - Titelnummern anzeigen + Titelnummern anzeigen - Show playlists - Wiedergabelisten anzeigen + Wiedergabelisten anzeigen - Show popup information - Informationen in einem Aufklapp-Fenster anzeigen - - - - Show anchor - + Informationen in einem Aufklapp-Fenster anzeigen - Align song numbers - Stücknummern ausrichten + Stücknummern ausrichten - - Preferences - Konfiguration + Konfiguration - - - Information - Information + Information - Cover Image Retrieve - Holen von Cover-Bildern + Holen von Cover-Bildern - Use separate image files - Separate Bilddateien verwenden + Separate Bilddateien verwenden - Include files: - Einzubeziehende Dateien: + Einzubeziehende Dateien: - Exclude files: - Auszuschließende Dateien: + Auszuschließende Dateien: - Recursive search depth: - Rekursive Suchtiefe: + Rekursive Suchtiefe: - - Playback - Wiedergabe + Wiedergabe - Continue playback on startup - Wiedergabe beim Start fortsetzen + Wiedergabe beim Start fortsetzen - Replay Gain mode: - Replay-Gain-Modus: + Replay-Gain-Modus: - Preamp: - Vorverstärkung: + Vorverstärkung: - - dB - dB - - - - Default gain: - + dB - Use peak info to prevent clipping - Peak-Informationen verwenden, um Clipping zu verhindern + Peak-Informationen verwenden, um Clipping zu verhindern - Output: - Ausgabe: + Ausgabe: - Buffer size: - Puffergröße: + Puffergröße: - ms - ms + ms - 16-bit output - 16-Bit-Ausgabe + 16-Bit-Ausgabe - Action - Aktion + Aktion - Shortcut - Kurzbefehl + Kurzbefehl - Change shortcut... - Kurzbefehl ändern ... + Kurzbefehl ändern ... - Connectivity - Verbindung + Verbindung - - View - Ansicht + Ansicht - Edit template - Vorlage bearbeiten + Vorlage bearbeiten - File Dialog - Datei-Dialog + Datei-Dialog - Proxy - Proxyserver + Proxyserver - Enable proxy usage - Proxyserver verwenden + Proxyserver verwenden - Proxy host name: - Name des Proxyservers: + Name des Proxyservers: - Proxy port: - Port: + Port: - Use authentication with proxy - Authentisierung verwenden + Authentisierung verwenden - Proxy user name: - Benutzername: + Benutzername: - Proxy password: - Passwort: + Passwort: - Archived skin - Archiviertes Design + Archiviertes Design - Unarchived skin - Nicht archiviertes Design + Nicht archiviertes Design - Visualization - Visualisierung + Visualisierung - Effects - Effekte + Effekte - General - Sonstige + Sonstige - - Audio - Audio + Audio - Use software volume control - Softwaregesteuerte Lautstärkeregelung + Softwaregesteuerte Lautstärkeregelung - Hide on close - Beim Schließen in den Systemabschnitt der Kontrollleiste minimieren + Beim Schließen in den Systemabschnitt der Kontrollleiste minimieren - Start hidden - Minimiert starten + Minimiert starten - Convert underscores to blanks - Unterstriche in Leerzeichen umwandeln + Unterstriche in Leerzeichen umwandeln - Convert %20 to blanks - %20 in Leerzeichen umwandeln + %20 in Leerzeichen umwandeln - Select Skin Files - Design-Dateien auswählen + Design-Dateien auswählen - Skin files - Design-Dateien + Design-Dateien - Add... - Hinzufügen... + Hinzufügen... - Refresh - Aktualisieren + Aktualisieren - Show protocol - Protokoll anzeigen + Protokoll anzeigen - Transparency - Transparenz + Transparenz - Main window - Hauptfenster + Hauptfenster - - - 0 - 0 + 0 - Equalizer - Equalizer + Equalizer @@ -1052,6 +978,83 @@ Voreinstellung importieren + + HotkeyEditor + + + Action + Aktion + + + + Shortcut + Kurzbefehl + + + + Change shortcut... + Kurzbefehl ändern ... + + + + Playback + Wiedergabe + + + + View + Ansicht + + + + Playlist + Wiedergabeliste + + + + Misc + Verschiedenes + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Aus Warteschlange entfernen + + + Queue + In Warteschlange + + + Jump To Track + Zu Titel springen + + + Filter + Filter + + + Refresh + Aktualisieren + + + Jump To + Springen zu + + MainDisplay @@ -1276,27 +1279,61 @@ MainWindow - + Choose a directory + Verzeichnis wählen + + + Select one or more files to open + Dateien hinzufügen + + + + Appearance + Erscheinungsbild + + + + Shortcuts + Kurzbefehle + + + &Jump To File Springe zu &Titel - + J J - + View Ansicht - + Playlist Wiedergabeliste - + Playlist Files + Wiedergabelisten + + + Open Playlist + Wiedergabeliste öffnen + + + Save Playlist + Wiedergabeliste speichern + + + All Supported Bitstreams + Alle unterstützten Formate + + + Tools Werkzeuge @@ -1595,6 +1632,45 @@ Automatische Voreinstellung + + QMMPStarter + + Usage: qmmp [options] [files] + Aufruf: qmmp [Optionen] [Dateien] + + + Options: + Optionen: + + + Don't start the application + Die Anwendung nicht starten + + + Print version number and exit + Gibt die Versionsnummer aus + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ideen, Patches und Bugreports an <forkotov02@hotmail.ru> senden + + + Display this text and exit + Zeigt diesen Hilfetext an + + + Unknown command + Unbekannter Befehl + + + QMMP version: + Qmmp-Version: + + + Qt version: + Qt-Version: + + ShortcutDialog @@ -1613,6 +1689,169 @@ Löschen + + SkinnedSettings + + + Skins + Designs + + + + Add... + Hinzufügen... + + + + Refresh + Aktualisieren + + + + + View + Ansicht + + + + Hide on close + Beim Schließen in den Systemabschnitt der Kontrollleiste minimieren + + + + Start hidden + Minimiert starten + + + + Use skin cursors + Design-Mauszeiger verwenden + + + + Fonts + Schriftarten + + + + Player: + Player: + + + + + ??? + ??? + + + + + ... + + + + + Playlist: + Wiedergabeliste: + + + + Use bitmap font if available + Bitmap-Schriftart verwenden, falls verfügbar + + + + Transparency + Transparenz + + + + Main window + Hauptfenster + + + + + + 0 + 0 + + + + Equalizer + Equalizer + + + + Playlist + Wiedergabeliste + + + + Miscellaneous + Verschiedenes + + + + Song Display + Titelanzeige + + + + Show protocol + Protokoll anzeigen + + + + Show song numbers + Titelnummern anzeigen + + + + Show playlists + Wiedergabelisten anzeigen + + + + Show popup information + Informationen in einem Aufklapp-Fenster anzeigen + + + + Edit template + Vorlage bearbeiten + + + + Show anchor + + + + + Align song numbers + Stücknummern ausrichten + + + + Select Skin Files + Design-Dateien auswählen + + + + Skin files + Design-Dateien + + + + Unarchived skin + Nicht archiviertes Design + + + + Archived skin + Archiviertes Design + + TextScroller @@ -1629,7 +1868,7 @@ VisualMenu - + Visualization Visualisierung diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts index 922ae4a27..f103ef60f 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts @@ -485,512 +485,450 @@ &Cancelar + + BuiltinCommandLineOption + + Skip forward in playlist + Avanzar en la lista de reproducción + + + Skip backwards in playlist + Retroceder en la lista de reproducción + + + Start playing current song + Empezar reproduciendo la canción actual + + + Don't clear the playlist + No limpiar la lista de reproducción + + + Pause current song + Pausar la canción actual + + + Pause if playing, play otherwise + Pausar si se está reproduciendo, o viceversa + + + Stop current song + Detener la canción actual + + + Display Jump to File dialog + Mostrar el diálogo Saltar a archivo + + + Set playback volume (example: qmmp --volume 20) + Cambiar el volumen de reproducción (ejemplo: qmmp --volume 20) + + + Show/hide application + Mostrar/ocultar aplicación + + + Display Add File dialog + Mostrar el diálogo Añadir archivo + + + Display Add Directory dialog + Mostrar el diálogo Añadir directorio + + ConfigDialog - Description - Descripción + Descripción - Filename - Nombre del archivo + Nombre del archivo - Artist - Intérprete + Intérprete - - Album - Album + Album - Track - Pista + Pista - Disabled - Deshabilitado + Deshabilitado - Transports - Transportes + Transportes - Decoders - Decodificadores + Decodificadores - Engines - Motores + Motores - Misc - Varios + Varios - Title - Título + Título - Track number - Número de pista + Número de pista - Two-digit track number - Número de pista con dos cifras + Número de pista con dos cifras - Disc number - Número de disco + Número de disco - Condition - Condición + Condición - Genre - Género + Género - Composer - Compositor + Compositor - File name - Nombre del archivo + Nombre del archivo - File path - Ruta del archivo + Ruta del archivo - Year - Año + Año - Comment - Comentario + Comentario - Qmmp Settings - Configuración de Qmmp + Configuración de Qmmp - Skins - Pieles + Pieles - Fonts - Fuentes + Fuentes - Player: - Reproductor: + Reproductor: - Playlist: - Lista de reproducción: + Lista de reproducción: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Metainformación + Metainformación - Load metadata from files - Cargar la metainformación de los archivos + Cargar la metainformación de los archivos - Song Display - Mostrar la canción + Mostrar la canción - Title format: - Formato del título: + Formato del título: - - Preferences - Preferencias + Preferencias - - - Information - Información + Información - Appearance - Aspecto + Aspecto - - - Playlist - Lista de reproducción + Lista de reproducción - Plugins - Módulos + Módulos - Advanced - Avanzado + Avanzado - 16-bit output - Salida de 16 bits + Salida de 16 bits - Archived skin - Piel archivada + Piel archivada - Unarchived skin - Piel no archivada + Piel no archivada - Connectivity - Conectividad + Conectividad - Visualization - Visualización + Visualización - Effects - Efectos + Efectos - General - General + General - File Dialog - Diálogo de archivos + Diálogo de archivos - - Audio - Sonido + Sonido - Replay Gain - Normalización + Normalización - Miscellaneous - Varios + Varios - Use bitmap font if available - Usar fuente bitmap si está disponible + Usar fuente bitmap si está disponible - Use skin cursors - Usar pieles en cursor + Usar pieles en cursor - Show song numbers - Mostrar los números de canción + Mostrar los números de canción - Show playlists - Mostrar la lista de reproducción + Mostrar la lista de reproducción - Show popup information - Mostrar información emergente + Mostrar información emergente - Replay Gain mode: - Método de normalización: + Método de normalización: - Preamp: - Preamp: + Preamp: - - dB - dB + dB - Default gain: - Normalización predeterminada: + Normalización predeterminada: - Use peak info to prevent clipping - Procesar picos para evitar cortes + Procesar picos para evitar cortes - Output: - Salida: + Salida: - Buffer size: - Tamaño del buffer: + Tamaño del buffer: - ms - ms + ms - Use software volume control - Usar control de volumen por software + Usar control de volumen por software - - View - Ver + Ver - Shortcuts - Atajos + Atajos - Hide on close - Esconder al cerrar + Esconder al cerrar - Start hidden - Iniciar oculto + Iniciar oculto - Edit template - Editar la plantilla + Editar la plantilla - Show anchor - Mostrar ancla + Mostrar ancla - Align song numbers - Alinear los números de canción + Alinear los números de canción - Cover Image Retrieve - Obtener las imagenes de carátula + Obtener las imagenes de carátula - Use separate image files - Usar archivos de imágen separados + Usar archivos de imágen separados - Include files: - Incluir archivos: + Incluir archivos: - Exclude files: - Excluir archivos: + Excluir archivos: - Recursive search depth: - Profundidad de la búsqueda recursiva: + Profundidad de la búsqueda recursiva: - - Playback - Reproducción + Reproducción - Continue playback on startup - Continuar la reproducción al iniciar + Continuar la reproducción al iniciar - Proxy - Proxy + Proxy - Enable proxy usage - Habilitar el uso de proxy + Habilitar el uso de proxy - Proxy host name: - Nombre del servidor proxy: + Nombre del servidor proxy: - Proxy port: - Puerto del proxy: + Puerto del proxy: - Use authentication with proxy - Usar autentificación con el proxy + Usar autentificación con el proxy - Proxy user name: - Usuario del proxy: + Usuario del proxy: - Proxy password: - Contraseña del proxy: + Contraseña del proxy: - Action - Acción + Acción - Shortcut - Atajo + Atajo - Change shortcut... - Cambiar atajo... + Cambiar atajo... - Convert underscores to blanks - Convertir los guiones bajos en espacios + Convertir los guiones bajos en espacios - Convert %20 to blanks - Convertir los %20 en espacios + Convertir los %20 en espacios - Select Skin Files - Seleccionar archivos de pieles + Seleccionar archivos de pieles - Skin files - Archivos de pieles + Archivos de pieles - Add... - Añadir... + Añadir... - Refresh - Actualizar + Actualizar - Show protocol - Motrar protocolo + Motrar protocolo - Transparency - Transparencia + Transparencia - Main window - Ventana principal + Ventana principal - - - 0 - 0 + 0 - Equalizer - Ecualizador + Ecualizador @@ -1052,6 +990,83 @@ Importar preprogramado + + HotkeyEditor + + + Action + Acción + + + + Shortcut + Atajo + + + + Change shortcut... + Cambiar atajo... + + + + Playback + Reproducción + + + + View + Ver + + + + Playlist + Lista de reproducción + + + + Misc + Varios + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Desencolar + + + Queue + Encolar + + + Jump To Track + Saltar hasta pista + + + Filter + Filtrar + + + Refresh + Actualizar + + + Jump To + Saltar a + + MainDisplay @@ -1276,27 +1291,61 @@ MainWindow - + Choose a directory + Seleccione un directorio + + + Select one or more files to open + Seleccione uno o más archivos para abrir + + + + Appearance + Aspecto + + + + Shortcuts + Atajos + + + &Jump To File &Saltar a archivo - + J J - + View Ver - + Playlist Lista de reproducción - + Open Playlist + Abrir la lista de reproducción + + + Save Playlist + Guardar la lista de reproducción + + + Playlist Files + Archivos a reproducir + + + All Supported Bitstreams + Todos los flujos soportados + + + Tools Herramientas @@ -1595,6 +1644,45 @@ Automático + + QMMPStarter + + Usage: qmmp [options] [files] + Uso: qmmp [opciones] [archivos] + + + Options: + Opciones: + + + Print version number and exit + Mostrar el número de versión y salir + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Enviar ideas, parches, errores a: forkotov02@hotmail.ru + + + Qt version: + Versión de Qt: + + + Display this text and exit + Muestra este texto y sale + + + Unknown command + Comando desconocido + + + Don't start the application + No iniciar la aplicación + + + QMMP version: + Versión de QMMP: + + ShortcutDialog @@ -1613,6 +1701,169 @@ Borrar + + SkinnedSettings + + + Skins + Pieles + + + + Add... + Añadir... + + + + Refresh + Actualizar + + + + + View + Ver + + + + Hide on close + Esconder al cerrar + + + + Start hidden + Iniciar oculto + + + + Use skin cursors + Usar pieles en cursor + + + + Fonts + Fuentes + + + + Player: + Reproductor: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Lista de reproducción: + + + + Use bitmap font if available + Usar fuente bitmap si está disponible + + + + Transparency + Transparencia + + + + Main window + Ventana principal + + + + + + 0 + 0 + + + + Equalizer + Ecualizador + + + + Playlist + Lista de reproducción + + + + Miscellaneous + Varios + + + + Song Display + Mostrar la canción + + + + Show protocol + Motrar protocolo + + + + Show song numbers + Mostrar los números de canción + + + + Show playlists + Mostrar la lista de reproducción + + + + Show popup information + Mostrar información emergente + + + + Edit template + Editar la plantilla + + + + Show anchor + Mostrar ancla + + + + Align song numbers + Alinear los números de canción + + + + Select Skin Files + Seleccionar archivos de pieles + + + + Skin files + Archivos de pieles + + + + Unarchived skin + Piel no archivada + + + + Archived skin + Piel archivada + + TextScroller @@ -1629,7 +1880,7 @@ VisualMenu - + Visualization Visualización diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts index cc6b22197..69bcf0e50 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts @@ -485,512 +485,414 @@ &Mégsem + + BuiltinCommandLineOption + + Don't clear the playlist + Ne töröld a lejátszási listát + + + Start playing current song + Aktuális szám lejátszásának indítása + + + Pause current song + Aktuális szám szüneteltetése + + + Pause if playing, play otherwise + Szünet ha lejátszás van, különben lejátszás + + + Stop current song + Aktuális szám megállítása + + + Display Jump to File dialog + Számra ugrás ablak mutatása + + + Set playback volume (example: qmmp --volume 20) + Lejátszási hangerő beállítása (pl.: qmmp --volume 20) + + + Skip forward in playlist + Lejátszási lista következő számának kihagyása + + + Skip backwards in playlist + Lejátszási lista előző számainak kihagyása + + + Show/hide application + Alkalmazás mutatása/elrejtése + + + Display Add File dialog + Fájl hozzáadása ablak mutatása + + + Display Add Directory dialog + Könyvtár hozzáadása ablak mutatása + + ConfigDialog - Archived skin - Tömörített skin + Tömörített skin - Unarchived skin - Tömörítettlen skin + Tömörítettlen skin - Description - Leírás + Leírás - Filename - Fájlnév + Fájlnév - Artist - Előadó + Előadó - - Album - Album + Album - Title - Cím + Cím - Genre - Műfaj + Műfaj - Year - Év + Év - Comment - Megjegyzés + Megjegyzés - Track - Szám + Szám - Disabled - Kikapcsolva + Kikapcsolva - Transports - Transzportálás + Transzportálás - Decoders - Dekóderek + Dekóderek - Engines - Motorok + Motorok - - Misc - - - - Track number - Zeneszám + Zeneszám - Two-digit track number - Két jegyű zeneszám + Két jegyű zeneszám - Composer - Zeneszerző + Zeneszerző - Disc number - Lemezszám + Lemezszám - File name - Fájl neve + Fájl neve - File path - File útvonala + File útvonala - Condition - Feltétel + Feltétel - Select Skin Files - Skin fájl kiválasztása + Skin fájl kiválasztása - Skin files - Skin fájlok + Skin fájlok - Qmmp Settings - Qmmp beállítások + Qmmp beállítások - Appearance - Megjelenés + Megjelenés - - - Playlist - Lejátszási lista + Lejátszási lista - Plugins - Beépülők + Beépülők - Advanced - Haladó + Haladó - Connectivity - Összekapcsolhatóság + Összekapcsolhatóság - Skins - Skinek + Skinek - Add... - Hozzáad... + Hozzáad... - Refresh - Frissít + Frissít - Miscellaneous - Vegyes + Vegyes - Fonts - Betűtípus + Betűtípus - Player: - Lejátszó: + Lejátszó: - - ??? - ??? + ??? - - - ... - ... + ... - Playlist: - Lejátszási lista: + Lejátszási lista: - Use bitmap font if available - Bittérképes betűtípus használata, ha elérhető + Bittérképes betűtípus használata, ha elérhető - Use skin cursors - Skin egértéma használata + Skin egértéma használata - - Shortcuts - - - - Metadata - Metaadatok + Metaadatok - Load metadata from files - Metaadatok betöltése fájlból + Metaadatok betöltése fájlból - Song Display - Szám kijelző + Szám kijelző - Title format: - Cím formátum: + Cím formátum: - Convert underscores to blanks - Lepontozottak átalakítása üressé + Lepontozottak átalakítása üressé - Convert %20 to blanks - Átalakítás %20 üressé + Átalakítás %20 üressé - Show protocol - Protokol mutatása + Protokol mutatása - Show song numbers - Zene sorszámának mutatása + Zene sorszámának mutatása - Show playlists - Lejátszási lista mutatása + Lejátszási lista mutatása - Show popup information - Felugró információk mutatása - - - - Show anchor - + Felugró információk mutatása - - Align song numbers - - - - - Preferences - Tulajdonságok + Tulajdonságok - - - Information - Információ + Információ - - Playback - Lejátszás + Lejátszás - Continue playback on startup - Lejátszás folytatása indításkor - - - - Buffer size: - + Lejátszás folytatása indításkor - ms - ms + ms - 16-bit output - 16 bites kimenet - - - - Action - - - - - Shortcut - + 16 bites kimenet - - Change shortcut... - - - - Visualization - Vizualizáció + Vizualizáció - Effects - Effektek + Effektek - General - Általános + Általános - - Audio - Audió + Audió - Replay Gain - Replay Gain + Replay Gain - Replay Gain mode: - Replay Gain mód: + Replay Gain mód: - Preamp: - Preamp: + Preamp: - - dB - dB + dB - Default gain: - Alapértelmezett gain: + Alapértelmezett gain: - Use peak info to prevent clipping - Csúcs információ használata a klippelés megelőzéséhez + Csúcs információ használata a klippelés megelőzéséhez - Output: - Kimenet: + Kimenet: - Use software volume control - Szoftveres hangerőszabályzó használata + Szoftveres hangerőszabályzó használata - Hide on close - Elrejtés bezáráskor + Elrejtés bezáráskor - Start hidden - Rejtve induljon + Rejtve induljon - File Dialog - Fájl ablak + Fájl ablak - Transparency - Átlátszóság + Átlátszóság - - View - Megnéz + Megnéz - Main window - Fő ablak + Fő ablak - - - 0 - 0 + 0 - Equalizer - Hangszínszabályozó + Hangszínszabályozó - - Edit template - - - - Cover Image Retrieve - Borító beszerzése + Borító beszerzése - Use separate image files - Különböző képfájlok használata + Különböző képfájlok használata - Include files: - Tartalmazott fájlok: + Tartalmazott fájlok: - Exclude files: - Kihagyott fájlok: + Kihagyott fájlok: - Recursive search depth: - Rekúrzív keresési mélység: + Rekúrzív keresési mélység: - Proxy - Proxy + Proxy - Enable proxy usage - Proxy használatának engedélyezése + Proxy használatának engedélyezése - Proxy host name: - Proxy host name: + Proxy host name: - Proxy port: - Proxy port: + Proxy port: - Use authentication with proxy - Hitelesítés hasznáalta proxy-val + Hitelesítés hasznáalta proxy-val - Proxy user name: - Proxy felhasználónév: + Proxy felhasználónév: - Proxy password: - Proxy jelszó: + Proxy jelszó: @@ -1052,6 +954,83 @@ Beállítás importálása + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + Lejátszás + + + + View + Megnéz + + + + Playlist + Lejátszási lista + + + + Misc + + + + + JumpToTrackDialog + + Jump To Track + Ugrás számra + + + Filter + Szűrő + + + Queue + Sorba betesz + + + Refresh + Frissít + + + Jump To + Ugrás + + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Sorból kivesz + + MainDisplay @@ -1276,30 +1255,64 @@ MainWindow - + Choose a directory + Válassz egy könyvtárat + + + All Supported Bitstreams + Minden támogatott bitráta + + + Select one or more files to open + Válassz egy vagy több fájlat megnyitásra + + + Playlist Lejátszási lista - + &Jump To File &Ugrás fájlra - + + Appearance + Megjelenés + + + + Shortcuts + + + + J J - + View Megnéz - + Tools Eszközök + + Playlist Files + Lejátszási lista fájl + + + Open Playlist + Lista megnyitása + + + Save Playlist + Lista mentése + PlayList @@ -1595,6 +1608,41 @@ Automatikus beállítás + + QMMPStarter + + Unknown command + Ismeretlen parancs + + + Usage: qmmp [options] [files] + Használat: qmmp [opciók] [fájlok] + + + Options: + Opciók: + + + Display this text and exit + Mutasd ezt a szöveget, majd lépj ki + + + Print version number and exit + Mutasd a verziószámot, majd lépj ki + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ötleteket, foltokat, hibajelentéseket küld a forkotov02@hotmail.ru címre + + + QMMP version: + QMMP verzió: + + + Qt version: + Qt verzió: + + ShortcutDialog @@ -1613,6 +1661,169 @@ + + SkinnedSettings + + + Skins + Skinek + + + + Add... + Hozzáad... + + + + Refresh + Frissít + + + + + View + Megnéz + + + + Hide on close + Elrejtés bezáráskor + + + + Start hidden + Rejtve induljon + + + + Use skin cursors + Skin egértéma használata + + + + Fonts + Betűtípus + + + + Player: + Lejátszó: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Lejátszási lista: + + + + Use bitmap font if available + Bittérképes betűtípus használata, ha elérhető + + + + Transparency + Átlátszóság + + + + Main window + Fő ablak + + + + + + 0 + 0 + + + + Equalizer + + + + + Playlist + Lejátszási lista + + + + Miscellaneous + Vegyes + + + + Song Display + Szám kijelző + + + + Show protocol + Protokol mutatása + + + + Show song numbers + Zene sorszámának mutatása + + + + Show playlists + Lejátszási lista mutatása + + + + Show popup information + Felugró információk mutatása + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + Skin fájl kiválasztása + + + + Skin files + Skin fájlok + + + + Unarchived skin + Tömörítettlen skin + + + + Archived skin + Tömörített skin + + TextScroller @@ -1629,7 +1840,7 @@ VisualMenu - + Visualization Vizualizáció diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts index 31d872ca1..4b9a87bda 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts @@ -485,512 +485,406 @@ &Annulla + + BuiltinCommandLineOption + + Skip forward in playlist + Scorri in avanti lista dei brani + + + Skip backwards in playlist + Scorri indietro la lista dei brani + + + Start playing current song + Inizia il brano scelto + + + Don't clear the playlist + Non ripulire la lista esecuzione + + + Pause current song + Sospendi il brano in esecuzione + + + Pause if playing, play otherwise + Sospendi il brano se in esecuzione; lo riprende se in pausa + + + Stop current song + Arresta il brano in esecuzione + + + Display Jump to File dialog + Mostra il menu «Vai al brano» + + + Show/hide application + Mostra/nascondi Qmmp + + + Display Add File dialog + Mostra il menu «Aggiungi brani» + + + Display Add Directory dialog + Mostra il menu «Aggiungi cartella» + + ConfigDialog - Description - Descrizione + Descrizione - Filename - File + File - Artist - Interprete + Interprete - - Album - Album + Album - Track - Traccia + Traccia - Disabled - Disabilitato + Disabilitato - Transports - Protocolli di trasporto + Protocolli di trasporto - Decoders - Decodificatori + Decodificatori - Engines - Meccanismi + Meccanismi - - Misc - - - - Title - Titolo + Titolo - Track number - Traccia n° + Traccia n° - Two-digit track number - Traccia n° a due cifre + Traccia n° a due cifre - Disc number - Disco n° + Disco n° - Condition - Condizione + Condizione - Genre - Genere + Genere - Composer - Compositore + Compositore - File name - Nome file + Nome file - File path - Percorso file + Percorso file - Year - Anno + Anno - Comment - Commento + Commento - Qmmp Settings - Configurazione di Qmmp + Configurazione di Qmmp - Skins - Temi + Temi - Fonts - Caratteri + Caratteri - Player: - Player: + Player: - Playlist: - Lista brani : + Lista brani : - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Metadati + Metadati - Load metadata from files - Carica i metadati dai brani + Carica i metadati dai brani - Song Display - Mostra il brano + Mostra il brano - Title format: - Formato del titolo : + Formato del titolo : - - Preferences - Impostazioni preferite + Impostazioni preferite - - - Information - Informazioni + Informazioni - Appearance - Aspetto + Aspetto - - - Playlist - Lista dei brani + Lista dei brani - Plugins - Moduli + Moduli - Advanced - Avanzato + Avanzato - 16-bit output - uscita a 16 bit + uscita a 16 bit - Archived skin - Tema archiviato + Tema archiviato - Unarchived skin - Tema non archiviato + Tema non archiviato - Connectivity - Connettività + Connettività - Visualization - Visualizzazione + Visualizzazione - Effects - Effetti + Effetti - General - Generale + Generale - File Dialog - Menu brani + Menu brani - - Audio - Audio + Audio - Replay Gain - Normalizzazione + Normalizzazione - Miscellaneous - Varie + Varie - Use bitmap font if available - Usa carattere bitmap se disponibile + Usa carattere bitmap se disponibile - Use skin cursors - Usa cursore skin + Usa cursore skin - Show song numbers - Mostra numero brani + Mostra numero brani - Show playlists - Mostra lista esecuzione brani + Mostra lista esecuzione brani - Show popup information - Mostra informazioni popup + Mostra informazioni popup - Replay Gain mode: - Metodo di normalizzazione + Metodo di normalizzazione - Preamp: - Preamp: + Preamp: - - dB - dB + dB - Default gain: - Normalizzazione predefinita + Normalizzazione predefinita - Use peak info to prevent clipping - Utilizza informazioni di picco per evitare tagli + Utilizza informazioni di picco per evitare tagli - Output: - Uscita: + Uscita: - - Buffer size: - - - - ms - ms + ms - Use software volume control - Utilizza il controllo volume del programma - - - - - View - - - - - Shortcuts - + Utilizza il controllo volume del programma - Hide on close - Nascondi alla chiusura + Nascondi alla chiusura - Start hidden - Avvia nascosto + Avvia nascosto - - Edit template - - - - - Show anchor - - - - - Align song numbers - - - - Cover Image Retrieve - Trova immagine copertina + Trova immagine copertina - Use separate image files - Usa immagini separate + Usa immagini separate - Include files: - Includi i file: + Includi i file: - Exclude files: - Escludi i file: + Escludi i file: - Recursive search depth: - Profondità ricerca ricorsiva: + Profondità ricerca ricorsiva: - - Playback - Riproduzione + Riproduzione - Continue playback on startup - Continua la riproduzione all'avvio + Continua la riproduzione all'avvio - Proxy - Proxy + Proxy - Enable proxy usage - Attiva il proxy + Attiva il proxy - Proxy host name: - Nome del server : + Nome del server : - Proxy port: - Porta del server : + Porta del server : - Use authentication with proxy - Usa autenticazione con il proxy + Usa autenticazione con il proxy - Proxy user name: - Utente: + Utente: - Proxy password: - Password : + Password : - - Action - - - - - Shortcut - - - - - Change shortcut... - - - - Convert underscores to blanks - Converti il carattere « _ » in spazi + Converti il carattere « _ » in spazi - Convert %20 to blanks - Converti il carattere « %20 » in spazi + Converti il carattere « %20 » in spazi - Select Skin Files - Seleziona aspetto + Seleziona aspetto - Skin files - Aspetto + Aspetto - Add... - Aggiungi... + Aggiungi... - Refresh - Aggiorna + Aggiorna - Show protocol - Motra protocollo + Motra protocollo - Transparency - Transparenza + Transparenza - Main window - Finestra principale + Finestra principale - - - 0 - 0 + 0 - Equalizer - Equalizzatore + Equalizzatore @@ -1052,6 +946,83 @@ Importa preimpostazione + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + Riproduzione + + + + View + + + + + Playlist + + + + + Misc + + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Elimna dalla coda + + + Queue + Metti in coda + + + Jump To Track + Vai alla traccia + + + Filter + Filtra + + + Refresh + Aggiorna + + + Jump To + Vai a + + MainDisplay @@ -1276,27 +1247,61 @@ MainWindow - + Choose a directory + Scegliere una cartella + + + Select one or more files to open + Seleziona uno o più brani da aprire + + + + Appearance + Aspetto + + + + Shortcuts + + + + &Jump To File &Vai al brano - + J J - + View - + Playlist - + Open Playlist + Apri lista di brani + + + Save Playlist + Salva lista di brani + + + Playlist Files + Brani della lista + + + All Supported Bitstreams + Elenco di tutti i tipi di flusso accettati + + + Tools Strumenti @@ -1595,6 +1600,41 @@ Impostazioni automatiche + + QMMPStarter + + Usage: qmmp [options] [files] + Uso: qmmp [options] [fichiers] + + + Options: + Opzioni: + + + Print version number and exit + Stampa il numero di versione ed esci + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Per idee, modifiche, segnalazione di errori scrivire a: forkotov02@hotmail.ru + + + Qt version: + Versione Qt: + + + Display this text and exit + Mostra questo testo ed esci + + + Unknown command + Comando sconosciuto + + + QMMP version: + Versione di Qmmp: + + ShortcutDialog @@ -1613,6 +1653,169 @@ + + SkinnedSettings + + + Skins + Temi + + + + Add... + Aggiungi... + + + + Refresh + Aggiorna + + + + + View + + + + + Hide on close + Nascondi alla chiusura + + + + Start hidden + Avvia nascosto + + + + Use skin cursors + Usa cursore skin + + + + Fonts + Caratteri + + + + Player: + Player: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Lista brani : + + + + Use bitmap font if available + Usa carattere bitmap se disponibile + + + + Transparency + Transparenza + + + + Main window + Finestra principale + + + + + + 0 + 0 + + + + Equalizer + Equalizzatore + + + + Playlist + + + + + Miscellaneous + Varie + + + + Song Display + Mostra il brano + + + + Show protocol + Motra protocollo + + + + Show song numbers + Mostra numero brani + + + + Show playlists + Mostra lista esecuzione brani + + + + Show popup information + Mostra informazioni popup + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + Seleziona aspetto + + + + Skin files + Aspetto + + + + Unarchived skin + Tema non archiviato + + + + Archived skin + Tema archiviato + + TextScroller @@ -1629,7 +1832,7 @@ VisualMenu - + Visualization Visualizzazione diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts index c16b56cb9..46717e0e0 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts @@ -485,512 +485,450 @@ 事故 + + BuiltinCommandLineOption + + Don't clear the playlist + プレイリストをクリアしない + + + Start playing current song + 今の曲から再生を開始 + + + Pause current song + 今の曲で一時停止 + + + Pause if playing, play otherwise + 再生中なら一時停止、一時停止しておれば再生 + + + Stop current song + 今の曲で終止 + + + Display Jump to File dialog + 「ファイルを指定して即刻再生」ダイアログを表示 + + + Set playback volume (example: qmmp --volume 20) + 音量設定 (例: qmmp --volume 20) + + + Skip forward in playlist + プレイリストでの次の曲にスキップ + + + Skip backwards in playlist + プレイリストで前の曲にスキップ + + + Show/hide application + アプリケーションウィンドウを表示/非表示 + + + Display Add File dialog + 「ファイル追加」ダイアログを表示 + + + Display Add Directory dialog + 「ディレクトリ追加」ダイアログを表示 + + ConfigDialog - Qmmp Settings - QMMP設定 + QMMP設定 - Appearance - 外観 + 外観 - - - Playlist - プレイリスト + プレイリスト - Plugins - プラグイン + プラグイン - Advanced - 上級 + 上級 - Connectivity - 接続 + 接続 - - Audio - 音響 + 音響 - Shortcuts - ショートカット + ショートカット - Skins - スキン + スキン - Add... - 追加... + 追加... - Refresh - 更新 + 更新 - Miscellaneous - 各種設定 + 各種設定 - - View - 観容 + 観容 - Hide on close - 「閉じる」で隠す + 「閉じる」で隠す - Start hidden - 開始時に隠す + 開始時に隠す - Use skin cursors - スキンカーソルを使用 + スキンカーソルを使用 - Fonts - 書体 + 書体 - Player: - プレイヤ: + プレイヤ: - - ??? - ??? + ??? - - - ... - ... + ... - Playlist: - プレイリスト: + プレイリスト: - Use bitmap font if available - あればビットマップフォントを使用 + あればビットマップフォントを使用 - Transparency - 透過効果 + 透過効果 - Main window - メインウィンドウ + メインウィンドウ - - - 0 - 0 + 0 - Equalizer - イコライザ + イコライザ - Metadata - メタデータ + メタデータ - Load metadata from files - ファイルからメタデータを読み込む + ファイルからメタデータを読み込む - Song Display - 演目表示 + 演目表示 - Title format: - タイトルの表示形式: + タイトルの表示形式: - Convert underscores to blanks - 下線記号_を空白文字で表示 + 下線記号_を空白文字で表示 - Convert %20 to blanks - %20を空白文字で表示 + %20を空白文字で表示 - Show protocol - プロトコルを表示 + プロトコルを表示 - Show song numbers - 曲番号つきで表示 + 曲番号つきで表示 - Show playlists - プレイリストを表示 + プレイリストを表示 - Show popup information - 情報吹き出しを表示 + 情報吹き出しを表示 - Edit template - ひな型を編集 + ひな型を編集 - Show anchor - アンカーを表示 + アンカーを表示 - Align song numbers - 曲番号のみを表示 + 曲番号のみを表示 - - Preferences - プラグイン調整 + プラグイン調整 - - - Information - 情報 + 情報 - Description - プラグイン分類 + プラグイン分類 - Filename - ファイル名 + ファイル名 - File Dialog - ファイルダイアログ + ファイルダイアログ - Cover Image Retrieve - アルバム表紙画像の取得 + アルバム表紙画像の取得 - Use separate image files - 分割された画像ファイルを利用 + 分割された画像ファイルを利用 - Include files: - 対象ファイル形式: + 対象ファイル形式: - Exclude files: - 除外ファイル形式: + 除外ファイル形式: - Recursive search depth: - 再帰検索の深度: + 再帰検索の深度: - - Playback - 再生 + 再生 - Continue playback on startup - 前回終了時の曲から継続して再生 + 前回終了時の曲から継続して再生 - 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 + dB - Default gain: - デフォルトゲイン: + デフォルトゲイン: - Use peak info to prevent clipping - クリッピング現象を抑えるためピーク情報を使う + クリッピング現象を抑えるためピーク情報を使う - Output: - 出力: + 出力: - Buffer size: - バッファサイズ: + バッファサイズ: - ms - ミリ秒 + ミリ秒 - Use software volume control - ソフトウェアによる音量制御を利用 + ソフトウェアによる音量制御を利用 - 16-bit output - 16ビット出力 + 16ビット出力 - Action - 動作 + 動作 - Shortcut - ショートカット + ショートカット - Change shortcut... - 変更 + 変更 - Track - トラック + トラック - - Album - アルバム + アルバム - Disabled - 無効 + 無効 - Archived skin - 書庫化スキン + 書庫化スキン - Unarchived skin - 非書庫化スキン + 非書庫化スキン - Transports - 転送 + 転送 - Decoders - デコーダ + デコーダ - Engines - エンジン + エンジン - Effects - 音響効果 + 音響効果 - Visualization - 視覚効果 + 視覚効果 - General - 一般 + 一般 - Misc - いろいろ + いろいろ - Artist - アーティスト + アーティスト - Title - タイトル + タイトル - Track number - トラック番号 + トラック番号 - Two-digit track number - トラック番号 数字2桁 + トラック番号 数字2桁 - Genre - ジャンル + ジャンル - Comment - コメント + コメント - Composer - 作曲者 + 作曲者 - Disc number - ディスク番号 + ディスク番号 - File name - ファイル名 + ファイル名 - File path - ファイルパス + ファイルパス - Year - + - Condition - 定番 + 定番 - Select Skin Files - スキンファイルを選択 + スキンファイルを選択 - Skin files - スキンファイル + スキンファイル @@ -1052,6 +990,83 @@ プリセットを移入 + + HotkeyEditor + + + Action + 動作 + + + + Shortcut + ショートカット + + + + Change shortcut... + 変更 + + + + Playback + 再生 + + + + View + 観容 + + + + Playlist + プレイリスト + + + + Misc + いろいろ + + + + JumpToTrackDialog + + Jump To Track + トラックを指定して即刻再生 + + + Filter + フィルタ + + + Queue + キューに入れる + + + Refresh + 再実行 + + + Jump To + この曲に跳ぶ + + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + キューから除く + + MainDisplay @@ -1276,30 +1291,64 @@ MainWindow - + Choose a directory + ディレクトリを選択 + + + All Supported Bitstreams + サポート対象のすべてのデジタル録音物 + + + Select one or more files to open + 開きたいファイルを選ぶ (複数可) + + + Playlist プレイリスト - + &Jump To File ファイルを指定して即刻再生(&J) - + + Appearance + 外観 + + + + Shortcuts + ショートカット + + + J J - + View 観容 - + Tools ツール + + Playlist Files + プレイリストファイル + + + Open Playlist + プレイリストを開く + + + Save Playlist + プレイリストを保存 + PlayList @@ -1595,6 +1644,45 @@ 削除 + + QMMPStarter + + Unknown command + 不明なコマンドです + + + Usage: qmmp [options] [files] + 使用法: qmmp [オプション] [ファイル名:複数可] + + + Options: + オプション: + + + Don't start the application + アプリケーションを始動しない + + + Display this text and exit + このメッセージを表示して終了 + + + Print version number and exit + バージョン番号を表示して終了 + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + 名案, パッチ, バグ報告は forkotov02@hotmail.ru まで + + + QMMP version: + QMMP 版番号: + + + Qt version: + Qt 版番号: + + ShortcutDialog @@ -1613,6 +1701,169 @@ 消去 + + SkinnedSettings + + + Skins + スキン + + + + Add... + 追加... + + + + Refresh + + + + + + View + 観容 + + + + Hide on close + 「閉じる」で隠す + + + + Start hidden + 開始時に隠す + + + + Use skin cursors + スキンカーソルを使用 + + + + Fonts + 書体 + + + + Player: + プレイヤ: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + プレイリスト: + + + + Use bitmap font if available + あればビットマップフォントを使用 + + + + Transparency + 透過効果 + + + + Main window + メインウィンドウ + + + + + + 0 + 0 + + + + Equalizer + イコライザ + + + + Playlist + プレイリスト + + + + Miscellaneous + 各種設定 + + + + Song Display + 演目表示 + + + + Show protocol + プロトコルを表示 + + + + Show song numbers + 曲番号つきで表示 + + + + Show playlists + プレイリストを表示 + + + + Show popup information + 情報吹き出しを表示 + + + + Edit template + ひな型を編集 + + + + Show anchor + アンカーを表示 + + + + Align song numbers + 曲番号のみを表示 + + + + Select Skin Files + スキンファイルを選択 + + + + Skin files + スキンファイル + + + + Unarchived skin + 非書庫化スキン + + + + Archived skin + 書庫化スキン + + TextScroller @@ -1629,7 +1880,7 @@ VisualMenu - + Visualization 視覚効果 diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts index 77b27eb9a..341fee256 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts @@ -486,513 +486,443 @@ &Atšaukti + + BuiltinCommandLineOption + + Skip forward in playlist + Eiti prie sekančio elemento + + + Skip backwards in playlist + Eiti prie ankstesnio elemento + + + Start playing current song + Groti dainą + + + Don't clear the playlist + Neišvalyti sąrašo + + + Pause current song + Pristabdyti dainą + + + Pause if playing, play otherwise + Pristabdyti/Groti + + + Stop current song + Sustabdyti dainą + + + Display Jump to File dialog + Parodyti langą bylos pasirinkimui + + + Set playback volume (example: qmmp --volume 20) + Nustatyti grojimo garsą (pvz: qmmp --volume 20) + + + Show/hide application + Parodyti/Slėpti programą + + + Display Add File dialog + Parodyti langą bylų pridėjimui + + + Display Add Directory dialog + Parodyti langą aplanko pridėjimui + + ConfigDialog - Description - Aprašymas + Aprašymas - Filename - Bylos pavadinimas + Bylos pavadinimas - Artist - Atlikėjas + Atlikėjas - - Album - Albumas + Albumas - Track - Takelis + Takelis - Disabled - Išjungta + Išjungta - Transports - Transportas + Transportas - Decoders - Dekoderiai + Dekoderiai - Engines - Varikliai + Varikliai - Misc - Įvairūs + Įvairūs - Title - Pavadinimas + Pavadinimas - Track number - Takelio numeris + Takelio numeris - Two-digit track number - Dviejų skaičių takelio numeris + Dviejų skaičių takelio numeris - Disc number - Disko numeris + Disko numeris - Condition - Būklė + Būklė - Composer - Autorius + Autorius - File name - Bylos pavadinimas + Bylos pavadinimas - File path - Bylos kelias + Bylos kelias - Genre - Žanras + Žanras - Year - Metai + Metai - Comment - Komentaras + Komentaras - Qmmp Settings - Qmmp nustatymai + Qmmp nustatymai - Skins - Temos + Temos - Fonts - Šriftai + Šriftai - Player: - Grotuvas: + Grotuvas: - Playlist: - Gojaraštis: + Gojaraštis: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Meta duomenys + Meta duomenys - Load metadata from files - Įkelti metaduomenis iš bylų + Įkelti metaduomenis iš bylų - Song Display - Dainų sąrašas + Dainų sąrašas - Title format: - Pavadinimo formatas: + Pavadinimo formatas: - - Preferences - Nustatymai + Nustatymai - - - Information - Informacija + Informacija - Appearance - Išvaizda + Išvaizda - - - Playlist - Grojaraštis + Grojaraštis - Plugins - Įskiepiai + Įskiepiai - Advanced - Papildomi + Papildomi - 16-bit output - 16 bitų išvestis + 16 bitų išvestis - Archived skin - Suspausta tema + Suspausta tema - Unarchived skin - Išskleista tema + Išskleista tema - Connectivity - Tinklas + Tinklas - Visualization - Vizualizacija + Vizualizacija - Effects - Efektai + Efektai - General - Bendri + Bendri - File Dialog - Pasirinkimo langas + Pasirinkimo langas - - Audio - Audio + Audio - Replay Gain Neįsivaizduoju kaip verst - Replay Gain + Replay Gain - Miscellaneous - Kiti + Kiti - Use bitmap font if available - Naudoti bitmap šriftą, jei įmanoma + Naudoti bitmap šriftą, jei įmanoma - Use skin cursors - Naudoti temos kursorių + Naudoti temos kursorių - Show song numbers - Rodyti takelių numerius + Rodyti takelių numerius - Show playlists - Rodyti grojaraščius + Rodyti grojaraščius - Show popup information - Rodyti iššokančią informaciją + Rodyti iššokančią informaciją - Replay Gain mode: - Replay Gain metodas: + Replay Gain metodas: - Preamp: - Išankstinis stiprinimas: + Išankstinis stiprinimas: - - dB - dB + dB - Default gain: - Stiprinimas pagal nutylėjima: + Stiprinimas pagal nutylėjima: - Use peak info to prevent clipping - Naudoti pikų informaciją trūkinėjimo išvengimui + Naudoti pikų informaciją trūkinėjimo išvengimui - Output: - Išvestis + Išvestis - Buffer size: - Buferio dydis: + Buferio dydis: - ms - ms + ms - Use software volume control - Naudoti programinį garso valdymą + Naudoti programinį garso valdymą - - View - Rodyti + Rodyti - Shortcuts - Santrumpos + Santrumpos - Hide on close - Paslėpti išjungus + Paslėpti išjungus - Start hidden - Įjungti paslėptą + Įjungti paslėptą - Edit template - Taisyti šabloną + Taisyti šabloną - - Show anchor - - - - Align song numbers - Lygiuoti dainų numerius + Lygiuoti dainų numerius - Cover Image Retrieve - Parsiųsti cd viršelį + Parsiųsti cd viršelį - Use separate image files - Naudoti atskiras paveiksliukų bylas + Naudoti atskiras paveiksliukų bylas - Include files: - Įtraukti bylas + Įtraukti bylas - Exclude files: - Išskirti bylas + Išskirti bylas - Recursive search depth: - Rekursinės paieškos gylis + Rekursinės paieškos gylis - - Playback - Grojimas + Grojimas - Continue playback on startup - Tęsti grojimą įjungus + Tęsti grojimą įjungus - Proxy - Proxy + Proxy - Enable proxy usage - Įjungti proxy palaikymą + Įjungti proxy palaikymą - Proxy host name: - Proxy serveris: + Proxy serveris: - Proxy port: - Proxy portas: + Proxy portas: - Use authentication with proxy - Naudoti proxy autentifikavimą + Naudoti proxy autentifikavimą - Proxy user name: - Proxy vartotojo vardas: + Proxy vartotojo vardas: - Proxy password: - Proxy slaptažodis: + Proxy slaptažodis: - Action - Veiksmas + Veiksmas - Shortcut - Trumpinys + Trumpinys - Change shortcut... - Keisti trumpinį... + Keisti trumpinį... - Convert underscores to blanks - Paversti brūkšnius į tarpus + Paversti brūkšnius į tarpus - Convert %20 to blanks - Paversti %20 į tarpus + Paversti %20 į tarpus - Select Skin Files - Pasirinkti temų bylas + Pasirinkti temų bylas - Skin files - Temų bylos + Temų bylos - Add... - Pridėti... + Pridėti... - Refresh - Atnaujinti + Atnaujinti - Show protocol - Rodyti bylos galūnę + Rodyti bylos galūnę - Transparency - Permatomumas + Permatomumas - Main window - Pagrindinis langas + Pagrindinis langas - - - - 0 - - - - Equalizer - Glodintuvas + Glodintuvas @@ -1054,6 +984,71 @@ Importuoti nustatymus + + HotkeyEditor + + + Action + Veiksmas + + + + Shortcut + Trumpinys + + + + Change shortcut... + Keisti trumpinį... + + + + Playback + Grojimas + + + + View + Rodyti + + + + Playlist + Grojaraštis + + + + Misc + Įvairūs + + + + JumpToTrackDialog + + Unqueue + Pašalinti iš eilės + + + Queue + Į eilę + + + Jump To Track + Pereiti prie takelio + + + Filter + Filtras + + + Refresh + Atnaujinti + + + Jump To + Prereiti prie + + MainDisplay @@ -1278,27 +1273,61 @@ MainWindow - + Choose a directory + Pasirinkite aplanką + + + Select one or more files to open + Pasirinkite vieną ar kelias bylas atvėrimui + + + + Appearance + Išvaizda + + + + Shortcuts + Santrumpos + + + &Jump To File &Pereiti prie bylos - + J - + View Rodyti - + Playlist Grojaraštis - + Open Playlist + Atverti grojaraštį + + + Save Playlist + Išsaugoti grojaraštį + + + Playlist Files + Grojaraščio bylos + + + All Supported Bitstreams + Palaikomi bylų tipai + + + Tools Įrankiai @@ -1597,6 +1626,45 @@ Auto-nustatymas + + QMMPStarter + + Usage: qmmp [options] [files] + Naudojimas: qmmp [nuostatos] [bylos] + + + Options: + Nustatymai: + + + Print version number and exit + Parodyti versiją ir išeiti + + + Display this text and exit + Parodyti šį tekstą ir išeiti + + + Unknown command + Nežinoma komanda + + + Don't start the application + Nepaleisti programos + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Idėjas, pataisymus, klaidas siųsti forkotov02@hotmail.ru + + + QMMP version: + QMMP versija: + + + Qt version: + Qt versija: + + ShortcutDialog @@ -1615,6 +1683,169 @@ Išvalyti + + SkinnedSettings + + + Skins + Temos + + + + Add... + Pridėti... + + + + Refresh + Atnaujinti + + + + + View + Rodyti + + + + Hide on close + Paslėpti išjungus + + + + Start hidden + Įjungti paslėptą + + + + Use skin cursors + Naudoti temos kursorių + + + + Fonts + Šriftai + + + + Player: + Grotuvas: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Gojaraštis: + + + + Use bitmap font if available + Naudoti bitmap šriftą, jei įmanoma + + + + Transparency + Permatomumas + + + + Main window + Pagrindinis langas + + + + + + 0 + + + + + Equalizer + + + + + Playlist + Grojaraštis + + + + Miscellaneous + Kiti + + + + Song Display + Dainų sąrašas + + + + Show protocol + Rodyti bylos galūnę + + + + Show song numbers + Rodyti takelių numerius + + + + Show playlists + Rodyti grojaraščius + + + + Show popup information + Rodyti iššokančią informaciją + + + + Edit template + Taisyti šabloną + + + + Show anchor + + + + + Align song numbers + Lygiuoti dainų numerius + + + + Select Skin Files + Pasirinkti temų bylas + + + + Skin files + Temų bylos + + + + Unarchived skin + Išskleista tema + + + + Archived skin + Suspausta tema + + TextScroller @@ -1631,7 +1862,7 @@ VisualMenu - + Visualization Vizualizacija diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts index 1e7a32e78..68f36e15e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts @@ -485,512 +485,414 @@ &Annuleren + + BuiltinCommandLineOption + + Skip forward in playlist + Naar voren springen in afspeellijstb + + + Skip backwards in playlist + Naar achteren springen in afspeellijst + + + Start playing current song + Begin met afspelen van huidig nummer + + + Don't clear the playlist + Niet de afspellijst leeghalen + + + Pause current song + Pauzeer huidig nummer + + + Pause if playing, play otherwise + Pauzeer als er wordt gespeeld, anders spelen + + + Stop current song + Stop huidig nummer + + + Display Jump to File dialog + Toon Ga Naar Bestandsdialoog + + + Set playback volume (example: qmmp --volume 20) + Zet afspeelvolume (voorbeeld: qmmp --volume 20) + + + Show/hide application + Toon/verberg programma + + + Display Add File dialog + Toon venster om bestanden toe te voegen + + + Display Add Directory dialog + Toon venster om mappen toe te voegen + + ConfigDialog - Description - Popis + Popis - Filename - Bestandsnaam + Bestandsnaam - Artist - Artiest + Artiest - - Album - Album + Album - Track - Nummer + Nummer - Disabled - Uitgeschakeld + Uitgeschakeld - Transports - Protocols + Protocols - Decoders - Decoders + Decoders - Engines - Engines - - - - Misc - + Engines - Title - Naam + Naam - Track number - Liednummer + Liednummer - Two-digit track number - Twee-getal liednummer + Twee-getal liednummer - Disc number - CD nummer + CD nummer - Condition - Staat + Staat - Composer - Componist + Componist - File name - Bestandsnaam + Bestandsnaam - File path - Pad + Pad - Genre - Genre + Genre - Year - Jaar + Jaar - Comment - Commentaar + Commentaar - Qmmp Settings - Qmmp Instellingen + Qmmp Instellingen - Appearance - Vertoning + Vertoning - - - Playlist - Afspeellijst + Afspeellijst - Plugins - Modules + Modules - Advanced - Geavanceerd + Geavanceerd - Skins - Thema's + Thema's - Fonts - Lettertypen + Lettertypen - Player: - Speler: + Speler: - Playlist: - Afspeellijst: + Afspeellijst: - - ??? - ??? + ??? - Replay Gain - Replay Gain + Replay Gain - Miscellaneous - Overige + Overige - - - ... - ... + ... - Use bitmap font if available - Gebruik bitmap lettertype indien aanwezig + Gebruik bitmap lettertype indien aanwezig - Use skin cursors - Gebruik thema cursor - - - - Shortcuts - + Gebruik thema cursor - Metadata - Metadata + Metadata - Load metadata from files - Laad metadata van bestanden + Laad metadata van bestanden - Song Display - Nummer Weergave + Nummer Weergave - Title format: - Titel formaat: + Titel formaat: - Show song numbers - Toon liednummers + Toon liednummers - Show playlists - Toon afspeellijst + Toon afspeellijst - Show popup information - Toon popup informatie - - - - Show anchor - + Toon popup informatie - - Align song numbers - - - - - Preferences - Voorkeuren + Voorkeuren - - - Information - Informatie + Informatie - Cover Image Retrieve - Lees Hoes Af + Lees Hoes Af - Use separate image files - Gebruik aparte afbeeldingsbestanden + Gebruik aparte afbeeldingsbestanden - Include files: - Inclusief de bestanden: + Inclusief de bestanden: - Exclude files: - Exclusief de bestanden: + Exclusief de bestanden: - Recursive search depth: - Recursieve zoekdiepte: + Recursieve zoekdiepte: - - Playback - Afspelen + Afspelen - Continue playback on startup - Verdergaan met afspelen bij opstarten + Verdergaan met afspelen bij opstarten - Replay Gain mode: - Replay Gain stand: + Replay Gain stand: - Preamp: - Voorversterking: + Voorversterking: - - dB - dB + dB - Default gain: - Standaard verhoging: + Standaard verhoging: - Use peak info to prevent clipping - Gebruik piek info om stotteren te voorkomen + Gebruik piek info om stotteren te voorkomen - Output: - Uitvoer: + Uitvoer: - - Buffer size: - - - - ms - ms + ms - 16-bit output - 16bit uitvoer - - - - Action - - - - - Shortcut - + 16bit uitvoer - - Change shortcut... - - - - Connectivity - Connectiviteit + Connectiviteit - - View - Weergave + Weergave - - Edit template - - - - File Dialog - Bestandsdialoog + Bestandsdialoog - Proxy - Proxy + Proxy - Enable proxy usage - Gebruik proxy + Gebruik proxy - Proxy host name: - Proxy host naam: + Proxy host naam: - Proxy port: - Proxy poort: + Proxy poort: - Use authentication with proxy - Gebruik authenticatie bij proxy + Gebruik authenticatie bij proxy - Proxy user name: - Proxy gebruikersnaam: + Proxy gebruikersnaam: - Proxy password: - Proxy wachtwoord: + Proxy wachtwoord: - Archived skin - Gearchiveerd thema + Gearchiveerd thema - Unarchived skin - Niet gearchiveerd thema + Niet gearchiveerd thema - Visualization - Visualisatie + Visualisatie - Effects - Effecten + Effecten - General - Algemeen + Algemeen - - Audio - Audio + Audio - Use software volume control - Gebruik software volume + Gebruik software volume - Hide on close - Verberg bij sluit + Verberg bij sluit - Start hidden - Start verborgen + Start verborgen - Convert underscores to blanks - Zet lage strepen om in spaties + Zet lage strepen om in spaties - Convert %20 to blanks - Zet %20 om in spaties + Zet %20 om in spaties - Select Skin Files - Selecteer themabestanden + Selecteer themabestanden - Skin files - Thema bestanden + Thema bestanden - Add... - Toevoegen... + Toevoegen... - Refresh - Herlaad + Herlaad - Show protocol - Laad protocol + Laad protocol - Transparency - Transparantie + Transparantie - Main window - Hoofdscherm + Hoofdscherm - - - 0 - 0 + 0 - Equalizer - Equalizer + Equalizer @@ -1052,6 +954,83 @@ Importer Instelling + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + Afspelen + + + + View + Weergave + + + + Playlist + Afspeellijst + + + + Misc + + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Verwijder uit lijst + + + Queue + Rij + + + Jump To Track + Ga Naar Nummer + + + Filter + Filter + + + Refresh + Herlaad + + + Jump To + Ga Naar + + MainDisplay @@ -1276,27 +1255,61 @@ MainWindow - + Choose a directory + Kies een map + + + Select one or more files to open + Kies een of meer bestanden om te openen + + + + Appearance + Vertoning + + + + Shortcuts + + + + &Jump To File &Spring Naar Bestand - + J J - + View Weergave - + Playlist Afspeellijst - + Playlist Files + Afspeellijst Bestanden + + + Open Playlist + Open Afspeellijst + + + Save Playlist + Bewaar Afspeellijst + + + All Supported Bitstreams + Alle Ondersteunde Bitstromen + + + Tools Gereedschappen @@ -1595,6 +1608,41 @@ Auto-instellingen + + QMMPStarter + + Usage: qmmp [options] [files] + Gebruik: qmmp [opties] [bestanden] + + + Options: + Opties: + + + Print version number and exit + Print versienummer en sluit + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ideëen, patches, foutrapporten zenden naar forkotov02@hotmail.ru (anglicky) + + + Display this text and exit + Toon dit tekstje en sluit + + + Unknown command + Onbekend commando + + + QMMP version: + QMMP versie: + + + Qt version: + Qt versie: + + ShortcutDialog @@ -1613,6 +1661,169 @@ + + SkinnedSettings + + + Skins + Thema's + + + + Add... + Toevoegen... + + + + Refresh + Herlaad + + + + + View + Weergave + + + + Hide on close + Verberg bij sluit + + + + Start hidden + Start verborgen + + + + Use skin cursors + Gebruik thema cursor + + + + Fonts + Lettertypen + + + + Player: + Speler: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Afspeellijst: + + + + Use bitmap font if available + Gebruik bitmap lettertype indien aanwezig + + + + Transparency + Transparantie + + + + Main window + Hoofdscherm + + + + + + 0 + 0 + + + + Equalizer + Equalizer + + + + Playlist + Afspeellijst + + + + Miscellaneous + Overige + + + + Song Display + Nummer Weergave + + + + Show protocol + Laad protocol + + + + Show song numbers + Toon liednummers + + + + Show playlists + Toon afspeellijst + + + + Show popup information + Toon popup informatie + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + Selecteer themabestanden + + + + Skin files + Thema bestanden + + + + Unarchived skin + Niet gearchiveerd thema + + + + Archived skin + Gearchiveerd thema + + TextScroller @@ -1629,7 +1840,7 @@ VisualMenu - + Visualization Visualisatie diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts index b6d7e94e1..b65cc1384 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts @@ -485,512 +485,438 @@ &Anuluj + + BuiltinCommandLineOption + + Skip forward in playlist + Przeskocz do przodu na liście odtwarzania + + + Skip backwards in playlist + Przeskocz do tyłu na liście odtwarzania + + + Start playing current song + Zacznij odtwarzać bieżący utwór + + + Don't clear the playlist + Nie czyść listy + + + Pause current song + Wstrzymaj bieżący utwór + + + Pause if playing, play otherwise + Wstrzymaj jeśli odtwarza, odtwarzaj w przeciwnym wypadku + + + Stop current song + Zatrzymaj bieżący utwór + + + Display Jump to File dialog + Wyświetl okno dialogowe Skocz do + + + Set playback volume (example: qmmp --volume 20) + Ustaw głośność odtwarzania (np: qmmp --volume 20) + + + Show/hide application + Pokaż/ukryj aplikację + + + Display Add File dialog + Wyświetl okno dialogowe dodawania plików + + + Display Add Directory dialog + Wyświetl okno dialogowe dodawania katalogów + + ConfigDialog - Description - Opis + Opis - Filename - Nazwa pliku + Nazwa pliku - Artist - Artysta + Artysta - - Album - Album + Album - Track - Utwór + Utwór - Disabled - Wyłączone + Wyłączone - Transports - Transporty + Transporty - Decoders - Dekodery + Dekodery - Engines - Silniki + Silniki - Misc - Inne + Inne - Title - Tytuł + Tytuł - Track number - Numer utworu + Numer utworu - Two-digit track number - Dwuznakowy numer utworu + Dwuznakowy numer utworu - Disc number - Numer albumu + Numer albumu - Condition - Warunek + Warunek - Genre - Gatunek + Gatunek - Composer - Kompozytor + Kompozytor - File name - Nazwa pliku + Nazwa pliku - File path - Lokalizacja + Lokalizacja - Year - Rok + Rok - Comment - Komentarz + Komentarz - Qmmp Settings - Ustawienia Qmmp + Ustawienia Qmmp - Skins - Skóry + Skóry - Fonts - Czcionki + Czcionki - Player: - Odtwarzacz: + Odtwarzacz: - Playlist: - Lista odtwarzania: + Lista odtwarzania: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Metadane + Metadane - Load metadata from files - Załaduj metadane z pliku + Załaduj metadane z pliku - Song Display - Wyświetlanie utworu + Wyświetlanie utworu - Title format: - Format tytułu: + Format tytułu: - - Preferences - Ustawienia + Ustawienia - - - Information - Informacje + Informacje - Appearance - Wygląd + Wygląd - - - Playlist - Lista odtwarzania + Lista odtwarzania - Plugins - Wtyczki + Wtyczki - Advanced - Zaawansowane + Zaawansowane - 16-bit output - 16-bitowe odtwarzanie + 16-bitowe odtwarzanie - Archived skin - Skompresowana skórka + Skompresowana skórka - Unarchived skin - Niekompresowana skórka + Niekompresowana skórka - Connectivity - Sieć + Sieć - Visualization - Wizualizacje + Wizualizacje - Effects - Efekty + Efekty - General - Ogólne + Ogólne - File Dialog - Okno dialogowe + Okno dialogowe - - Audio - Dźwięk + Dźwięk - - Replay Gain - - - - Miscellaneous - Zaawansowane + Zaawansowane - Use bitmap font if available - Użyj czcionki bitmapowej jeśli jest dostępna + Użyj czcionki bitmapowej jeśli jest dostępna - Use skin cursors - Użyj kursorów z motywu + Użyj kursorów z motywu - Show song numbers - Wyświetl numery utworów na liście odtwarzania + Wyświetl numery utworów na liście odtwarzania - Show playlists - Pokaż listy odtwarzania + Pokaż listy odtwarzania - Show popup information - Pokaż informację popup + Pokaż informację popup - Replay Gain mode: - Tryb Replay Gain: - - - - Preamp: - - - - - - dB - + Tryb Replay Gain: - Default gain: - Domyślne wzmocnienie: + Domyślne wzmocnienie: - Use peak info to prevent clipping - Użyj informacji peak by zapobiec "klipnięciom" + Użyj informacji peak by zapobiec "klipnięciom" - Output: - Wyjście: + Wyjście: - Buffer size: - Rozmiar bufora: + Rozmiar bufora: - ms - ms + ms - Use software volume control - Użyj programowej regulacji głośności + Użyj programowej regulacji głośności - - View - Wygląd + Wygląd - Shortcuts - Skróty klawiszowe + Skróty klawiszowe - Hide on close - Zminimalizuj przy zamykaniu + Zminimalizuj przy zamykaniu - Start hidden - Uruchom zminimalizowany + Uruchom zminimalizowany - Edit template - Edytuj szablon + Edytuj szablon - Show anchor - Pokaż kotwicę + Pokaż kotwicę - Align song numbers - Wyrównaj w pionie numery utworów + Wyrównaj w pionie numery utworów - Cover Image Retrieve - Pobieranie okładek + Pobieranie okładek - Use separate image files - Użyj oddzielnych obrazków + Użyj oddzielnych obrazków - Include files: - Użyj plików: + Użyj plików: - Exclude files: - Wyłącz pliki: + Wyłącz pliki: - Recursive search depth: - Głębokość rekursywnego przeszukiwania: + Głębokość rekursywnego przeszukiwania: - - Playback - Odtwarzanie + Odtwarzanie - Continue playback on startup - Wznów odtwarzanie po uruchomieniu programu + Wznów odtwarzanie po uruchomieniu programu - Proxy - Proxy + Proxy - Enable proxy usage - Włącz proxy + Włącz proxy - Proxy host name: - Nazwa hosta proxy: + Nazwa hosta proxy: - Proxy port: - Port proxy: + Port proxy: - Use authentication with proxy - Użyj autoryzacji z proxy + Użyj autoryzacji z proxy - Proxy user name: - Nazwa użytkownika: + Nazwa użytkownika: - Proxy password: - Hasło: + Hasło: - Action - Akcje + Akcje - Shortcut - Skrót + Skrót - Change shortcut... - Zmień skrót... + Zmień skrót... - Convert underscores to blanks - Konwertuj podkreślenia na spacje + Konwertuj podkreślenia na spacje - Convert %20 to blanks - Konwertuj sekwencje %20 na spacje + Konwertuj sekwencje %20 na spacje - Select Skin Files - Wybierz skórę + Wybierz skórę - Skin files - Pliki skór + Pliki skór - Add... - Dodaj... + Dodaj... - Refresh - Odśwież + Odśwież - Show protocol - Pokaż protokół + Pokaż protokół - Transparency - Przezroczystość + Przezroczystość - Main window - Okno główne + Okno główne - - - 0 - 0 + 0 - Equalizer - Korektor + Korektor @@ -1052,6 +978,79 @@ Importuj Profil + + HotkeyEditor + + + Action + Akcje + + + + Shortcut + Skrót + + + + Change shortcut... + Zmień skrót... + + + + Playback + Odtwarzanie + + + + View + Wygląd + + + + Playlist + Lista odtwarzania + + + + Misc + Inne + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + Unqueue + Wykolejkuj + + + Queue + Kolejkuj + + + Jump To Track + Skocz do utworu + + + Filter + Filtr + + + Refresh + Odśwież + + + Jump To + Skocz do + + MainDisplay @@ -1276,27 +1275,61 @@ MainWindow - + Choose a directory + Wybierz katalog + + + Select one or more files to open + Wybierz jeden lub więcej plików do otwarcia + + + + Appearance + Wygląd + + + + Shortcuts + Skróty klawiszowe + + + &Jump To File &Skocz do pliku - + J J - + View Wygląd - + Playlist Lista odtwarzania - + Open Playlist + Otwórz listę odtwarzania + + + Save Playlist + Zapisz listę odtwarzania + + + Playlist Files + Pliki listy odtwarzania + + + All Supported Bitstreams + Wszystkie wspierane formaty + + + Tools Narzędzia @@ -1595,6 +1628,45 @@ Auto-profil + + QMMPStarter + + Usage: qmmp [options] [files] + Użycie: qmmp [opcje] [pliki] + + + Options: + Opcje: + + + Don't start the application + Nie uruchamiaj aplikacji + + + Print version number and exit + Wyświetla wersję programu i wychodzi + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Pomysły, poprawki, raporty o błędach proszę wysyłać na forkotov02@hotmail.ru + + + Display this text and exit + Wyświetla ten tekst i wychodzi + + + Unknown command + Nieznane polecenie + + + QMMP version: + Wersja QMMP: + + + Qt version: + Wersja QT: + + ShortcutDialog @@ -1613,6 +1685,169 @@ Wyczyść + + SkinnedSettings + + + Skins + Skóry + + + + Add... + Dodaj... + + + + Refresh + Odśwież + + + + + View + Wygląd + + + + Hide on close + Zminimalizuj przy zamykaniu + + + + Start hidden + Uruchom zminimalizowany + + + + Use skin cursors + Użyj kursorów z motywu + + + + Fonts + Czcionki + + + + Player: + Odtwarzacz: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Lista odtwarzania: + + + + Use bitmap font if available + Użyj czcionki bitmapowej jeśli jest dostępna + + + + Transparency + Przezroczystość + + + + Main window + Okno główne + + + + + + 0 + 0 + + + + Equalizer + + + + + Playlist + Lista odtwarzania + + + + Miscellaneous + Zaawansowane + + + + Song Display + Wyświetlanie utworu + + + + Show protocol + Pokaż protokół + + + + Show song numbers + Wyświetl numery utworów na liście odtwarzania + + + + Show playlists + Pokaż listy odtwarzania + + + + Show popup information + Pokaż informację popup + + + + Edit template + Edytuj szablon + + + + Show anchor + Pokaż kotwicę + + + + Align song numbers + Wyrównaj w pionie numery utworów + + + + Select Skin Files + Wybierz skórę + + + + Skin files + Pliki skór + + + + Unarchived skin + Niekompresowana skórka + + + + Archived skin + Skompresowana skórka + + TextScroller @@ -1629,7 +1864,7 @@ VisualMenu - + Visualization Wizualizacja diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts index 26e709dd1..b82042938 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts @@ -488,509 +488,108 @@ ConfigDialog - Description - Descrição + Descrição - Filename - Nome do Arquivo + Nome do Arquivo - Artist - Artista + Artista - - Album - Álbum - - - - Track - - - - - Disabled - + Álbum - - Transports - - - - - Decoders - - - - - Engines - - - - - Misc - - - - Title - Título + Título - - Track number - - - - - Two-digit track number - - - - - Disc number - - - - - Condition - - - - Genre - Gênero - - - - Composer - + Gênero - - File name - - - - - File path - - - - Year - Ano + Ano - Comment - Comentário + Comentário - Qmmp Settings - Configurações + Configurações - Skins - Temas + Temas - Fonts - Fontes + Fontes - Player: - Player + Player - Playlist: - Lista de músicas: + Lista de músicas: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - MetaData + MetaData - Load metadata from files - Carregar arquivo MetaData + Carregar arquivo MetaData - Song Display - Mostrar música + Mostrar música - Title format: - Tipo de Formato: + Tipo de Formato: - - Preferences - Preferências + Preferências - - - Information - Informações + Informações - Appearance - Aparência + Aparência - - - Playlist - Lista de músicas + Lista de músicas - Plugins - Plugins + Plugins - Advanced - Avançado - - - - 16-bit output - - - - - Archived skin - - - - - Unarchived skin - - - - - Connectivity - - - - - Visualization - - - - - Effects - - - - - General - - - - - File Dialog - - - - - - Audio - - - - - Replay Gain - - - - - Miscellaneous - - - - - Use bitmap font if available - - - - - Use skin cursors - - - - - Show song numbers - - - - - Show playlists - - - - - Show popup information - - - - - Replay Gain mode: - - - - - Preamp: - - - - - - dB - - - - - Default gain: - - - - - Use peak info to prevent clipping - - - - - Output: - - - - - Buffer size: - - - - - ms - - - - - Use software volume control - - - - - - View - - - - - Shortcuts - - - - - Hide on close - - - - - Start hidden - - - - - Edit template - - - - - Show anchor - - - - - Align song numbers - - - - - Cover Image Retrieve - - - - - Use separate image files - - - - - Include files: - - - - - Exclude files: - - - - - Recursive search depth: - - - - - - Playback - - - - - Continue playback on startup - - - - - Proxy - - - - - Enable proxy usage - - - - - Proxy host name: - - - - - Proxy port: - - - - - Use authentication with proxy - - - - - Proxy user name: - - - - - Proxy password: - - - - - Action - - - - - Shortcut - - - - - Change shortcut... - - - - - Convert underscores to blanks - - - - - Convert %20 to blanks - - - - - Select Skin Files - - - - - Skin files - + Avançado - - Add... - - - - Refresh - Recarregar - - - - Show protocol - - - - - Transparency - - - - - Main window - - - - - - - 0 - - - - - Equalizer - + Recarregar @@ -1052,6 +651,71 @@ Importar Preset + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + + + + + View + + + + + Playlist + Lista de músicas + + + + Misc + + + + + JumpToTrackDialog + + Unqueue + Sem Faixa na Fila + + + Queue + Faixa na Fila + + + Jump To Track + Pular de faixa + + + Filter + Filtro + + + Refresh + Recarregar + + + Jump To + Pular para + + MainDisplay @@ -1276,27 +940,57 @@ MainWindow - + Choose a directory + Escolher o diretorio + + + Select one or more files to open + Selecionar um ou mais arquivos + + + + Appearance + Aparência + + + + Shortcuts + + + + &Jump To File Pular para arquivo - + J - + View - + Playlist Lista de músicas - + Open Playlist + Abrir Playlist + + + Save Playlist + Salvar Playlist + + + Playlist Files + ФArquivos de lista de músicas + + + Tools @@ -1613,6 +1307,169 @@ + + SkinnedSettings + + + Skins + Temas + + + + Add... + + + + + Refresh + Recarregar + + + + + View + + + + + Hide on close + + + + + Start hidden + + + + + Use skin cursors + + + + + Fonts + Fontes + + + + Player: + Player + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Lista de músicas: + + + + Use bitmap font if available + + + + + Transparency + + + + + Main window + + + + + + + 0 + + + + + Equalizer + + + + + Playlist + Lista de músicas + + + + Miscellaneous + + + + + Song Display + Mostrar música + + + + Show protocol + + + + + Show song numbers + + + + + Show playlists + + + + + Show popup information + + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + + + + + Skin files + + + + + Unarchived skin + + + + + Archived skin + + + TextScroller @@ -1629,7 +1486,7 @@ VisualMenu - + Visualization diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts index e4a25ebea..6d8caa1a1 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts @@ -485,512 +485,450 @@ &Отмена + + BuiltinCommandLineOption + + Skip forward in playlist + Перейти к следующему фрагменту + + + Skip backwards in playlist + Перейти к предыдущему фрагменту + + + Start playing current song + Воспроизвести текущую песню + + + Don't clear the playlist + Не очищать лист + + + Pause current song + Приостановить текущую песню + + + Pause if playing, play otherwise + Приостановить/воспроизвести + + + Stop current song + Остановить текущую песню + + + Display Jump to File dialog + Показать диалог перехода к файлу + + + Set playback volume (example: qmmp --volume 20) + Установить громкость (пример: qmmp --volume 20) + + + Show/hide application + Показать/скрыть приложение + + + Display Add File dialog + Показать диалог добавления файлов + + + Display Add Directory dialog + Показать диалог добавления директорий + + ConfigDialog - Description - Описание + Описание - Filename - Имя файла + Имя файла - Artist - Исполнитель + Исполнитель - - Album - Альбом + Альбом - Track - Дорожка + Дорожка - Disabled - Отключено + Отключено - Transports - Транспорты + Транспорты - Decoders - Декодеры + Декодеры - Engines - Внешние проигрыватели + Внешние проигрыватели - Misc - Другие + Другие - Title - Название + Название - Track number - Номер трека + Номер трека - Two-digit track number - 2-x разрядный номер трека + 2-x разрядный номер трека - Disc number - Номер диска + Номер диска - Condition - Условие + Условие - Genre - Жанр + Жанр - Composer - Композитор + Композитор - File name - Имя файла + Имя файла - File path - Путь к файлу + Путь к файлу - Year - Год + Год - Comment - Комментарий + Комментарий - Qmmp Settings - Настройки Qmmp + Настройки Qmmp - Skins - Обложки + Обложки - Fonts - Шрифты + Шрифты - Player: - Плеер: + Плеер: - Playlist: - Список: + Список: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Метаданные + Метаданные - Load metadata from files - Считывать метаданные из файлов + Считывать метаданные из файлов - Song Display - Список песен + Список песен - Title format: - Формат названия: + Формат названия: - - Preferences - Настройки + Настройки - - - Information - Информация + Информация - Appearance - Внешний вид + Внешний вид - - - Playlist - Список + Список - Plugins - Модули + Модули - Advanced - Дополнительно + Дополнительно - 16-bit output - 16-битный вывод + 16-битный вывод - Archived skin - Упакованная тема + Упакованная тема - Unarchived skin - Распакованная тема + Распакованная тема - Connectivity - Сеть + Сеть - Visualization - Визуализация + Визуализация - Effects - Эффекты + Эффекты - General - Общие + Общие - File Dialog - Файловый диалог + Файловый диалог - - Audio - Аудио + Аудио - Replay Gain - Выравнивание громкости (Replay Gain) + Выравнивание громкости (Replay Gain) - Miscellaneous - Разное + Разное - Use bitmap font if available - Использовать растровые шрифты, если возможно + Использовать растровые шрифты, если возможно - Use skin cursors - Использовать встроенные курсоры + Использовать встроенные курсоры - Show song numbers - Показывать номера песен + Показывать номера песен - Show playlists - Показывать списки воспроизведения + Показывать списки воспроизведения - Show popup information - Показывать всплывающее окно с информацией + Показывать всплывающее окно с информацией - Replay Gain mode: - Режим Replay Gain: + Режим Replay Gain: - Preamp: - Предусиление: + Предусиление: - - dB - дБ + дБ - Default gain: - Усиление по умолчанию: + Усиление по умолчанию: - Use peak info to prevent clipping - Использовать пиковое значение для предотвращения срезания + Использовать пиковое значение для предотвращения срезания - Output: - Вывод: + Вывод: - Buffer size: - Размер буфера: + Размер буфера: - ms - мс + мс - Use software volume control - Использовать программную регулировку громкости + Использовать программную регулировку громкости - - View - Вид + Вид - Shortcuts - Сочетания клавиш + Сочетания клавиш - Hide on close - Скрывать при закрытии + Скрывать при закрытии - Start hidden - Запускать скрытым + Запускать скрытым - Edit template - Редактировать шаблон + Редактировать шаблон - Show anchor - Показывать "якорь" + Показывать "якорь" - Align song numbers - Выравнивать номера фрагментов + Выравнивать номера фрагментов - Cover Image Retrieve - Поиск обложки альбома + Поиск обложки альбома - Use separate image files - Использовать отдельные файлы с изображениями + Использовать отдельные файлы с изображениями - Include files: - Включить файлы: + Включить файлы: - Exclude files: - Исключить файлы: + Исключить файлы: - Recursive search depth: - Глубина рекурсивного поиска: + Глубина рекурсивного поиска: - - Playback - Воспроизведение + Воспроизведение - Continue playback on startup - Продолжить воспроизведение после запуска + Продолжить воспроизведение после запуска - Proxy - Прокси + Прокси - Enable proxy usage - Использовать прокси + Использовать прокси - Proxy host name: - Прокси сервер: + Прокси сервер: - Proxy port: - Прокси порт: + Прокси порт: - Use authentication with proxy - Использовать авторизацию на прокси + Использовать авторизацию на прокси - Proxy user name: - Имя пользователя прокси: + Имя пользователя прокси: - Proxy password: - Пароль прокси: + Пароль прокси: - Action - Действие + Действие - Shortcut - Сочетание клавиш + Сочетание клавиш - Change shortcut... - Изменить сочетание клавиш... + Изменить сочетание клавиш... - Convert underscores to blanks - Преобразовывать подчёркивание в пробел + Преобразовывать подчёркивание в пробел - Convert %20 to blanks - Преобразовывать %20 в пробел + Преобразовывать %20 в пробел - Select Skin Files - Выберите файлы обложек + Выберите файлы обложек - Skin files - Файлы обложек + Файлы обложек - Add... - Добавить... + Добавить... - Refresh - Обновить + Обновить - Show protocol - Показывать протокол + Показывать протокол - Transparency - Прозрачность + Прозрачность - Main window - Главное окно + Главное окно - - - 0 - 0 + 0 - Equalizer - Эквалайзер + Эквалайзер @@ -1052,6 +990,71 @@ Импорт предустановки + + HotkeyEditor + + + Action + Действие + + + + Shortcut + Сочетание клавиш + + + + Change shortcut... + Изменить сочетание клавиш... + + + + Playback + Воспроизведение + + + + View + Вид + + + + Playlist + Список + + + + Misc + Другие + + + + JumpToTrackDialog + + Unqueue + Снять с очереди + + + Queue + В очередь + + + Jump To Track + Перейти к треку + + + Filter + Фильтр + + + Refresh + Обновить + + + Jump To + Перейти к + + MainDisplay @@ -1276,27 +1279,61 @@ MainWindow - + Choose a directory + Выберите директорию + + + Select one or more files to open + Выберите один или несколько файлов + + + + Appearance + Внешний вид + + + + Shortcuts + Сочетания клавиш + + + &Jump To File &Перейти к файлу - + J - + View Вид - + Playlist Список - + Open Playlist + Открыть список + + + Save Playlist + Сохранить список + + + Playlist Files + Файлы списков + + + All Supported Bitstreams + Все форматы + + + Tools Сервис @@ -1595,6 +1632,45 @@ Авто-предустановка + + QMMPStarter + + Usage: qmmp [options] [files] + Использование: qmmp [options] [files] + + + Options: + Опции: + + + Don't start the application + Не запускать приложение + + + Print version number and exit + Показать версии и выйти + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Идеи, исправления, отчёты об ошибках: forkotov02@hotmail.ru + + + Display this text and exit + Показать этот текст и выйти + + + Unknown command + Неизвестная команда + + + QMMP version: + Версия QMMP: + + + Qt version: + Версия Qt: + + ShortcutDialog @@ -1613,6 +1689,169 @@ Очистить + + SkinnedSettings + + + Skins + Обложки + + + + Add... + Добавить... + + + + Refresh + Обновить + + + + + View + Вид + + + + Hide on close + Скрывать при закрытии + + + + Start hidden + Запускать скрытым + + + + Use skin cursors + Использовать встроенные курсоры + + + + Fonts + Шрифты + + + + Player: + Плеер: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Список: + + + + Use bitmap font if available + Использовать растровые шрифты, если возможно + + + + Transparency + Прозрачность + + + + Main window + Главное окно + + + + + + 0 + 0 + + + + Equalizer + Эквалайзер + + + + Playlist + Список + + + + Miscellaneous + Разное + + + + Song Display + Список песен + + + + Show protocol + Показывать протокол + + + + Show song numbers + Показывать номера песен + + + + Show playlists + Показывать списки воспроизведения + + + + Show popup information + Показывать всплывающее окно с информацией + + + + Edit template + Редактировать шаблон + + + + Show anchor + Показывать "якорь" + + + + Align song numbers + Выравнивать номера фрагментов + + + + Select Skin Files + Выберите файлы обложек + + + + Skin files + Файлы обложек + + + + Unarchived skin + Распакованная тема + + + + Archived skin + Упакованная тема + + TextScroller @@ -1629,7 +1868,7 @@ VisualMenu - + Visualization Визуализация diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts index 651bfd2dc..71070867e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts @@ -485,512 +485,450 @@ &Zrušiť + + BuiltinCommandLineOption + + Skip forward in playlist + Posunúť sa v plaliste + + + Skip backwards in playlist + Vrátiť sa v playliste + + + Start playing current song + Začať prehrávanie súčasnej piesne + + + Don't clear the playlist + Nevyčisťovať playlist + + + Pause current song + Pozastaviť súčasnú pieseň + + + Pause if playing, play otherwise + Pozastaviť ak hrá, inak hrať + + + Stop current song + Zastaviť súčasnú pieseň + + + Display Jump to File dialog + Zobraziť dialóg Preskočiť na súbor + + + Set playback volume (example: qmmp --volume 20) + Nastaviť hlasitosť prehrávania (napríklad: qmmp --volume 20) + + + Show/hide application + Zobraziť/skryť program + + + Display Add File dialog + Zobraziť dialóg Pridať súbor + + + Display Add Directory dialog + Zobraziť dialóg Pridať priečinok + + ConfigDialog - Description - Popis + Popis - Filename - Názov súboru + Názov súboru - Artist - Interprét + Interprét - - Album - Album + Album - Track - Skladba + Skladba - Disabled - Zakázané + Zakázané - Transports - Protokoly + Protokoly - Decoders - Dekodéry + Dekodéry - Engines - Prehrávače + Prehrávače - Misc - Rôzn. + Rôzn. - Title - Názov + Názov - Track number - Číslo skladby + Číslo skladby - Two-digit track number - Dvojmiestne číslo skladby + Dvojmiestne číslo skladby - Disc number - Číslo disku + Číslo disku - Condition - Stav + Stav - Composer - Skladateľ + Skladateľ - File name - Názov súboru + Názov súboru - File path - Cesta k súboru + Cesta k súboru - Genre - Žáner + Žáner - Year - Rok + Rok - Comment - Poznámka + Poznámka - Qmmp Settings - Qmmp nastavenia + Qmmp nastavenia - Appearance - Vzhľad + Vzhľad - - - Playlist - Playlist + Playlist - Plugins - Moduly + Moduly - Advanced - Pokročilé + Pokročilé - Skins - Skiny + Skiny - Fonts - Písma + Písma - Player: - Prehrávač: + Prehrávač: - Playlist: - Playlist: + Playlist: - - ??? - ??? + ??? - Replay Gain - Zisk pri prehrávaní + Zisk pri prehrávaní - Miscellaneous - Rôzne + Rôzne - - - ... - ... + ... - Use bitmap font if available - Použiť bitmapové písmo, ak je dostupné + Použiť bitmapové písmo, ak je dostupné - Use skin cursors - Použiť kurzory zo skinu + Použiť kurzory zo skinu - Shortcuts - Skratky + Skratky - Metadata - Metadáta + Metadáta - Load metadata from files - Čítať metadáta zo súborov + Čítať metadáta zo súborov - Song Display - Zobrazenie skladby + Zobrazenie skladby - Title format: - Formát titulku: + Formát titulku: - Show song numbers - Zobrazovať čísla piesní + Zobrazovať čísla piesní - Show playlists - Zobrazovať playlisty + Zobrazovať playlisty - Show popup information - Zobrazovať upozornenia s informáciami + Zobrazovať upozornenia s informáciami - Show anchor - Zobrazovať ukotvenie + Zobrazovať ukotvenie - Align song numbers - Zarovnať čísla piesní + Zarovnať čísla piesní - - Preferences - Nastavenia + Nastavenia - - - Information - Informácie + Informácie - Cover Image Retrieve - Získať obrázok obalu + Získať obrázok obalu - Use separate image files - Používať samostatné súbory obrázkov + Používať samostatné súbory obrázkov - Include files: - Zahrnúť súbory: + Zahrnúť súbory: - Exclude files: - Vynechať súbory: + Vynechať súbory: - Recursive search depth: - Hĺbka rekurzívneho hľadania: + Hĺbka rekurzívneho hľadania: - - Playback - Prehrávanie + Prehrávanie - Continue playback on startup - Pri štarte pokračovať v prehrávaní + Pri štarte pokračovať v prehrávaní - Replay Gain mode: - Režim úpravy zisku pri prehrávaní: + Režim úpravy zisku pri prehrávaní: - Preamp: - Predzosilnenie: + Predzosilnenie: - - dB - dB + dB - Default gain: - Východzý zisk: + Východzý zisk: - Use peak info to prevent clipping - Použiť informáciu o vrchole k zabráneniu orezu + Použiť informáciu o vrchole k zabráneniu orezu - Output: - Výstup: + Výstup: - Buffer size: - Veľkosť bufferu: + Veľkosť bufferu: - ms - ms + ms - 16-bit output - 16bitový výstup + 16bitový výstup - Action - Činnosť + Činnosť - Shortcut - Skratka + Skratka - Change shortcut... - Zmeniť skratku... + Zmeniť skratku... - Connectivity - Pripojenie k sieti + Pripojenie k sieti - - View - Zobrazenie + Zobrazenie - Edit template - Upraviť šablónu + Upraviť šablónu - File Dialog - Súborový dialóg + Súborový dialóg - Proxy - Proxy + Proxy - Enable proxy usage - Povoliť používanie proxy + Povoliť používanie proxy - Proxy host name: - Adresa proxy: + Adresa proxy: - Proxy port: - Port proxy: + Port proxy: - Use authentication with proxy - Použiť autentifikáciu s proxy + Použiť autentifikáciu s proxy - Proxy user name: - Proxy použivateľské meno: + Proxy použivateľské meno: - Proxy password: - Proxy heslo: + Proxy heslo: - Archived skin - Archivovaný skin + Archivovaný skin - Unarchived skin - Nearchivovaný skin + Nearchivovaný skin - Visualization - Vizualizácie + Vizualizácie - Effects - Efekty + Efekty - General - Všeobecné + Všeobecné - - Audio - Zvuk + Zvuk - Use software volume control - Používať softwarové ovládanie hlasitosti + Používať softwarové ovládanie hlasitosti - Hide on close - Skryť pri zatvorení + Skryť pri zatvorení - Start hidden - Spustiť skryté + Spustiť skryté - Convert underscores to blanks - Previesť podčiarknutia na medzery + Previesť podčiarknutia na medzery - Convert %20 to blanks - Previesť %20 na mdezery + Previesť %20 na mdezery - Select Skin Files - Vybrať súbory skinov + Vybrať súbory skinov - Skin files - Súbory skinov + Súbory skinov - Add... - Pridať... + Pridať... - Refresh - Obnoviť + Obnoviť - Show protocol - Zobraziť protokol + Zobraziť protokol - Transparency - Priehľadnosť + Priehľadnosť - Main window - Hlavné okno + Hlavné okno - - - 0 - 0 + 0 - Equalizer - Ekvalizér + Ekvalizér @@ -1052,6 +990,83 @@ Importovat předvolbu + + HotkeyEditor + + + Action + Činnosť + + + + Shortcut + Skratka + + + + Change shortcut... + Zmeniť skratku... + + + + Playback + Prehrávanie + + + + View + + + + + Playlist + Playlist + + + + Misc + Rôzn. + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + F5 + F5 + + + Unqueue + Vyradiť + + + Queue + Zaradiť + + + Jump To Track + Preskočiť na skladbu + + + Filter + Filter + + + Refresh + Obnoviť + + + Jump To + Preskočiť na + + MainDisplay @@ -1276,27 +1291,61 @@ MainWindow - + Choose a directory + Vyberte priečinok + + + Select one or more files to open + Vyberte jeden alebo viac súborov na otvorenie + + + + Appearance + Vzhľad + + + + Shortcuts + Skratky + + + &Jump To File &Preskočiť na súbor - + J J - + View Zobraziť - + Playlist Playlist - + Playlist Files + Súbory playlistov + + + Open Playlist + Otvoriť playlist + + + Save Playlist + Uložiť playlist + + + All Supported Bitstreams + Všetky podporované formáty + + + Tools Nástroje @@ -1595,6 +1644,45 @@ Automatická predvoľba + + QMMPStarter + + Usage: qmmp [options] [files] + Použitie: qmmp [možnosti] [súbory] + + + Options: + Možnosti: + + + Don't start the application + Nezapnúť program + + + Print version number and exit + Vypísať číslo verzie a skončiť + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Nápady, záplaty, hlásenie chýb posílejte na forkotov02@hotmail.ru (anglicky) + + + Display this text and exit + Zobraziť tento text a skončiť + + + Unknown command + Neznámý príkaz + + + QMMP version: + Verzia QMMP: + + + Qt version: + Verzia Qt: + + ShortcutDialog @@ -1613,6 +1701,169 @@ Vyčistiť + + SkinnedSettings + + + Skins + Skiny + + + + Add... + Pridať... + + + + Refresh + Obnoviť + + + + + View + + + + + Hide on close + Skryť pri zatvorení + + + + Start hidden + Spustiť skryté + + + + Use skin cursors + Použiť kurzory zo skinu + + + + Fonts + Písma + + + + Player: + Prehrávač: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Playlist: + + + + Use bitmap font if available + Použiť bitmapové písmo, ak je dostupné + + + + Transparency + Priehľadnosť + + + + Main window + Hlavné okno + + + + + + 0 + 0 + + + + Equalizer + Ekvalizér + + + + Playlist + Playlist + + + + Miscellaneous + Rôzne + + + + Song Display + Zobrazenie skladby + + + + Show protocol + Zobraziť protokol + + + + Show song numbers + Zobrazovať čísla piesní + + + + Show playlists + Zobrazovať playlisty + + + + Show popup information + Zobrazovať upozornenia s informáciami + + + + Edit template + Upraviť šablónu + + + + Show anchor + Zobrazovať ukotvenie + + + + Align song numbers + Zarovnať čísla piesní + + + + Select Skin Files + Vybrať súbory skinov + + + + Skin files + Súbory skinov + + + + Unarchived skin + Nearchivovaný skin + + + + Archived skin + Archivovaný skin + + TextScroller @@ -1629,7 +1880,7 @@ VisualMenu - + Visualization Vizualizácie diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts index 18ae4cc3e..243de482e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts @@ -486,511 +486,273 @@ - ConfigDialog + BuiltinCommandLineOption - - Description - Açıklama + Skip forward in playlist + İleri atla - - Filename - Dosya adı + Skip backwards in playlist + Geri atla - - Artist - Sanatçı + Start playing current song + Mevcut şarkıyı çalmaya başla - - - Album - Albüm - - - - Track - - - - - Disabled - + Don't clear the playlist + Çalma listesini temizleme - - Transports - + Pause current song + Mevcut şarkıyı duraklat - - Decoders - + Pause if playing, play otherwise + Çalıyorsa duraklat, değilse oynat - - Engines - + Stop current song + Mevcut şarkıyı durdur - - Misc - + Display Jump to File dialog + Dosyaya atlama diyaloğunu göster - - Title - Başlık + Show/hide application + Uygulamayı göster/gizle - - Track number - + Display Add File dialog + Dosya ekleme diyaloğunu göster - - Two-digit track number - + Display Add Directory dialog + Dizin ekleme diyaloğunu göster + + + ConfigDialog - - Disc number - + Description + Açıklama - - Condition - + Filename + Dosya adı - - Genre - Tarz + Artist + Sanatçı - - Composer - + Album + Albüm - - File name - + Title + Başlık - - File path - + Genre + Tarz - Year - Yıl + Yıl - Comment - Yorum + Yorum - Qmmp Settings - Qmmp Ayarları + Qmmp Ayarları - Skins - Kabuklar + Kabuklar - Fonts - Fontlar + Fontlar - Player: - Oynatıcı: + Oynatıcı: - Playlist: - Çalma Listesi: + Çalma Listesi: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Veri bilgisi + Veri bilgisi - Load metadata from files - Veri bilgisini dosyadan yükle + Veri bilgisini dosyadan yükle - Song Display - Şarkı Göstergesi + Şarkı Göstergesi - Title format: - Başlık formatı: + Başlık formatı: - - Preferences - Tercihler + Tercihler - - - Information - Bilgi + Bilgi - Appearance - Görünüm + Görünüm - - - Playlist - Çalma Listesi + Çalma Listesi - Plugins - Eklentiler + Eklentiler - Advanced - Gelişmiş - - - - 16-bit output - + Gelişmiş - Archived skin - Arşivlenmiş kabuk + Arşivlenmiş kabuk - Unarchived skin - Arşivlenmemiş kabuk + Arşivlenmemiş kabuk - Connectivity - Bağlanırlık + Bağlanırlık - Visualization - Görsellik + Görsellik - Effects - Efektler + Efektler - General - Genel + Genel - File Dialog - Dosya Diyaloğu + Dosya Diyaloğu - - Audio - Ses - - - - Replay Gain - - - - - Miscellaneous - - - - - Use bitmap font if available - + Ses - - Use skin cursors - - - - Show song numbers - Şarkı numaralarını göster - - - - Show playlists - + Şarkı numaralarını göster - - Show popup information - - - - - Replay Gain mode: - - - - - Preamp: - - - - - - dB - - - - - Default gain: - - - - - Use peak info to prevent clipping - - - - - Output: - - - - - Buffer size: - - - - - ms - - - - Use software volume control - Yazılımsal ses kontrolünü kullan - - - - - View - - - - - Shortcuts - + Yazılımsal ses kontrolünü kullan - Hide on close - Kapatınca saklan + Kapatınca saklan - Start hidden - Gizli başlat - - - - Edit template - - - - - Show anchor - - - - - Align song numbers - - - - - Cover Image Retrieve - - - - - Use separate image files - - - - - Include files: - - - - - Exclude files: - - - - - Recursive search depth: - + Gizli başlat - - - Playback - - - - - Continue playback on startup - - - - Proxy - Vekil sunucu + Vekil sunucu - Enable proxy usage - Vekil sunucu kullanımını etkinleştir + Vekil sunucu kullanımını etkinleştir - Proxy host name: - Vekil sunucu adı: + Vekil sunucu adı: - Proxy port: - Vekil sunucu portu: + Vekil sunucu portu: - Use authentication with proxy - Vekil sunucu yetkilendirmesi kullan + Vekil sunucu yetkilendirmesi kullan - Proxy user name: - Vekil sunucu kullanıcı adı: + Vekil sunucu kullanıcı adı: - Proxy password: - Vekil sunucu parolası: - - - - Action - + Vekil sunucu parolası: - - Shortcut - - - - - Change shortcut... - - - - Convert underscores to blanks - Alt çizgileri boşluğa çevir + Alt çizgileri boşluğa çevir - Convert %20 to blanks - %20 yi boşluğa çevir + %20 yi boşluğa çevir - Select Skin Files - Kabuk Dosyası Seç + Kabuk Dosyası Seç - Skin files - Kabuk dosyaları + Kabuk dosyaları - Add... - Ekle... + Ekle... - Refresh - Yenile + Yenile - Show protocol - Protokolü göster + Protokolü göster - Transparency - Transparanlık + Transparanlık - Main window - Ana pencere + Ana pencere - - - 0 - 0 + 0 - Equalizer - Ekolayzır + Ekolayzır @@ -1052,6 +814,79 @@ Tanımlanmış Ayarları Al + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + + + + + View + + + + + Playlist + Çalma Listesi + + + + Misc + + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + Unqueue + Kuyrukta Değil + + + Queue + Kuyruk + + + Jump To Track + Parçaya Git + + + Filter + Filtre + + + Refresh + Yenile + + + Jump To + Git + + MainDisplay @@ -1276,27 +1111,61 @@ MainWindow - + Choose a directory + Bir dizin seçin + + + Select one or more files to open + Açmak için bir yada daha çok dosya seçin + + + + Appearance + Görünüm + + + + Shortcuts + + + + &Jump To File &Parçaya Git - + J J - + View - + Playlist Çalma Listesi - + Open Playlist + Çalma Listesini Aç + + + Save Playlist + Çalma Listesini Kaydet + + + Playlist Files + Çalma Listesi Dosyaları + + + All Supported Bitstreams + Tüm Desteklenen Bitstreamler + + + Tools Araçlar @@ -1595,6 +1464,37 @@ Ayarları Otomatik Tanımla + + QMMPStarter + + Usage: qmmp [options] [files] + Kullanım:qmmp [seçenek] [dosyalar] + + + Options: + Seçenekler: + + + Print version number and exit + Sürüm numarasını yazdır ve çık + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Fikirleinizi, yamalarınızı, hata raporlarınızı forkotov02@hotmail.ru adresine gönderin + + + Display this text and exit + Bu metni göster ve çık + + + QMMP version: + QMMP sürümü: + + + Qt version: + Qt sürümü: + + ShortcutDialog @@ -1613,6 +1513,169 @@ + + SkinnedSettings + + + Skins + Kabuklar + + + + Add... + Ekle... + + + + Refresh + Yenile + + + + + View + + + + + Hide on close + Kapatınca saklan + + + + Start hidden + Gizli başlat + + + + Use skin cursors + + + + + Fonts + Fontlar + + + + Player: + Oynatıcı: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Çalma Listesi: + + + + Use bitmap font if available + + + + + Transparency + Transparanlık + + + + Main window + Ana pencere + + + + + + 0 + 0 + + + + Equalizer + Ekolayzır + + + + Playlist + Çalma Listesi + + + + Miscellaneous + + + + + Song Display + Şarkı Göstergesi + + + + Show protocol + Protokolü göster + + + + Show song numbers + Şarkı numaralarını göster + + + + Show playlists + + + + + Show popup information + + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + Kabuk Dosyası Seç + + + + Skin files + Kabuk dosyaları + + + + Unarchived skin + Arşivlenmemiş kabuk + + + + Archived skin + Arşivlenmiş kabuk + + TextScroller @@ -1629,7 +1692,7 @@ VisualMenu - + Visualization Görüntüleme diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts index 0e913383f..cabe5e927 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts @@ -259,7 +259,7 @@ Meta+D - + @@ -485,512 +485,442 @@ &Відміна + + BuiltinCommandLineOption + + Skip forward in playlist + Перейти до наступного фрагменту + + + Skip backwards in playlist + Перейти до попереднього фрагменту + + + Start playing current song + Грати поточну пісню + + + Don't clear the playlist + Не очищати список + + + Pause current song + Призупитини поточну пісню + + + Pause if playing, play otherwise + Призупинити/відтворити + + + Stop current song + Зупитини поточну пісню + + + Display Jump to File dialog + Показати діалог переходу до файла + + + Set playback volume (example: qmmp --volume 20) + Встановити гучність (приклад: qmmp --volume 20) + + + Show/hide application + Показати/сховати програму + + + Display Add File dialog + Показати діалог додавання файлів + + + Display Add Directory dialog + Показати діалог додавання тек + + ConfigDialog - Description - Пояснення + Пояснення - Filename - Ім'я файлу + Ім'я файлу - Artist - Виконавець + Виконавець - - Album - Альбом + Альбом - Track - Трек + Трек - Disabled - Вимкнено + Вимкнено - Transports - Транспорти + Транспорти - Decoders - Декодери + Декодери - Engines - Зовнішні програвачі + Зовнішні програвачі - Misc - Інші + Інші - Title - Назва + Назва - Track number - Номер треку + Номер треку - Two-digit track number - 2- розрядний номер трека + 2- розрядний номер трека - Disc number - Номер диску + Номер диску - Condition - Умова + Умова - Genre - Жанр + Жанр - Composer - Композитор + Композитор - File name - Ім'я файлу + Ім'я файлу - File path - Шлях файлу + Шлях файлу - Year - Рік + Рік - Comment - Коментар + Коментар - Qmmp Settings - Налаштування Qmmp + Налаштування Qmmp - Skins - Шкурки + Шкурки - Fonts - Шрифти + Шрифти - Player: - Програвач: + Програвач: - Playlist: - Список: + Список: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - Метадані + Метадані - Load metadata from files - Зчитувати метадані з файлів + Зчитувати метадані з файлів - Song Display - Список пісень + Список пісень - Title format: - Формат назви: + Формат назви: - - Preferences - Налаштування + Налаштування - - - Information - Інформація + Інформація - Appearance - Зовнішній вигляд + Зовнішній вигляд - - - Playlist - Список + Список - Plugins - Модулі + Модулі - Advanced - Додатково + Додатково - 16-bit output - 16-бітний вивід + 16-бітний вивід - Archived skin - Упакована тема + Упакована тема - Unarchived skin - Розпакована тема + Розпакована тема - Connectivity - Мережа + Мережа - Visualization - Візуалізація + Візуалізація - Effects - Ефекти + Ефекти - General - Загальне + Загальне - File Dialog - Файловий діалог + Файловий діалог - - Audio - Звук + Звук - Replay Gain - Нормалізація гучності + Нормалізація гучності - Miscellaneous - Різне + Різне - Use bitmap font if available - Використовувати растрові шрифти, якщо доступні + Використовувати растрові шрифти, якщо доступні - Use skin cursors - Використовувати курсори скіна + Використовувати курсори скіна - Show song numbers - Відображати номера пісень + Відображати номера пісень - Show playlists - Показати списки + Показати списки - Show popup information - Показувати спливаюче вікно з інформацією + Показувати спливаюче вікно з інформацією - Replay Gain mode: - Режим нормалізації гучності: + Режим нормалізації гучності: - Preamp: - Преамплітуда: + Преамплітуда: - - - dB - - - - Default gain: - Нормалізація за умовчанням: + Нормалізація за умовчанням: - Use peak info to prevent clipping - Використовувати інформацію піків для запобігання відсікання + Використовувати інформацію піків для запобігання відсікання - Output: - Виведення: + Виведення: - Buffer size: - Розмір буферу: + Розмір буферу: - ms - мс + мс - Use software volume control - Використовувати програмний контроль гучності + Використовувати програмний контроль гучності - - View - Вигляд + Вигляд - Shortcuts - Комбінації клавіш + Комбінації клавіш - Hide on close - Ховати при закритті + Ховати при закритті - Start hidden - Запускати схованим + Запускати схованим - Edit template - Редагувати шаблон + Редагувати шаблон - Show anchor - Показувати "якір" + Показувати "якір" - Align song numbers - Вирівнювати номери фрагментів + Вирівнювати номери фрагментів - Cover Image Retrieve - Пошук обладинки альбома + Пошук обладинки альбома - Use separate image files - Використовувати окремі файли зображень + Використовувати окремі файли зображень - Include files: - Включити файли: + Включити файли: - Exclude files: - Виключити файли: + Виключити файли: - Recursive search depth: - Глибина рекурсивного пошуку: + Глибина рекурсивного пошуку: - - Playback - Відтворення + Відтворення - Continue playback on startup - Продовжити відтворення при запуску + Продовжити відтворення при запуску - Proxy - Проксі + Проксі - Enable proxy usage - Використосувати проксі + Використосувати проксі - Proxy host name: - Сервер проксі: + Сервер проксі: - Proxy port: - Порт проксі: + Порт проксі: - Use authentication with proxy - Використовувати авторизацію на проксі + Використовувати авторизацію на проксі - Proxy user name: - Ім'я користвача проксі: + Ім'я користвача проксі: - Proxy password: - Пароль проксі: + Пароль проксі: - Action - Дія + Дія - Shortcut - Комбінація + Комбінація - Change shortcut... - Змінити комбінації клавіш... + Змінити комбінації клавіш... - Convert underscores to blanks - Конвертувати підкреслювання в пробіл + Конвертувати підкреслювання в пробіл - Convert %20 to blanks - Конвертувати %20 в пробіл + Конвертувати %20 в пробіл - Select Skin Files - Вибрати файли скінів + Вибрати файли скінів - Skin files - Файли скінів + Файли скінів - Add... - Додати... + Додати... - Refresh - Поновити + Поновити - Show protocol - Показати протокол + Показати протокол - Transparency - Прозорість + Прозорість - Main window - Головне вікно + Головне вікно - - - - 0 - - - - Equalizer - Еквалайзер + Еквалайзер @@ -1052,6 +982,71 @@ Імпорт предвстановлення + + HotkeyEditor + + + Action + Дія + + + + Shortcut + Комбінація + + + + Change shortcut... + Змінити комбінації клавіш... + + + + Playback + Відтворення + + + + View + Вигляд + + + + Playlist + Список + + + + Misc + Інші + + + + JumpToTrackDialog + + Unqueue + Зняти з черги + + + Queue + В чергу + + + Jump To Track + Перейти до треку + + + Filter + Фильтр + + + Refresh + Поновити + + + Jump To + Перейти до + + MainDisplay @@ -1276,27 +1271,61 @@ MainWindow - + Choose a directory + Виберіть теку + + + Select one or more files to open + Виберіть один чи кілька файлів + + + + Appearance + Зовнішній вигляд + + + + Shortcuts + Комбінації клавіш + + + &Jump To File &Перейти до файлу - + J - + View Вигляд - + Playlist Список - + Open Playlist + Відкрити список + + + Save Playlist + Зберегти список + + + Playlist Files + Файли списків + + + All Supported Bitstreams + Усі формати + + + Tools Утиліти @@ -1595,6 +1624,45 @@ Авто-предвстановлення + + QMMPStarter + + Usage: qmmp [options] [files] + Використання: qmmp [options] [files] + + + Options: + Опції: + + + Don't start the application + Не запускати програму + + + Print version number and exit + Показати версію та вийти + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ідеї, виправлення, звіти про помилки: forkotov02@hotmail.ru + + + Display this text and exit + Показати цей текст та вийти + + + Unknown command + Невідома команда + + + QMMP version: + Версія QMMP: + + + Qt version: + Версія Qt: + + ShortcutDialog @@ -1613,6 +1681,169 @@ Очистити + + SkinnedSettings + + + Skins + Шкурки + + + + Add... + Додати... + + + + Refresh + Поновити + + + + + View + Вигляд + + + + Hide on close + Ховати при закритті + + + + Start hidden + Запускати схованим + + + + Use skin cursors + Використовувати курсори скіна + + + + Fonts + Шрифти + + + + Player: + Програвач: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + Список: + + + + Use bitmap font if available + Використовувати растрові шрифти, якщо доступні + + + + Transparency + Прозорість + + + + Main window + Головне вікно + + + + + + 0 + + + + + Equalizer + Еквалайзер + + + + Playlist + Список + + + + Miscellaneous + Різне + + + + Song Display + Список пісень + + + + Show protocol + Показати протокол + + + + Show song numbers + Відображати номера пісень + + + + Show playlists + Показати списки + + + + Show popup information + Показувати спливаюче вікно з інформацією + + + + Edit template + Редагувати шаблон + + + + Show anchor + Показувати "якір" + + + + Align song numbers + Вирівнювати номери фрагментів + + + + Select Skin Files + Вибрати файли скінів + + + + Skin files + Файли скінів + + + + Unarchived skin + Розпакована тема + + + + Archived skin + Упакована тема + + TextScroller @@ -1629,7 +1860,7 @@ VisualMenu - + Visualization Візуалізація diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts index 3103215e0..f1606e34e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts @@ -61,12 +61,12 @@ Output plugins: - 输出插件: + 输出插件 Visual plugins: - 可视化插件: + 可视化插件 @@ -94,372 +94,372 @@ &Play - 播放(&P) + 播放(&P) X - X + X &Pause - 暂停(&P) + 暂停(&P) C - C + C &Stop - 停止(&S) + 停止(&S) V - V + V &Previous - 上一曲(&P) + 上一曲(&P) Z - Z + Z &Next - 下一曲(&N) + 下一曲(&N) B - B + B &Play/Pause - 播放/暂停(&P) + 播放/暂停(&P) Space - 空格 + 空格 &Jump to File - 跳到文件(&J) + J - J + J &Repeat Playlist - 重复列表(&R) + 重复播放列表(&R) R - R + R &Repeat Track - 重复音轨(&R) + 重复音轨(&R) Ctrl+R - Ctrl+R + Ctrl+R &Shuffle - 乱序(&S) + 乱序(&S) S - S + S &No Playlist Advance - 无列表继续(&N) + Ctrl+N - + &Stop After Selected - 已选后停止(&S) + Ctrl+S - + &Clear Queue - 清除队列(&C) + Alt+Q - + Show Playlist - 显示播放列表 + Alt+E - + Show Equalizer - 显示均衡器 + Alt+G - + Always on Top - 常居顶端 + Put on All Workspaces - 在所有工作区 + Double Size - 两倍大小 + Meta+D - + &Add File - 添加文件(&A) + 添加文件(&A) F - F + F &Add Directory - 添加文件夹(&A) + 添加文件夹(&A) D - D + D &Add Url - 添加 URL (&A) + 添加 URL (&A) U - U + U &Remove Selected - 删除所选(&R) + 删除所选(&R) Del - Del + Del &Remove All - 删除全部(&R) + 删除全部(&R) &Remove Unselected - 删除未选(&R) + 删除未选(&R) Remove unavailable files - 删除未选的文件 + Remove duplicates - 删除重复 + &Queue Toggle - 队列切换(&Q) + Q - Q + Q Invert Selection - 反选 + 反选 &Select None - 无选择(&S) + 无选择(&S) &Select All - 选择全部(&S) + 选择全部(&S) Ctrl+A - Ctrl+A + Ctrl+A &View Track Details - 查看音轨详情(&V) + 查看音轨详细信息(&V) Alt+I - Alt+I + Alt+I &New List - 新建列表(&N) + 新建列表(&N) Ctrl+T - + &Delete List - 删除列表(&D) + Ctrl+W - + &Load List - 载入列表(&L) + 载入列表(&L) O - O + O &Save List - 保存列表(&S) + 保存列表(&S) Shift+S - Shift+S + Shift+S &Select Next Playlist - 选择下一列表(&S) + Ctrl+PgDown - + &Select Previous Playlist - 选择上一列表(&S) + Ctrl+PgUp - + &Show Playlists - 显示列表(&S) + P - + &Settings - 设置(&S) + 设置(&S) Ctrl+P - Ctrl+P + Ctrl+P &About - 关于(&A) + 关于(&A) &About Qt - 关于 Qt (&A) + 关于 Qt (&A) &Exit - 退出(&E) + 退出(&E) Ctrl+Q - Ctrl+Q + Ctrl+Q @@ -486,511 +486,273 @@ - ConfigDialog - - - Description - 描述 - - - - Filename - 文件名 - + BuiltinCommandLineOption - - Artist - 艺术家 + Skip forward in playlist + 跳到播放列表中的下一曲 - - - Album - 专辑 + Skip backwards in playlist + 跳到播放列表中的上一曲 - - Track - 音轨 + Start playing current song + 开始播放当前曲目 - - Disabled - 禁止 + Don't clear the playlist + 不要清除这个播放列表 - - Transports - 传输 + Pause current song + 暂停当前曲目 - - Decoders - 解码器 + Pause if playing, play otherwise + 正在播放则暂停,相反处于暂停则播放 - - Engines - 引擎 + Stop current song + 停止当前曲目 - - Misc - 杂项 + Display Jump to File dialog + 显示跳到文件对话 - - Title - 标题 + Show/hide application + 显示/隐藏程序 - - Track number - 音轨编号 + Display Add File dialog + 显示添加文件对话 - - Two-digit track number - 两位数音轨编号 + Display Add Directory dialog + 显示添加目录对话 + + + ConfigDialog - - Disc number - 光盘编号 + Description + 描述 - - Condition - 条件 + Filename + 文件名 - - Genre - 流派 + Artist + 艺术家 - - Composer - 作曲 + Album + 专辑 - - File name - 文件名 + Title + 标题 - - File path - 文件路径 + Genre + 流派 - Year - 年代 + 年代 - Comment - 备注 + 备注 - Qmmp Settings - Qmmp 设置 + Qmmp 设置 - Skins - 皮肤 + 皮肤 - Fonts - 字体 + 字体 - Player: - 播放器: + 播放器: - Playlist: - 播放列表: + 播放列表: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - 元数据 + 元数据 - Load metadata from files - 从文件载入元数据 + 从文件载入元数据 - Song Display - 显示歌曲 + 显示歌曲 - Title format: - 标题格式: + 标题格式: - - Preferences - 参数设置 + 参数设置 - - - Information - 信息 + 信息 - Appearance - 外观 + 外观 - - - Playlist - 播放列表 + 播放列表 - Plugins - 插件 + 插件 - Advanced - 高级 + 高级 - - 16-bit output - 16 位输出 - - - Archived skin - 压缩皮肤 + 压缩皮肤 - Unarchived skin - 未压缩皮肤 + 未压缩皮肤 - Connectivity - 连接 + 连接 - Visualization - 可视化 + 可视化 - Effects - 特效 + 特效 - General - 常规 + 常规 - File Dialog - 文件对话 + 文件对话 - - Audio - 音频 - - - - Replay Gain - 回放增益 + 音频 - - Miscellaneous - 杂项 - - - - Use bitmap font if available - 如果可用使用位图字体 - - - - Use skin cursors - 使用皮肤光标 - - - Show song numbers - 显示曲目编号 - - - - Show playlists - 显示播放列表 - - - - Show popup information - 显示弹出信息 - - - - Replay Gain mode: - 回放增益模式: - - - - Preamp: - 前置放大器: - - - - - dB - - - - - Default gain: - 默认增益: - - - - Use peak info to prevent clipping - 使用峰值信息以防削波 - - - - Output: - 输出: + 显示曲目编号 - - Buffer size: - 缓冲大小: - - - - ms - - - - Use software volume control - 使用软设备音量控制 + 使用软设备音量控制 - - - View - 视图 - - - - Shortcuts - 快捷键 - - - Hide on close - 关闭时隐藏 + 关闭时隐藏 - Start hidden - 启动时隐藏 - - - - Edit template - 编辑模板 - - - - Show anchor - 显示主持人 - - - - Align song numbers - 一样的曲目号 - - - - Cover Image Retrieve - 封面图像检索 - - - - Use separate image files - 使用单独图像文件 - - - - Include files: - 包含文件: - - - - Exclude files: - 排除文件: - - - - Recursive search depth: - 递归搜索深度: + 启动时隐藏 - - - Playback - 回放 - - - - Continue playback on startup - 启动时继续上次播放 - - - Proxy - 代理 + 代理 - Enable proxy usage - 启用代理 + 启用代理 - Proxy host name: - 主机名: + 主机名: - Proxy port: - 端口: + 端口: - Use authentication with proxy - 需要身份验证 + 需要身份验证 - Proxy user name: - 用户名: + 用户名: - Proxy password: - 密码: - - - - Action - 动作 - - - - Shortcut - 快捷键 - - - - Change shortcut... - 改变快捷键... + 密码: - Convert underscores to blanks - 转换下划线为空格 + 转换下划线为空格 - Convert %20 to blanks - 转换 %20 为空格 + 转换 %20 为空格 - Select Skin Files - 选择皮肤文件 + 选择皮肤文件 - Skin files - 皮肤文件 + 皮肤文件 - Add... - 添加... + 添加... - Refresh - 刷新 + 刷新 - Show protocol - 显示协议 + 显示协议 - Transparency - 透明度 + 透明度 - Main window - 主窗口 + 主窗口 - - - 0 - 0 + 0 - Equalizer - 均衡器 + 均衡器 @@ -1044,7 +806,7 @@ Equalizer - 均衡器 + 均衡器 @@ -1052,6 +814,79 @@ 导入预设 + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + + + + + View + + + + + Playlist + 播放列表 + + + + Misc + + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + Unqueue + 移出队列 + + + Queue + 加入队列 + + + Jump To Track + 跳到音轨 + + + Filter + 过滤 + + + Refresh + 刷新 + + + Jump To + 跳到 + + MainDisplay @@ -1117,27 +952,27 @@ Volume: %1% - 音量:%1% + Balance: %1% right - 平衡:%1% 右 + Balance: %1% left - 平衡:%1% 左 + Balance: center - 平衡:置中 + Seek to: %1 - 移动至:%1 + @@ -1276,27 +1111,61 @@ MainWindow - + Choose a directory + 选择一个目录 + + + Select one or more files to open + 选择打开一个或更多文件 + + + + Appearance + 外观 + + + + Shortcuts + + + + &Jump To File 跳到文件(&J) - + J J - + View - 视图 + - + Playlist - 播放列表 + 播放列表 + + + Open Playlist + 打开播放列表 + + + Save Playlist + 保存播放列表 + + + Playlist Files + 播放列表文件 + + + All Supported Bitstreams + 支持的全部文件 - + Tools 工具 @@ -1306,7 +1175,7 @@ &Copy Selection To - 复制选择到(&C) + @@ -1323,13 +1192,13 @@ By Album - 按专辑 + By Artist - 按艺术家 + @@ -1367,7 +1236,7 @@ &New PlayList - 新建列表(&N) + @@ -1378,7 +1247,7 @@ Playlist - 播放列表 + 播放列表 @@ -1391,29 +1260,29 @@ Playlist Browser - 播放列表浏览 + New - 新建 + Delete - 删除 + 删除 ... - ... + ... Rename - 重命名 + @@ -1421,32 +1290,32 @@ &Load - 载入(&L) + &Save As... - 另存为(&S) + Rename - 重命名 + &Delete - 删除(&D) + Rename Playlist - 重命名播放列表 + Playlist name: - 播放列表名称: + @@ -1454,117 +1323,117 @@ Popup Information Settings - 弹出信息设置 + Show cover - 显示封面 + Transparency: - 透明度: + Delay: - 延迟: + ms - + Cover size: - 封面大小: + Template - 模板 + Reset - 重设 + Insert - 插入 + Artist - 艺术家 + 艺术家 Album - 专辑 + 专辑 Title - 标题 + 标题 Track number - 音轨编号 + Two-digit track number - 两位数音轨编号 + Genre - 流派 + 流派 Comment - 备注 + 备注 Composer - 作曲 + Duration - 持续时间 + Disc number - 光盘编号 + File name - 文件名 + File path - 文件路径 + Year - 年代 + 年代 Condition - 条件 + @@ -1595,22 +1464,216 @@ 自动预设 + + QMMPStarter + + Usage: qmmp [options] [files] + 使用:qmmp [设置] [文件] + + + Options: + 设置: + + + Print version number and exit + 显示版本并退出 + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + 建议、补丁或提交 bug 请发送到 forkotov02@hotmail.ru + + + Display this text and exit + 显示这些文本并退出 + + + QMMP version: + Qmmp 版本: + + + Qt version: + Qt 版本: + + ShortcutDialog Change Shortcut - 改变路径 + Press the key combination you want to assign - 按下你要指派的组合键 + Clear - 清除 + + + + + SkinnedSettings + + + Skins + 皮肤 + + + + Add... + 添加... + + + + Refresh + 刷新 + + + + + View + + + + + Hide on close + 关闭时隐藏 + + + + Start hidden + 启动时隐藏 + + + + Use skin cursors + + + + + Fonts + 字体 + + + + Player: + 播放器: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + 播放列表: + + + + Use bitmap font if available + + + + + Transparency + 透明度 + + + + Main window + 主窗口 + + + + + + 0 + 0 + + + + Equalizer + 均衡器 + + + + Playlist + 播放列表 + + + + Miscellaneous + + + + + Song Display + 显示歌曲 + + + + Show protocol + 显示协议 + + + + Show song numbers + 显示曲目编号 + + + + Show playlists + + + + + Show popup information + + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + 选择皮肤文件 + + + + Skin files + 皮肤文件 + + + + Unarchived skin + 未压缩皮肤 + + + + Archived skin + 压缩皮肤 @@ -1623,13 +1686,13 @@ Buffering: %1% - 缓冲:%1% + VisualMenu - + Visualization 可视化 diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts index 0bd4936d7..469688eb2 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts @@ -94,372 +94,372 @@ &Play - 播放(&P) + 播放(&P) X - X + X &Pause - 暫停(&P) + 暫停(&P) C - C + C &Stop - 停止(&S) + 停止(&S) V - V + V &Previous - 上一曲(&P) + 上一曲(&P) Z - Z + Z &Next - 下一曲(&N) + 下一曲(&N) B - B + B &Play/Pause - 播放/暫停(&P) + 播放/暫停(&P) Space - 空格 + 空格 &Jump to File - 跳到文件(&J) + J - J + J &Repeat Playlist - 重復播放清單(&R) + 重復播放清單(&R) R - R + R &Repeat Track - 重復音軌(&R) + 重復音軌(&R) Ctrl+R - Ctrl+R + Ctrl+R &Shuffle - 亂序(&S) + 亂序(&S) S - S + S &No Playlist Advance - 無清單繼續(&N) + Ctrl+N - + &Stop After Selected - 選定后停止(&S) + Ctrl+S - + &Clear Queue - 清除佇列(&C) + Alt+Q - + Show Playlist - 顯示播放清單 + Alt+E - + Show Equalizer - 顯示均衡器 + Alt+G - + Always on Top - 常居頂端 + Put on All Workspaces - 放全部工作區 + Double Size - 雙倍大小 + Meta+D - + &Add File - 添加文件(&A) + 添加檔案(&A) F - F + F &Add Directory - 添加文件夾(&A) + 添加檔案夾(&A) D - D + D &Add Url - 添加 URL (&A) + 添加 URL (&A) U - U + U &Remove Selected - 移除所選(&R) + 移除所選(&R) Del - Del + Del &Remove All - 移除全部(&R) + 移除全部(&R) &Remove Unselected - 移除未選(&R) + 移除未選(&R) Remove unavailable files - 移除未選文件 + Remove duplicates - 移除重复 + &Queue Toggle - 佇列切換(&Q) + Q - Q + Q Invert Selection - 反選 + 反選 &Select None - 無選取(&S) + 無選取(&S) &Select All - 選取全部(&S) + 選取全部(&S) Ctrl+A - Ctrl+A + Ctrl+A &View Track Details - 檢視音軌詳訊(&V) + 檢視音軌詳細資訊(&V) Alt+I - Alt+I + Alt+I &New List - 新建清單(&N) + 新建清單(&N) Ctrl+T - + &Delete List - 移除清單(&D) + Ctrl+W - + &Load List - 載入清單(&L) + 載入清單(&L) O - O + O &Save List - 儲存清單(&S) + 儲存清單(&S) Shift+S - Shift+S + Shift+S &Select Next Playlist - 選擇下一清單(&S) + Ctrl+PgDown - + &Select Previous Playlist - 選擇上一清單(&S) + Ctrl+PgUp - + &Show Playlists - 顯示播放清單(&S) + P - + &Settings - 設定(&S) + 設定(&S) Ctrl+P - Ctrl+P + Ctrl+P &About - 關於(&A) + 關於(&A) &About Qt - 關於 Qt (&A) + 關於 Qt (&A) &Exit - 結束(&E) + 結束(&E) Ctrl+Q - Ctrl+Q + Ctrl+Q @@ -486,511 +486,273 @@ - ConfigDialog - - - Description - 說明 - + BuiltinCommandLineOption - - Filename - 文件名 - - - - Artist - 藝術家 + Skip forward in playlist + 跳到播放清單中的下一曲 - - - Album - 專輯 + Skip backwards in playlist + 跳到播放清單中的上一曲 - - Track - 音軌 + Start playing current song + 開始播放目前曲目 - - Disabled - 禁止 + Don't clear the playlist + 不要清除這個播放清單 - - Transports - 傳輸 + Pause current song + 暫停目前曲目 - - Decoders - 解碼器 + Pause if playing, play otherwise + 正在播放則暫停,相反處於暫停則播放 - - Engines - 引擎 + Stop current song + 停止目前曲目 - - Misc - 雜項 + Display Jump to File dialog + 察看跳到檔案對話 - - Title - 標題 + Show/hide application + 察看/隱藏程式 - - Track number - 音軌編號 + Display Add File dialog + 察看添加檔案對話 - - Two-digit track number - 兩位數音軌編號 + Display Add Directory dialog + 察看添加目錄對話 + + + ConfigDialog - - Disc number - 光槃編號 + Description + 說明 - - Condition - 條件 + Filename + 檔名 - - Genre - 流派 + Artist + 藝術家 - - Composer - 作曲 + Album + 專輯 - - File name - 文件名 + Title + 標題 - - File path - 文件路徑 + Genre + 流派 - Year - 年代 + 年代 - Comment - 備註 + 備註 - Qmmp Settings - Qmmp 設定 + Qmmp 設定 - Skins - 皮膚 + 皮膚 - Fonts - 字型 + 字型 - Player: - 播放器: + 播放器: - Playlist: - 播放清單: + 播放清單: - - ??? - ??? + ??? - - - ... - ... + ... - Metadata - 元資料 + 元資料 - Load metadata from files - 從文件載入元資料 + 從檔案載入元資料 - Song Display - 察看歌曲 + 察看歌曲 - Title format: - 標題格式: + 標題格式: - - Preferences - 引數設定 + 引數設定 - - - Information - 資訊 + 資訊 - Appearance - 外觀 + 外觀 - - - Playlist - 播放清單 + 播放清單 - Plugins - 插件 + 插件 - Advanced - 進階 - - - - 16-bit output - 16 比特輸出 + 進階 - Archived skin - 壓縮皮膚 + 封包皮膚 - Unarchived skin - 未壓縮皮膚 + 未封包皮膚 - Connectivity - 連線 + 連線 - Visualization - 可視化 + 可視化 - Effects - 特效 + 特效 - General - 常規 + 常規 - File Dialog - 文件對話 + 檔案對話 - - Audio - 聲訊 - - - - Replay Gain - 回放增益 - - - - Miscellaneous - 雜項 - - - - Use bitmap font if available - 如果可用使用位圖字體 + 聲訊 - - Use skin cursors - 使用皮膚光標 - - - Show song numbers - 顯示曲目編號 - - - - Show playlists - 顯示播放清單 - - - - Show popup information - 顯示彈出信息 - - - - Replay Gain mode: - 回放增益模式: - - - - Preamp: - 前置放大器: + 顯示曲目編號 - - - dB - - - - - Default gain: - 默認增益: - - - - Use peak info to prevent clipping - 使用峰值信息以防削波 - - - - Output: - 輸出: - - - - Buffer size: - 緩沖大小: - - - - ms - - - - Use software volume control - 使用軟裝置音量控制 + 使用軟裝置音量控制 - - - View - 視圖 - - - - Shortcuts - 快捷鍵 - - - Hide on close - 關閉時隱藏 + 關閉時隱藏 - Start hidden - 啟動時隱藏 - - - - Edit template - 編輯模板 - - - - Show anchor - 顯示主持人 - - - - Align song numbers - 一樣的曲目號 - - - - Cover Image Retrieve - 封面圖像檢索 - - - - Use separate image files - 使用單獨圖像文件 - - - - Include files: - 包含文檔: - - - - Exclude files: - 排除文檔: + 啟動時隱藏 - - Recursive search depth: - 遞歸搜索深度: - - - - - Playback - 回放 - - - - Continue playback on startup - 啟動時繼續上次播放 - - - Proxy - 代理 + 代理 - Enable proxy usage - 啟用代理 + 啟用代理 - Proxy host name: - 主機名: + 主機名: - Proxy port: - 通訊埠: + 通訊埠: - Use authentication with proxy - 需要身份驗證 + 需要身份驗證 - Proxy user name: - 用戶名: + 用戶名: - Proxy password: - 密碼: - - - - Action - 動作 - - - - Shortcut - 快捷鍵 + 密碼: - - Change shortcut... - 改變快捷鍵... - - - Convert underscores to blanks - 轉換底線為空格 + 轉換底線為空格 - Convert %20 to blanks - 轉換 %20 為空格 + 轉換 %20 為空格 - Select Skin Files - 選取皮膚文件 + 選取皮膚檔案 - Skin files - 皮膚文件 + 皮膚檔案 - Add... - 添加... + 添加... - Refresh - 刷新 + 刷新 - Show protocol - 顯示協議 + 顯示協議 - Transparency - 透明度 + 透明度 - Main window - 主窗口 + 主窗口 - - - 0 - 0 + 0 - Equalizer - 均衡器 + 均衡器 @@ -1044,7 +806,7 @@ Equalizer - 均衡器 + 均衡器 @@ -1052,6 +814,79 @@ 導入預設 + + HotkeyEditor + + + Action + + + + + Shortcut + + + + + Change shortcut... + + + + + Playback + + + + + View + + + + + Playlist + 播放清單 + + + + Misc + + + + + JumpToTrackDialog + + Q + Q + + + J + J + + + Unqueue + 移出佇列 + + + Queue + 加入佇列 + + + Jump To Track + 跳到音軌 + + + Filter + 過濾 + + + Refresh + 刷新 + + + Jump To + 跳到 + + MainDisplay @@ -1082,7 +917,7 @@ Add file - 添加文件 + 添加檔案 @@ -1117,27 +952,27 @@ Volume: %1% - 音量:%1% + Balance: %1% right - 平衡:%1% 右 + Balance: %1% left - 平衡:%1% 左 + Balance: center - 平衡:中 + Seek to: %1 - 移動到:%1 + @@ -1276,27 +1111,61 @@ MainWindow - + Choose a directory + 選取一個目錄 + + + Select one or more files to open + 選取開啟一個或更多檔案 + + + + Appearance + 外觀 + + + + Shortcuts + + + + &Jump To File - 跳到文件(&J) + 跳到檔案(&J) - + J J - + View - 視圖 + - + Playlist - 播放清單 + 播放清單 + + + Open Playlist + 開啟播放清單 + + + Save Playlist + 儲存播放清單 + + + Playlist Files + 播放清單檔案 - + All Supported Bitstreams + 支援的全部檔案 + + + Tools 工具 @@ -1306,7 +1175,7 @@ &Copy Selection To - 复制選取到(&C) + @@ -1323,25 +1192,25 @@ By Album - 按專輯 + By Artist - 按藝術家 + By Filename - 按文件名 + 按檔名 By Path + Filename - 按路徑+文件名 + 按路徑+檔名 @@ -1367,7 +1236,7 @@ &New PlayList - 新建清單(&N) + @@ -1378,7 +1247,7 @@ Playlist - 播放清單 + 播放清單 @@ -1391,29 +1260,29 @@ Playlist Browser - 播放清單瀏覽 + New - 新建 + Delete - 移除 + 移除 ... - ... + ... Rename - 重命名 + @@ -1421,32 +1290,32 @@ &Load - 載入(&L) + &Save As... - 另存為(&S)... + Rename - 重命名 + &Delete - 移除(&D) + Rename Playlist - 重命播放清單名 + Playlist name: - 重命文件名: + @@ -1454,117 +1323,117 @@ Popup Information Settings - 彈出信息設置 + Show cover - 顯示封面 + Transparency: - 透明度: + Delay: - 延遲: + ms - + Cover size: - 封面大小: + Template - 模板 + Reset - 重設 + Insert - 插入 + Artist - 藝術家 + 藝術家 Album - 專輯 + 專輯 Title - 標題 + 標題 Track number - 音軌編號 + Two-digit track number - 兩位數音軌編號 + Genre - 流派 + 流派 Comment - 備註 + 備註 Composer - 作曲 + Duration - 持續時間 + Disc number - 光槃編號 + File name - 文件名 + File path - 文件路徑 + Year - 年代 + 年代 Condition - 條件 + @@ -1595,22 +1464,216 @@ 自動預設 + + QMMPStarter + + Usage: qmmp [options] [files] + 使用:qmmp [設定] [檔案] + + + Options: + 設定: + + + Print version number and exit + 察看版本並結束 + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + 建議、補丁或提交 bug 請傳送到 forkotov02@hotmail.ru + + + Display this text and exit + 察看這些字檔並結束 + + + QMMP version: + Qmmp 版本: + + + Qt version: + Qt 版本: + + ShortcutDialog Change Shortcut - 更改快捷鍵... + Press the key combination you want to assign - 按下你要指定的組合鍵 + Clear - 清除 + + + + + SkinnedSettings + + + Skins + 皮膚 + + + + Add... + 添加... + + + + Refresh + 刷新 + + + + + View + + + + + Hide on close + 關閉時隱藏 + + + + Start hidden + 啟動時隱藏 + + + + Use skin cursors + + + + + Fonts + 字型 + + + + Player: + 播放器: + + + + + ??? + ??? + + + + + ... + ... + + + + Playlist: + 播放清單: + + + + Use bitmap font if available + + + + + Transparency + 透明度 + + + + Main window + 主窗口 + + + + + + 0 + 0 + + + + Equalizer + 均衡器 + + + + Playlist + 播放清單 + + + + Miscellaneous + + + + + Song Display + 察看歌曲 + + + + Show protocol + 顯示協議 + + + + Show song numbers + 顯示曲目編號 + + + + Show playlists + + + + + Show popup information + + + + + Edit template + + + + + Show anchor + + + + + Align song numbers + + + + + Select Skin Files + 選取皮膚檔案 + + + + Skin files + 皮膚檔案 + + + + Unarchived skin + 未封包皮膚 + + + + Archived skin + 封包皮膚 @@ -1623,13 +1686,13 @@ Buffering: %1% - 緩沖:%1% + VisualMenu - + Visualization 可視化 diff --git a/src/plugins/Ui/skinned/visualmenu.cpp b/src/plugins/Ui/skinned/visualmenu.cpp index af8e936d2..5e2f6c826 100644 --- a/src/plugins/Ui/skinned/visualmenu.cpp +++ b/src/plugins/Ui/skinned/visualmenu.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2010 by Ilya Kotov * + * Copyright (C) 2007-2011 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -19,11 +19,8 @@ ***************************************************************************/ #include - #include #include - -#include "pluginitem.h" #include "visualmenu.h" VisualMenu::VisualMenu(QWidget *parent) : QMenu(tr("Visualization"), parent) diff --git a/src/qmmpui/configdialog.cpp b/src/qmmpui/configdialog.cpp new file mode 100644 index 000000000..f64a83bd1 --- /dev/null +++ b/src/qmmpui/configdialog.cpp @@ -0,0 +1,371 @@ +/*************************************************************************** + * Copyright (C) 2007-2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "ui_configdialog.h" +#include "pluginitem_p.h" +#include "generalfactory.h" +#include "general.h" +#include "uihelper.h" +#include "filedialog.h" +#include "mediaplayer.h" +#include "playlistmodel.h" +#include "configdialog.h" + +ConfigDialog::ConfigDialog (QWidget *parent) : QDialog (parent) +{ + m_ui = new Ui::ConfigDialog; + m_ui->setupUi (this); + m_insert_row = 0; + setAttribute(Qt::WA_QuitOnClose, false); + setAttribute(Qt::WA_DeleteOnClose, false); + m_ui->preferencesButton->setEnabled(false); + m_ui->informationButton->setEnabled(false); + connect (this, SIGNAL(rejected()),SLOT(saveSettings())); + connect (m_ui->fileDialogComboBox, SIGNAL (currentIndexChanged (int)), SLOT(updateDialogButton(int))); + m_ui->replayGainModeComboBox->addItem (tr("Track"), QmmpSettings::REPLAYGAIN_TRACK); + m_ui->replayGainModeComboBox->addItem (tr("Album"), QmmpSettings::REPLAYGAIN_ALBUM); + m_ui->replayGainModeComboBox->addItem (tr("Disabled"), QmmpSettings::REPLAYGAIN_DISABLED); + readSettings(); + loadPluginsInfo(); + createMenus(); + //setup icons + m_ui->preferencesButton->setIcon(QIcon::fromTheme("configure")); + m_ui->informationButton->setIcon(QIcon::fromTheme("dialog-information")); + m_ui->fdInformationButton->setIcon(QIcon::fromTheme("dialog-information")); + m_ui->outputInformationButton->setIcon(QIcon::fromTheme("dialog-information")); + m_ui->outputPreferencesButton->setIcon(QIcon::fromTheme("configure")); +} + +ConfigDialog::~ConfigDialog() +{ + delete m_ui; +} + +void ConfigDialog::addPage(const QString &name, QWidget *widget, const QIcon &icon) +{ + m_ui->stackedWidget->insertWidget(m_insert_row, widget); + m_ui->contentsWidget->insertItem (m_insert_row, name); + m_ui->contentsWidget->item(m_insert_row)->setIcon(icon); + m_ui->contentsWidget->setCurrentRow(0); + m_insert_row++; +} + +void ConfigDialog::readSettings() +{ + if (MediaPlayer::instance()) + { + MediaPlayer *player = MediaPlayer::instance(); + m_ui->formatLineEdit->setText(player->playListManager()->format()); + m_ui->metadataCheckBox->setChecked(player->playListManager()->useMetadata()); + m_ui->underscoresCheckBox->setChecked(player->playListManager()->convertUnderscore()); + m_ui->per20CheckBox->setChecked(player->playListManager()->convertTwenty()); + } + //proxy settings + QmmpSettings *gs = QmmpSettings::instance(); + m_ui->enableProxyCheckBox->setChecked(gs->isProxyEnabled()); + m_ui->authProxyCheckBox->setChecked(gs->useProxyAuth()); + m_ui->hostLineEdit->setText(gs->proxy().host()); + if (gs->proxy().port(0)) + m_ui->portLineEdit->setText(QString::number(gs->proxy().port(0))); + m_ui->proxyUserLineEdit->setText(gs->proxy().userName()); + m_ui->proxyPasswLineEdit->setText(gs->proxy().password()); + + m_ui->hostLineEdit->setEnabled(m_ui->enableProxyCheckBox->isChecked()); + m_ui->portLineEdit->setEnabled(m_ui->enableProxyCheckBox->isChecked()); + m_ui->proxyUserLineEdit->setEnabled(m_ui->authProxyCheckBox->isChecked()); + m_ui->proxyPasswLineEdit->setEnabled(m_ui->authProxyCheckBox->isChecked()); + //resume playback + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + m_ui->continuePlaybackCheckBox->setChecked(settings.value("General/resume_on_startup", false).toBool()); + //cover options + m_ui->coverIncludeLineEdit->setText(gs->coverNameFilters(true).join(",")); + m_ui->coverExcludeLineEdit->setText(gs->coverNameFilters(false).join(",")); + m_ui->coverDepthSpinBox->setValue(gs->coverSearchDepth()); + m_ui->useCoverFilesCheckBox->setChecked(gs->useCoverFiles()); + //replay gain + m_ui->clippingCheckBox->setChecked(gs->replayGainPreventClipping()); + m_ui->replayGainModeComboBox->setCurrentIndex(m_ui->replayGainModeComboBox->findData(gs->replayGainMode())); + m_ui->preampDoubleSpinBox->setValue(gs->replayGainPreamp()); + m_ui->defaultGainDoubleSpinBox->setValue(gs->replayGainDefaultGain()); + //audio + m_ui->softVolumeCheckBox->setChecked(gs->useSoftVolume()); + m_ui->use16BitCheckBox->setChecked(gs->use16BitOutput()); + m_ui->bufferSizeSpinBox->setValue(gs->bufferSize()); +} + +void ConfigDialog::on_contentsWidget_currentItemChanged (QListWidgetItem *current, + QListWidgetItem *previous) +{ + if (!current) + current = previous; + m_ui->stackedWidget->setCurrentIndex (m_ui->contentsWidget->row (current)); +} + +void ConfigDialog::loadPluginsInfo() +{ + m_ui->treeWidget->blockSignals(true); + /* + load transport plugin information + */ + QTreeWidgetItem *item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("Transports")); + QList *transports = InputSource::factories(); + QStringList files = InputSource::files(); + for (int i = 0; i < transports->count (); ++i) + new PluginItem (item, transports->at(i), files.at (i)); + m_ui->treeWidget->addTopLevelItem(item); + item->setExpanded(true); + /* + load input plugins information + */ + item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("Decoders")); + QList *decoders = Decoder::factories(); + files = Decoder::files(); + for (int i = 0; i < decoders->count (); ++i) + new PluginItem (item, decoders->at(i), files.at (i)); + m_ui->treeWidget->addTopLevelItem(item); + item->setExpanded(true); + /* + load audio engines information + */ + item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("Engines")); + QList *engines = AbstractEngine::factories(); + files = AbstractEngine::files(); + for (int i = 0; i < engines->count (); ++i) + new PluginItem (item, engines->at(i), files.at (i)); + m_ui->treeWidget->addTopLevelItem(item); + item->setExpanded(true); + /* + load effect plugin information + */ + item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("Effects")); + QList *effects = Effect::factories(); + files = Effect::files(); + for (int i = 0; i < effects->count (); ++i) + new PluginItem (item, effects->at(i), files.at (i)); + m_ui->treeWidget->addTopLevelItem(item); + item->setExpanded(true); + /* + load visual plugin information + */ + item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("Visualization")); + QList *visuals = Visual::factories(); + files = Visual::files(); + for (int i = 0; i < visuals->count (); ++i) + new PluginItem (item, visuals->at(i), files.at (i)); + m_ui->treeWidget->addTopLevelItem(item); + item->setExpanded(true); + /* + load general plugin information + */ + item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("General")); + QList *generals = General::factories(); + files = General::files(); + for (int i = 0; i < generals->count (); ++i) + new PluginItem (item, generals->at(i), files.at (i)); + m_ui->treeWidget->addTopLevelItem(item); + item->setExpanded(true); + + m_ui->treeWidget->blockSignals(false); + m_ui->treeWidget->resizeColumnToContents(0); + m_ui->treeWidget->resizeColumnToContents(1); + /* + load output plugins information + */ + m_ui->outputInformationButton->setEnabled(false); + m_ui->outputPreferencesButton->setEnabled(false); + QList *outputs = Output::factories(); + for (int i = 0; i < outputs->count (); ++i) + { + m_ui->outputComboBox->addItem(outputs->at(i)->properties().name); + if(Output::currentFactory() == outputs->at(i)) + { + m_ui->outputComboBox->setCurrentIndex(i); + on_outputComboBox_activated (i); + } + } + /* + load file dialog information + */ + foreach(FileDialogFactory *factory, FileDialog::registeredFactories()) + { + m_ui->fileDialogComboBox->addItem(factory->properties().name); + if (FileDialog::isEnabled(factory)) + m_ui->fileDialogComboBox->setCurrentIndex(m_ui->fileDialogComboBox->count()-1); + } +} + +void ConfigDialog::on_preferencesButton_clicked() +{ + QTreeWidgetItem *item = m_ui->treeWidget->currentItem(); + if(item && item->type() >= PluginItem::TRANSPORT) + dynamic_cast(item)->showSettings(this); + +} + +void ConfigDialog::on_informationButton_clicked() +{ + QTreeWidgetItem *item = m_ui->treeWidget->currentItem(); + if(item && item->type() >= PluginItem::TRANSPORT) + dynamic_cast(item)->showAbout(this); +} + +void ConfigDialog::createMenus() +{ + QMenu *menu = new QMenu(this); + + menu->addAction(tr("Artist"))->setData("%p"); + menu->addAction(tr("Album"))->setData("%a"); + menu->addAction(tr("Title"))->setData("%t"); + menu->addAction(tr("Track number"))->setData("%n"); + menu->addAction(tr("Two-digit track number"))->setData("%NN"); + menu->addAction(tr("Genre"))->setData("%g"); + menu->addAction(tr("Comment"))->setData("%c"); + menu->addAction(tr("Composer"))->setData("%C"); + menu->addAction(tr("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)"); + + m_ui->titleButton->setMenu(menu); + m_ui->titleButton->setPopupMode(QToolButton::InstantPopup); + connect(menu, SIGNAL(triggered (QAction *)), SLOT(addTitleString(QAction *))); +} + +void ConfigDialog::addTitleString(QAction * a) +{ + if (m_ui->formatLineEdit->cursorPosition () < 1) + m_ui->formatLineEdit->insert(a->data().toString()); + else + m_ui->formatLineEdit->insert(" - "+a->data().toString()); +} + +void ConfigDialog::saveSettings() +{ + if (MediaPlayer *player = MediaPlayer::instance()) + { + player->playListManager()->setFormat(m_ui->formatLineEdit->text().trimmed()); + player->playListManager()->setUseMetadata(m_ui->metadataCheckBox->isChecked()); + player->playListManager()->setConvertUnderscore(m_ui->underscoresCheckBox->isChecked()); + player->playListManager()->setConvertTwenty(m_ui->per20CheckBox->isChecked()); + } + + FileDialog::setEnabled(FileDialog::registeredFactories().at(m_ui->fileDialogComboBox->currentIndex())); + QmmpSettings *gs = QmmpSettings::instance(); + //proxy + QUrl proxyUrl; + proxyUrl.setHost(m_ui->hostLineEdit->text()); + proxyUrl.setPort(m_ui->portLineEdit->text().toUInt()); + proxyUrl.setUserName(m_ui->proxyUserLineEdit->text()); + proxyUrl.setPassword(m_ui->proxyPasswLineEdit->text()); + gs->setNetworkSettings(m_ui->enableProxyCheckBox->isChecked(), + m_ui->authProxyCheckBox->isChecked(), + proxyUrl); + + QSettings settings (Qmmp::configFile(), QSettings::IniFormat); + settings.setValue ("General/resume_on_startup", m_ui->continuePlaybackCheckBox->isChecked()); + gs->setCoverSettings(m_ui->coverIncludeLineEdit->text().split(","), + m_ui->coverExcludeLineEdit->text().split(","), + m_ui->coverDepthSpinBox->value(), + m_ui->useCoverFilesCheckBox->isChecked()); + int i = m_ui->replayGainModeComboBox->currentIndex(); + gs->setReplayGainSettings((QmmpSettings::ReplayGainMode) + m_ui->replayGainModeComboBox->itemData(i).toInt(), + m_ui->preampDoubleSpinBox->value(), + m_ui->defaultGainDoubleSpinBox->value(), + m_ui->clippingCheckBox->isChecked()); + gs->setAudioSettings(m_ui->softVolumeCheckBox->isChecked(), m_ui->use16BitCheckBox->isChecked()); + gs->setBufferSize(m_ui->bufferSizeSpinBox->value()); + QList *outputs = Output::factories(); + if(m_ui->outputComboBox->currentIndex() >= 0 && outputs->count()) + Output::setCurrentFactory(outputs->at(m_ui->outputComboBox->currentIndex())); +} + +void ConfigDialog::updateDialogButton(int index) +{ + m_ui->fdInformationButton->setEnabled(FileDialog::registeredFactories()[index]->properties().hasAbout); +} + +void ConfigDialog::on_fdInformationButton_clicked() +{ + int index = m_ui->fileDialogComboBox->currentIndex (); + FileDialog::registeredFactories()[index]->showAbout(this); +} + +void ConfigDialog::on_treeWidget_itemChanged (QTreeWidgetItem *item, int column) +{ + if(column == 0 && item->type() >= PluginItem::TRANSPORT) + dynamic_cast(item)->setEnabled(item->checkState(0) == Qt::Checked); +} + +void ConfigDialog::on_treeWidget_currentItemChanged (QTreeWidgetItem *current, QTreeWidgetItem *) +{ + if(current->type() >= PluginItem::TRANSPORT) + { + m_ui->preferencesButton->setEnabled(dynamic_cast(current)->hasSettings()); + m_ui->informationButton->setEnabled(dynamic_cast(current)->hasAbout()); + } + else + { + m_ui->preferencesButton->setEnabled(false); + m_ui->informationButton->setEnabled(false); + } +} + +void ConfigDialog::on_outputComboBox_activated (int index) +{ + OutputFactory *factory = Output::factories()->at(index); + m_ui->outputInformationButton->setEnabled(factory->properties().hasAbout); + m_ui->outputPreferencesButton->setEnabled(factory->properties().hasSettings); +} + +void ConfigDialog::on_outputPreferencesButton_clicked() +{ + int index = m_ui->outputComboBox->currentIndex(); + Output::factories()->at(index)->showSettings(this); +} + +void ConfigDialog::on_outputInformationButton_clicked() +{ + int index = m_ui->outputComboBox->currentIndex(); + Output::factories()->at(index)->showAbout(this); +} diff --git a/src/qmmpui/configdialog.h b/src/qmmpui/configdialog.h new file mode 100644 index 000000000..fe9819919 --- /dev/null +++ b/src/qmmpui/configdialog.h @@ -0,0 +1,71 @@ +/*************************************************************************** + * Copyright (C) 2007-2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef CONFIGDIALOG_H +#define CONFIGDIALOG_H + +#include +#include + + +namespace Ui { + class ConfigDialog; +} + +class QListWidgetItem; +class QTreeWidgetItem; + + +/** + @author Ilya Kotov +*/ +class ConfigDialog : public QDialog +{ + Q_OBJECT +public: + ConfigDialog(QWidget *parent = 0); + virtual ~ConfigDialog(); + + void addPage(const QString &name, QWidget *widget, const QIcon &icon = QIcon()); + +private slots: + void on_contentsWidget_currentItemChanged (QListWidgetItem *current, QListWidgetItem *previous); + void on_preferencesButton_clicked(); + void on_informationButton_clicked(); + void addTitleString(QAction *); + void saveSettings(); + void updateDialogButton(int); + void on_fdInformationButton_clicked(); + void on_treeWidget_itemChanged (QTreeWidgetItem *item, int column); + void on_treeWidget_currentItemChanged (QTreeWidgetItem *current, QTreeWidgetItem *); + void on_outputComboBox_activated (int index); + void on_outputPreferencesButton_clicked(); + void on_outputInformationButton_clicked(); + +private: + void readSettings(); + void findSkins(const QString &path); + void loadPluginsInfo(); + void createMenus(); + int m_insert_row; + Ui::ConfigDialog *m_ui; + +}; + +#endif diff --git a/src/qmmpui/detailsdialog.h b/src/qmmpui/detailsdialog.h index c5e060bad..79fc4675c 100644 --- a/src/qmmpui/detailsdialog.h +++ b/src/qmmpui/detailsdialog.h @@ -20,7 +20,6 @@ #ifndef DETAILSDIALOG_H #define DETAILSDIALOG_H -#include "ui_detailsdialog.h" #include #include #include diff --git a/src/qmmpui/forms/configdialog.ui b/src/qmmpui/forms/configdialog.ui new file mode 100644 index 000000000..db77ebfb6 --- /dev/null +++ b/src/qmmpui/forms/configdialog.ui @@ -0,0 +1,1005 @@ + + + ConfigDialog + + + + 0 + 0 + 680 + 455 + + + + Qmmp Settings + + + + 6 + + + 6 + + + 6 + + + + + Qt::Horizontal + + + + + 0 + 0 + + + + QAbstractItemView::SelectRows + + + + 38 + 38 + + + + 3 + + + QListView::ListMode + + + 0 + + + false + + + false + + + false + + + 0 + + + + Playlist + + + + :/playlist.png:/playlist.png + + + + + Plugins + + + + :/plugins.png:/plugins.png + + + + + Advanced + + + + :/advanced.png:/advanced.png + + + + + Connectivity + + + + :/network.png:/network.png + + + + + Audio + + + + :/replaygain.png:/replaygain.png + + + + + + + 0 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + 0 + + + + + + + Metadata + + + + 9 + + + 6 + + + + + Load metadata from files + + + + + + + + + + Song Display + + + + + + Title format: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + ... + + + + + + + Convert underscores to blanks + + + + + + + Convert %20 to blanks + + + + + + + + + + Qt::Vertical + + + + 20 + 54 + + + + + + + + + + 9 + + + 5 + + + 0 + + + 0 + + + 6 + + + + + + 0 + 0 + + + + Preferences + + + + + + + + 0 + 0 + + + + Information + + + + + + + Qt::Horizontal + + + + 101 + 20 + + + + + + + + true + + + QAbstractItemView::SelectRows + + + true + + + false + + + 2 + + + + Description + + + + + Filename + + + + + + + + + + + + File Dialog + + + + + + + + + Information + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + Cover Image Retrieve + + + + + + Use separate image files + + + true + + + + + + + Include files: + + + + + + + + + + Exclude files: + + + + + + + + + + + + Recursive search depth: + + + + + + + 6 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Playback + + + + + + Continue playback on startup + + + + + + + + + + User Interface + + + + + + + + + Information + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + 9 + + + 5 + + + 0 + + + 0 + + + + + Proxy + + + false + + + false + + + + + + Enable proxy usage + + + + + + + Proxy host name: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + Proxy port: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + Use authentication with proxy + + + + + + + Proxy user name: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + Proxy password: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + QLineEdit::Password + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + Replay Gain + + + + + + Replay Gain mode: + + + + + + + + 0 + 0 + + + + + + + + Preamp: + + + + + + + + 0 + 0 + + + + -15.000000000000000 + + + 15.000000000000000 + + + 0.010000000000000 + + + + + + + + 0 + 0 + + + + dB + + + + + + + + 0 + 0 + + + + Default gain: + + + + + + + + 0 + 0 + + + + -15.000000000000000 + + + 15.000000000000000 + + + 0.010000000000000 + + + + + + + + 0 + 0 + + + + dB + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Use peak info to prevent clipping + + + + + + + + + + Audio + + + + + + Output: + + + + + + + + + + + 0 + 0 + + + + Preferences + + + + + + + + 0 + 0 + + + + Information + + + + + + + Qt::Horizontal + + + QSizePolicy::Expanding + + + + 20 + 20 + + + + + + + + Buffer size: + + + + + + + + 0 + 0 + + + + ms + + + 500 + + + 6000 + + + 50 + + + + + + + Qt::Horizontal + + + + 266 + 20 + + + + + + + + Use software volume control + + + + + + + 16-bit output + + + + + + + + + + Qt::Vertical + + + + 20 + 132 + + + + + + + + + + + + + QDialogButtonBox::Close + + + + + + + + + + + enableProxyCheckBox + toggled(bool) + hostLineEdit + setEnabled(bool) + + + 286 + 39 + + + 286 + 39 + + + + + enableProxyCheckBox + toggled(bool) + portLineEdit + setEnabled(bool) + + + 286 + 39 + + + 272 + 39 + + + + + authProxyCheckBox + toggled(bool) + proxyUserLineEdit + setEnabled(bool) + + + 272 + 38 + + + 272 + 38 + + + + + authProxyCheckBox + toggled(bool) + proxyPasswLineEdit + setEnabled(bool) + + + 272 + 38 + + + 272 + 37 + + + + + useCoverFilesCheckBox + toggled(bool) + coverIncludeLineEdit + setEnabled(bool) + + + 286 + 39 + + + 286 + 39 + + + + + useCoverFilesCheckBox + toggled(bool) + coverExcludeLineEdit + setEnabled(bool) + + + 286 + 39 + + + 286 + 39 + + + + + useCoverFilesCheckBox + toggled(bool) + coverDepthSpinBox + setEnabled(bool) + + + 286 + 39 + + + 286 + 39 + + + + + buttonBox + rejected() + ConfigDialog + reject() + + + 651 + 458 + + + 225 + 421 + + + + + buttonBox + accepted() + ConfigDialog + accept() + + + 651 + 458 + + + 141 + 414 + + + + + diff --git a/src/qmmpui/images/advanced.png b/src/qmmpui/images/advanced.png new file mode 100644 index 000000000..862464242 Binary files /dev/null and b/src/qmmpui/images/advanced.png differ diff --git a/src/qmmpui/images/images.qrc b/src/qmmpui/images/images.qrc new file mode 100644 index 000000000..6f8534994 --- /dev/null +++ b/src/qmmpui/images/images.qrc @@ -0,0 +1,10 @@ + + + playlist.png + advanced.png + plugins.png + network.png + logo-qmmp.png + replaygain.png + + diff --git a/src/qmmpui/images/logo-qmmp.png b/src/qmmpui/images/logo-qmmp.png new file mode 100644 index 000000000..d6c7e9bd8 Binary files /dev/null and b/src/qmmpui/images/logo-qmmp.png differ diff --git a/src/qmmpui/images/network.png b/src/qmmpui/images/network.png new file mode 100644 index 000000000..3a52c1130 Binary files /dev/null and b/src/qmmpui/images/network.png differ diff --git a/src/qmmpui/images/playlist.png b/src/qmmpui/images/playlist.png new file mode 100644 index 000000000..7b750db0a Binary files /dev/null and b/src/qmmpui/images/playlist.png differ diff --git a/src/qmmpui/images/plugins.png b/src/qmmpui/images/plugins.png new file mode 100644 index 000000000..931d4d1da Binary files /dev/null and b/src/qmmpui/images/plugins.png differ diff --git a/src/qmmpui/images/replaygain.png b/src/qmmpui/images/replaygain.png new file mode 100644 index 000000000..d2f78947b Binary files /dev/null and b/src/qmmpui/images/replaygain.png differ diff --git a/src/qmmpui/pluginitem.cpp b/src/qmmpui/pluginitem.cpp new file mode 100644 index 000000000..dc82c53af --- /dev/null +++ b/src/qmmpui/pluginitem.cpp @@ -0,0 +1,184 @@ +/*************************************************************************** + * Copyright (C) 2010-2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "pluginitem_p.h" + +PluginItem::PluginItem(QTreeWidgetItem *parent, InputSourceFactory *factory, const QString &path) + : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), TRANSPORT) +{ + m_has_about = factory->properties().hasAbout; + m_has_config = factory->properties().hasSettings; + m_factory = factory; +} + + +PluginItem::PluginItem(QTreeWidgetItem *parent, DecoderFactory *factory, const QString &path) + : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), DECODER) +{ + setCheckState(0, Decoder::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); + m_has_about = factory->properties().hasAbout; + m_has_config = factory->properties().hasSettings; + m_factory = factory; +} + +PluginItem::PluginItem(QTreeWidgetItem *parent, EngineFactory *factory, const QString &path) + : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), ENGINE) +{ + setCheckState(0, AbstractEngine::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); + m_has_about = factory->properties().hasAbout; + m_has_config = factory->properties().hasSettings; + m_factory = factory; +} + +PluginItem::PluginItem(QTreeWidgetItem *parent, EffectFactory *factory, const QString &path) + : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), EFFECT) +{ + setCheckState(0, Effect::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); + m_has_about = factory->properties().hasAbout; + m_has_config = factory->properties().hasSettings; + m_factory = factory; +} + +PluginItem::PluginItem(QTreeWidgetItem *parent, VisualFactory *factory, const QString &path) + : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), VISUAL) +{ + setCheckState(0, Visual::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); + m_has_about = factory->properties().hasAbout; + m_has_config = factory->properties().hasSettings; + m_factory = factory; +} + +PluginItem::PluginItem(QTreeWidgetItem *parent, GeneralFactory *factory, const QString &path) + : QTreeWidgetItem(parent, QStringList() << factory->properties().name << path.section('/',-1), GENERAL) +{ + setCheckState(0, General::isEnabled(factory) ? Qt::Checked : Qt::Unchecked); + m_has_about = factory->properties().hasAbout; + m_has_config = factory->properties().hasSettings; + m_factory = factory; +} + +PluginItem::~PluginItem() +{ + +} + +bool PluginItem::hasAbout() const +{ + return m_has_about; +} +bool PluginItem::hasSettings() const +{ + return m_has_config; +} + +void PluginItem::showAbout(QWidget *parent) +{ + switch(type()) + { + case PluginItem::TRANSPORT: + static_cast(m_factory)->showAbout(parent); + break; + case PluginItem::DECODER: + static_cast(m_factory)->showAbout(parent); + break; + case PluginItem::ENGINE: + static_cast(m_factory)->showAbout(parent); + break; + case PluginItem::EFFECT: + static_cast(m_factory)->showAbout(parent); + break; + case PluginItem::VISUAL: + static_cast(m_factory)->showAbout(parent); + break; + case PluginItem::GENERAL: + static_cast(m_factory)->showAbout(parent); + break; + default: + ; + } +} + +void PluginItem::showSettings(QWidget *parent) +{ + switch(type()) + { + case PluginItem::TRANSPORT: + static_cast(m_factory)->showSettings(parent); + break; + case PluginItem::DECODER: + static_cast(m_factory)->showSettings (parent); + break; + case PluginItem::ENGINE: + static_cast(m_factory)->showSettings (parent); + break; + case PluginItem::EFFECT: + static_cast(m_factory)->showSettings (parent); + break; + case PluginItem::VISUAL: + Visual::showSettings(static_cast(m_factory), parent); + break; + case PluginItem::GENERAL: + General::showSettings(static_cast(m_factory), parent); + break; + default: + ; + } +} + +void PluginItem::setEnabled(bool enabled) +{ + switch(type()) + { + case PluginItem::TRANSPORT: + //dynamic_cast(m_factory) + break; + case PluginItem::DECODER: + Decoder::setEnabled(static_cast(m_factory), enabled); + break; + case PluginItem::ENGINE: + AbstractEngine::setEnabled(static_cast(m_factory), enabled); + break; + case PluginItem::EFFECT: + Effect::setEnabled(static_cast(m_factory), enabled); + break; + case PluginItem::VISUAL: + Visual::setEnabled(static_cast(m_factory), enabled); + break; + case PluginItem::GENERAL: + General::setEnabled(static_cast(m_factory), enabled); + break; + default: + ; + } +} diff --git a/src/qmmpui/pluginitem_p.h b/src/qmmpui/pluginitem_p.h new file mode 100644 index 000000000..8802f2d9a --- /dev/null +++ b/src/qmmpui/pluginitem_p.h @@ -0,0 +1,73 @@ +/*************************************************************************** + * Copyright (C) 2011 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef PLUGINITEM_P_H +#define PLUGINITEM_P_H + +#include + +/** + @author Ilya Kotov +*/ + +class QWidget; +class InputSourceFactory; +class DecoderFactory; +class EngineFactory; +class OutputFactory; +class VisualFactory; +class EffectFactory; +class GeneralFactory; + +class PluginItem : public QTreeWidgetItem +{ +public: + + PluginItem(QTreeWidgetItem *parent, InputSourceFactory *factory, const QString &path); + PluginItem(QTreeWidgetItem *parent, DecoderFactory *factory, const QString &path); + PluginItem(QTreeWidgetItem *parent, EngineFactory *factory, const QString &path); + PluginItem(QTreeWidgetItem *parent, EffectFactory *factory, const QString &path); + PluginItem(QTreeWidgetItem *parent, VisualFactory *factory, const QString &path); + PluginItem(QTreeWidgetItem *parent, GeneralFactory *factory, const QString &path); + ~PluginItem(); + + enum PluginType + { + TRANSPORT = QTreeWidgetItem::UserType, + DECODER, + ENGINE, + EFFECT, + VISUAL, + GENERAL + }; + + bool hasAbout() const; + bool hasSettings() const; + void showAbout(QWidget *parent); + void showSettings(QWidget *parent); + void setEnabled(bool enabled); + + +private: + bool m_has_about; + bool m_has_config; + void *m_factory; +}; + +#endif diff --git a/src/qmmpui/qmmpui.pro b/src/qmmpui/qmmpui.pro index d466c634d..1a8975a69 100644 --- a/src/qmmpui/qmmpui.pro +++ b/src/qmmpui/qmmpui.pro @@ -41,7 +41,9 @@ HEADERS += general.h \ uifactory.h \ uiloader.h \ uihelper.h \ - jumptotrackdialog_p.h + jumptotrackdialog_p.h \ + configdialog.h \ + pluginitem_p.h SOURCES += general.cpp \ playlistparser.cpp \ commandlinemanager.cpp \ @@ -60,13 +62,17 @@ SOURCES += general.cpp \ templateeditor.cpp \ uiloader.cpp \ uihelper.cpp \ - jumptotrackdialog.cpp + jumptotrackdialog.cpp \ + configdialog.cpp \ + pluginitem.cpp FORMS += forms/detailsdialog.ui \ forms/tageditor.ui \ forms/templateeditor.ui \ - forms/jumptotrackdialog.ui + forms/jumptotrackdialog.ui \ + forms/configdialog.ui unix:DESTDIR = . -RESOURCES += translations/libqmmpui_locales.qrc +RESOURCES += translations/libqmmpui_locales.qrc \ + images/images.qrc TRANSLATIONS = translations/libqmmpui_ru.ts \ translations/libqmmpui_tr.ts \ translations/libqmmpui_zh_CN.ts \ diff --git a/src/qmmpui/translations/libqmmpui_cs.ts b/src/qmmpui/translations/libqmmpui_cs.ts index 78581cc94..50c425347 100644 --- a/src/qmmpui/translations/libqmmpui_cs.ts +++ b/src/qmmpui/translations/libqmmpui_cs.ts @@ -1,136 +1,1277 @@ + + AboutDialog + + About Qmmp + O Qmmp + + + About + O aplikaci + + + Authors + Autoři + + + Thanks To + Poděkování + + + License Agreement + Licence + + + :/txt/authors_en.txt + :/txt/authors_cs.txt + + + :/txt/thanks_en.txt + :/txt/thanks_cs.txt + + + Qt-based Multimedia Player (Qmmp) + Qt-based Multimedia Player (Qmmp) + + + Version: + Verze: + + + :txt/description_en.txt + :txt/description_cs.txt + + + Input plugins: + Vstupní moduly: + + + Output plugins: + Výstupní moduly: + + + Visual plugins: + Vizualizační moduly: + + + Effect plugins: + Efektové moduly: + + + General plugins: + Obecné moduly: + + + Translators + Překladatelé + + + :/txt/translators_en.txt + :/txt/translators_cs.txt + + + + ActionManager + + &Play + Pře&hrát + + + X + X + + + &Pause + Pau&za + + + C + C + + + &Stop + &Stop + + + V + V + + + &Previous + &Předchozí + + + Z + Z + + + &Next + &Další + + + B + B + + + &Play/Pause + &Přehrát/Pauza + + + Space + Mezerník + + + J + J + + + &Repeat Playlist + &Opakovat seznam skladeb + + + R + O + + + &Repeat Track + &Opakovat stopu + + + Ctrl+R + Ctrl+R + + + &Shuffle + Za&míchat + + + S + M + + + &Add File + Přidat &soubor + + + F + F + + + &Add Directory + Přidat &adresář + + + D + D + + + &Add Url + Přidat &URL + + + U + U + + + &Remove Selected + &Odstranit vybrané + + + Del + Del + + + &Remove All + Odstranit &vše + + + &Remove Unselected + Odstranit &nevybrané + + + Remove unavailable files + Odstranit nedostupné soubory + + + Remove duplicates + Odstranit duplicity + + + Q + Q + + + Invert Selection + Invertovat výběr + + + &Select None + &Zrušit výběr + + + &Select All + &Vybrat vše + + + Ctrl+A + Ctrl+A + + + &View Track Details + Zobrazit &informace o skladbě + + + Alt+I + Alt+I + + + &New List + &Nový seznam + + + Ctrl+T + Ctrl+T + + + &Delete List + O&dstranit seznam + + + Ctrl+W + Ctrl+W + + + &Load List + Načíst &seznam + + + O + O + + + &Save List + &Uložit seznam + + + Shift+S + Shift+S + + + &Select Next Playlist + Vybrat další &seznam skladeb + + + Ctrl+PgDown + Ctrl+PgDown + + + &Select Previous Playlist + Vybrat předchozí &seznam skladeb + + + Ctrl+PgUp + Ctrl+PgUp + + + &Show Playlists + Zobrazit &seznamy skladeb + + + P + P + + + &Settings + &Nastavení + + + Ctrl+P + Ctrl+P + + + &About + O &aplikaci + + + &About Qt + O knihovně &Qt + + + &Exit + U&končit + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Enter URL to add + Přidat URL + + + Error + Chyba + + + &Add + Přid&at + + + &Cancel + Z&rušit + + + + BuiltinCommandLineOption + + Skip forward in playlist + Přejít vpřed v seznamu skladeb + + + Skip backwards in playlist + Přejít zpět v seznamu skladeb + + + Start playing current song + Spustit přehrávání aktuální skladby + + + Don't clear the playlist + Nevyprazdňovat seznam skladeb + + + Pause current song + Pozastavit aktuální skladbu + + + Pause if playing, play otherwise + Pozastavit, přehrává-li se, jinak přehrávat + + + Stop current song + Zastavit aktuální skladbu + + + Display Jump to File dialog + Zobrazit dialog Přeskočit na soubor + + + Set playback volume (example: qmmp --volume 20) + Nastavit hlasitost přehrávání (příklad: qmmp --volume 20) + + + Show/hide application + Zobrazit/skrýt aplikaci + + + Display Add File dialog + Zobrazit dialog Přidat soubor + + + Display Add Directory dialog + Zobrazit dialog Přidat adresář + + + + ConfigDialog + + + Description + Popis + + + + Filename + Soubor + + + + Artist + Umělec + + + + + Album + Album + + + + Track + Stopa + + + + Disabled + Vypnuto + + + + Transports + Protokoly + + + + Decoders + Dekodéry + + + + Engines + Přehrávače + + + + Title + Název + + + + Track number + Číslo stopy + + + + Two-digit track number + Dvoumístné číslo stopy + + + + Disc number + Číslo disku + + + + Condition + Stav + + + + Composer + Skladatel + + + + File name + Název souboru + + + + File path + Cesta k souboru + + + + Genre + Žánr + + + + Year + Rok + + + + Comment + Poznámka + + + + Qmmp Settings + 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é + + + Use skin cursors + Použít kurzory z tématu + + + + 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ě + + + + + 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í + + + + User Interface + + + + + 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: + Výstup: + + + + Buffer size: + + + + + ms + ms + + + + 16-bit output + 16bitový výstup + + + + Connectivity + Síť + + + View + Zobrazení + + + + 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: + + + Archived skin + Sbalené téma + + + Unarchived skin + Rozbalené téma + + + + Visualization + Vizualizace + + + + Effects + Efekty + + + + General + Obecné + + + + + Audio + Zvuk + + + + Use software volume control + Používat softwarové ovládání hlasitosti + + + 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 + + + Select Skin Files + Vybrat soubory s tématy + + + Skin files + 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 + + DetailsDialog - - Title - Název + + Title + Název + + + + Artist + Umělec + + + + Album + Album + + + + Comment + Poznámka + + + + Genre + Žánr + + + + Composer + Skladatel + + + + Year + Rok + + + + Track + Stopa + + + + Disc number + Číslo disku + + + + Details + Podrobnosti + + + + Open the directory containing this file + + + + + ... + ... + + + + Summary + Přehled + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + EqWidget + + Equalizer + Ekvalizér + + + preset + předvolba + + + &Load/Delete + &Načíst/Odstranit + + + &Save Preset + &Uložit předvolbu + + + &Save Auto-load Preset + Uložit &automatickou předvolbu + + + &Import + &Importovat + + + &Clear + &Vynulovat + + + Saving Preset + Uložení předvolby + + + Preset name: + Název předvolby: + + + preset # + předvolba # + + + Import Preset + Importovat předvolbu + + + + JumpToTrackDialog + + + Jump To Track + Přeskočit na skladbu + + + + Filter + Filtr + + + + + + Queue + Zařadit + + + + Refresh + Načíst znovu + + + + Jump To + Přeskočit na + + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + Vyřadit + + + + MainDisplay + + Previous + Předchozí + + + Play + Přehrát + + + Pause + Pozastavit + + + Stop + Zastavit + + + Next + Další + + + Add file + Přidat soubor + + + Equalizer + Ekvalizér + + + Playlist + Seznam skladeb + + + Repeat playlist + Opakovat seznam skladeb + + + Shuffle + Zamíchat + + + Volume + Hlasitost + + + Balance + Vyvážení + + + + MainVisual + + Visualization Mode + Režim vizualizace + + + Analyzer + Frekvenční analýza + + + Scope + Osciloskop + + + Off + Vypnuto + + + Analyzer Mode + Režim analýzy + + + Normal + Normální + + + Fire + Oheň + + + Vertical Lines + Sloupce + + + Lines + Úzké + + + Bars + Široké + + + Peaks + Špičky + + + Refresh Rate + Obnovovací frekvence + + + 50 fps + 50 Hz - - Artist - Umělec + 25 fps + 25 Hz - - Album - Album + 10 fps + 10 Hz - - Comment - Poznámka + 5 fps + 5 Hz - - Genre - Žánr + Analyzer Falloff + Pokles analyzátoru - - Composer - Skladatel + Slowest + Nejpomalejší - - Year - Rok + Slow + Pomalý - - Track - Stopa + Medium + Střední - - Disc number - Číslo disku + Fast + Rychlý - - Details - Podrobnosti + Fastest + Nejrychlejší - - Open the directory containing this file - + Peaks Falloff + Pokles špiček - - ... - + Background + Pozadí - - Summary - Přehled + Transparent + Průhledné + + + MainWindow - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Choose a directory + Výběr adresáře + + + Select one or more files to open + Vyberte jeden či více souborů k otevření + + + &Jump To File + Přeskočit na soubo&r + + + J + J + + + View + Zobrazení + + + Playlist + Seznam skladeb + + + Playlist Files + Seznamy skladeb + + + Open Playlist + Načíst seznam skladeb + + + Save Playlist + Uložit seznam skladeb + + + All Supported Bitstreams + Všechny podporované formáty + + + Tools + Nástroje - JumpToTrackDialog + PlayList - - Jump To Track - + Sort List + Seřadit seznam - - Filter - + By Title + Podle názvu skladby - - - - Queue - + By Album + Podle alba - - Refresh - + By Artist + Podle umělce - - Jump To - + By Filename + Podle názvu souboru - - Q - + By Path + Filename + Podle cesty a názvu souboru - - J - + By Date + Podle data - - F5 - + Sort Selection + Seřadit výběr - - - Unqueue - + Randomize List + Zamíchat seznam + + + Reverse List + Obrátit pořadí seznamu + + + Playlist + Seznam skladeb + + + By Track Number + Podle čísla skladby + + + Actions + Činnosti + + + + PlayListBrowser + + Playlist Browser + Prohlížeč seznamů skladeb + + + New + Nový + + + Delete + Odstranit + + + ... + ... + + + Rename + Přejmenovat @@ -142,6 +1283,186 @@ p, li { white-space: pre-wrap; } Seznam skladeb + + PlayListSelector + + &Load + &Načíst + + + &Save As... + Uložit j&ako... + + + Rename + Přejmenovat + + + &Delete + O&dstranit + + + Rename Playlist + Přejmenovat seznam skladeb + + + Playlist name: + Název seznamu skladeb: + + + + PopupSettings + + Popup Information Settings + Nastavení informací ve vyskakovacím okně + + + Show cover + Zobrazit obal + + + Transparency: + Průhlednost: + + + Delay: + Prodleva: + + + ms + ms + + + Cover size: + Velikost obalu: + + + Template + Šablona + + + Reset + Původní + + + Insert + Vložit + + + Artist + Umělec + + + Album + Album + + + Title + Název + + + Track number + Číslo stopy + + + Two-digit track number + Dvoumístné číslo stopy + + + Genre + Žánr + + + Comment + Poznámka + + + Composer + Skladatel + + + Duration + Délka + + + Disc number + Číslo disku + + + File name + Název souboru + + + File path + Cesta k souboru + + + Year + Rok + + + Condition + Stav + + + + PresetEditor + + Preset Editor + Editor předvoleb + + + Load + Načíst + + + Delete + Odstranit + + + Preset + Předvolba + + + Auto-preset + Automatická předvolba + + + + QMMPStarter + + Usage: qmmp [options] [files] + Použití: qmmp [volby] [soubory] + + + Options: + Volby: + + + Print version number and exit + Vypsat číslo verze a skončit + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Nápady, patche, hlášení chyb posílejte na forkotov02@hotmail.ru (anglicky) + + + Display this text and exit + Zobrazit tento text a skončit + + + Unknown command + Neznámý příkaz + + + QMMP version: + Verze QMMP: + + + Qt version: + Verze Qt: + + QtFileDialogFactory @@ -316,38 +1637,52 @@ p, li { white-space: pre-wrap; } Stav + + TextScroller + + Autoscroll Songname + Automaticky rolovat název skladby + + UiHelper All Supported Bitstreams - + Všechny podporované formáty Select one or more files to open - + Vyberte jeden či více souborů k otevření Choose a directory - + Výběr adresáře Playlist Files - + Seznamy skladeb Open Playlist - + Načíst seznam skladeb Save Playlist - + Uložit seznam skladeb + + + + VisualMenu + + Visualization + Vizualizace diff --git a/src/qmmpui/translations/libqmmpui_de.ts b/src/qmmpui/translations/libqmmpui_de.ts index 8012828b5..96520853d 100644 --- a/src/qmmpui/translations/libqmmpui_de.ts +++ b/src/qmmpui/translations/libqmmpui_de.ts @@ -1,136 +1,1385 @@ + + AboutDialog + + About Qmmp + Über Qmmp + + + About + Info + + + Authors + Autoren + + + Thanks To + Dank an + + + License Agreement + Lizenz + + + :/txt/authors_en.txt + :/txt/authors_de.txt + + + :/txt/thanks_en.txt + :/txt/thanks_de.txt + + + Qt-based Multimedia Player (Qmmp) + Qt-basierter Multimedia-Player (Qmmp) + + + Version: + Version: + + + :txt/description_en.txt + :txt/description_de.txt + + + Input plugins: + Eingabe-Module: + + + Output plugins: + Ausgabe-Module: + + + Visual plugins: + Visualisierungsmodule: + + + Effect plugins: + Effekt-Module: + + + General plugins: + Sonstige Module: + + + Translators + Übersetzer + + + :/txt/translators_en.txt + :/txt/translators_de.txt + + + + ActionManager + + &Play + &Wiedergabe + + + X + X + + + &Pause + &Pause + + + C + C + + + &Stop + &Stopp + + + V + V + + + &Previous + &Vorheriger Titel + + + Z + Z + + + &Next + &Nächster Titel + + + B + B + + + &Play/Pause + Wieder&gabe/Pause + + + Space + Leertaste + + + &Jump to File + &Zu Datei springen + + + J + J + + + &Repeat Playlist + W&iedergabeliste wiederholen + + + R + R + + + &Repeat Track + Tite&l wiederholen + + + Ctrl+R + Strg+R + + + &Shuffle + &Zufallswiedergabe + + + S + S + + + Ctrl+N + Strg+N + + + Ctrl+S + Strg+S + + + &Clear Queue + Wartes&chlange löschen + + + Alt+Q + Alt+Q + + + Show Playlist + Wiedergabeliste anzeigen + + + Alt+E + Alt+E + + + Show Equalizer + Equalizer anzeigen + + + Alt+G + Alt+G + + + Always on Top + Immer im Vordergrund + + + Put on All Workspaces + Auf allen Arbeitsflächen anzeigen + + + Double Size + Doppelte Größe + + + Meta+D + Meta+D + + + &Add File + &Datei hinzufügen + + + F + F + + + &Add Directory + &Verzeichnis hinzufügen + + + D + D + + + &Add Url + &URL hinzufügen + + + U + U + + + &Remove Selected + &Ausgewählte entfernen + + + Del + Entf + + + &Remove All + Alle &entfernen + + + &Remove Unselected + &Nicht ausgewählte entfernen + + + Remove unavailable files + Nichtverfügbare Dateien entfernen + + + Remove duplicates + Duplikate entfernen + + + Q + Q + + + Invert Selection + Auswahl umkehren + + + &Select None + &Auswahl aufheben + + + &Select All + Alle aus&wählen + + + Ctrl+A + Strg+A + + + &View Track Details + &Titeldetails anzeigen + + + Alt+I + Alt+I + + + &New List + &Neue Wiedergabeliste + + + Ctrl+T + Strg+T + + + &Delete List + Wie&dergabeliste löschen + + + Ctrl+W + Strg+W + + + &Load List + Wiedergabeliste &laden + + + O + O + + + &Save List + Wiedergabeliste &speichern + + + Shift+S + Umschalt+S + + + &Select Next Playlist + Näch&ste Wiedergabeliste auswählen + + + Ctrl+PgDown + Strg+Bild ab + + + &Select Previous Playlist + Vorherige Wiedergabeli&ste auswählen + + + Ctrl+PgUp + Strg+Bild auf + + + &Show Playlists + Wiedergabeli&sten anzeigen + + + P + P + + + &Settings + Ein&stellungen + + + Ctrl+P + Strg+P + + + &About + Ü&ber + + + &About Qt + Übe&r Qt + + + &Exit + Be&enden + + + Ctrl+Q + Strg+Q + + + + AddUrlDialog + + Enter URL to add + Hinzuzufügende URL eingeben + + + Error + Fehler + + + &Add + &Hinzufügen + + + &Cancel + &Abbrechen + + + + BuiltinCommandLineOption + + Skip forward in playlist + Nächsten Titel in Wiedergabeliste abspielen + + + Skip backwards in playlist + Vorherigen Titel in Wiedergabeliste abspielen + + + Start playing current song + Aktuellen Titel abspielen + + + Don't clear the playlist + Titel an Wiedergabeliste anhängen + + + Pause current song + Aktuellen Titel anhalten + + + Pause if playing, play otherwise + Wiedergabe anhalten oder fortsetzen + + + Stop current song + Aktuellen Titel stoppen + + + Display Jump to File dialog + „Springe zu Titel“-Dialog anzeigen + + + Set playback volume (example: qmmp --volume 20) + Lautstärke der Wiedergabe einstellen (Beispiel: qmmp --volume 20) + + + Show/hide application + Anwendung ein-/ausblenden + + + Display Add File dialog + „Datei hinzufügen“-Dialog anzeigen + + + Display Add Directory dialog + „Verzeichnis hinzufügen“-Dialog anzeigen + + + + ConfigDialog + + + Description + Beschreibung + + + + Filename + Dateiname + + + + Artist + Interpret + + + + + Album + Album + + + + Track + Stück + + + + Disabled + Deaktiviert + + + + Transports + Transporte + + + + Decoders + Dekoder + + + + Engines + + + + Misc + Verschiedenes + + + + Title + Titel + + + + Track number + Stücknummer + + + + Two-digit track number + Zweistellige Stücknummer + + + + Disc number + CD-Nummer + + + + Condition + Zustand + + + + Genre + Genre + + + + Composer + Komponist + + + + File name + Dateiname + + + + File path + Dateipfad + + + + Year + Jahr + + + + Comment + Kommentar + + + + Qmmp Settings + Einstellungen + + + Appearance + Erscheinungsbild + + + + Playlist + Wiedergabeliste + + + + Plugins + Module + + + + Advanced + Erweitert + + + Skins + Designs + + + Fonts + Schriftarten + + + Player: + Player: + + + Playlist: + Wiedergabeliste: + + + ??? + ??? + + + + Replay Gain + Replay Gain + + + Miscellaneous + Verschiedenes + + + + ... + ... + + + Use bitmap font if available + Bitmap-Schriftart verwenden, falls verfügbar + + + Use skin cursors + Design-Mauszeiger verwenden + + + Shortcuts + Kurzbefehle + + + + 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 + Informationen in einem Aufklapp-Fenster anzeigen + + + Align song numbers + Stücknummern ausrichten + + + + + 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 + + + + User Interface + + + + + 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 + + + + Output: + Ausgabe: + + + + Buffer size: + Puffergröße: + + + + ms + ms + + + + 16-bit output + 16-Bit-Ausgabe + + + Action + Aktion + + + Shortcut + Kurzbefehl + + + Change shortcut... + Kurzbefehl ändern ... + + + + Connectivity + Verbindung + + + View + Ansicht + + + Edit template + Vorlage bearbeiten + + + + 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: + + + Archived skin + Archiviertes Design + + + Unarchived skin + Nicht archiviertes Design + + + + Visualization + Visualisierung + + + + Effects + Effekte + + + + General + Sonstige + + + + + Audio + Audio + + + + Use software volume control + Softwaregesteuerte Lautstärkeregelung + + + 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 + + + Select Skin Files + Design-Dateien auswählen + + + Skin files + Design-Dateien + + + Add... + Hinzufügen... + + + Refresh + Aktualisieren + + + Show protocol + Protokoll anzeigen + + + Transparency + Transparenz + + + Main window + Hauptfenster + + + 0 + 0 + + + Equalizer + Equalizer + + DetailsDialog - - Title - Titel + + Title + Titel + + + + Artist + Interpret + + + + Album + Album + + + + Comment + Kommentar + + + + Genre + Genre + + + + Composer + Komponent + + + + Year + Jahr + + + + Track + Stück + + + + Disc number + CD-Nummer + + + + Details + Details + + + + Open the directory containing this file + Das Verzeichnis öffnen, in dem sich diese Datei befindet + + + + ... + + + + + Summary + Zusammenfassung + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + EqWidget + + Equalizer + Equalizer + + + preset + Voreinstellung + + + &Load/Delete + &Laden/Löschen + + + &Save Preset + &Voreinstellung speichern + + + &Save Auto-load Preset + &Automatische Voreinstellungen speichern + + + &Import + &Importieren + + + &Clear + &Zurücksetzen + + + Saving Preset + Voreinstellung speichern + + + Preset name: + Name der Voreinstellung: + + + preset # + Voreinstellung # + + + Import Preset + Voreinstellung importieren + + + + JumpToTrackDialog + + + Jump To Track + Zu Titel springen + + + + Filter + Filter + + + + + + Queue + In Warteschlange + + + + Refresh + Aktualisieren + + + + Jump To + Springen zu + + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + Aus Warteschlange entfernen + + + + MainDisplay + + Previous + Vorheriger Titel + + + Play + Wiedergabe + + + Pause + Pause + + + Stop + Stopp + + + Next + Nächster Titel + + + Add file + Datei hinzufügen + + + Equalizer + Equalizer + + + Playlist + Wiedergabeliste + + + Repeat playlist + Wiedergabeliste wiederholen + + + Shuffle + Zufallswiedergabe + + + Volume + Lautstärke + + + Balance + Balance + + + Volume: %1% + Lautstärke: %1 % + + + Balance: %1% right + Balance: %1 % rechts + + + Balance: %1% left + Balance: %1 % links + + + Balance: center + Balance: Mitte + + + Seek to: %1 + Springen zu: %1 + + + + MainVisual + + Visualization Mode + Visualisierungsmodus + + + Analyzer + Analyzer + + + Scope + Oszilloskop + + + Off + Aus + + + Analyzer Mode + Analyzer-Modus + + + Normal + Normal + + + Fire + Feuer + + + Vertical Lines + Vertikale Linien + + + Lines + Linien + + + Bars + Balken + + + Peaks + Spitzen + + + Refresh Rate + Wiederholfrequenz + + + 50 fps + 50 fps + + + 25 fps + 25 fps + + + 10 fps + 10 fps + + + 5 fps + 5 fps + + + Analyzer Falloff + Analyzer-Abfall + + + Slowest + Sehr langsam + + + Slow + Langsam + + + Medium + Mittel + + + Fast + Schnell - - Artist - Interpret + Fastest + Sehr schnell - - Album - Album + Peaks Falloff + Abfallen der Spitzen - - Comment - Kommentar + Background + Hintergrund - - Genre - Genre + Transparent + Transparent + + + MainWindow - - Composer - Komponent + Choose a directory + Verzeichnis wählen - - Year - Jahr + Select one or more files to open + Dateien hinzufügen - - Track - Stück + &Jump To File + Springe zu &Titel - - Disc number - CD-Nummer + J + J - - Details - Details + View + Ansicht - - Open the directory containing this file - Das Verzeichnis öffnen, in dem sich diese Datei befindet + Playlist + Wiedergabeliste - - ... - + Playlist Files + Wiedergabelisten - - Summary - Zusammenfassung + Open Playlist + Wiedergabeliste öffnen - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Save Playlist + Wiedergabeliste speichern + + + All Supported Bitstreams + Alle unterstützten Formate + + + Tools + Werkzeuge - JumpToTrackDialog + PlayList - - Jump To Track - + Sort List + Wiedergabeliste sortieren - - Filter - + By Title + Nach Titel - - - - Queue - + By Album + Nach Album - - Refresh - + By Artist + Nach Interpret - - Jump To - + By Filename + Nach Dateinamen - - Q - + By Path + Filename + Nach Pfad + Dateinamen - - J - + By Date + Nach Datum - - F5 - + Sort Selection + Auswahl sortieren - - - Unqueue - + Randomize List + Wiedergabeliste mischen + + + Reverse List + Wiedergabeliste umkehren + + + &New PlayList + &Neue Wiedergabeliste + + + &Copy Selection To + Auswahl kopieren na&ch + + + Playlist + Wiedergabeliste + + + By Track Number + Nach Titelnummer + + + Actions + Aktionen + + + + PlayListBrowser + + Playlist Browser + Wiedergabelisten durchsuchen + + + New + Neu + + + Delete + Löschen + + + ... + + + + Rename + Umbenennen @@ -142,6 +1391,190 @@ p, li { white-space: pre-wrap; } Wiedergabeliste + + PlayListSelector + + &Load + &Laden + + + &Save As... + &Speichern unter … + + + Rename + Umbenennen + + + &Delete + L&öschen + + + Rename Playlist + Wiedergabeliste umbenennen + + + Playlist name: + Name der Wiedergabeliste: + + + + PopupSettings + + Popup Information Settings + Einstellungen Aufklapp-Informationen + + + Show cover + Cover anzeigen + + + Transparency: + Transparenz: + + + Delay: + Verzögerung: + + + ms + ms + + + Cover size: + Cover-Größe: + + + Template + Vorlage + + + Reset + Zurücksetzen + + + Insert + Einfügen + + + Artist + Interpret + + + Album + Album + + + Title + Titel + + + Track number + Stücknummer + + + Two-digit track number + Zweistellige Stücknummer + + + Genre + Genre + + + Comment + Kommentar + + + Composer + Komponist + + + Duration + Abspieldauer + + + Disc number + CD-Nummer + + + File name + Dateiname + + + File path + Dateipfad + + + Year + Jahr + + + Condition + Zustand + + + + PresetEditor + + Preset Editor + Bearbeiten der Voreinstellungen + + + Load + Laden + + + Delete + Löschen + + + Preset + Voreinstellung + + + Auto-preset + Automatische Voreinstellung + + + + QMMPStarter + + Usage: qmmp [options] [files] + Aufruf: qmmp [Optionen] [Dateien] + + + Options: + Optionen: + + + Don't start the application + Die Anwendung nicht starten + + + Print version number and exit + Gibt die Versionsnummer aus + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ideen, Patches und Bugreports an <forkotov02@hotmail.ru> senden + + + Display this text and exit + Zeigt diesen Hilfetext an + + + Unknown command + Unbekannter Befehl + + + QMMP version: + Qmmp-Version: + + + Qt version: + Qt-Version: + + QtFileDialogFactory @@ -150,6 +1583,21 @@ p, li { white-space: pre-wrap; } Qt Datei-Dialog + + ShortcutDialog + + Change Shortcut + Kurzbefehl ändern + + + Press the key combination you want to assign + Drücken Sie die Tastenkombination, die Sie zuweisen möchten + + + Clear + Löschen + + TagEditor @@ -316,38 +1764,56 @@ p, li { white-space: pre-wrap; } Zustand + + TextScroller + + Autoscroll Songname + Automatischer Bildlauf des Titelnamens + + + Buffering: %1% + Pufferung: %1 % + + UiHelper All Supported Bitstreams - + Alle unterstützten Formate Select one or more files to open - + Dateien hinzufügen Choose a directory - + Verzeichnis wählen Playlist Files - + Wiedergabelisten Open Playlist - + Wiedergabeliste öffnen Save Playlist - + Wiedergabeliste speichern + + + + VisualMenu + + Visualization + Visualisierung diff --git a/src/qmmpui/translations/libqmmpui_es.ts b/src/qmmpui/translations/libqmmpui_es.ts index b3cab774a..cc345ea30 100644 --- a/src/qmmpui/translations/libqmmpui_es.ts +++ b/src/qmmpui/translations/libqmmpui_es.ts @@ -1,136 +1,1397 @@ + + AboutDialog + + About Qmmp + Acerca de Qmmp + + + About + Acerca de + + + License Agreement + Contrato de licencia + + + Authors + Autores + + + Thanks To + Gracias a + + + :/txt/authors_en.txt + :/txt/authors_es.txt + + + :/txt/thanks_en.txt + :/txt/thanks_es.txt + + + Qt-based Multimedia Player (Qmmp) + Qt-based Multimedia Player (Qmmp) + + + Version: + Versión: + + + :txt/description_en.txt + :txt/description_es.txt + + + Input plugins: + Módulos de entrada: + + + Output plugins: + Módulos de salida: + + + Visual plugins: + Módulos visuales: + + + Effect plugins: + Módulos de efectos: + + + General plugins: + Módulos generales: + + + Translators + Traductores + + + :/txt/translators_en.txt + :/txt/translators_es.txt + + + + ActionManager + + &Play + &Reproducir + + + X + X + + + &Pause + &Pausar + + + C + C + + + &Stop + &Detener + + + V + V + + + &Previous + &Anterior + + + Z + Z + + + &Next + &Siguiente + + + B + B + + + &Play/Pause + &Reproducir/Pausar + + + Space + Espacio + + + &Jump to File + &Ir al archivo + + + J + J + + + &Repeat Playlist + &Repetir la lista + + + R + R + + + &Repeat Track + &Repetir pista + + + Ctrl+R + Ctrl+R + + + &Shuffle + &Revolver + + + S + S + + + &No Playlist Advance + &No avanzar en la lista + + + Ctrl+N + Ctrl+N + + + &Stop After Selected + &Parar tras los seleccionados + + + Ctrl+S + Ctrl+S + + + &Clear Queue + &Limpiar la Cola + + + Alt+Q + Alt+Q + + + Show Playlist + Mostrar la lista + + + Alt+E + Alt+E + + + Show Equalizer + Mostrar el ecualizador + + + Alt+G + Alt+G + + + Always on Top + Siempre encima + + + Put on All Workspaces + Ver en todos los escritorios + + + Double Size + Tamaño doble + + + &Add File + &Añadir archivo + + + F + F + + + &Add Directory + &Añadir directorio + + + D + D + + + &Add Url + &Añadir URL + + + U + U + + + &Remove Selected + &Eliminar los seleccionados + + + Del + Supr + + + &Remove All + &Eliminar todo + + + &Remove Unselected + &Eliminar los no seleccionados + + + Remove unavailable files + Eliminar los archivos no disponibles + + + Remove duplicates + Eliminar los duplicados + + + &Queue Toggle + &Cambiar de cola + + + Q + Q + + + Invert Selection + Invertir la selección + + + &Select None + &No seleccionar nada + + + &Select All + &Seleccionar todo + + + Ctrl+A + Ctrl+A + + + &View Track Details + &Ver detalles de la pista + + + Alt+I + Alt+I + + + &New List + &Lista nueva + + + Ctrl+T + Ctrl+T + + + &Delete List + &Borrar la lista + + + Ctrl+W + Ctrl+W + + + &Load List + &Cargar una lista + + + O + O + + + &Save List + &Guardar la lista + + + Shift+S + Shift+S + + + &Select Next Playlist + &Seleccionar la lista siguiente + + + Ctrl+PgDown + Ctrl+AvPág + + + &Select Previous Playlist + &Seleccionar la lista anterior + + + Ctrl+PgUp + Ctrl+RePág + + + &Show Playlists + &Mostrar las listas + + + P + P + + + &Settings + &Configuración + + + Ctrl+P + Ctrl+P + + + &About + &Acerca de + + + &About Qt + &Acerca de Qt + + + &Exit + &Salir + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Error + Error + + + Enter URL to add + Introduzca la URL a añadir + + + &Add + &Añadir + + + &Cancel + &Cancelar + + + + BuiltinCommandLineOption + + Skip forward in playlist + Avanzar en la lista de reproducción + + + Skip backwards in playlist + Retroceder en la lista de reproducción + + + Start playing current song + Empezar reproduciendo la canción actual + + + Don't clear the playlist + No limpiar la lista de reproducción + + + Pause current song + Pausar la canción actual + + + Pause if playing, play otherwise + Pausar si se está reproduciendo, o viceversa + + + Stop current song + Detener la canción actual + + + Display Jump to File dialog + Mostrar el diálogo Saltar a archivo + + + Set playback volume (example: qmmp --volume 20) + Cambiar el volumen de reproducción (ejemplo: qmmp --volume 20) + + + Show/hide application + Mostrar/ocultar aplicación + + + Display Add File dialog + Mostrar el diálogo Añadir archivo + + + Display Add Directory dialog + Mostrar el diálogo Añadir directorio + + + + ConfigDialog + + + Description + Descripción + + + + Filename + Nombre del archivo + + + + Artist + Intérprete + + + + + Album + Album + + + + Track + Pista + + + + Disabled + Deshabilitado + + + + Transports + Transportes + + + + Decoders + Decodificadores + + + + Engines + Motores + + + Misc + Varios + + + + 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 + + + + Genre + Género + + + + Composer + Compositor + + + + File name + Nombre del archivo + + + + File path + Ruta del archivo + + + + Year + Año + + + + Comment + Comentario + + + + Qmmp Settings + Configuración de Qmmp + + + Skins + Pieles + + + Fonts + Fuentes + + + Player: + Reproductor: + + + Playlist: + Lista de reproducción: + + + ??? + ??? + + + + ... + ... + + + + Metadata + Metainformación + + + + Load metadata from files + Cargar la metainformación de los archivos + + + + Song Display + Mostrar la canción + + + + Title format: + Formato del título: + + + + + Preferences + Preferencias + + + + + + + Information + Información + + + Appearance + Aspecto + + + + Playlist + Lista de reproducción + + + + Plugins + Módulos + + + + Advanced + Avanzado + + + + 16-bit output + Salida de 16 bits + + + Archived skin + Piel archivada + + + Unarchived skin + Piel no archivada + + + + Connectivity + Conectividad + + + + Visualization + Visualización + + + + Effects + Efectos + + + + General + General + + + + File Dialog + Diálogo de archivos + + + + + Audio + Sonido + + + + Replay Gain + Normalización + + + Miscellaneous + Varios + + + Use bitmap font if available + Usar fuente bitmap si está disponible + + + Use skin cursors + Usar pieles en cursor + + + Show song numbers + Mostrar los números de canción + + + Show playlists + Mostrar la lista de reproducción + + + Show popup information + Mostrar información emergente + + + + 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 + + + + Output: + Salida: + + + + Buffer size: + Tamaño del buffer: + + + + ms + ms + + + + Use software volume control + Usar control de volumen por software + + + View + Ver + + + Shortcuts + Atajos + + + Hide on close + Esconder al cerrar + + + Start hidden + Iniciar oculto + + + Edit template + Editar la plantilla + + + Show anchor + Mostrar ancla + + + Align song numbers + Alinear los números de canción + + + + 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 + + + + User Interface + + + + + 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: + + + Action + Acción + + + Shortcut + Atajo + + + Change shortcut... + Cambiar atajo... + + + + Convert underscores to blanks + Convertir los guiones bajos en espacios + + + + Convert %20 to blanks + Convertir los %20 en espacios + + + Select Skin Files + Seleccionar archivos de pieles + + + Skin files + Archivos de pieles + + + Add... + Añadir... + + + Refresh + Actualizar + + + Show protocol + Motrar protocolo + + + Transparency + Transparencia + + + Main window + Ventana principal + + + 0 + 0 + + + Equalizer + Ecualizador + + DetailsDialog - - Title - Título + + Title + Título + + + + Artist + Intérprete + + + + Album + Album + + + + Comment + Comentario + + + + Genre + Género + + + + Composer + Compositor + + + + Year + Año + + + + Track + Pista + + + + Disc number + Número de disco + + + + Details + Detalles + + + + Open the directory containing this file + Abrir el directorio que contiene este archivo + + + + ... + ... + + + + Summary + Sumario + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + EqWidget + + preset + preprogramado + + + &Load/Delete + &Cargar/Eliminar + + + &Save Preset + &Guardar preprogramado + + + &Save Auto-load Preset + &Guardar preprogramado autocargable + + + &Clear + &Limpiar + + + Saving Preset + Guardando preprogramado + + + Preset name: + Nombre del preprogramado: + + + preset # + Preprogramado nº + + + &Import + &Importar + + + Equalizer + Ecualizador + + + Import Preset + Importar preprogramado + + + + JumpToTrackDialog + + + Jump To Track + Saltar hasta pista + + + + Filter + Filtrar + + + + + + Queue + Encolar + + + + Refresh + Actualizar + + + + Jump To + Saltar a + + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + Desencolar + + + + MainDisplay + + Previous + Anterior + + + Play + Reproducir + + + Pause + Pausar + + + Stop + Detener + + + Next + Siguiente + + + Add file + Añadir archivo + + + Equalizer + Ecualizador + + + Playlist + Lista de reproducción + + + Repeat playlist + Repetir la lista de reproducción + + + Shuffle + Revolver + + + Volume + Volumen + + + Balance + Balance + + + Volume: %1% + Volumen: %1% + + + Balance: %1% right + Balance: %1% derecha + + + Balance: %1% left + Balance: %1% izquierda + + + Balance: center + Balance: centro + + + Seek to: %1 + Ir hasta: %1 + + + + MainVisual + + Visualization Mode + Modo de visualización + + + Analyzer + Analizador + + + Scope + Osciloscopio + + + Off + Apagado + + + Analyzer Mode + Modo del analizador + + + Normal + Normal + + + Fire + Fuego + + + Vertical Lines + Líneas verticales + + + Lines + Líneas + + + Bars + Barras + + + Peaks + Picos + + + Refresh Rate + Velocidad de actualización + + + 50 fps + 50 fps + + + 25 fps + 25 fps + + + 10 fps + 10 fps + + + 5 fps + 5 fps + + + Analyzer Falloff + Caída del analizador + + + Slowest + Muy lenta + + + Slow + Lenta + + + Medium + Media + + + Fast + Rápida - - Artist - Intérprete + Fastest + Muy rápida - - Album - Album + Peaks Falloff + Caída de picos - - Comment - Comentario + Background + Fondo - - Genre - Género + Transparent + Transparente + + + MainWindow - - Composer - Compositor + Choose a directory + Seleccione un directorio - - Year - Año + Select one or more files to open + Seleccione uno o más archivos para abrir - - Track - Pista + &Jump To File + &Saltar a archivo - - Disc number - Número de disco + J + J - - Details - Detalles + View + Ver - - Open the directory containing this file - Abrir el directorio que contiene este archivo + Playlist + Lista de reproducción - - ... - ... + Open Playlist + Abrir la lista de reproducción - - Summary - Sumario + Save Playlist + Guardar la lista de reproducción - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Playlist Files + Archivos a reproducir + + + All Supported Bitstreams + Todos los flujos soportados + + + Tools + Herramientas - JumpToTrackDialog + PlayList - - Jump To Track - + &Copy Selection To + &Copiar la selección a - - Filter - + Sort List + Ordenar la lista - - - - Queue - + By Title + Por título - - Refresh - + By Album + Por album - - Jump To - + By Artist + Por intérprete - - Q - + By Filename + Por nombre de archivo - - J - + By Path + Filename + Por ruta + nombre - - F5 - + By Date + Por fecha - - - Unqueue - + Sort Selection + Ordenar la selección + + + Randomize List + Lista aleatoria + + + Reverse List + Invertir la lista + + + &New PlayList + &Lista nueva + + + By Track Number + Por número de pista + + + Playlist + Lista de reproducción + + + Actions + Acciones + + + + PlayListBrowser + + Playlist Browser + Navegador de listas de reproducción + + + New + Nueva + + + Delete + Borrar + + + ... + ... + + + Rename + Renombrar @@ -142,6 +1403,190 @@ p, li { white-space: pre-wrap; } Lista de reproducción + + PlayListSelector + + &Load + &Cargar + + + &Save As... + &Guardar como... + + + Rename + Renombrar + + + &Delete + &Borrar + + + Rename Playlist + Renombrar lista + + + Playlist name: + Nombre de la lista: + + + + PopupSettings + + Popup Information Settings + Configuración de información emergente + + + Show cover + Mostrar carátula + + + Transparency: + Transparencia: + + + Delay: + Retardo: + + + ms + ms + + + Cover size: + Tamaño de la carátula: + + + Template + Plantilla + + + Reset + Reiniciar + + + Insert + Insertar + + + Artist + Intérprete + + + Album + Album + + + Title + Título + + + Track number + Número de pista + + + Two-digit track number + Número de pista con dos cifras + + + Genre + Género + + + Comment + Comentario + + + Composer + Compositor + + + Duration + Duración + + + Disc number + Número de disco + + + File name + Nombre del archivo + + + File path + Ruta del archivo + + + Year + Año + + + Condition + Condición + + + + PresetEditor + + Preset Editor + Editor de preprogamados + + + Load + Cargar + + + Delete + Borrar + + + Preset + Preprogramado + + + Auto-preset + Automático + + + + QMMPStarter + + Usage: qmmp [options] [files] + Uso: qmmp [opciones] [archivos] + + + Options: + Opciones: + + + Print version number and exit + Mostrar el número de versión y salir + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Enviar ideas, parches, errores a: forkotov02@hotmail.ru + + + Qt version: + Versión de Qt: + + + Display this text and exit + Muestra este texto y sale + + + Unknown command + Comando desconocido + + + Don't start the application + No iniciar la aplicación + + + QMMP version: + Versión de QMMP: + + QtFileDialogFactory @@ -150,6 +1595,21 @@ p, li { white-space: pre-wrap; } Diálogo de archivos Qt + + ShortcutDialog + + Change Shortcut + Cambiar atajo + + + Press the key combination you want to assign + Pulse la combinación de teclas que quiere asignar + + + Clear + Borrar + + TagEditor @@ -316,38 +1776,56 @@ p, li { white-space: pre-wrap; } Condición + + TextScroller + + Autoscroll Songname + Autodesplazar el nombre de la canción + + + Buffering: %1% + Cargando: %1% + + UiHelper All Supported Bitstreams - + Todos los flujos soportados Select one or more files to open - + Seleccione uno o más archivos para abrir Choose a directory - + Seleccione un directorio Playlist Files - + Archivos a reproducir Open Playlist - + Abrir la lista de reproducción Save Playlist - + Guardar la lista de reproducción + + + + VisualMenu + + Visualization + Visualización diff --git a/src/qmmpui/translations/libqmmpui_it.ts b/src/qmmpui/translations/libqmmpui_it.ts index cb2426183..9c5e953cc 100644 --- a/src/qmmpui/translations/libqmmpui_it.ts +++ b/src/qmmpui/translations/libqmmpui_it.ts @@ -1,136 +1,1257 @@ + + AboutDialog + + About Qmmp + Informazioni su Qmmp + + + About + Info + + + License Agreement + Contratto di licenza + + + Authors + Autori + + + Thanks To + Ringraziamenti + + + :/txt/authors_en.txt + :/txt/authors_it.txt + + + :/txt/thanks_en.txt + :/txt/thanks_it.txt + + + Qt-based Multimedia Player (Qmmp) + Qt-based Multimedia Player (Qmmp) + + + Version: + Versione: + + + :txt/description_en.txt + :txt/description_it.txt + + + Input plugins: + Moduli d'entrata: + + + Output plugins: + Moduli d'uscita : + + + Visual plugins: + Moduli di visualizzazione: + + + Effect plugins: + Мoduli per gli effetti: + + + General plugins: + Moduli generali: + + + Translators + Traduttori + + + :/txt/translators_en.txt + :/txt/translators_it.txt + + + + ActionManager + + &Play + &Esegui + + + X + X + + + &Pause + &Pausa + + + C + C + + + &Stop + &Arresta + + + V + V + + + &Previous + &Precedente + + + Z + Z + + + &Next + &Successivo + + + B + B + + + &Play/Pause + &Esegui / Pausa + + + Space + Spazio + + + J + J + + + &Repeat Playlist + &Ripeti lista brani + + + R + R + + + &Repeat Track + &Ripeti brano + + + Ctrl+R + Ctrl+R + + + &Shuffle + &Ordine casuale + + + S + S + + + &Add File + &Aggiungi brani + + + F + F + + + &Add Directory + &Aggiungi cartelle + + + D + D + + + &Add Url + &Aggiungi URL + + + U + U + + + &Remove Selected + &Elimina la selezione + + + Del + Canc + + + &Remove All + &Elimina tutto + + + &Remove Unselected + &Elimina i non selezionati + + + Remove unavailable files + Rimuovi files non disponibili + + + Remove duplicates + Rimuovi duplicati + + + Q + Q + + + Invert Selection + Inverti la selezione + + + &Select None + &Non scegliere alcun brano + + + &Select All + &Seleziona tutto + + + Ctrl+A + Ctrl+A + + + &View Track Details + &Dettagli della traccia + + + Alt+I + Alt+I + + + &New List + &Nuova lista + + + Ctrl+T + Ctrl+T + + + &Delete List + &Cancella lista + + + Ctrl+W + Ctrl+W + + + &Load List + &Carica lista + + + O + O + + + &Save List + &Salva lista + + + Shift+S + Shift+S + + + &Select Next Playlist + &Seleziona la successiva lista esecuzione brani + + + Ctrl+PgDown + Ctrl+PgDown + + + &Select Previous Playlist + &Seleziona la rpecedente lista esecuzione brani + + + Ctrl+PgUp + Ctrl+PgUp + + + &Show Playlists + Mostra lista esecuzione brani + + + P + P + + + &Settings + &Configurazione + + + Ctrl+P + Ctrl+P + + + &About + &Informazioni + + + &About Qt + &Informazioni su Qt + + + &Exit + &Esci + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Error + Errore + + + Enter URL to add + Aggiungi un URL + + + &Add + &Aggiungi + + + &Cancel + &Annulla + + + + BuiltinCommandLineOption + + Skip forward in playlist + Scorri in avanti lista dei brani + + + Skip backwards in playlist + Scorri indietro la lista dei brani + + + Start playing current song + Inizia il brano scelto + + + Don't clear the playlist + Non ripulire la lista esecuzione + + + Pause current song + Sospendi il brano in esecuzione + + + Pause if playing, play otherwise + Sospendi il brano se in esecuzione; lo riprende se in pausa + + + Stop current song + Arresta il brano in esecuzione + + + Display Jump to File dialog + Mostra il menu «Vai al brano» + + + Show/hide application + Mostra/nascondi Qmmp + + + Display Add File dialog + Mostra il menu «Aggiungi brani» + + + Display Add Directory dialog + Mostra il menu «Aggiungi cartella» + + + + ConfigDialog + + + Description + Descrizione + + + + Filename + File + + + + Artist + Interprete + + + + + Album + Album + + + + Track + Traccia + + + + Disabled + Disabilitato + + + + Transports + Protocolli di trasporto + + + + Decoders + Decodificatori + + + + Engines + Meccanismi + + + + Title + Titolo + + + + Track number + Traccia n° + + + + Two-digit track number + Traccia n° a due cifre + + + + Disc number + Disco n° + + + + Condition + Condizione + + + + Genre + Genere + + + + Composer + Compositore + + + + File name + Nome file + + + + File path + Percorso file + + + + Year + Anno + + + + Comment + Commento + + + + Qmmp Settings + 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 + uscita a 16 bit + + + Archived skin + Tema archiviato + + + Unarchived skin + Tema non archiviato + + + + Connectivity + Connettività + + + + Visualization + Visualizzazione + + + + Effects + Effetti + + + + General + Generale + + + + File Dialog + Menu brani + + + + + Audio + Audio + + + + Replay Gain + Normalizzazione + + + Miscellaneous + Varie + + + Use bitmap font if available + Usa carattere bitmap se disponibile + + + Use skin cursors + Usa cursore skin + + + Show song numbers + Mostra numero brani + + + Show playlists + Mostra lista esecuzione brani + + + Show popup information + Mostra informazioni popup + + + + 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 + + + + Output: + Uscita: + + + + Buffer size: + + + + + ms + ms + + + + Use software volume control + Utilizza il controllo volume del programma + + + Hide on close + Nascondi alla chiusura + + + Start hidden + Avvia nascosto + + + + 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 + + + + User Interface + + + + + 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 + + + Select Skin Files + Seleziona aspetto + + + Skin files + Aspetto + + + Add... + Aggiungi... + + + Refresh + Aggiorna + + + Show protocol + Motra protocollo + + + Transparency + Transparenza + + + Main window + Finestra principale + + + 0 + 0 + + + Equalizer + Equalizzatore + + DetailsDialog - - Title - Titolo + + Title + Titolo + + + + Artist + Interprete + + + + Album + Album + + + + Comment + Commento + + + + Genre + Genere + + + + Composer + Compositore + + + + Year + Anno + + + + Track + Traccia + + + + Disc number + Disco n° + + + + Details + Dettagli + + + + Open the directory containing this file + + + + + ... + ... + + + + Summary + Sommario + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + EqWidget + + preset + Impostazione + + + &Load/Delete + &Carica/Elimina + + + &Save Preset + &Salva preimpostazione + + + &Save Auto-load Preset + &Salvare preimpostazioni caricate automaticamente + + + &Clear + &Cancella + + + Saving Preset + Salvataggio preimpostazioni + + + Preset name: + Nome delle preimpostazioni: + + + preset # + Preimpostazione # + + + &Import + &Importa + + + Equalizer + Equalizzatore + + + Import Preset + Importa preimpostazione + + + + JumpToTrackDialog + + + Jump To Track + Vai alla traccia + + + + Filter + Filtra + + + + + + Queue + Metti in coda + + + + Refresh + Aggiorna + + + + Jump To + Vai a + + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + Elimna dalla coda + + + + MainDisplay + + Previous + Brano precedente + + + Play + Esegui + + + Pause + Sospendi + + + Stop + Ferma + + + Next + Brano successivo + + + Add file + Aggiungi brani + + + Equalizer + Equalizzatore + + + Playlist + Lista brani + + + Repeat playlist + Ripeti la lista brani + + + Shuffle + Ordine casuale + + + Volume + Volume + + + Balance + Bilanciamento + + + + MainVisual + + Visualization Mode + Modo visualizzazione + + + Analyzer + Analizzatore + + + Scope + Oscilloscopio + + + Off + Chiudi + + + Analyzer Mode + Modo analizzatore + + + Normal + Normale + + + Fire + Fuoco + + + Vertical Lines + Linee verticali + + + Lines + Linee - - Artist - Interprete + Bars + Barre - - Album - Album + Peaks + Picchi - - Comment - Commento + Refresh Rate + Velocità di aggiornamento - - Genre - Genere + 50 fps + 50 fps - - Composer - Compositore + 25 fps + 25 fps - - Year - Anno + 10 fps + 10 fps - - Track - Traccia + 5 fps + 5 fps - - Disc number - Disco n° + Analyzer Falloff + Ricaduta analizzatore - - Details - Dettagli + Slowest + Molto lenta - - Open the directory containing this file - + Slow + Lenta - - ... - + Medium + Media - - Summary - Sommario + Fast + Rapida - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Fastest + Molto veloce + + + Peaks Falloff + Ricadua picchi + + + Background + Sfondo + + + Transparent + Transparente - JumpToTrackDialog + MainWindow - - Jump To Track - + Choose a directory + Scegliere una cartella - - Filter - + Select one or more files to open + Seleziona uno o più brani da aprire - - - - Queue - + &Jump To File + &Vai al brano - - Refresh - + J + J - - Jump To - + Open Playlist + Apri lista di brani - - Q - + Save Playlist + Salva lista di brani - - J - + Playlist Files + Brani della lista - - F5 - + All Supported Bitstreams + Elenco di tutti i tipi di flusso accettati - - - Unqueue - + Tools + Strumenti + + + + PlayList + + Sort List + Riordina la lista + + + By Title + Per titolo + + + By Album + Per album + + + By Artist + PEr interprete + + + By Filename + Per titolo del brano + + + By Path + Filename + per percorso più titolo del brano + + + By Date + Per data + + + Sort Selection + Riordina la selezione + + + Randomize List + Mescola i brnai della lista + + + Reverse List + Inverti la lista + + + By Track Number + Per numero di traccia + + + Actions + Azioni + + + + PlayListBrowser + + Playlist Browser + Esplora lista esecuzione + + + New + Nuova + + + Delete + Elimina + + + ... + ... + + + Rename + Rinomina @@ -142,6 +1263,186 @@ p, li { white-space: pre-wrap; } Lista esecuzione + + PlayListSelector + + &Load + &Carica + + + &Save As... + &Salva come + + + Rename + Rinomina + + + &Delete + &Elimina + + + Rename Playlist + Rinomina lista brani + + + Playlist name: + Nome della lista brani: + + + + PopupSettings + + Popup Information Settings + Popup delle impostazioni + + + Show cover + Mostra copertina + + + Transparency: + Trasparenza: + + + Delay: + Ritardo: + + + ms + ms + + + Cover size: + Dimensione copertina: + + + Template + Modello + + + Reset + Azzera + + + Insert + Inserisci + + + Artist + Interprete + + + Album + Album + + + Title + Titolo + + + Track number + Traccia n° + + + Two-digit track number + Traccia n° a due cifre + + + Genre + Genere + + + Comment + Commento + + + Composer + Compositore + + + Duration + Durata + + + Disc number + Disco n° + + + File name + Nome file + + + File path + Percorso file + + + Year + Anno + + + Condition + Condizione + + + + PresetEditor + + Preset Editor + Editor delle impostazioni + + + Load + Carica + + + Delete + Elimina + + + Preset + Impostazioni + + + Auto-preset + Impostazioni automatiche + + + + QMMPStarter + + Usage: qmmp [options] [files] + Uso: qmmp [options] [fichiers] + + + Options: + Opzioni: + + + Print version number and exit + Stampa il numero di versione ed esci + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Per idee, modifiche, segnalazione di errori scrivire a: forkotov02@hotmail.ru + + + Qt version: + Versione Qt: + + + Display this text and exit + Mostra questo testo ed esci + + + Unknown command + Comando sconosciuto + + + QMMP version: + Versione di Qmmp: + + QtFileDialogFactory @@ -316,38 +1617,52 @@ p, li { white-space: pre-wrap; } Condizione + + TextScroller + + Autoscroll Songname + Scorrimento automatico del titolo del brano + + UiHelper All Supported Bitstreams - + Elenco di tutti i tipi di flusso accettati Select one or more files to open - + Seleziona uno o più brani da aprire Choose a directory - + Scegliere una cartella Playlist Files - + Brani della lista Open Playlist - + Apri lista di brani Save Playlist - + Salva lista di brani + + + + VisualMenu + + Visualization + Visualizzazione diff --git a/src/qmmpui/translations/libqmmpui_ja.ts b/src/qmmpui/translations/libqmmpui_ja.ts index 1d3017ba1..31facd38a 100644 --- a/src/qmmpui/translations/libqmmpui_ja.ts +++ b/src/qmmpui/translations/libqmmpui_ja.ts @@ -1,136 +1,1397 @@ + + AboutDialog + + About Qmmp + QMMPについて + + + About + QMMPについて + + + Authors + 作者 + + + Translators + 翻訳者 + + + Thanks To + 協力者 + + + License Agreement + 使用許諾契約 + + + :/txt/authors_en.txt + :/txt/authors_ja.txt + + + :/txt/thanks_en.txt + :/txt/thanks_ja.txt + + + :/txt/translators_en.txt + :/txt/translators_ja.txt + + + Qt-based Multimedia Player (Qmmp) + Qt製マルティミディアプレイヤ QMMP + + + Version: + バージョン: + + + :txt/description_en.txt + :txt/description_ja.txt + + + Input plugins: + 入力側プラグイン: + + + Output plugins: + 出力側プラグイン: + + + Visual plugins: + 視覚効果プラグイン: + + + Effect plugins: + 音響効果プラグイン: + + + General plugins: + 一般プラグイン: + + + + ActionManager + + &Play + 再生(&Y) + + + X + X + + + &Pause + 一時停止(&P) + + + C + C + + + &Stop + 終止(&S) + + + V + V + + + &Previous + 前の曲(&R) + + + Z + Z + + + &Next + 次の曲(&N) + + + B + B + + + &Play/Pause + 再生/停止(&A) + + + Space + Space + + + &Jump to File + ファイルを指定して即刻再生(&J) + + + J + J + + + &Repeat Playlist + プレイリストを繰り返す(&L) + + + R + R + + + &Repeat Track + トラックを繰り返す(&T) + + + Ctrl+R + Ctrl+R + + + &Shuffle + シャッフル(&F) + + + S + S + + + &No Playlist Advance + 次の曲に進まず終止(&N) + + + Ctrl+N + Ctrl+N + + + &Stop After Selected + 選んだ曲を再生後に終止(&S) + + + Ctrl+S + Ctrl+S + + + &Clear Queue + キューを消去(&C) + + + Alt+Q + Alt+Q + + + Show Playlist + プレイリストを表示 + + + Alt+E + Alt+E + + + Show Equalizer + イコライザを表示 + + + Alt+G + Alt+G + + + Always on Top + 常に前面へ + + + Put on All Workspaces + 常に表示中のワークスペースに置く + + + Double Size + 倍サイズ + + + &Add File + ファイルを追加(&F) + + + F + F + + + &Add Directory + ディレクトリを追加(&D) + + + D + D + + + &Add Url + URLを追加(&U) + + + U + U + + + &Remove Selected + 選択したものを除去(&V) + + + Del + Delele + + + &Remove All + すべて除去(&M) + + + &Remove Unselected + 選択外のものを除去(&N) + + + Remove unavailable files + 無効なファイルを除去 + + + Remove duplicates + 重複分を除去 + + + &Queue Toggle + 選んだプレイリストをキューに追加/キューから撤去 + + + Q + Q + + + Invert Selection + 選択範囲を反転 + + + &Select None + 選択を解除(&N) + + + &Select All + すべて選択(&E) + + + Ctrl+A + Ctrl+A + + + &View Track Details + トラックの詳細を表示(&D) + + + Alt+I + Alt+I + + + &New List + 新規リスト(&W) + + + Ctrl+T + Ctrl+T + + + &Delete List + リストを削除(&D) + + + Ctrl+W + Ctrl+W + + + &Load List + リストを読込(&L) + + + O + O + + + &Save List + リストを保存(&S) + + + Shift+S + Shift+S + + + &Select Next Playlist + 次のプレイリストを選択(&N) + + + Ctrl+PgDown + Ctrl+PgDown + + + &Select Previous Playlist + 前のプレイリストを選択(&P) + + + Ctrl+PgUp + Ctrl+PgUp + + + &Show Playlists + プレイリストを表示(&H) + + + P + P + + + &Settings + 設定(&S) + + + Ctrl+P + Ctrl+P + + + &About + QMMPについて(&A) + + + &About Qt + Qtについて(&Q) + + + &Exit + 終了(&X) + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Enter URL to add + 追加したいURLを記入 + + + &Add + 追加(&A) + + + &Cancel + キャンセル(&C) + + + Error + 事故 + + + + BuiltinCommandLineOption + + Don't clear the playlist + プレイリストをクリアしない + + + Start playing current song + 今の曲から再生を開始 + + + Pause current song + 今の曲で一時停止 + + + Pause if playing, play otherwise + 再生中なら一時停止、一時停止しておれば再生 + + + Stop current song + 今の曲で終止 + + + Display Jump to File dialog + 「ファイルを指定して即刻再生」ダイアログを表示 + + + Set playback volume (example: qmmp --volume 20) + 音量設定 (例: qmmp --volume 20) + + + Skip forward in playlist + プレイリストでの次の曲にスキップ + + + Skip backwards in playlist + プレイリストで前の曲にスキップ + + + Show/hide application + アプリケーションウィンドウを表示/非表示 + + + Display Add File dialog + 「ファイル追加」ダイアログを表示 + + + Display Add Directory dialog + 「ディレクトリ追加」ダイアログを表示 + + + + ConfigDialog + + + Qmmp Settings + QMMP設定 + + + Appearance + 外観 + + + + Playlist + プレイリスト + + + + Plugins + プラグイン + + + + Advanced + 上級 + + + + Connectivity + 接続 + + + + + Audio + 音響 + + + Shortcuts + ショートカット + + + Skins + スキン + + + Add... + 追加... + + + Refresh + 更新 + + + Miscellaneous + 各種設定 + + + View + 観容 + + + Hide on close + 「閉じる」で隠す + + + Start hidden + 開始時に隠す + + + Use skin cursors + スキンカーソルを使用 + + + Fonts + 書体 + + + Player: + プレイヤ: + + + ??? + ??? + + + + ... + ... + + + Playlist: + プレイリスト: + + + Use bitmap font if available + あればビットマップフォントを使用 + + + Transparency + 透過効果 + + + Main window + メインウィンドウ + + + 0 + 0 + + + Equalizer + イコライザ + + + + Metadata + メタデータ + + + + Load metadata from files + ファイルからメタデータを読み込む + + + + Song Display + 演目表示 + + + + Title format: + タイトルの表示形式: + + + + Convert underscores to blanks + 下線記号_を空白文字で表示 + + + + Convert %20 to blanks + %20を空白文字で表示 + + + Show protocol + プロトコルを表示 + + + Show song numbers + 曲番号つきで表示 + + + Show playlists + プレイリストを表示 + + + Show popup information + 情報吹き出しを表示 + + + Edit template + ひな型を編集 + + + Show anchor + アンカーを表示 + + + Align song numbers + 曲番号のみを表示 + + + + + Preferences + プラグイン調整 + + + + + + + Information + 情報 + + + + Description + プラグイン分類 + + + + Filename + ファイル名 + + + + File Dialog + ファイルダイアログ + + + + Cover Image Retrieve + アルバム表紙画像の取得 + + + + Use separate image files + 分割された画像ファイルを利用 + + + + Include files: + 対象ファイル形式: + + + + Exclude files: + 除外ファイル形式: + + + + Recursive search depth: + 再帰検索の深度: + + + + Playback + 再生 + + + + Continue playback on startup + 前回終了時の曲から継続して再生 + + + + User Interface + + + + + 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 + クリッピング現象を抑えるためピーク情報を使う + + + + Output: + 出力: + + + + Buffer size: + バッファサイズ: + + + + ms + ミリ秒 + + + + Use software volume control + ソフトウェアによる音量制御を利用 + + + + 16-bit output + 16ビット出力 + + + Action + 動作 + + + Shortcut + ショートカット + + + Change shortcut... + 変更 + + + + Track + トラック + + + + + Album + アルバム + + + + Disabled + 無効 + + + Archived skin + 書庫化スキン + + + Unarchived skin + 非書庫化スキン + + + + Transports + 転送 + + + + Decoders + デコーダ + + + + Engines + エンジン + + + + Effects + 音響効果 + + + + Visualization + 視覚効果 + + + + General + 一般 + + + Misc + いろいろ + + + + Artist + アーティスト + + + + Title + タイトル + + + + Track number + トラック番号 + + + + Two-digit track number + トラック番号 数字2桁 + + + + Genre + ジャンル + + + + Comment + コメント + + + + Composer + 作曲者 + + + + Disc number + ディスク番号 + + + + File name + ファイル名 + + + + File path + ファイルパス + + + + Year + + + + + Condition + 定番 + + + Select Skin Files + スキンファイルを選択 + + + Skin files + スキンファイル + + DetailsDialog - - Details - 詳細 + + Details + 詳細 + + + + Open the directory containing this file + このファイルが保管されているディレクトリを開く + + + + ... + ... + + + + Summary + あらまし + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Title + タイトル + + + + Artist + アーティスト + + + + Album + アルバム + + + + Comment + コメント + + + + Genre + ジャンル + + + + Composer + 作曲者 + + + + Year + + + + + Track + トラック + + + + Disc number + ディスク番号 + + + + EqWidget + + Equalizer + イコライザ + + + preset + プリセット + + + &Load/Delete + 読み込み/削除(&L) + + + &Save Preset + プリセットを保存(&S) + + + &Save Auto-load Preset + 自動読み込みされたプリセットを保存(&S) + + + &Import + 移入(&I) + + + &Clear + 消去(&C) + + + Saving Preset + プリセットを保存しています + + + Preset name: + プリセット名: + + + preset # + プリセット番号 + + + Import Preset + プリセットを移入 + + + + JumpToTrackDialog + + + Jump To Track + トラックを指定して即刻再生 + + + + Filter + フィルタ + + + + + + Queue + キューに入れる + + + + Refresh + 再実行 + + + + Jump To + この曲に跳ぶ + + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + キューから除く + + + + MainDisplay + + Previous + 前の曲 + + + Play + 再生 + + + Pause + 一時停止 + + + Stop + 終止 + + + Next + 次の曲 + + + Add file + ファイルを追加 + + + Equalizer + イコライザ + + + Playlist + プレイリスト + + + Repeat playlist + プレイリストを繰り返し + + + Shuffle + シャッフル + + + Volume + 音量 + + + Balance + バランス + + + Volume: %1% + 音量: %1% + + + Balance: %1% right + バランス: %1% 右へ + + + Balance: %1% left + バランス: %1% 左へ + + + Balance: center + バランス: 中央に + + + Seek to: %1 + %1 に移動 + + + + MainVisual + + Visualization Mode + 視覚効果モード + + + Analyzer + スペクトルアナライザ + + + Scope + オシロスコープ + + + Off + 使わない + + + Analyzer Mode + アナライザモード + + + Normal + 通常 + + + Fire + + + + Vertical Lines + + + + Lines + + + + Bars + + + + Peaks + ピーク表示 + + + Refresh Rate + 再描画の頻度 + + + 50 fps + 50 フレーム毎秒 + + + 25 fps + 25 フレーム毎秒 + + + 10 fps + 10 フレーム毎秒 + + + 5 fps + 5 フレーム毎秒 + + + Analyzer Falloff + アナライザ減衰速度 + + + Slowest + さらに遅く + + + Slow + 遅く + + + Medium + 適度 + + + Fast + 速く - - Open the directory containing this file - このファイルが保管されているディレクトリを開く + Fastest + さらに速く - - ... - ... + Peaks Falloff + ピーク減衰速度 - - Summary - あらまし + Background + 背景 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Transparent + 透過させる + + + MainWindow - - Title - タイトル + Choose a directory + ディレクトリを選択 - - Artist - アーティスト + All Supported Bitstreams + サポート対象のすべてのデジタル録音物 - - Album - アルバム + Select one or more files to open + 開きたいファイルを選ぶ (複数可) - - Comment - コメント + Playlist + プレイリスト - - Genre - ジャンル + &Jump To File + ファイルを指定して即刻再生(&J) - - Composer - 作曲者 + J + J - - Year - + View + 観容 - - Track - トラック + Tools + ツール - - Disc number - ディスク番号 + Playlist Files + プレイリストファイル + + + Open Playlist + プレイリストを開く + + + Save Playlist + プレイリストを保存 - JumpToTrackDialog + PlayList - - Jump To Track - + Playlist + プレイリスト - - Filter - + &Copy Selection To + 選んだ曲目で新しいプレイリストを作る(&C) - - - - Queue - + Sort List + リストを並び換え - - Refresh - + By Title + タイトル順に - - Jump To - + By Album + アルバム名順に - - Q - + By Artist + アーティスト名順に - - J - + By Filename + ファイル名順に - - F5 - + By Path + Filename + パスとファイル名の順に - - - Unqueue - + By Date + 日付順に + + + By Track Number + トラック番号順に + + + Sort Selection + 選択範囲内で並び換え + + + Randomize List + リストを順不同に + + + Reverse List + リストを逆順に + + + Actions + 動作 + + + &New PlayList + 新しいプレイリスト(&N) + + + + PlayListBrowser + + Playlist Browser + プレイリストブラウザ + + + New + 新規 + + + Delete + 削除 + + + ... + ... + + + Rename + 名前を変更 @@ -142,6 +1403,190 @@ p, li { white-space: pre-wrap; } プレイリスト + + PlayListSelector + + &Load + 読込(&L) + + + &Save As... + 名前を付けて保存(&A)... + + + Rename + 名前を変更 + + + &Delete + 削除(&D) + + + Rename Playlist + プレイリスト名を変更 + + + Playlist name: + プレイリスト名: + + + + PopupSettings + + Popup Information Settings + 吹き出し情報の設定 + + + Template + 雛形 + + + Reset + リセット + + + Insert + 挿入 + + + Show cover + 表紙を表示 + + + Cover size: + 表紙の大きさ: + + + Transparency: + 透明度: + + + Delay: + 待ち時間: + + + ms + ミリ秒 + + + Artist + アーティスト + + + Album + アルバム + + + Title + タイトル + + + Track number + トラック番号 + + + Two-digit track number + トラック番号 数字2桁 + + + Genre + ジャンル + + + Comment + コメント + + + Composer + 作曲者 + + + Duration + 再生時間 + + + Disc number + ディスク番号 + + + File name + ファイル名 + + + File path + ファイルパス + + + Year + + + + Condition + 定番 + + + + PresetEditor + + Preset Editor + プリセットエディタ + + + Preset + プリセット + + + Auto-preset + 自動プリセット + + + Load + 読込 + + + Delete + 削除 + + + + QMMPStarter + + Unknown command + 不明なコマンドです + + + Usage: qmmp [options] [files] + 使用法: qmmp [オプション] [ファイル名:複数可] + + + Options: + オプション: + + + Don't start the application + アプリケーションを始動しない + + + Display this text and exit + このメッセージを表示して終了 + + + Print version number and exit + バージョン番号を表示して終了 + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + 名案, パッチ, バグ報告は forkotov02@hotmail.ru まで + + + QMMP version: + QMMP 版番号: + + + Qt version: + Qt 版番号: + + QtFileDialogFactory @@ -150,6 +1595,21 @@ p, li { white-space: pre-wrap; } Qtファイルダイアログ + + ShortcutDialog + + Change Shortcut + ショートカットを変更 + + + Press the key combination you want to assign + 割り当てたい組み合わせキーを押します + + + Clear + 消去 + + TagEditor @@ -316,38 +1776,56 @@ p, li { white-space: pre-wrap; } 定番 + + TextScroller + + Autoscroll Songname + 曲名を自動スクロール + + + Buffering: %1% + バッファへ先読み: %1% + + UiHelper All Supported Bitstreams - + サポート対象のすべてのデジタル録音物 Select one or more files to open - + 開きたいファイルを選ぶ (複数可) Choose a directory - + ディレクトリを選択 Playlist Files - + プレイリストファイル Open Playlist - + プレイリストを開く Save Playlist - + プレイリストを保存 + + + + VisualMenu + + Visualization + 視覚効果 diff --git a/src/qmmpui/translations/libqmmpui_locales.qrc b/src/qmmpui/translations/libqmmpui_locales.qrc index 17dcdfccc..36efa3d91 100644 --- a/src/qmmpui/translations/libqmmpui_locales.qrc +++ b/src/qmmpui/translations/libqmmpui_locales.qrc @@ -15,5 +15,6 @@ libqmmpui_nl.qm libqmmpui_ja.qm libqmmpui_es.qm + libqmmpui_sk.qm diff --git a/src/qmmpui/translations/libqmmpui_lt.ts b/src/qmmpui/translations/libqmmpui_lt.ts index 3f25c20b2..cd51f593d 100644 --- a/src/qmmpui/translations/libqmmpui_lt.ts +++ b/src/qmmpui/translations/libqmmpui_lt.ts @@ -1,136 +1,1263 @@ + + AboutDialog + + About Qmmp + Apie Qmmp + + + About + Apie + + + License Agreement + Licenzija + + + Authors + Autoriai + + + Thanks To + Dėkojame + + + :/txt/authors_en.txt + :/txt/authors_lt.txt + + + :/txt/thanks_en.txt + :/txt/thanks_lt.txt + + + Version: + Versija: + + + :txt/description_en.txt + :txt/description_lt.txt + + + Input plugins: + Įeinantys: + + + Output plugins: + Išeinantys: + + + Visual plugins: + Vizualizacijos: + + + Effect plugins: + Efektai: + + + General plugins: + Bendriniai įskiepiai: + + + Translators + Vertėjai + + + :/txt/translators_en.txt + :/txt/translators_lt.txt + + + + ActionManager + + &Play + &Groti + + + &Pause + &Pristabdyti + + + &Stop + &Sustabdyti + + + &Previous + &Ankstesnis + + + &Next + &Sekantis + + + &Play/Pause + &Groti/Pristabdyti + + + Space + Tarpas + + + &Jump to File + &Peršokti prie failo + + + &Repeat Playlist + &Kartoti grojaraštį + + + &Repeat Track + &Kartoti takelį + + + &Shuffle + &Sumaišyti + + + &No Playlist Advance + ????? + &Nesislinkti grojaraščiu + + + &Stop After Selected + &Stabdyti po pasirinkto + + + &Clear Queue + &Išvalyti eilę + + + Show Playlist + Rodyti grojaraštį + + + Show Equalizer + Rodyti glotintuvą + + + Always on Top + Visada viršuje + + + Put on All Workspaces + Įkelti į visus darbastalius + + + Double Size + Dvigubas dydis + + + &Add File + &Pridėti bylą + + + &Add Directory + &Pridėti aplanką + + + &Add Url + &Pridėti interneto adresą + + + &Remove Selected + &Pašalinti pasirinktus + + + &Remove All + &Pašalinti visus + + + &Remove Unselected + &Pašalinti NEpasirinktus + + + Remove unavailable files + Pašalinti neesamas bylas + + + Remove duplicates + Pašalinti besidubliuojančius pavadinimus + + + &Queue Toggle + &Įtraukti į eilę + + + Invert Selection + Apverstinis pasirinkimas + + + &Select None + &Nepasirinkti nei vieno + + + &Select All + &Pasirinkti visus + + + &View Track Details + &Takelio informacija + + + &New List + &Naujas sąrašas + + + &Delete List + &Pašalinti sąrašą + + + &Load List + &Įkelti sąrašą + + + &Save List + &Išsaugoti sąrašą + + + &Select Next Playlist + &Pasirinkti sekantį grojaraštį + + + &Select Previous Playlist + &Pasirinkti ankstesnį grojaraštį + + + &Show Playlists + &Rodyti grojaraščius + + + &Settings + &Nustatymai + + + &About + &Apie + + + &About Qt + &Apie Qt + + + &Exit + &Išeiti + + + + AddUrlDialog + + Error + Klaida + + + Enter URL to add + Įveskite adresą + + + &Add + &Pridėti + + + &Cancel + &Atšaukti + + + + BuiltinCommandLineOption + + Skip forward in playlist + Eiti prie sekančio elemento + + + Skip backwards in playlist + Eiti prie ankstesnio elemento + + + Start playing current song + Groti dainą + + + Don't clear the playlist + Neišvalyti sąrašo + + + Pause current song + Pristabdyti dainą + + + Pause if playing, play otherwise + Pristabdyti/Groti + + + Stop current song + Sustabdyti dainą + + + Display Jump to File dialog + Parodyti langą bylos pasirinkimui + + + Set playback volume (example: qmmp --volume 20) + Nustatyti grojimo garsą (pvz: qmmp --volume 20) + + + Show/hide application + Parodyti/Slėpti programą + + + Display Add File dialog + Parodyti langą bylų pridėjimui + + + Display Add Directory dialog + Parodyti langą aplanko pridėjimui + + + + ConfigDialog + + + Description + Aprašymas + + + + Filename + Bylos pavadinimas + + + + Artist + Atlikėjas + + + + + Album + Albumas + + + + Track + Takelis + + + + Disabled + Išjungta + + + + Transports + Transportas + + + + Decoders + Dekoderiai + + + + Engines + Varikliai + + + Misc + Įvairūs + + + + Title + Pavadinimas + + + + Track number + Takelio numeris + + + + Two-digit track number + Dviejų skaičių takelio numeris + + + + Disc number + Disko numeris + + + + Condition + Būklė + + + + Composer + Autorius + + + + File name + Bylos pavadinimas + + + + File path + Bylos kelias + + + + Genre + Žanras + + + + Year + Metai + + + + Comment + Komentaras + + + + Qmmp Settings + Qmmp nustatymai + + + Skins + Temos + + + Fonts + Šriftai + + + Player: + Grotuvas: + + + Playlist: + Gojaraštis: + + + ??? + ??? + + + + ... + ... + + + + Metadata + Meta duomenys + + + + Load metadata from files + Įkelti metaduomenis 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 + 16 bitų išvestis + + + Archived skin + Suspausta tema + + + Unarchived skin + Išskleista tema + + + + Connectivity + Tinklas + + + + Visualization + Vizualizacija + + + + Effects + Efektai + + + + General + Bendri + + + + File Dialog + Pasirinkimo langas + + + + + Audio + Audio + + + + Replay Gain + Neįsivaizduoju kaip verst + Replay Gain + + + Miscellaneous + Kiti + + + Use bitmap font if available + Naudoti bitmap šriftą, jei įmanoma + + + Use skin cursors + Naudoti temos kursorių + + + Show song numbers + Rodyti takelių numerius + + + Show playlists + Rodyti grojaraščius + + + Show popup information + Rodyti iššokančią informaciją + + + + 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 + + + + Output: + Išvestis + + + + Buffer size: + Buferio dydis: + + + + ms + ms + + + + Use software volume control + Naudoti programinį garso valdymą + + + View + Rodyti + + + Shortcuts + Santrumpos + + + Hide on close + Paslėpti išjungus + + + Start hidden + Įjungti paslėptą + + + Edit template + Taisyti šabloną + + + Align song numbers + Lygiuoti dainų numerius + + + + 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 + + + + User Interface + + + + + 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: + + + Action + Veiksmas + + + Shortcut + Trumpinys + + + Change shortcut... + Keisti trumpinį... + + + + Convert underscores to blanks + Paversti brūkšnius į tarpus + + + + Convert %20 to blanks + Paversti %20 į tarpus + + + Select Skin Files + Pasirinkti temų bylas + + + Skin files + Temų bylos + + + Add... + Pridėti... + + + Refresh + Atnaujinti + + + Show protocol + Rodyti bylos galūnę + + + Transparency + Permatomumas + + + Main window + Pagrindinis langas + + + Equalizer + Glodintuvas + + DetailsDialog - - Title - Pavadinimas + + Title + Pavadinimas + + + + Artist + Atlikėjas + + + + Album + Albumas + + + + Comment + Komentaras + + + + Genre + Žanras + + + + Composer + Autorius + + + + Year + Metai + + + + Track + Takelis + + + + Disc number + Disko numeris + + + + Details + Apie + + + + Open the directory containing this file + Atverti aplanką, kuriame yra ši byla + + + + ... + ... + + + + Summary + Takelio informacija + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + EqWidget + + preset + Nustatymas + + + &Load/Delete + &Įkelti/Pašalinti + + + &Save Preset + &Išsaugoti nustatymus + + + &Save Auto-load Preset + &Išsaugoti auto-nustatymą + + + &Clear + &išvalyti + + + Saving Preset + Išsaugojamas nustatymas + + + Preset name: + Nustatymo pavadinimas: + + + preset # + Nustatymas # + + + &Import + &Importuoti + + + Equalizer + Glotintuvas + + + Import Preset + Importuoti nustatymus + + + + JumpToTrackDialog + + + Jump To Track + Pereiti prie takelio + + + + Filter + Filtras + + + + + + Queue + Į eilę + + + + Refresh + Atnaujinti + + + + Jump To + Prereiti prie + + + + Q + + + + + J + + + + + F5 + + + + + + Unqueue + Pašalinti iš eilės + + + + MainDisplay + + Previous + Ankstesnis + + + Play + Groti + + + Pause + Pristabdyti + + + Stop + Sustoti + + + Next + Sekantis + + + Add file + Pridėti bylą + + + Equalizer + Glotintuvas + + + Playlist + Grojaraštis + + + Repeat playlist + Gartoti grojaraštį + + + Shuffle + Atsitiktine tvarka + + + Volume + Garsumas + + + Balance + Balansas + + + Volume: %1% + Garsas: %1% + + + Balance: %1% right + Balansas: %1% dešinė + + + Balance: %1% left + Balansas: %1% kairė + + + Balance: center + Balansas: centras + + + Seek to: %1 + Peršokti į: %1 + + + + MainVisual + + Visualization Mode + Vizualizacijos metodas + + + Analyzer + Analizatorius + + + Scope + Scope + + + Off + Išjungta + + + Analyzer Mode + Analizatoriaus metodas + + + Normal + Įprastinis + + + Fire + Ugnis + + + Vertical Lines + Vertikalios linijos + + + Lines + Linijos + + + Bars + Bangos + + + Peaks + Pikai + + + Refresh Rate + Atnaujinimo dažnumas + + + 50 fps + 50 kps + + + 25 fps + 25 kps + + + 10 fps + 10 kps + + + 5 fps + 5 kps + + + Analyzer Falloff + Analyzer Falloff + + + Slowest + Lėčiausias + + + Slow + Lėtas - - Artist - Atlikėjas + Medium + Vidutinis - - Album - Albumas + Fast + Greitas - - Comment - Komentaras + Fastest + Greičiausias - - Genre - Žanras + Peaks Falloff + Peaks Falloff - - Composer - Autorius + Background + Fonas - - Year - Metai + Transparent + Permatomumas + + + MainWindow - - Track - Takelis + Choose a directory + Pasirinkite aplanką - - Disc number - Disko numeris + Select one or more files to open + Pasirinkite vieną ar kelias bylas atvėrimui - - Details - Apie + &Jump To File + &Pereiti prie bylos - - Open the directory containing this file - Atverti aplanką, kuriame yra ši byla + View + Rodyti - - ... - ... + Playlist + Grojaraštis - - Summary - Takelio informacija + Open Playlist + Atverti grojaraštį - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Save Playlist + Išsaugoti grojaraštį + + + Playlist Files + Grojaraščio bylos + + + All Supported Bitstreams + Palaikomi bylų tipai + + + Tools + Įrankiai - JumpToTrackDialog + PlayList - - Jump To Track - + &Copy Selection To + &Kopijuoti pasirinkimą į - - Filter - + Sort List + Rūšiuoti - - - - Queue - + By Title + Pagal dainos pavadinimą - - Refresh - + By Album + Pagal albumą - - Jump To - + By Artist + Pagal atlikėją - - Q - + By Filename + Pagal bylos pavadinimą - - J - + By Path + Filename + Pagal kelią iki bylos - - F5 - + By Date + Pagal datą - - - Unqueue - + Sort Selection + Rūšiuoti pasirinktus + + + Randomize List + Sumaišyti sąrašą + + + Reverse List + Apversti + + + &New PlayList + &Naujas grojaraštis + + + By Track Number + Pagal takelio numerį + + + Playlist + Grojaraštis + + + Actions + Veiksmai + + + + PlayListBrowser + + Playlist Browser + Grojaraščių naršyklė + + + New + Naujas + + + Delete + Ištrinti + + + ... + ... + + + Rename + Pervadinti @@ -142,6 +1269,190 @@ p, li { white-space: pre-wrap; } Grojaraštis + + PlayListSelector + + &Load + &Įkelti + + + &Save As... + &Įrašyti kaip... + + + Rename + Pervadinti + + + &Delete + &Ištrinti + + + Rename Playlist + Pervadinti grojaraštį + + + Playlist name: + Grojaraščio pavadinimas + + + + PopupSettings + + Popup Information Settings + Iššokančios informacijos nustatymai + + + Show cover + Rodyti viršelį + + + Transparency: + Permatomumas + + + Delay: + Atidėjimas: + + + ms + ms + + + Cover size: + Nuotraukos dydis + + + Template + Šablonas + + + Reset + Ištrinti + + + Insert + Įtraukti + + + Artist + Atlikėjas + + + Album + Albumas + + + Title + Pavadinimas + + + Track number + Takelio numeris + + + Two-digit track number + Dviejų skaičių takelio numeris + + + Genre + Žanras + + + Comment + Komentaras + + + Composer + Autorius + + + Duration + Ilgis + + + Disc number + Disko numeris + + + File name + Bylos pavadinimas + + + File path + Bylos kelias + + + Year + Metai + + + Condition + Būklė + + + + PresetEditor + + Preset Editor + Nustatymų redaktorius + + + Load + Įkelti + + + Delete + Ištrinti + + + Preset + Nustatymas + + + Auto-preset + Auto-nustatymas + + + + QMMPStarter + + Usage: qmmp [options] [files] + Naudojimas: qmmp [nuostatos] [bylos] + + + Options: + Nustatymai: + + + Print version number and exit + Parodyti versiją ir išeiti + + + Display this text and exit + Parodyti šį tekstą ir išeiti + + + Unknown command + Nežinoma komanda + + + Don't start the application + Nepaleisti programos + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Idėjas, pataisymus, klaidas siųsti forkotov02@hotmail.ru + + + QMMP version: + QMMP versija: + + + Qt version: + Qt versija: + + QtFileDialogFactory @@ -150,6 +1461,21 @@ p, li { white-space: pre-wrap; } Qt bylų langas + + ShortcutDialog + + Change Shortcut + Keisti trumpinį + + + Press the key combination you want to assign + Paspauskite klavišų kombinaciją, kurią norite priskirti + + + Clear + Išvalyti + + TagEditor @@ -316,38 +1642,56 @@ p, li { white-space: pre-wrap; } Būklė + + TextScroller + + Autoscroll Songname + Automatinis takelio slinkimas + + + Buffering: %1% + Buferis: %1% + + UiHelper All Supported Bitstreams - + Palaikomi bylų tipai Select one or more files to open - + Pasirinkite vieną ar kelias bylas atvėrimui Choose a directory - + Pasirinkite aplanką Playlist Files - + Grojaraščio bylos Open Playlist - + Atverti grojaraštį Save Playlist - + Išsaugoti grojaraštį + + + + VisualMenu + + Visualization + Vizualizacija diff --git a/src/qmmpui/translations/libqmmpui_nl.ts b/src/qmmpui/translations/libqmmpui_nl.ts index 4804df9fa..4f7cb1f3f 100644 --- a/src/qmmpui/translations/libqmmpui_nl.ts +++ b/src/qmmpui/translations/libqmmpui_nl.ts @@ -1,136 +1,1277 @@ + + AboutDialog + + About Qmmp + Over Qmmp + + + About + Over + + + Authors + Auteurs + + + Thanks To + Met Dank Aan + + + License Agreement + Licentie + + + :/txt/authors_en.txt + :/txt/authors_nl.txt + + + :/txt/thanks_en.txt + :/txt/thanks_nl.txt + + + Qt-based Multimedia Player (Qmmp) + Qt MultiMedia Player (Qmmp) + + + Version: + Versie: + + + :txt/description_en.txt + :txt/description_nl.txt + + + Input plugins: + Invoer Modules: + + + Output plugins: + Uitvoer Modules: + + + Visual plugins: + Visuele Modules: + + + Effect plugins: + Effecten Modules: + + + General plugins: + Algemene Modules: + + + Translators + Vertalers + + + :/txt/translators_en.txt + :/txt/translators_nl.txt + + + + ActionManager + + &Play + &Afspelen + + + X + X + + + &Pause + &Pauze + + + C + C + + + &Stop + &Stop + + + V + V + + + &Previous + &Vorige + + + Z + Z + + + &Next + &Volgende + + + B + B + + + &Play/Pause + &Afspelen/Pauze + + + Space + Spatie + + + J + J + + + &Repeat Playlist + &Herhaal Afspeellijst + + + R + R + + + &Repeat Track + &Herhaal Nummer + + + Ctrl+R + Ctrl+R + + + &Shuffle + &Willekeurig + + + S + S + + + &Add File + &Voeg Bestand Toe + + + F + F + + + &Add Directory + &Voeg Map toe + + + D + D + + + &Add Url + &Voeg URL toe + + + U + U + + + &Remove Selected + &Verwijder Geselecteerd + + + Del + Del + + + &Remove All + &Verwijder Alles + + + &Remove Unselected + &Verwijder Gedeselecteerde + + + Remove unavailable files + Verwijder niet aanwezige bestanden + + + Remove duplicates + Verwijder duplicaten + + + Q + Q + + + Invert Selection + Draai Selectie Om + + + &Select None + &Selecteer Niets + + + &Select All + &Selecteer Alles + + + Ctrl+A + Ctrl+A + + + &View Track Details + &Bekijk Nummer Details + + + Alt+I + Alt+I + + + &New List + &Nieuwe Lijst + + + Ctrl+T + Ctrl+T + + + &Delete List + &Verwijder Lijst + + + Ctrl+W + Ctrl+W + + + &Load List + &Laad Lijst + + + O + O + + + &Save List + &Bewaar Lijst + + + Shift+S + Shift+S + + + &Select Next Playlist + &Selecteer Volgende Afspeellijst + + + Ctrl+PgDown + Ctrl+PgDown + + + &Select Previous Playlist + &Selecteer Vorige Afspeellijst + + + Ctrl+PgUp + Ctrl+PgUp + + + &Show Playlists + &Toon Afspeellijst + + + P + P + + + &Settings + &Instellingen + + + Ctrl+P + Ctrl+P + + + &About + &Over + + + &About Qt + &Over Qt + + + &Exit + &Sluit + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Enter URL to add + URL om toe te voegen + + + Error + Fout + + + &Add + &Toevoegen + + + &Cancel + &Annuleren + + + + BuiltinCommandLineOption + + Skip forward in playlist + Naar voren springen in afspeellijstb + + + Skip backwards in playlist + Naar achteren springen in afspeellijst + + + Start playing current song + Begin met afspelen van huidig nummer + + + Don't clear the playlist + Niet de afspellijst leeghalen + + + Pause current song + Pauzeer huidig nummer + + + Pause if playing, play otherwise + Pauzeer als er wordt gespeeld, anders spelen + + + Stop current song + Stop huidig nummer + + + Display Jump to File dialog + Toon Ga Naar Bestandsdialoog + + + Set playback volume (example: qmmp --volume 20) + Zet afspeelvolume (voorbeeld: qmmp --volume 20) + + + Show/hide application + Toon/verberg programma + + + Display Add File dialog + Toon venster om bestanden toe te voegen + + + Display Add Directory dialog + Toon venster om mappen toe te voegen + + + + ConfigDialog + + + Description + Popis + + + + Filename + Bestandsnaam + + + + Artist + Artiest + + + + + Album + Album + + + + Track + Nummer + + + + Disabled + Uitgeschakeld + + + + Transports + Protocols + + + + Decoders + Decoders + + + + Engines + Engines + + + + Title + Naam + + + + Track number + Liednummer + + + + Two-digit track number + Twee-getal liednummer + + + + Disc number + CD nummer + + + + Condition + Staat + + + + Composer + Componist + + + + File name + Bestandsnaam + + + + File path + Pad + + + + Genre + Genre + + + + Year + Jaar + + + + Comment + Commentaar + + + + Qmmp Settings + Qmmp Instellingen + + + Appearance + Vertoning + + + + Playlist + Afspeellijst + + + + Plugins + Modules + + + + Advanced + Geavanceerd + + + Skins + Thema's + + + Fonts + Lettertypen + + + Player: + Speler: + + + Playlist: + Afspeellijst: + + + ??? + ??? + + + + Replay Gain + Replay Gain + + + Miscellaneous + Overige + + + + ... + ... + + + Use bitmap font if available + Gebruik bitmap lettertype indien aanwezig + + + Use skin cursors + Gebruik thema cursor + + + + Metadata + Metadata + + + + Load metadata from files + Laad metadata van bestanden + + + + Song Display + Nummer Weergave + + + + Title format: + Titel formaat: + + + Show song numbers + Toon liednummers + + + Show playlists + Toon afspeellijst + + + Show popup information + Toon popup informatie + + + + + Preferences + Voorkeuren + + + + + + + Information + Informatie + + + + Cover Image Retrieve + Lees Hoes Af + + + + 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 + + + + User Interface + + + + + Replay Gain mode: + Replay Gain stand: + + + + Preamp: + Voorversterking: + + + + + dB + dB + + + + Default gain: + Standaard verhoging: + + + + Use peak info to prevent clipping + Gebruik piek info om stotteren te voorkomen + + + + Output: + Uitvoer: + + + + Buffer size: + + + + + ms + ms + + + + 16-bit output + 16bit uitvoer + + + + Connectivity + Connectiviteit + + + View + Weergave + + + + File Dialog + Bestandsdialoog + + + + Proxy + 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: + + + Archived skin + Gearchiveerd thema + + + Unarchived skin + Niet gearchiveerd thema + + + + Visualization + Visualisatie + + + + Effects + Effecten + + + + General + Algemeen + + + + + Audio + Audio + + + + Use software volume control + Gebruik software volume + + + Hide on close + Verberg bij sluit + + + Start hidden + Start verborgen + + + + Convert underscores to blanks + Zet lage strepen om in spaties + + + + Convert %20 to blanks + Zet %20 om in spaties + + + Select Skin Files + Selecteer themabestanden + + + Skin files + Thema bestanden + + + Add... + Toevoegen... + + + Refresh + Herlaad + + + Show protocol + Laad protocol + + + Transparency + Transparantie + + + Main window + Hoofdscherm + + + 0 + 0 + + + Equalizer + Equalizer + + DetailsDialog - - Title - Naam + + Title + Naam + + + + Artist + Artiest + + + + Album + Album + + + + Comment + Commentaar + + + + Genre + Genre + + + + Composer + Componist + + + + Year + Jaar + + + + Track + Nummer + + + + Disc number + CD nummer + + + + Details + Details + + + + Open the directory containing this file + + + + + ... + ... + + + + Summary + Samenvatting + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + EqWidget + + Equalizer + Equalizer + + + preset + voorinstelling + + + &Load/Delete + &Laad/Verwijder + + + &Save Preset + &Bewaar Instelling + + + &Save Auto-load Preset + &Bewaar Auto-laad Instelling + + + &Import + &Importeer + + + &Clear + &Leeghalen + + + Saving Preset + Bewaren van Preset + + + Preset name: + Instellingnaam: + + + preset # + instelling # + + + Import Preset + Importer Instelling + + + + JumpToTrackDialog + + + Jump To Track + Ga Naar Nummer + + + + Filter + Filter + + + + + + Queue + Rij + + + + Refresh + Herlaad + + + + Jump To + Ga Naar + + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + Verwijder uit lijst + + + + MainDisplay + + Previous + Vorige + + + Play + Afspelen + + + Pause + Pauze + + + Stop + Stop + + + Next + Volgende + + + Add file + Bestand toevoegen + + + Equalizer + Equalizer + + + Playlist + Afspeellijst + + + Repeat playlist + Herhaal afspeellijst + + + Shuffle + Willekeurig + + + Volume + Volume + + + Balance + Balans + + + + MainVisual + + Visualization Mode + Visualisatiestand + + + Analyzer + Analysator + + + Scope + Scoop + + + Off + Uit + + + Analyzer Mode + Analysatorstand + + + Normal + Normaal + + + Fire + Vuur + + + Vertical Lines + Verticale Lijnen + + + Lines + Lijnen + + + Bars + Strepen + + + Peaks + Toppen + + + Refresh Rate + Vernieuw Frequentie + + + 50 fps + 50 Hz - - Artist - Artiest + 25 fps + 25 Hz - - Album - Album + 10 fps + 10 Hz - - Comment - Commentaar + 5 fps + 5 Hz - - Genre - Genre + Analyzer Falloff + Analysator Uitval - - Composer - Componist + Slowest + Traagst - - Year - Jaar + Slow + Traag - - Track - Nummer + Medium + Normaal - - Disc number - CD nummer + Fast + Snel - - Details - Details + Fastest + Snelst - - Open the directory containing this file - + Peaks Falloff + Toppen Uitval - - ... - + Background + Achtergrond - - Summary - Samenvatting + Transparent + Transparantie + + + MainWindow - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + Choose a directory + Kies een map + + + Select one or more files to open + Kies een of meer bestanden om te openen + + + &Jump To File + &Spring Naar Bestand + + + J + J + + + View + Weergave + + + Playlist + Afspeellijst + + + Playlist Files + Afspeellijst Bestanden + + + Open Playlist + Open Afspeellijst + + + Save Playlist + Bewaar Afspeellijst + + + All Supported Bitstreams + Alle Ondersteunde Bitstromen + + + Tools + Gereedschappen - JumpToTrackDialog + PlayList - - Jump To Track - + Sort List + Sorteer Lijst - - Filter - + By Title + Op Titel - - - - Queue - + By Album + Op Album - - Refresh - + By Artist + Op Artiest - - Jump To - + By Filename + Op Bestandsnaam - - Q - + By Path + Filename + Op Pad + Bestandsnaam - - J - + By Date + Op Datum - - F5 - + Sort Selection + Sorteer Selectie - - - Unqueue - + Randomize List + Schud Lijst + + + Reverse List + Draai Lijst Om + + + Playlist + Afspeellijst + + + By Track Number + Op Lied Nummer + + + Actions + Acties + + + + PlayListBrowser + + Playlist Browser + Afspeellijst Browser + + + New + Nieuw + + + Delete + Verwijder + + + ... + ... + + + Rename + Hernoem @@ -142,6 +1283,186 @@ p, li { white-space: pre-wrap; } Afspeellijst + + PlayListSelector + + &Load + &Laad + + + &Save As... + &Bewaar Als... + + + Rename + Hernoem + + + &Delete + &Verwijder + + + Rename Playlist + Hernoem Afspeellijst + + + Playlist name: + Afspeellijst: + + + + PopupSettings + + Popup Information Settings + Popup Informatie Instellingen + + + Show cover + Toon Hoes + + + Transparency: + Transparantie: + + + Delay: + Vertraging: + + + ms + ms + + + Cover size: + Hoesgrootte: + + + Template + Layout + + + Reset + Terugzetten + + + Insert + Invoegen + + + Artist + Artiest + + + Album + Album + + + Title + Naam + + + Track number + Liednummer + + + Two-digit track number + Twee-cijfer liednummer + + + Genre + Genre + + + Comment + Commentaar + + + Composer + Componist + + + Duration + Duur + + + Disc number + CD nummer + + + File name + Bestandsnaam + + + File path + Pad + + + Year + Jaar + + + Condition + Staat + + + + PresetEditor + + Preset Editor + Instellingen Bewerker + + + Load + Laad + + + Delete + Verwijder + + + Preset + Instelling + + + Auto-preset + Auto-instellingen + + + + QMMPStarter + + Usage: qmmp [options] [files] + Gebruik: qmmp [opties] [bestanden] + + + Options: + Opties: + + + Print version number and exit + Print versienummer en sluit + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ideëen, patches, foutrapporten zenden naar forkotov02@hotmail.ru (anglicky) + + + Display this text and exit + Toon dit tekstje en sluit + + + Unknown command + Onbekend commando + + + QMMP version: + QMMP versie: + + + Qt version: + Qt versie: + + QtFileDialogFactory @@ -316,38 +1637,52 @@ p, li { white-space: pre-wrap; } Staat + + TextScroller + + Autoscroll Songname + Automatisch naar Liednummer Scrollen + + UiHelper All Supported Bitstreams - + Alle Ondersteunde Bitstromen Select one or more files to open - + Kies een of meer bestanden om te openen Choose a directory - + Kies een map Playlist Files - + Afspeellijst Bestanden Open Playlist - + Open Afspeellijst Save Playlist - + Bewaar Afspeellijst + + + + VisualMenu + + Visualization + Visualisatie diff --git a/src/qmmpui/translations/libqmmpui_pl.ts b/src/qmmpui/translations/libqmmpui_pl.ts index ebac46576..f289bed3f 100644 --- a/src/qmmpui/translations/libqmmpui_pl.ts +++ b/src/qmmpui/translations/libqmmpui_pl.ts @@ -1,132 +1,1301 @@ + + AboutDialog + + About Qmmp + O programie Qmmp + + + About + O programie + + + License Agreement + Warunki licencji + + + Authors + Autorzy + + + Thanks To + Podziękowania + + + Qt-based Multimedia Player (Qmmp) + Odtwarzacz Multimedialny oparty na QT (Qmmp) + + + Version: + Wersja: + + + Input plugins: + Wtyczki wejściowe: + + + Output plugins: + Wtyczki wyjściowe: + + + Visual plugins: + Wtyczki wizualizacji: + + + Effect plugins: + Wtyczki efektów: + + + General plugins: + Wtyczki ogólne: + + + Translators + Tłumacze + + + + ActionManager + + &Play + &Odtwarzaj + + + X + X + + + &Pause + &Wstrzymaj + + + C + C + + + &Stop + &Zatrzymaj + + + V + V + + + &Previous + &Poprzedni + + + Z + Z + + + &Next + &Następny + + + B + B + + + &Play/Pause + &Odtwarzaj/Wstrzymaj + + + Space + Spacja + + + &Jump to File + Skocz do utworu + + + J + J + + + &Repeat Playlist + Powtó&rz listę odtwarzania + + + &Repeat Track + &Powtórz utwór + + + &Shuffle + &Losowo + + + &Stop After Selected + Zatrzymaj po aktualnie odtwarzanym utworze + + + &Clear Queue + Wy&czyść kolejkę + + + Show Playlist + Pokaż listę odtwarzania + + + Show Equalizer + Pokaż korektor + + + Always on Top + Zawsze na wierzchu + + + Put on All Workspaces + Na wszystkie pulpity + + + Double Size + Podwójny rozmiar + + + &Add File + &Dodaj plik + + + F + F + + + &Add Directory + Dodaj &katalog + + + D + D + + + &Add Url + Dod&aj Url + + + U + U + + + &Remove Selected + &Usuń zaznaczone + + + Del + Del + + + &Remove All + Usuń &wszystkie + + + &Remove Unselected + Usuń &niezaznaczone + + + Remove unavailable files + Usuń niedostępne pliki + + + Remove duplicates + Usuń duplikaty + + + &Queue Toggle + Dodaj do/Usuń z kolejki + + + Q + Q + + + Invert Selection + Odwróć zaznaczenie + + + &Select None + &Odznacz wszystkie + + + &Select All + &Zaznacz wszystkie + + + Ctrl+A + Ctrl+A + + + &View Track Details + &Pokaż informacje o pliku + + + Alt+I + Alt+I + + + &New List + &Nowa lista + + + &Delete List + Usuń listę o&dtwarzania + + + &Load List + &Ładuj listę + + + O + O + + + &Save List + &Zapisz listę + + + Shift+S + Shift+S + + + &Select Next Playlist + Wybierz na&stępną listę + + + &Select Previous Playlist + Wybierz poprzednią li&stę + + + &Show Playlists + Pokaż li&sty odtwarzania + + + &Settings + &Ustawienia + + + Ctrl+P + Ctrl+P + + + &About + &O programie + + + &About Qt + &O Qt + + + &Exit + &Wyjście + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Error + Błąd + + + Enter URL to add + Wpisz URL + + + &Add + &Dodaj + + + &Cancel + &Anuluj + + + + BuiltinCommandLineOption + + Skip forward in playlist + Przeskocz do przodu na liście odtwarzania + + + Skip backwards in playlist + Przeskocz do tyłu na liście odtwarzania + + + Start playing current song + Zacznij odtwarzać bieżący utwór + + + Don't clear the playlist + Nie czyść listy + + + Pause current song + Wstrzymaj bieżący utwór + + + Pause if playing, play otherwise + Wstrzymaj jeśli odtwarza, odtwarzaj w przeciwnym wypadku + + + Stop current song + Zatrzymaj bieżący utwór + + + Display Jump to File dialog + Wyświetl okno dialogowe Skocz do + + + Set playback volume (example: qmmp --volume 20) + Ustaw głośność odtwarzania (np: qmmp --volume 20) + + + Show/hide application + Pokaż/ukryj aplikację + + + Display Add File dialog + Wyświetl okno dialogowe dodawania plików + + + Display Add Directory dialog + Wyświetl okno dialogowe dodawania katalogów + + + + ConfigDialog + + + Description + Opis + + + + Filename + Nazwa pliku + + + + Artist + Artysta + + + + + Album + Album + + + + Track + Utwór + + + + Disabled + Wyłączone + + + + Transports + Transporty + + + + Decoders + Dekodery + + + + Engines + Silniki + + + Misc + Inne + + + + Title + Tytuł + + + + Track number + Numer utworu + + + + Two-digit track number + Dwuznakowy numer utworu + + + + Disc number + Numer albumu + + + + Condition + Warunek + + + + Genre + Gatunek + + + + Composer + Kompozytor + + + + File name + Nazwa pliku + + + + File path + Lokalizacja + + + + Year + Rok + + + + Comment + Komentarz + + + + Qmmp Settings + 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 + 16-bitowe odtwarzanie + + + Archived skin + Skompresowana skórka + + + Unarchived skin + Niekompresowana skórka + + + + Connectivity + Sieć + + + + Visualization + Wizualizacje + + + + Effects + Efekty + + + + General + 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 + + + Use skin cursors + Użyj kursorów z motywu + + + Show song numbers + Wyświetl numery utworów na liście odtwarzania + + + Show playlists + Pokaż listy odtwarzania + + + Show popup information + Pokaż informację popup + + + + 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: + Wyjście: + + + + Buffer size: + Rozmiar bufora: + + + + ms + ms + + + + Use software volume control + Użyj programowej regulacji głośności + + + View + Wygląd + + + Shortcuts + Skróty klawiszowe + + + Hide on close + Zminimalizuj przy zamykaniu + + + Start hidden + Uruchom zminimalizowany + + + Edit template + Edytuj szablon + + + Show anchor + Pokaż kotwicę + + + Align song numbers + Wyrównaj w pionie numery utworów + + + + 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 + + + + User Interface + + + + + 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: + + + Action + Akcje + + + Shortcut + Skrót + + + Change shortcut... + Zmień skrót... + + + + Convert underscores to blanks + Konwertuj podkreślenia na spacje + + + + Convert %20 to blanks + Konwertuj sekwencje %20 na spacje + + + Select Skin Files + Wybierz skórę + + + Skin files + Pliki skór + + + Add... + Dodaj... + + + Refresh + Odśwież + + + Show protocol + Pokaż protokół + + + Transparency + Przezroczystość + + + Main window + Okno główne + + + 0 + 0 + + + Equalizer + Korektor + + DetailsDialog - - Title - Tytuł + + Title + Tytuł + + + + Artist + Artysta + + + + Album + Album + + + + Comment + Komentarz + + + + Genre + Gatunek + + + + Composer + Kompozytor + + + + Year + Rok + + + + Track + Ścieżka + + + + Disc number + Numer płyty + + + + Details + Szczegóły + + + + Open the directory containing this file + Otwórz katalog zawierający ten plik + + + + ... + ... + + + + Summary + Informacje + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + + EqWidget + + preset + profil + + + &Load/Delete + Wczytaj/&Usuń + + + &Save Preset + Zapi&sz Profil + + + &Save Auto-load Preset + Zapi&sz Auto-ładowanie Profilu + + + &Clear + &Wyczyść + + + Saving Preset + Zapisywanie Profilu + + + Preset name: + Nazwa Profilu: + + + preset # + profil # + + + &Import + &Importuj + + + Equalizer + Korektor + + + Import Preset + Importuj Profil + + + + JumpToTrackDialog + + + Jump To Track + Skocz do utworu + + + + Filter + Filtr + + + + + + Queue + Kolejkuj + + + + Refresh + Odśwież + + + + Jump To + Skocz do + + + + Q + Q + + + + J + J + + + + F5 + + + + + + Unqueue + Wykolejkuj + + + + MainDisplay + + Previous + Poprzedni + + + Play + Odtwarzaj + + + Pause + Pauza + + + Stop + Zatrzymaj + + + Next + Następny + + + Add file + Dodaj plik + + + Equalizer + Equalizer + + + Playlist + Lista odtwarzania + + + Repeat playlist + Powtórz listę odtwarzania + + + Shuffle + Losowo + + + Volume + Głośność + + + Balance + Balans + + + Volume: %1% + Głośność: %1% + + + Balance: %1% right + Balans: %1% prawy + + + Balance: %1% left + Balans: %1% lewy + + + Balance: center + Balans: środek + + + Seek to: %1 + Przewijanie: %1 + + + + MainVisual + + Visualization Mode + Tryb wizualizacji + + + Analyzer + Analizator + + + Off + Wyłączone + + + Analyzer Mode + Tryb Analizatora + + + Normal + Normalny + + + Fire + Ogień + + + Vertical Lines + Pionowe Linie + + + Lines + Linie + + + Bars + Słupki + + + Peaks + Piki + + + Refresh Rate + Odświeżanie + + + Analyzer Falloff + Prędkość Analizatora + + + Slowest + Najwolniej - - Artist - Artysta + Slow + Wolno - - Album - Album + Medium + Średnio - - Comment - Komentarz + Fast + Szybko - - Genre - Gatunek + Fastest + Najszybciej - - Composer - Kompozytor + Peaks Falloff + Opadanie Pików - - Year - Rok + Background + Tło - - Track - Ścieżka + Transparent + Przezroczystość + + + MainWindow - - Disc number - Numer płyty + Choose a directory + Wybierz katalog - - Details - Szczegóły + Select one or more files to open + Wybierz jeden lub więcej plików do otwarcia - - Open the directory containing this file - Otwórz katalog zawierający ten plik + &Jump To File + &Skocz do pliku - - ... - ... + J + J - - Summary - Informacje + View + Wygląd - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - + Playlist + Lista odtwarzania + + + Open Playlist + Otwórz listę odtwarzania + + + Save Playlist + Zapisz listę odtwarzania + + + Playlist Files + Pliki listy odtwarzania + + + All Supported Bitstreams + Wszystkie wspierane formaty + + + Tools + Narzędzia - JumpToTrackDialog + PlayList - - Jump To Track - + &Copy Selection To + Kopiuj zazna&czenie do - - Filter - + Sort List + Sortuj listę - - - - Queue - + By Title + Według nazwy - - Refresh - + By Album + Według nazwy albumu - - Jump To - + By Artist + Według artysty - - Q - + By Filename + Według nazwy pliku - - J - + By Path + Filename + Według Ścieżki + Nazwy pliku - - F5 - + By Date + Wg Daty - - - Unqueue - + Sort Selection + Sortuj zaznaczone + + + Randomize List + Tasuj listę + + + Reverse List + Odwróć listę + + + &New PlayList + &Nowa lista odtwarzania + + + By Track Number + Wg numeru utworu + + + Playlist + Lista odtwarzania + + + Actions + Akcje + + + + PlayListBrowser + + Playlist Browser + Menedżer list odtwarzania + + + New + Nowa + + + Delete + Usuń + + + ... + ... + + + Rename + Zmień nazwę @@ -138,6 +1307,186 @@ p, li { white-space: pre-wrap; } Lista odtwarzania + + PlayListSelector + + &Load + Załaduj + + + &Save As... + Zapi&sz jako... + + + Rename + Zmień nazwę + + + &Delete + Usuń + + + Rename Playlist + Zmień nazwę listy + + + Playlist name: + Nazwa listy odtwarzania: + + + + PopupSettings + + Popup Information Settings + Ustawienia informacji Popup + + + Show cover + Pokaż okładkę + + + Transparency: + Przezroczystość: + + + Delay: + Opóźnienie: + + + Cover size: + Rozmiar okładki: + + + Template + Szablon + + + Reset + Przywróć + + + Insert + Wstaw + + + Artist + Artysta + + + Album + Album + + + Title + Tytuł + + + Track number + Numer utworu + + + Two-digit track number + Dwuznakowy numer utworu + + + Genre + Gatunek + + + Comment + Komentarz + + + Composer + Kompozytor + + + Duration + Długość + + + Disc number + Numer albumu + + + File name + Nazwa pliku + + + File path + Lokalizacja + + + Year + Rok + + + Condition + Warunek + + + + PresetEditor + + Preset Editor + Edytor Profili + + + Load + Ładuj + + + Delete + Usuń + + + Preset + Profil + + + Auto-preset + Auto-profil + + + + QMMPStarter + + Usage: qmmp [options] [files] + Użycie: qmmp [opcje] [pliki] + + + Options: + Opcje: + + + Don't start the application + Nie uruchamiaj aplikacji + + + Print version number and exit + Wyświetla wersję programu i wychodzi + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Pomysły, poprawki, raporty o błędach proszę wysyłać na forkotov02@hotmail.ru + + + Display this text and exit + Wyświetla ten tekst i wychodzi + + + Unknown command + Nieznane polecenie + + + QMMP version: + Wersja QMMP: + + + Qt version: + Wersja QT: + + QtFileDialogFactory @@ -146,6 +1495,21 @@ p, li { white-space: pre-wrap; } Okno dialogowe QT + + ShortcutDialog + + Change Shortcut + Modyfikuj skrót + + + Press the key combination you want to assign + Wciśnij kombinację klawiszy, które chcesz przypisać + + + Clear + Wyczyść + + TagEditor @@ -308,38 +1672,56 @@ p, li { white-space: pre-wrap; } Warunek + + TextScroller + + Autoscroll Songname + Automatyczne przewijanie tytułu utworu + + + Buffering: %1% + Buforowanie: : %1% + + UiHelper All Supported Bitstreams - + Wszystkie wspierane formaty Select one or more files to open - + Wybierz jeden lub więcej plików do otwarcia Choose a directory - + Wybierz katalog Playlist Files - + Pliki listy odtwarzania Open Playlist - + Otwórz listę odtwarzania Save Playlist - + Zapisz listę odtwarzania + + + + VisualMenu + + Visualization + Wizualizacja diff --git a/src/qmmpui/translations/libqmmpui_pt_BR.ts b/src/qmmpui/translations/libqmmpui_pt_BR.ts index 509e13aa1..209b799f5 100644 --- a/src/qmmpui/translations/libqmmpui_pt_BR.ts +++ b/src/qmmpui/translations/libqmmpui_pt_BR.ts @@ -1,32 +1,501 @@ + + AboutDialog + + About Qmmp + Sobre QMMP + + + About + Sobre + + + License Agreement + Concordância com a Licença + + + Authors + Autores + + + Thanks To + Agradecimentos para + + + + ActionManager + + &Play + Tocar + + + &Pause + Pausar + + + &Stop + Parar + + + &Previous + Anterior + + + &Next + Próximo + + + &Add File + &Adicionar arquivo + + + &Add Directory + &Adicionar Diretorio + + + &Remove Selected + &Remover selecionadas + + + &Remove All + &Remover tudo + + + &Remove Unselected + &Remover não selecionadas + + + Invert Selection + Inverter Seleção + + + &Select None + &Nenhum selecionado + + + &Select All + &Selecionar tudo + + + &View Track Details + &Ver detalhes da Faixa + + + &New List + &Nova lista + + + &Load List + &Carregar lista + + + &Save List + &Salvar lista + + + &Settings + Configurações + + + &About + &Sobre + + + &Exit + Sair + + + + ConfigDialog + + + Description + Descrição + + + + Filename + Nome do Arquivo + + + + Artist + Artista + + + + + Album + Álbum + + + + Track + + + + + Disabled + + + + + Transports + + + + + Decoders + + + + + Engines + + + + + Title + Título + + + + Track number + + + + + Two-digit track number + + + + + Disc number + + + + + Condition + + + + + Genre + Gênero + + + + Composer + + + + + File name + + + + + File path + + + + + Year + Ano + + + + Comment + Comentário + + + + Qmmp Settings + 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 + + + + + Connectivity + + + + + Visualization + + + + + Effects + + + + + General + + + + + File Dialog + + + + + + Audio + + + + + Replay Gain + + + + + Replay Gain mode: + + + + + Preamp: + + + + + + dB + + + + + Default gain: + + + + + Use peak info to prevent clipping + + + + + Output: + + + + + 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 + + + + + User Interface + + + + + 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 + + + + Refresh + Recarregar + + DetailsDialog Title - + Título Artist - + Artista Album - + Álbum Comment - + Comentário Genre - + Gênero @@ -36,7 +505,7 @@ Year - + Ano @@ -61,7 +530,7 @@ ... - + ... @@ -78,34 +547,77 @@ p, li { white-space: pre-wrap; } + + EqWidget + + preset + preset + + + &Load/Delete + &Carregar/Deletar + + + &Save Preset + %Salvar preset + + + &Save Auto-load Preset + &Salvar Auto-Carregar preset + + + &Clear + &Limpar + + + Saving Preset + Salvando Preset + + + Preset name: + Nome Preset: + + + preset # + Preset # + + + &Import + &Importar + + + Import Preset + Importar Preset + + JumpToTrackDialog Jump To Track - + Pular de faixa Filter - + Filtro Queue - + Faixa na Fila Refresh - + Recarregar Jump To - + Pular para @@ -126,7 +638,95 @@ p, li { white-space: pre-wrap; } Unqueue - + Sem Faixa na Fila + + + + MainDisplay + + Playlist + Lista de músicas + + + + MainWindow + + Choose a directory + Escolher o diretorio + + + Select one or more files to open + Selecionar um ou mais arquivos + + + &Jump To File + Pular para arquivo + + + Playlist + Lista de músicas + + + Open Playlist + Abrir Playlist + + + Save Playlist + Salvar Playlist + + + Playlist Files + ФArquivos de lista de músicas + + + + PlayList + + Sort List + Classificar lista + + + By Title + Por Título + + + By Filename + Por Nome + + + By Path + Filename + Por Dirertório + Nome + + + By Date + Por Data + + + Sort Selection + Classificar por Seleção + + + Randomize List + Lista Eleatória + + + Reverse List + Lista Revertida + + + Playlist + Lista de músicas + + + + PlayListBrowser + + Delete + Remover + + + ... + ... @@ -135,7 +735,57 @@ p, li { white-space: pre-wrap; } Playlist - + Lista de músicas + + + + PopupSettings + + Artist + Artista + + + Album + Álbum + + + Title + Título + + + Genre + Gênero + + + Comment + Comentário + + + Year + Ano + + + + PresetEditor + + Preset Editor + Editor de Preset + + + Load + Carregar + + + Delete + Remover + + + Preset + Preset + + + Auto-preset + Auto-preset @@ -240,17 +890,17 @@ p, li { white-space: pre-wrap; } Artist - + Artista Album - + Álbum Title - + Título @@ -265,12 +915,12 @@ p, li { white-space: pre-wrap; } Genre - + Gênero Comment - + Comentário @@ -300,7 +950,7 @@ p, li { white-space: pre-wrap; } Year - + Ano @@ -318,28 +968,28 @@ p, li { white-space: pre-wrap; } Select one or more files to open - + Selecionar um ou mais arquivos Choose a directory - + Escolher o diretorio Playlist Files - + ФArquivos de lista de músicas Open Playlist - + Abrir Playlist Save Playlist - + Salvar Playlist diff --git a/src/qmmpui/translations/libqmmpui_ru.ts b/src/qmmpui/translations/libqmmpui_ru.ts index d94ce66a5..bee6b1c8e 100644 --- a/src/qmmpui/translations/libqmmpui_ru.ts +++ b/src/qmmpui/translations/libqmmpui_ru.ts @@ -1,132 +1,1241 @@ + + AboutDialog + + About Qmmp + О Qmmp + + + About + О программе + + + License Agreement + Лицензия + + + Authors + Авторы + + + Thanks To + Благодарности + + + :/txt/authors_en.txt + :/txt/authors_ru.txt + + + :/txt/thanks_en.txt + :/txt/thanks_ru.txt + + + Version: + Версия: + + + :txt/description_en.txt + :txt/description_ru.txt + + + Input plugins: + Модули ввода: + + + Output plugins: + Модули вывода: + + + Visual plugins: + Модули визуализации: + + + Effect plugins: + Модули эффектов: + + + General plugins: + Общие модули: + + + Translators + Переводчики + + + :/txt/translators_en.txt + :/txt/translators_ru.txt + + + + ActionManager + + &Play + &Воспроизвести + + + &Pause + &Приостановить + + + &Stop + &Стоп + + + &Previous + &Предыдущий фрагмент + + + &Next + &Следующий фрагмент + + + &Play/Pause + &Воспр/приост + + + &Repeat Playlist + &Повторять список + + + &Repeat Track + &Повторять трек + + + &Shuffle + &В случайном порядке + + + &No Playlist Advance + &Не продвигаться по списку + + + &Stop After Selected + &Остановить после выделенного + + + &Clear Queue + &Очистить очередь + + + Show Playlist + Показывать список + + + Show Equalizer + Показывать эквалайзер + + + Always on Top + Поверх всех окон + + + Put on All Workspaces + Разместить на всех рабочих столах + + + Double Size + Двойной размер + + + &Add File + &Добавить файл + + + &Add Directory + &Добавить директорию + + + &Add Url + &Добавить URL + + + &Remove Selected + &Удалить выделенное + + + &Remove All + &Удалить всё + + + &Remove Unselected + &Удалить невыделенное + + + Remove unavailable files + Удалить недоступные файлы + + + Remove duplicates + Удалить дубликаты + + + &Queue Toggle + &В очередь + + + Invert Selection + Инвертировать выделение + + + &Select None + &Снять выделение + + + &Select All + &Выделить всё + + + &View Track Details + &Информация + + + &New List + &Новый список + + + &Delete List + &Удалить список + + + &Load List + &Загрузить список + + + &Save List + &Сохранить список + + + &Select Next Playlist + &Выбрать следующий список + + + &Select Previous Playlist + &Выбрать предыдущий список + + + &Show Playlists + &Показать списки + + + &Settings + &Настройки + + + &About + &О программе + + + &About Qt + &О библиотеке Qt + + + &Exit + &Выход + + + + AddUrlDialog + + Error + Ошибка + + + Enter URL to add + Введите адрес для добавления + + + &Add + &Добавить + + + &Cancel + &Отмена + + + + BuiltinCommandLineOption + + Skip forward in playlist + Перейти к следующему фрагменту + + + Skip backwards in playlist + Перейти к предыдущему фрагменту + + + Start playing current song + Воспроизвести текущую песню + + + Don't clear the playlist + Не очищать лист + + + Pause current song + Приостановить текущую песню + + + Pause if playing, play otherwise + Приостановить/воспроизвести + + + Stop current song + Остановить текущую песню + + + Display Jump to File dialog + Показать диалог перехода к файлу + + + Set playback volume (example: qmmp --volume 20) + Установить громкость (пример: qmmp --volume 20) + + + Show/hide application + Показать/скрыть приложение + + + Display Add File dialog + Показать диалог добавления файлов + + + Display Add Directory dialog + Показать диалог добавления директорий + + + + ConfigDialog + + + Description + Описание + + + + Filename + Имя файла + + + + Artist + Исполнитель + + + + + Album + Альбом + + + + Track + Дорожка + + + + Disabled + Отключено + + + + Transports + Транспорты + + + + Decoders + Декодеры + + + + Engines + Внешние проигрыватели + + + Misc + Другие + + + + Title + Название + + + + Track number + Номер трека + + + + Two-digit track number + 2-x разрядный номер трека + + + + Disc number + Номер диска + + + + Condition + Условие + + + + Genre + Жанр + + + + Composer + Композитор + + + + File name + Имя файла + + + + File path + Путь к файлу + + + + Year + Год + + + + Comment + Комментарий + + + + Qmmp Settings + Настройки Qmmp + + + Skins + Обложки + + + Fonts + Шрифты + + + Player: + Плеер: + + + Playlist: + Список: + + + ??? + ??? + + + + ... + ... + + + + Metadata + Метаданные + + + + Load metadata from files + Считывать метаданные из файлов + + + + Song Display + Список песен + + + + Title format: + Формат названия: + + + + + Preferences + Настройки + + + + + + + Information + Информация + + + Appearance + Внешний вид + + + + Playlist + Список + + + + Plugins + Модули + + + + Advanced + Дополнительно + + + + 16-bit output + 16-битный вывод + + + Archived skin + Упакованная тема + + + Unarchived skin + Распакованная тема + + + + Connectivity + Сеть + + + + Visualization + Визуализация + + + + Effects + Эффекты + + + + General + Общие + + + + File Dialog + Файловый диалог + + + + + Audio + Аудио + + + + Replay Gain + Выравнивание громкости (Replay Gain) + + + Miscellaneous + Разное + + + Use bitmap font if available + Использовать растровые шрифты, если возможно + + + Use skin cursors + Использовать встроенные курсоры + + + Show song numbers + Показывать номера песен + + + Show playlists + Показывать списки воспроизведения + + + Show popup information + Показывать всплывающее окно с информацией + + + + Replay Gain mode: + Режим Replay Gain: + + + + Preamp: + Предусиление: + + + + + dB + дБ + + + + Default gain: + Усиление по умолчанию: + + + + Use peak info to prevent clipping + Использовать пиковое значение для предотвращения срезания + + + + Output: + Вывод: + + + + Buffer size: + Размер буфера: + + + + ms + мс + + + + Use software volume control + Использовать программную регулировку громкости + + + View + Вид + + + Shortcuts + Сочетания клавиш + + + Hide on close + Скрывать при закрытии + + + Start hidden + Запускать скрытым + + + Edit template + Редактировать шаблон + + + Show anchor + Показывать "якорь" + + + Align song numbers + Выравнивать номера фрагментов + + + + Cover Image Retrieve + Поиск обложки альбома + + + + Use separate image files + Использовать отдельные файлы с изображениями + + + + Include files: + Включить файлы: + + + + Exclude files: + Исключить файлы: + + + + Recursive search depth: + Глубина рекурсивного поиска: + + + + Playback + Воспроизведение + + + + Continue playback on startup + Продолжить воспроизведение после запуска + + + + User Interface + + + + + Proxy + Прокси + + + + Enable proxy usage + Использовать прокси + + + + Proxy host name: + Прокси сервер: + + + + Proxy port: + Прокси порт: + + + + Use authentication with proxy + Использовать авторизацию на прокси + + + + Proxy user name: + Имя пользователя прокси: + + + + Proxy password: + Пароль прокси: + + + Action + Действие + + + Shortcut + Сочетание клавиш + + + Change shortcut... + Изменить сочетание клавиш... + + + + Convert underscores to blanks + Преобразовывать подчёркивание в пробел + + + + Convert %20 to blanks + Преобразовывать %20 в пробел + + + Select Skin Files + Выберите файлы обложек + + + Skin files + Файлы обложек + + + Add... + Добавить... + + + Refresh + Обновить + + + Show protocol + Показывать протокол + + + Transparency + Прозрачность + + + Main window + Главное окно + + + 0 + 0 + + + Equalizer + Эквалайзер + + DetailsDialog - - Title - Название + + Title + Название + + + + Artist + Исполнитель + + + + Album + Альбом + + + + Comment + Комментарий + + + + Genre + Жанр + + + + Composer + Композитор + + + + Year + Год + + + + Track + Дорожка + + + + Disc number + Номер диска + + + + Details + Информация + + + + Open the directory containing this file + Открыть директорию, содержащую файл + + + + ... + ... + + + + Summary + Общая информация + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + + EqWidget + + preset + предустановка + + + &Load/Delete + &Загрузить/Удалить + + + &Save Preset + &Сохранить предустановку + + + &Save Auto-load Preset + &Сохранить авто-предустановку + + + &Clear + &Очистить + + + Saving Preset + Сохранение предустановки + + + Preset name: + Имя предустановки: + + + preset # + предустановка # + + + &Import + &Импортировать + + + Equalizer + Эквалайзер + + + Import Preset + Импорт предустановки + + + + JumpToTrackDialog + + + Jump To Track + Перейти к треку + + + + Filter + Фильтр + + + + + + Queue + В очередь + + + + Refresh + Обновить + + + + Jump To + Перейти к + + + + Q + + + + + J + + + + + F5 + + + + + + Unqueue + Снять с очереди + + + + MainDisplay + + Previous + Предыдущий фрагмент + + + Play + Воспроизвести + + + Pause + Приостановить + + + Stop + Стоп + + + Next + Следующий фрагмент + + + Add file + Добавить файл + + + Equalizer + Эквалайзер + + + Playlist + Список + + + Repeat playlist + Повторять список + + + Shuffle + В случайном порядке + + + Volume + Громкость + + + Balance + Баланс + + + Volume: %1% + Громкость: %1% + + + Balance: %1% right + Баланс: %1% вправо + + + Balance: %1% left + Баланс: %1% влево + + + Balance: center + Баланс: по центру + + + Seek to: %1 + Поиск: %1 + + + + MainVisual + + Visualization Mode + Режим визуализации + + + Analyzer + Анализатор + + + Scope + Осциллограф + + + Off + Выключено + + + Analyzer Mode + Режим анализатора + + + Normal + Обычный + + + Fire + Огонь + + + Vertical Lines + Вертикальные линии + + + Lines + Линии + + + Bars + Полоски + + + Peaks + Пики + + + Refresh Rate + Частота обновления + + + Analyzer Falloff + Падение анализатора - - Artist - Исполнитель + Slowest + Самое медленное - - Album - Альбом + Slow + Медленное - - Comment - Комментарий + Medium + Среднее - - Genre - Жанр + Fast + Быстрое - - Composer - Композитор + Fastest + Самое быстрое - - Year - Год + Peaks Falloff + Падение пиков - - Track - Дорожка + Background + Фон - - Disc number - Номер диска + Transparent + Прозрачность + + + MainWindow - - Details - Информация + Choose a directory + Выберите директорию - - Open the directory containing this file - Открыть директорию, содержащую файл + Select one or more files to open + Выберите один или несколько файлов - - ... - + &Jump To File + &Перейти к файлу - - Summary - Общая информация + View + Вид - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - + Playlist + Список + + + Open Playlist + Открыть список + + + Save Playlist + Сохранить список + + + Playlist Files + Файлы списков + + + All Supported Bitstreams + Все форматы + + + Tools + Сервис - JumpToTrackDialog + PlayList - - Jump To Track - + &Copy Selection To + &Копировать выделенное в - - Filter - + Sort List + Сортировать - - - - Queue - + By Title + По названию - - Refresh - + By Album + По альбому - - Jump To - + By Artist + По исполнителю - - Q - + By Filename + По имени файла - - J - + By Path + Filename + По пути и файлу - - F5 - + By Date + По дате - - - Unqueue - + Sort Selection + Сортировать выделенное + + + Randomize List + Перемешать + + + Reverse List + Перевернуть + + + &New PlayList + &Новый список + + + By Track Number + По номеру трека + + + Playlist + Список + + + Actions + Действия + + + + PlayListBrowser + + Playlist Browser + Обзор списков воспроизведения + + + New + Создать + + + Delete + Удалить + + + ... + ... + + + Rename + Переименовать @@ -138,6 +1247,190 @@ p, li { white-space: pre-wrap; } Список + + PlayListSelector + + &Load + &Загрузить + + + &Save As... + &Сохранить как... + + + Rename + Переименовать + + + &Delete + &Удалить + + + Rename Playlist + Переименовать список + + + Playlist name: + Имя списка: + + + + PopupSettings + + Popup Information Settings + Настройки всплывающей информации + + + Show cover + Показывать обложку + + + Transparency: + Прозрачность: + + + Delay: + Задержка: + + + ms + мс + + + Cover size: + Размер обложки: + + + Template + Шаблон + + + Reset + Сброс + + + Insert + Вставить + + + Artist + Исполнитель + + + Album + Альбом + + + Title + Название + + + Track number + Номер трека + + + Two-digit track number + 2-x разрядный номер трека + + + Genre + Жанр + + + Comment + Комментарий + + + Composer + Композитор + + + Duration + Длительность + + + Disc number + Номер диска + + + File name + Имя файла + + + File path + Путь к файлу + + + Year + Год + + + Condition + Условие + + + + PresetEditor + + Preset Editor + Редактор предустановок + + + Load + Загрузить + + + Delete + Удалить + + + Preset + Предустановка + + + Auto-preset + Авто-предустановка + + + + QMMPStarter + + Usage: qmmp [options] [files] + Использование: qmmp [options] [files] + + + Options: + Опции: + + + Don't start the application + Не запускать приложение + + + Print version number and exit + Показать версии и выйти + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Идеи, исправления, отчёты об ошибках: forkotov02@hotmail.ru + + + Display this text and exit + Показать этот текст и выйти + + + Unknown command + Неизвестная команда + + + QMMP version: + Версия QMMP: + + + Qt version: + Версия Qt: + + QtFileDialogFactory @@ -146,6 +1439,21 @@ p, li { white-space: pre-wrap; } Файловый диалог Qt + + ShortcutDialog + + Change Shortcut + Изменить сочетание клавиш + + + Press the key combination you want to assign + Нажмите клавиши, сочетание которых вы хотите использовать + + + Clear + Очистить + + TagEditor @@ -308,38 +1616,56 @@ p, li { white-space: pre-wrap; } Условие + + TextScroller + + Autoscroll Songname + Автопрокрутка названия песни + + + Buffering: %1% + Буферизация: %1% + + UiHelper All Supported Bitstreams - + Все форматы Select one or more files to open - + Выберите один или несколько файлов Choose a directory - + Выберите директорию Playlist Files - + Файлы списков Open Playlist - + Открыть список Save Playlist - + Сохранить список + + + + VisualMenu + + Visualization + Визуализация diff --git a/src/qmmpui/translations/libqmmpui_sk.ts b/src/qmmpui/translations/libqmmpui_sk.ts new file mode 100644 index 000000000..89c4fa77b --- /dev/null +++ b/src/qmmpui/translations/libqmmpui_sk.ts @@ -0,0 +1,1830 @@ + + + + + AboutDialog + + + About Qmmp + O Qmmp + + + + About + O progarme + + + + Authors + Autori + + + + Thanks To + Poďakovanie + + + + License Agreement + Licencia + + + + :/txt/authors_en.txt + :/txt/authors_sk.txt + + + + :/txt/thanks_en.txt + :/txt/thanks_sk.txt + + + + Qt-based Multimedia Player (Qmmp) + Qt-based Multimedia Player (Qmmp) + + + + Version: + Verzia: + + + + :txt/description_en.txt + :txt/description_sk.txt + + + + Input plugins: + Vstupné moduly: + + + + Output plugins: + Výstupné moduly: + + + + Visual plugins: + Vizualizačné moduly: + + + + Effect plugins: + Moduly efektov: + + + + General plugins: + Všebecné moduly: + + + + Translators + Prekladatelia + + + + :/txt/translators_en.txt + :/txt/translators_sk.txt + + + + ActionManager + + + &Play + &Hrať + + + + X + X + + + + &Pause + &Pozastaviť + + + + C + C + + + + &Stop + Za&staviť + + + + V + V + + + + &Previous + &Predchádzajúca + + + + Z + Z + + + + &Next + &Nasledujúca + + + + B + B + + + + &Play/Pause + &Hrať/Pozastaviť + + + + Space + Medzerník + + + + &Jump to File + P&resjočiť na súbor + + + + J + J + + + + &Repeat Playlist + &Opakovať playlist + + + + R + R + + + + &Repeat Track + &Opakovať skladbu + + + + Ctrl+R + Ctrl+R + + + + &Shuffle + &Zamiešať + + + + S + S + + + + &No Playlist Advance + &Nepokročilý playlist + + + + Ctrl+N + Ctrl+N + + + + &Stop After Selected + &Zastaviť po vybranej + + + + Ctrl+S + Ctrl+S + + + + &Clear Queue + &Vyčistiť rad + + + + Alt+Q + Alt+Q + + + + Show Playlist + Ukázať playlist + + + + Alt+E + Alt+E + + + + Show Equalizer + Ukázať ekvalizér + + + + Alt+G + Alt+G + + + + Always on Top + Vždy na vrchu + + + + Put on All Workspaces + Dať na všetky plochy + + + + Double Size + Dvojitá veľkosť + + + + Meta+D + Meta+D + + + + &Add File + &Pridať súbor + + + + F + F + + + + &Add Directory + &Pridať priečinok + + + + D + D + + + + &Add Url + &Pridať URL + + + + U + U + + + + &Remove Selected + Odst&rániť vybraté + + + + Del + Del + + + + &Remove All + Odst&rániť všetko + + + + &Remove Unselected + Odst&rániť nevybraté + + + + Remove unavailable files + Odstrániť nedostupné súbory + + + + Remove duplicates + Odstrániť duplikáty + + + + &Queue Toggle + &Zaradiť prepínanie + + + + Q + Q + + + + Invert Selection + Invertovať výber + + + + &Select None + Zrušiť &výber + + + + &Select All + &Vybrať všetko + + + + Ctrl+A + Ctrl+A + + + + &View Track Details + &Zobraziť detaily o skladbe + + + + Alt+I + Alt+I + + + + &New List + &Nový zoznam + + + + Ctrl+T + Ctrl+T + + + + &Delete List + &Vymazať zoznam + + + + Ctrl+W + Ctrl+W + + + + &Load List + &Načítať zoznam + + + + O + O + + + + &Save List + &Uložiť zoznam + + + + Shift+S + Shift+S + + + + &Select Next Playlist + &Vybrať nasledujúci playlist + + + + Ctrl+PgDown + Ctrl+Page Down + + + + &Select Previous Playlist + &Vybrať predchádzajúci playlist + + + + Ctrl+PgUp + Ctrl+Page Up + + + + &Show Playlists + &kázať playlisty + + + + P + P + + + + &Settings + Na&stavenia + + + + Ctrl+P + Ctrl+P + + + + &About + O progr&ame + + + + &About Qt + &O Qt + + + + &Exit + &Ukončiť + + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + + Enter URL to add + Pridať URL + + + + Error + Chyba + + + + &Add + Prid&ať + + + + &Cancel + &Zrušiť + + + + BuiltinCommandLineOption + + + Skip forward in playlist + Posunúť sa v plaliste + + + + Skip backwards in playlist + Vrátiť sa v playliste + + + + Start playing current song + Začať prehrávanie súčasnej piesne + + + + Don't clear the playlist + Nevyčisťovať playlist + + + + Pause current song + Pozastaviť súčasnú pieseň + + + + Pause if playing, play otherwise + Pozastaviť ak hrá, inak hrať + + + + Stop current song + Zastaviť súčasnú pieseň + + + + Display Jump to File dialog + Zobraziť dialóg Preskočiť na súbor + + + + Set playback volume (example: qmmp --volume 20) + Nastaviť hlasitosť prehrávania (napríklad: qmmp --volume 20) + + + + Show/hide application + Zobraziť/skryť program + + + + Display Add File dialog + Zobraziť dialóg Pridať súbor + + + + Display Add Directory dialog + Zobraziť dialóg Pridať priečinok + + + + ConfigDialog + + + Description + Popis + + + + Filename + Názov súboru + + + + Artist + Interprét + + + + + Album + Album + + + + Track + Skladba + + + + Disabled + Zakázané + + + + Transports + Protokoly + + + + Decoders + Dekodéry + + + + Engines + Prehrávače + + + + Misc + Rôzn. + + + + Title + Názov + + + + Track number + Číslo skladby + + + + Two-digit track number + Dvojmiestne číslo skladby + + + + Disc number + Číslo disku + + + + Condition + Stav + + + + Composer + Skladateľ + + + + File name + Názov súboru + + + + File path + Cesta k súboru + + + + Genre + Žáner + + + + Year + Rok + + + + Comment + Poznámka + + + + Qmmp Settings + Qmmp nastavenia + + + + Appearance + Vzhľad + + + + + + Playlist + Playlist + + + + Plugins + Moduly + + + + Advanced + Pokročilé + + + + Skins + Skiny + + + + Fonts + Písma + + + + Player: + Prehrávač: + + + + Playlist: + Playlist: + + + + + ??? + ??? + + + + Replay Gain + Zisk pri prehrávaní + + + + Miscellaneous + Rôzne + + + + + + ... + ... + + + + Use bitmap font if available + Použiť bitmapové písmo, ak je dostupné + + + + Use skin cursors + Použiť kurzory zo skinu + + + + Shortcuts + Skratky + + + + Metadata + Metadáta + + + + Load metadata from files + Čítať metadáta zo súborov + + + + Song Display + Zobrazenie skladby + + + + Title format: + Formát titulku: + + + + Show song numbers + Zobrazovať čísla piesní + + + + Show playlists + Zobrazovať playlisty + + + + Show popup information + Zobrazovať upozornenia s informáciami + + + + Show anchor + Zobrazovať ukotvenie + + + + Align song numbers + Zarovnať čísla piesní + + + + + 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í + + + + 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 + + + + Output: + Výstup: + + + + Buffer size: + Veľkosť bufferu: + + + + ms + ms + + + + 16-bit output + 16bitový výstup + + + + Action + Činnosť + + + + Shortcut + Skratka + + + + Change shortcut... + Zmeniť skratku... + + + + Connectivity + Pripojenie k sieti + + + + + View + Zobrazenie + + + + Edit template + Upraviť šablónu + + + + File Dialog + Súborový dialóg + + + + 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: + + + + Archived skin + Archivovaný skin + + + + Unarchived skin + Nearchivovaný skin + + + + Visualization + Vizualizácie + + + + Effects + Efekty + + + + General + Všeobecné + + + + + Audio + Zvuk + + + + Use software volume control + Používať softwarové ovládanie hlasitosti + + + + Hide on close + Skryť pri zatvorení + + + + Start hidden + Spustiť skryté + + + + Convert underscores to blanks + Previesť podčiarknutia na medzery + + + + Convert %20 to blanks + Previesť %20 na mdezery + + + + Select Skin Files + Vybrať súbory skinov + + + + Skin files + Súbory skinov + + + + Add... + Pridať... + + + + Refresh + Obnoviť + + + + Show protocol + Zobraziť protokol + + + + Transparency + Priehľadnosť + + + + Main window + Hlavné okno + + + + + + 0 + 0 + + + + Equalizer + Ekvalizér + + + + EqWidget + + + Equalizer + Ekvalizér + + + + + preset + předvolba + + + + &Load/Delete + &Načíst/Odstranit + + + + &Save Preset + &Uložit předvolbu + + + + &Save Auto-load Preset + Uložit &automatickou předvolbu + + + + &Import + &Importovat + + + + &Clear + &Vynulovat + + + + Saving Preset + Uložení předvolby + + + + Preset name: + Název předvolby: + + + + preset # + předvolba # + + + + Import Preset + Importovat předvolbu + + + + JumpToTrackDialog + + + Q + Q + + + + J + J + + + + F5 + F5 + + + + + Unqueue + Vyradiť + + + + + + Queue + Zaradiť + + + + Jump To Track + Preskočiť na skladbu + + + + Filter + Filter + + + + Refresh + Obnoviť + + + + Jump To + Preskočiť na + + + + MainDisplay + + + Previous + Predchádzajúca + + + + Play + Hrať + + + + Pause + Pozastaviť + + + + Stop + Zastaviť + + + + Next + Nasledujúca + + + + Add file + Pridať súbor + + + + Equalizer + Ekvalizér + + + + Playlist + Playlist + + + + Repeat playlist + Opakovať playlist + + + + Shuffle + Zamiešať + + + + Volume + Hlasitosť + + + + Balance + Vyváženie + + + + Volume: %1% + Hlasitosť: %1% + + + + Balance: %1% right + Vyváženie: %1% vpravo + + + + Balance: %1% left + Vyváženie: %1% vľavo + + + + Balance: center + Vyváženie: stred + + + + Seek to: %1 + Pretočiť na: %1 + + + + MainVisual + + + Visualization Mode + Režim vizualizácií + + + + Analyzer + Analyzér + + + + Scope + Osciloskop + + + + Off + Vypnuté + + + + Analyzer Mode + Režim analyzéra + + + + Normal + Normálny + + + + Fire + Oheň + + + + Vertical Lines + Stĺpce + + + + Lines + Čiary + + + + Bars + Prúžky + + + + Peaks + Špičky + + + + Refresh Rate + Obnovovacia frekvencia + + + + 50 fps + 50 fps + + + + 25 fps + 25 fps + + + + 10 fps + 10 fps + + + + 5 fps + 5 fps + + + + Analyzer Falloff + Pokles analyzéra + + + + + Slowest + Najpomaljšie + + + + + Slow + Pomaly + + + + + Medium + Stredne + + + + + Fast + Rýchlo + + + + + Fastest + Najrýchlejšie + + + + Peaks Falloff + Pokles špičiek + + + + Background + Pozadie + + + + Transparent + Priehľadné + + + + MainWindow + + + Choose a directory + Vyberte priečinok + + + + Select one or more files to open + Vyberte jeden alebo viac súborov na otvorenie + + + + &Jump To File + &Preskočiť na súbor + + + + J + J + + + + View + Zobraziť + + + + Playlist + Playlist + + + + + Playlist Files + Súbory playlistov + + + + Open Playlist + Otvoriť playlist + + + + Save Playlist + Uložiť playlist + + + + All Supported Bitstreams + Všetky podporované formáty + + + + Tools + Nástroje + + + + PlayList + + + Sort List + Triediť zoznam + + + + + By Title + Podľa názvu + + + + + By Album + Podľa albumu + + + + + By Artist + Podľa interpréta + + + + + By Filename + Podľa názvu súboru + + + + + By Path + Filename + Podľa cesty a názvu súboru + + + + + By Date + Podľa dátumu + + + + Sort Selection + Potriediť výber + + + + Randomize List + Zamiešať zoznam + + + + Reverse List + Otočiť zoznam + + + + &New PlayList + &Nový playlist + + + + &Copy Selection To + &Skopírovať výber do + + + + Playlist + Playlist + + + + + By Track Number + Podľa čísla skladby + + + + Actions + Činnosti + + + + PlayListBrowser + + + Playlist Browser + Prehliadač playlistu + + + + New + Nový + + + + + Delete + Vymazať + + + + + ... + ... + + + + Rename + Premenovať + + + + PlayListSelector + + + &Load + &Načítať + + + + &Save As... + &Uložiť ako... + + + + Rename + Premenovať + + + + &Delete + &Vymazať + + + + Rename Playlist + Premenovať playlist + + + + Playlist name: + Název playlistu: + + + + PopupSettings + + + Popup Information Settings + Nastavenie informácií v upozornení + + + + Show cover + Zobraziť obal + + + + Transparency: + Priehľadnosť: + + + + Delay: + Oneskorenie: + + + + ms + ms + + + + Cover size: + Veľkosť obalu: + + + + Template + Šablóna + + + + Reset + Zresetovať + + + + Insert + Vložiť + + + + Artist + Interprét + + + + Album + Album + + + + Title + Názov + + + + Track number + Číslo skladby + + + + Two-digit track number + Dvojmiestne číslo skladby + + + + Genre + Žáner + + + + Comment + Poznámka + + + + Composer + Skladateľ + + + + Duration + Dĺžka + + + + Disc number + Číslo disku + + + + File name + Názov súboru + + + + File path + Cesta k súboru + + + + Year + Rok + + + + Condition + Stav + + + + PresetEditor + + + Preset Editor + Editor predvolieb + + + + Load + Načítať + + + + Delete + Vymazať + + + + Preset + Predvoľba + + + + Auto-preset + Automatická predvoľba + + + + QMMPStarter + + + Usage: qmmp [options] [files] + Použitie: qmmp [možnosti] [súbory] + + + + Options: + Možnosti: + + + + Don't start the application + Nezapnúť program + + + + Print version number and exit + Vypísať číslo verzie a skončiť + + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Nápady, záplaty, hlásenie chýb posílejte na forkotov02@hotmail.ru (anglicky) + + + + Display this text and exit + Zobraziť tento text a skončiť + + + + Unknown command + Neznámý príkaz + + + + QMMP version: + Verzia QMMP: + + + + Qt version: + Verzia Qt: + + + + ShortcutDialog + + + Change Shortcut + Zmeniť skratku + + + + Press the key combination you want to assign + Stlačte klávesovú kombináciu ktorú chcete priradiť + + + + Clear + Vyčistiť + + + + TextScroller + + + Autoscroll Songname + Automaticky skrolovať názov piesne + + + + Buffering: %1% + Bufferuje sa:%1% + + + + VisualMenu + + + Visualization + Vizualizácie + + + diff --git a/src/qmmpui/translations/libqmmpui_tr.ts b/src/qmmpui/translations/libqmmpui_tr.ts index fd04a4668..f00647539 100644 --- a/src/qmmpui/translations/libqmmpui_tr.ts +++ b/src/qmmpui/translations/libqmmpui_tr.ts @@ -1,32 +1,775 @@ + + AboutDialog + + About Qmmp + Qmmp Hakkında + + + About + Hakkında + + + License Agreement + Lisans Anlaşması + + + Authors + Yazarlar + + + Thanks To + Teşekkürler + + + :/txt/authors_en.txt + :/txt/authors_tr.txt + + + :/txt/thanks_en.txt + :/txt/thanks_tr.txt + + + Qt-based Multimedia Player (Qmmp) + Qt tabanlı Çokluortam Oynatıcısı (Qmmp) + + + Version: + Sürüm: + + + :txt/description_en.txt + :txt/description_tr.txt + + + Input plugins: + Girdi eklentileri: + + + Output plugins: + Çıktı eklentileri: + + + Visual plugins: + Görsel eklentiler: + + + Effect plugins: + Efekt eklentileri: + + + General plugins: + Genel eklentiler: + + + Translators + Çevirmenler + + + :/txt/translators_en.txt + :/txt/translators_tr.txt + + + + ActionManager + + &Play + &Çal + + + X + X + + + &Pause + &Duraklat + + + C + C + + + &Stop + &Durdur + + + V + V + + + &Previous + &Önceki + + + Z + Z + + + &Next + &Sonraki + + + B + B + + + &Play/Pause + &Oynat/Duraklat + + + Space + Boşluk + + + J + J + + + &Repeat Playlist + &Çalma Listesini Yinele + + + R + R + + + &Repeat Track + &Parçayı Yinele + + + Ctrl+R + Ctrl+R + + + &Shuffle + &Rastgele + + + S + S + + + &Add File + &Dosya Ekle + + + F + F + + + &Add Directory + &Dizin Ekle + + + D + D + + + &Add Url + &Url Ekle + + + U + U + + + &Remove Selected + &Seçileni Kaldır + + + Del + Del + + + &Remove All + &Hepsini Kaldır + + + &Remove Unselected + &Seçilmemişleri Kaldır + + + Q + Q + + + Invert Selection + Seçimi Tersine Çevir + + + &Select None + &Hiçbirini Seçme + + + &Select All + &Tümünü Seç + + + Ctrl+A + Ctrl+A + + + &View Track Details + &Parça Detaylarını Göster + + + Alt+I + Alt+I + + + &New List + &Yeni Liste + + + &Load List + &Liste Yükle + + + O + O + + + &Save List + &Listeyi Kaydet + + + Shift+S + Shift+S + + + &Settings + &Ayarlar + + + Ctrl+P + Ctrl+P + + + &About + &Hakkında + + + &About Qt + &Qt Hakkında + + + &Exit + &Çıkış + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Error + Hata + + + Enter URL to add + Eklenecek URL girin + + + &Add + &Ekle + + + &Cancel + &İptal + + + + BuiltinCommandLineOption + + Skip forward in playlist + İleri atla + + + Skip backwards in playlist + Geri atla + + + Start playing current song + Mevcut şarkıyı çalmaya başla + + + Don't clear the playlist + Çalma listesini temizleme + + + Pause current song + Mevcut şarkıyı duraklat + + + Pause if playing, play otherwise + Çalıyorsa duraklat, değilse oynat + + + Stop current song + Mevcut şarkıyı durdur + + + Display Jump to File dialog + Dosyaya atlama diyaloğunu göster + + + Show/hide application + Uygulamayı göster/gizle + + + Display Add File dialog + Dosya ekleme diyaloğunu göster + + + Display Add Directory dialog + Dizin ekleme diyaloğunu göster + + + + ConfigDialog + + + Description + Açıklama + + + + Filename + Dosya adı + + + + Artist + Sanatçı + + + + + Album + Albüm + + + + Track + + + + + Disabled + + + + + Transports + + + + + Decoders + + + + + Engines + + + + + Title + Başlık + + + + Track number + + + + + Two-digit track number + + + + + Disc number + + + + + Condition + + + + + Genre + Tarz + + + + Composer + + + + + File name + + + + + File path + + + + + Year + Yıl + + + + Comment + Yorum + + + + Qmmp Settings + 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 + + + + Archived skin + Arşivlenmiş kabuk + + + Unarchived skin + Arşivlenmemiş kabuk + + + + Connectivity + Bağlanırlık + + + + Visualization + Görsellik + + + + Effects + Efektler + + + + General + Genel + + + + File Dialog + Dosya Diyaloğu + + + + + Audio + Ses + + + + Replay Gain + + + + Show song numbers + Şarkı numaralarını göster + + + + Replay Gain mode: + + + + + Preamp: + + + + + + dB + + + + + Default gain: + + + + + Use peak info to prevent clipping + + + + + Output: + + + + + Buffer size: + + + + + ms + + + + + Use software volume control + Yazılımsal ses kontrolünü kullan + + + Hide on close + Kapatınca saklan + + + Start hidden + Gizli başlat + + + + Cover Image Retrieve + + + + + Use separate image files + + + + + Include files: + + + + + Exclude files: + + + + + Recursive search depth: + + + + + Playback + + + + + Continue playback on startup + + + + + User Interface + + + + + 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 + + + Select Skin Files + Kabuk Dosyası Seç + + + Skin files + Kabuk dosyaları + + + Add... + Ekle... + + + Refresh + Yenile + + + Show protocol + Protokolü göster + + + Transparency + Transparanlık + + + Main window + Ana pencere + + + 0 + 0 + + + Equalizer + Ekolayzır + + DetailsDialog Title - + Başlık Artist - + Sanatçı Album - + Albüm Comment - + Yorum Genre - + Tarz @@ -36,7 +779,7 @@ Year - + Yıl @@ -61,7 +804,7 @@ ... - + ... @@ -78,44 +821,91 @@ p, li { white-space: pre-wrap; } + + EqWidget + + preset + tanımlanmış ayar + + + &Load/Delete + &Yükle/Sil + + + &Save Preset + Tanımlanmış &Ayarları Kaydet + + + &Save Auto-load Preset + &Otomatik Tanımlanmış Ayarları Kaydet + + + &Clear + &Temizle + + + Saving Preset + Tanımlanmış Ayarla Kaydediliyor + + + Preset name: + Tanımlanmış ayar adı: + + + preset # + tanımlanmış ayar # + + + &Import + &İçe Aktar + + + Equalizer + Ekolayzır + + + Import Preset + Tanımlanmış Ayarları Al + + JumpToTrackDialog Jump To Track - + Parçaya Git Filter - + Filtre Queue - + Kuyruk Refresh - + Yenile Jump To - + Git Q - + Q J - + J @@ -126,7 +916,262 @@ p, li { white-space: pre-wrap; } Unqueue - + Kuyrukta Değil + + + + MainDisplay + + Previous + Önceki + + + Play + Oynat + + + Pause + Duraklat + + + Stop + Durdur + + + Next + Sonraki + + + Add file + Dosya ekle + + + Equalizer + Ekolayzır + + + Playlist + Çalma Listesi + + + Repeat playlist + Çalma Listesini Yinele + + + Shuffle + Rastgele + + + Volume + Ses + + + Balance + Denge + + + + MainVisual + + Visualization Mode + Görselleştirme Modu + + + Analyzer + Çözümleyici + + + Scope + Kapsam + + + Off + Kapat + + + Analyzer Mode + Çözümleyici Modu + + + Normal + Normal + + + Fire + Ateş + + + Vertical Lines + Dikey Satırlar + + + Lines + Satırlar + + + Bars + Çubuklar + + + Peaks + Tepeler + + + Refresh Rate + Tazeleme Oranı + + + 50 fps + 50 fps + + + 25 fps + 25 fps + + + 10 fps + 10 fps + + + 5 fps + 5 fps + + + Analyzer Falloff + Çözümleyici Düşüşü + + + Slowest + En yavaş + + + Slow + Yavaş + + + Medium + Orta + + + Fast + Hızlı + + + Fastest + En hızlı + + + Peaks Falloff + Tepe Düşüşü + + + Background + Arkaplan + + + Transparent + Transparan + + + + MainWindow + + Choose a directory + Bir dizin seçin + + + Select one or more files to open + Açmak için bir yada daha çok dosya seçin + + + &Jump To File + &Parçaya Git + + + J + J + + + Playlist + Çalma Listesi + + + Open Playlist + Çalma Listesini Aç + + + Save Playlist + Çalma Listesini Kaydet + + + Playlist Files + Çalma Listesi Dosyaları + + + All Supported Bitstreams + Tüm Desteklenen Bitstreamler + + + Tools + Araçlar + + + + PlayList + + Sort List + Listeyi Sınıflandır + + + By Title + Başlığa Göre + + + By Filename + Dosya Adına Göre + + + By Path + Filename + Dosya Yolu + Dosya Adına Göre + + + By Date + Tarihe Göre + + + Sort Selection + Seçilenleri Sınıflandır + + + Randomize List + Rastgele Listele + + + Reverse List + Listeyi Ters Çevir + + + By Track Number + Parça Numarasına Göre + + + Playlist + Çalma Listesi + + + Actions + Eylemler + + + + PlayListBrowser + + Delete + Sil + + + ... + ... @@ -135,7 +1180,88 @@ p, li { white-space: pre-wrap; } Playlist - + Çalma Listesi + + + + PopupSettings + + Artist + Sanatçı + + + Album + Albüm + + + Title + Başlık + + + Genre + Tarz + + + Comment + Yorum + + + Year + Yıl + + + + PresetEditor + + Preset Editor + Tanımlanmış Ayar Düzenleyici + + + Load + Yükle + + + Delete + Sil + + + Preset + Tanımlanmış Ayar + + + Auto-preset + Ayarları Otomatik Tanımla + + + + QMMPStarter + + Usage: qmmp [options] [files] + Kullanım:qmmp [seçenek] [dosyalar] + + + Options: + Seçenekler: + + + Print version number and exit + Sürüm numarasını yazdır ve çık + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Fikirleinizi, yamalarınızı, hata raporlarınızı forkotov02@hotmail.ru adresine gönderin + + + Display this text and exit + Bu metni göster ve çık + + + QMMP version: + QMMP sürümü: + + + Qt version: + Qt sürümü: @@ -240,17 +1366,17 @@ p, li { white-space: pre-wrap; } Artist - + Sanatçı Album - + Albüm Title - + Başlık @@ -265,12 +1391,12 @@ p, li { white-space: pre-wrap; } Genre - + Tarz Comment - + Yorum @@ -300,7 +1426,7 @@ p, li { white-space: pre-wrap; } Year - + Yıl @@ -308,38 +1434,52 @@ p, li { white-space: pre-wrap; } + + TextScroller + + Autoscroll Songname + Şarkı Adını Otomatik Kaydır + + UiHelper All Supported Bitstreams - + Tüm Desteklenen Bitstreamler Select one or more files to open - + Açmak için bir yada daha çok dosya seçin Choose a directory - + Bir dizin seçin Playlist Files - + Çalma Listesi Dosyaları Open Playlist - + Çalma Listesini Aç Save Playlist - + Çalma Listesini Kaydet + + + + VisualMenu + + Visualization + Görüntüleme diff --git a/src/qmmpui/translations/libqmmpui_uk_UA.ts b/src/qmmpui/translations/libqmmpui_uk_UA.ts index 3629711a6..878177736 100644 --- a/src/qmmpui/translations/libqmmpui_uk_UA.ts +++ b/src/qmmpui/translations/libqmmpui_uk_UA.ts @@ -1,132 +1,1257 @@ + + AboutDialog + + About Qmmp + Про Qmmp + + + About + Про програму + + + License Agreement + Ліцензія + + + Authors + Автори + + + Thanks To + Подяки + + + :/txt/authors_en.txt + :/txt/authors_uk_UA.txt + + + :/txt/thanks_en.txt + :/txt/thanks_uk_UA.txt + + + Qt-based Multimedia Player (Qmmp) + Мультимедійний програвач на базі Qt (Qmmp) + + + Version: + Версія: + + + :txt/description_en.txt + :txt/description_uk_UA.txt + + + Input plugins: + Модулі введення: + + + Output plugins: + Модулі виведення: + + + Visual plugins: + Модулі візуалізації: + + + Effect plugins: + Модулі ефектів: + + + General plugins: + Загальні модулі: + + + Translators + Перекладачі + + + :/txt/translators_en.txt + :/txt/translators_uk_UA.txt + + + + ActionManager + + &Play + &Відтворити + + + &Pause + &Пауза + + + &Stop + &Стоп + + + &Previous + &Назад + + + &Next + &Вперед + + + &Play/Pause + &Грати/Пауза + + + &Jump to File + &Перейти до файлу + + + &Repeat Playlist + &Повторити список + + + &Repeat Track + &Повторити трек + + + &Shuffle + &Перемішати + + + &No Playlist Advance + &Не пересуватися по списку + + + &Stop After Selected + &Зупинити після вибраного + + + &Clear Queue + &Очистити чергу + + + Show Playlist + Показати список + + + Show Equalizer + Показати еквалайзер + + + Always on Top + Завжди зверху + + + Put on All Workspaces + Розмістити на усіх робочих столах + + + Double Size + Подвійний розмір + + + &Add File + &Додати файл + + + &Add Directory + &Додати теку + + + &Add Url + &Додати адресу + + + &Remove Selected + &Видалити вибране + + + &Remove All + &Видалити все + + + &Remove Unselected + &Видалити не вибране + + + Remove unavailable files + Видалити недоступні файли + + + Remove duplicates + Видалити дублікати + + + &Queue Toggle + &В чергу + + + Invert Selection + Інвертувати вибране + + + &Select None + &Зняти виділення + + + &Select All + &Вибрати все + + + &View Track Details + &Інформація + + + &New List + &Новий список + + + &Delete List + &Видалити список + + + &Load List + &Завантажити список + + + &Save List + &Зберегти список + + + &Select Next Playlist + Вибрати &наступний список + + + &Select Previous Playlist + Вибрати &попередній список + + + &Show Playlists + Показати &всі списки + + + &Settings + &Налаштування + + + &About + &Про програму + + + &About Qt + &Про Qt + + + &Exit + &Вихід + + + + AddUrlDialog + + Error + Помилка + + + Enter URL to add + Вкажіть адресу для додавання + + + &Add + &Додати + + + &Cancel + &Відміна + + + + BuiltinCommandLineOption + + Skip forward in playlist + Перейти до наступного фрагменту + + + Skip backwards in playlist + Перейти до попереднього фрагменту + + + Start playing current song + Грати поточну пісню + + + Don't clear the playlist + Не очищати список + + + Pause current song + Призупитини поточну пісню + + + Pause if playing, play otherwise + Призупинити/відтворити + + + Stop current song + Зупитини поточну пісню + + + Display Jump to File dialog + Показати діалог переходу до файла + + + Set playback volume (example: qmmp --volume 20) + Встановити гучність (приклад: qmmp --volume 20) + + + Show/hide application + Показати/сховати програму + + + Display Add File dialog + Показати діалог додавання файлів + + + Display Add Directory dialog + Показати діалог додавання тек + + + + ConfigDialog + + + Description + Пояснення + + + + Filename + Ім'я файлу + + + + Artist + Виконавець + + + + + Album + Альбом + + + + Track + Трек + + + + Disabled + Вимкнено + + + + Transports + Транспорти + + + + Decoders + Декодери + + + + Engines + Зовнішні програвачі + + + Misc + Інші + + + + Title + Назва + + + + Track number + Номер треку + + + + Two-digit track number + 2- розрядний номер трека + + + + Disc number + Номер диску + + + + Condition + Умова + + + + Genre + Жанр + + + + Composer + Композитор + + + + File name + Ім'я файлу + + + + File path + Шлях файлу + + + + Year + Рік + + + + Comment + Коментар + + + + Qmmp Settings + Налаштування Qmmp + + + Skins + Шкурки + + + Fonts + Шрифти + + + Player: + Програвач: + + + Playlist: + Список: + + + ??? + ??? + + + + ... + ... + + + + Metadata + Метадані + + + + Load metadata from files + Зчитувати метадані з файлів + + + + Song Display + Список пісень + + + + Title format: + Формат назви: + + + + + Preferences + Налаштування + + + + + + + Information + Інформація + + + Appearance + Зовнішній вигляд + + + + Playlist + Список + + + + Plugins + Модулі + + + + Advanced + Додатково + + + + 16-bit output + 16-бітний вивід + + + Archived skin + Упакована тема + + + Unarchived skin + Розпакована тема + + + + Connectivity + Мережа + + + + Visualization + Візуалізація + + + + Effects + Ефекти + + + + General + Загальне + + + + File Dialog + Файловий діалог + + + + + Audio + Звук + + + + Replay Gain + Нормалізація гучності + + + Miscellaneous + Різне + + + Use bitmap font if available + Використовувати растрові шрифти, якщо доступні + + + Use skin cursors + Використовувати курсори скіна + + + Show song numbers + Відображати номера пісень + + + Show playlists + Показати списки + + + Show popup information + Показувати спливаюче вікно з інформацією + + + + Replay Gain mode: + Режим нормалізації гучності: + + + + Preamp: + Преамплітуда: + + + + + dB + + + + + Default gain: + Нормалізація за умовчанням: + + + + Use peak info to prevent clipping + Використовувати інформацію піків для запобігання відсікання + + + + Output: + Виведення: + + + + Buffer size: + Розмір буферу: + + + + ms + мс + + + + Use software volume control + Використовувати програмний контроль гучності + + + View + Вигляд + + + Shortcuts + Комбінації клавіш + + + Hide on close + Ховати при закритті + + + Start hidden + Запускати схованим + + + Edit template + Редагувати шаблон + + + Show anchor + Показувати "якір" + + + Align song numbers + Вирівнювати номери фрагментів + + + + Cover Image Retrieve + Пошук обладинки альбома + + + + Use separate image files + Використовувати окремі файли зображень + + + + Include files: + Включити файли: + + + + Exclude files: + Виключити файли: + + + + Recursive search depth: + Глибина рекурсивного пошуку: + + + + Playback + Відтворення + + + + Continue playback on startup + Продовжити відтворення при запуску + + + + User Interface + + + + + Proxy + Проксі + + + + Enable proxy usage + Використосувати проксі + + + + Proxy host name: + Сервер проксі: + + + + Proxy port: + Порт проксі: + + + + Use authentication with proxy + Використовувати авторизацію на проксі + + + + Proxy user name: + Ім'я користвача проксі: + + + + Proxy password: + Пароль проксі: + + + Action + Дія + + + Shortcut + Комбінація + + + Change shortcut... + Змінити комбінації клавіш... + + + + Convert underscores to blanks + Конвертувати підкреслювання в пробіл + + + + Convert %20 to blanks + Конвертувати %20 в пробіл + + + Select Skin Files + Вибрати файли скінів + + + Skin files + Файли скінів + + + Add... + Додати... + + + Refresh + Поновити + + + Show protocol + Показати протокол + + + Transparency + Прозорість + + + Main window + Головне вікно + + + Equalizer + Еквалайзер + + DetailsDialog - - Title - Заголовок + + Title + Заголовок + + + + Artist + Виконавець + + + + Album + Альбом + + + + Comment + Коментар + + + + Genre + Жанр + + + + Composer + Композитор + + + + Year + Рік + + + + Track + Доріжка + + + + Disc number + Номер диску + + + + Details + Подробиці + + + + Open the directory containing this file + Відкрити теку, яка містить цей файл + + + + ... + + + + + Summary + Підсумок + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + + EqWidget + + preset + предвстановлення + + + &Load/Delete + &Завантажити/Видалити + + + &Save Preset + &Зберегти предвстановлення + + + &Save Auto-load Preset + &Зберегти авто-предвстановлення + + + &Clear + &Очистити + + + Saving Preset + Збережені предвстановлення + + + Preset name: + Ім'я предвстановлення: + + + preset # + предвстановлення # + + + &Import + &Імпортувати + + + Equalizer + Еквалайзер + + + Import Preset + Імпорт предвстановлення + + + + JumpToTrackDialog + + + Jump To Track + Перейти до треку + + + + Filter + Фильтр + + + + + + Queue + В чергу + + + + Refresh + Поновити + + + + Jump To + Перейти до + + + + Q + + + + + J + + + + + F5 + + + + + + Unqueue + Зняти з черги + + + + MainDisplay + + Previous + Назад + + + Play + Відтворити + + + Pause + Пауза + + + Stop + Стоп + + + Next + Вперед + + + Add file + Додати файл + + + Equalizer + Еквалайзер + + + Playlist + Список + + + Repeat playlist + Повторити список + + + Shuffle + Перемішати + + + Volume + Гучність + + + Balance + Баланс + + + Volume: %1% + Гучність: %1% + + + Balance: %1% right + Баланс: %1% вправо + + + Balance: %1% left + Баланс: %1% вліво + + + Balance: center + Баланс: центр + + + Seek to: %1 + Пошук: %1 + + + + MainVisual + + Visualization Mode + Режим візуалізації + + + Analyzer + Аналізатор + + + Scope + Осцилограф + + + Off + Вимкнено + + + Analyzer Mode + Режим аналізатора + + + Normal + Звичайний + + + Fire + Вогонь + + + Vertical Lines + Вертикальні лінії + + + Lines + Лінії + + + Bars + Смужки + + + Peaks + Піки + + + Refresh Rate + Частота оновлення + + + 50 fps + 50 ф/с + + + 25 fps + 25 ф/с + + + 10 fps + 10 ф/с + + + 5 fps + 5 ф/с - - Artist - Виконавець + Analyzer Falloff + Падіння аналізатора - - Album - Альбом + Slowest + Найповільніше - - Comment - Коментар + Slow + Повільне - - Genre - Жанр + Medium + Середнє - - Composer - Композитор + Fast + Швидке - - Year - Рік + Fastest + Найшвидше - - Track - Доріжка + Peaks Falloff + Падіння піків - - Disc number - Номер диску + Background + Тло - - Details - Подробиці + Transparent + Прозорість + + + + MainWindow + + Choose a directory + Виберіть теку - - Open the directory containing this file - Відкрити теку, яка містить цей файл + Select one or more files to open + Виберіть один чи кілька файлів - - ... - + &Jump To File + &Перейти до файлу - - Summary - Підсумок + View + Вигляд - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - + Playlist + Список + + + Open Playlist + Відкрити список + + + Save Playlist + Зберегти список + + + Playlist Files + Файли списків + + + All Supported Bitstreams + Усі формати + + + Tools + Утиліти - JumpToTrackDialog + PlayList - - Jump To Track - + &Copy Selection To + &Копіювати вибране в - - Filter - + Sort List + Сортувати - - - - Queue - + By Title + За назвою - - Refresh - + By Album + За альбомом - - Jump To - + By Artist + За артистом - - Q - + By Filename + За ім'ям файлу - - J - + By Path + Filename + За шляхом та файлом - - F5 - + By Date + За датою - - - Unqueue - + Sort Selection + Сортувати вибране + + + Randomize List + Перемішати + + + Reverse List + Перевернути + + + &New PlayList + &Новий список + + + Playlist + Список + + + Actions + Дії + + + + PlayListBrowser + + Playlist Browser + Переглядач списків + + + New + Новий + + + Delete + Видалити + + + ... + ... + + + Rename + Переіменувати @@ -138,6 +1263,190 @@ p, li { white-space: pre-wrap; } Список + + PlayListSelector + + &Load + &Завантажити + + + &Save As... + &Зберегти як... + + + Rename + Переіменувати + + + &Delete + &Видалити + + + Rename Playlist + Переіменувати список + + + Playlist name: + Ім'я списка: + + + + PopupSettings + + Popup Information Settings + Налаштування спливаючої інформації + + + Show cover + Показати обкладинку + + + Transparency: + Прозорість: + + + Delay: + Затримка: + + + ms + мс + + + Cover size: + Розмір обкладинки: + + + Template + Шаблон + + + Reset + Скинути + + + Insert + Вставити + + + Artist + Виконавець + + + Album + Альбом + + + Title + Назва + + + Track number + Номер треку + + + Two-digit track number + 2- розрядний номер трека + + + Genre + Жанр + + + Comment + Коментар + + + Composer + Композитор + + + Duration + Тривалість + + + Disc number + Номер диску + + + File name + Ім'я файлу + + + File path + Шлях файлу + + + Year + Рік + + + Condition + Умова + + + + PresetEditor + + Preset Editor + Редактор предвстановлення + + + Load + Завантажити + + + Delete + Видалити + + + Preset + Предвстановлення + + + Auto-preset + Авто-предвстановлення + + + + QMMPStarter + + Usage: qmmp [options] [files] + Використання: qmmp [options] [files] + + + Options: + Опції: + + + Don't start the application + Не запускати програму + + + Print version number and exit + Показати версію та вийти + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + Ідеї, виправлення, звіти про помилки: forkotov02@hotmail.ru + + + Display this text and exit + Показати цей текст та вийти + + + Unknown command + Невідома команда + + + QMMP version: + Версія QMMP: + + + Qt version: + Версія Qt: + + QtFileDialogFactory @@ -146,6 +1455,21 @@ p, li { white-space: pre-wrap; } Файловий діалог Qt + + ShortcutDialog + + Change Shortcut + Змінити комбінації клавіш + + + Press the key combination you want to assign + Натисніть клавіші, комбінації яких ви бажаєте використовувати + + + Clear + Очистити + + TagEditor @@ -308,38 +1632,56 @@ p, li { white-space: pre-wrap; } Умова + + TextScroller + + Autoscroll Songname + Автопрокрутка назви пісні + + + Buffering: %1% + Буферизація: %1% + + UiHelper All Supported Bitstreams - + Усі формати Select one or more files to open - + Виберіть один чи кілька файлів Choose a directory - + Виберіть теку Playlist Files - + Файли списків Open Playlist - + Відкрити список Save Playlist - + Зберегти список + + + + VisualMenu + + Visualization + Візуалізація diff --git a/src/qmmpui/translations/libqmmpui_zh_CN.ts b/src/qmmpui/translations/libqmmpui_zh_CN.ts index e32f22ad4..a70a7a36d 100644 --- a/src/qmmpui/translations/libqmmpui_zh_CN.ts +++ b/src/qmmpui/translations/libqmmpui_zh_CN.ts @@ -1,6 +1,749 @@ + + AboutDialog + + About Qmmp + 关于 Qmmp + + + About + 关于 + + + License Agreement + 许可协议 + + + Authors + 作者 + + + Thanks To + 感谢 + + + :/txt/authors_en.txt + :/txt/authors_zh_CN.txt + + + :/txt/thanks_en.txt + :/txt/thanks_zh_CN.txt + + + Qt-based Multimedia Player (Qmmp) + 基于 Qt 的多媒体播放器 (Qmmp) + + + Version: + 版本: + + + :txt/description_en.txt + :txt/description_zh_CN.txt + + + Input plugins: + 输入插件: + + + Output plugins: + 输出插件 + + + Visual plugins: + 可视化插件 + + + Effect plugins: + 特效插件: + + + General plugins: + 常规插件: + + + Translators + 翻译 + + + :/txt/translators_en.txt + :/txt/translators_zh_CN.txt + + + + ActionManager + + &Play + 播放(&P) + + + X + X + + + &Pause + 暂停(&P) + + + C + C + + + &Stop + 停止(&S) + + + V + V + + + &Previous + 上一曲(&P) + + + Z + Z + + + &Next + 下一曲(&N) + + + B + B + + + &Play/Pause + 播放/暂停(&P) + + + Space + 空格 + + + J + J + + + &Repeat Playlist + 重复播放列表(&R) + + + R + R + + + &Repeat Track + 重复音轨(&R) + + + Ctrl+R + Ctrl+R + + + &Shuffle + 乱序(&S) + + + S + S + + + &Add File + 添加文件(&A) + + + F + F + + + &Add Directory + 添加文件夹(&A) + + + D + D + + + &Add Url + 添加 URL (&A) + + + U + U + + + &Remove Selected + 删除所选(&R) + + + Del + Del + + + &Remove All + 删除全部(&R) + + + &Remove Unselected + 删除未选(&R) + + + Q + Q + + + Invert Selection + 反选 + + + &Select None + 无选择(&S) + + + &Select All + 选择全部(&S) + + + Ctrl+A + Ctrl+A + + + &View Track Details + 查看音轨详细信息(&V) + + + Alt+I + Alt+I + + + &New List + 新建列表(&N) + + + &Load List + 载入列表(&L) + + + O + O + + + &Save List + 保存列表(&S) + + + Shift+S + Shift+S + + + &Settings + 设置(&S) + + + Ctrl+P + Ctrl+P + + + &About + 关于(&A) + + + &About Qt + 关于 Qt (&A) + + + &Exit + 退出(&E) + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Error + 错误 + + + Enter URL to add + 输入要添加的 URL + + + &Add + 添加(&A) + + + &Cancel + 取消(&C) + + + + BuiltinCommandLineOption + + Skip forward in playlist + 跳到播放列表中的下一曲 + + + Skip backwards in playlist + 跳到播放列表中的上一曲 + + + Start playing current song + 开始播放当前曲目 + + + Don't clear the playlist + 不要清除这个播放列表 + + + Pause current song + 暂停当前曲目 + + + Pause if playing, play otherwise + 正在播放则暂停,相反处于暂停则播放 + + + Stop current song + 停止当前曲目 + + + Display Jump to File dialog + 显示跳到文件对话 + + + Show/hide application + 显示/隐藏程序 + + + Display Add File dialog + 显示添加文件对话 + + + Display Add Directory dialog + 显示添加目录对话 + + + + ConfigDialog + + + Description + 描述 + + + + Filename + 文件名 + + + + Artist + 艺术家 + + + + + Album + 专辑 + + + + Track + 音轨 + + + + Disabled + + + + + Transports + + + + + Decoders + + + + + Engines + + + + + Title + 标题 + + + + Track number + 音轨编号 + + + + Two-digit track number + 两位数音轨编号 + + + + Disc number + 光盘编号 + + + + Condition + 条件 + + + + Genre + 流派 + + + + Composer + 作曲 + + + + File name + 文件名 + + + + File path + 文件路径 + + + + Year + 年代 + + + + Comment + 备注 + + + + Qmmp Settings + Qmmp 设置 + + + Skins + 皮肤 + + + Fonts + 字体 + + + Player: + 播放器: + + + Playlist: + 播放列表: + + + ??? + ??? + + + + ... + ... + + + + Metadata + 元数据 + + + + Load metadata from files + 从文件载入元数据 + + + + Song Display + 显示歌曲 + + + + Title format: + 标题格式: + + + + + Preferences + 参数设置 + + + + + + + Information + 信息 + + + Appearance + 外观 + + + + Playlist + 播放列表 + + + + Plugins + 插件 + + + + Advanced + 高级 + + + + 16-bit output + + + + Archived skin + 压缩皮肤 + + + Unarchived skin + 未压缩皮肤 + + + + Connectivity + 连接 + + + + Visualization + 可视化 + + + + Effects + 特效 + + + + General + 常规 + + + + File Dialog + 文件对话 + + + + + Audio + 音频 + + + + Replay Gain + + + + Show song numbers + 显示曲目编号 + + + + Replay Gain mode: + + + + + Preamp: + + + + + + dB + + + + + Default gain: + + + + + Use peak info to prevent clipping + + + + + Output: + + + + + Buffer size: + + + + + ms + + + + + Use software volume control + 使用软设备音量控制 + + + Hide on close + 关闭时隐藏 + + + Start hidden + 启动时隐藏 + + + + Cover Image Retrieve + + + + + Use separate image files + + + + + Include files: + + + + + Exclude files: + + + + + Recursive search depth: + + + + + Playback + + + + + Continue playback on startup + + + + + User Interface + + + + + 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 为空格 + + + Select Skin Files + 选择皮肤文件 + + + Skin files + 皮肤文件 + + + Add... + 添加... + + + Refresh + 刷新 + + + Show protocol + 显示协议 + + + Transparency + 透明度 + + + Main window + 主窗口 + + + 0 + 0 + + + Equalizer + 均衡器 + + DetailsDialog @@ -61,7 +804,7 @@ ... - + ... @@ -78,44 +821,91 @@ p, li { white-space: pre-wrap; } + + EqWidget + + preset + 预设 + + + &Load/Delete + 载入/删除(&L) + + + &Save Preset + 保存预设(&S) + + + &Save Auto-load Preset + 保存自动载入预设(&S) + + + &Clear + 清除(&C) + + + Saving Preset + 保存预设 + + + Preset name: + 预设名称: + + + preset # + 预设 # + + + &Import + 导入(&I) + + + Equalizer + 均衡器 + + + Import Preset + 导入预设 + + JumpToTrackDialog Jump To Track - + 跳到音轨 Filter - + 过滤 Queue - + 加入队列 Refresh - + 刷新 Jump To - + 跳到 Q - + Q J - + J @@ -126,7 +916,262 @@ p, li { white-space: pre-wrap; } Unqueue - + 移出队列 + + + + MainDisplay + + Previous + 上一曲 + + + Play + 播放 + + + Pause + 暂停 + + + Stop + 停止 + + + Next + 下一曲 + + + Add file + 添加文件 + + + Equalizer + 均衡器 + + + Playlist + 播放列表 + + + Repeat playlist + 重复播放列表 + + + Shuffle + 乱序 + + + Volume + 音量 + + + Balance + 平衡 + + + + MainVisual + + Visualization Mode + 可视化模式 + + + Analyzer + 分析器 + + + Scope + 示波器 + + + Off + 关闭 + + + Analyzer Mode + 分析模式 + + + Normal + 标准 + + + Fire + 火花 + + + Vertical Lines + 垂直线 + + + Lines + 线形 + + + Bars + 条形 + + + Peaks + 峰值 + + + Refresh Rate + 刷新率 + + + 50 fps + 50 fps + + + 25 fps + 25 fps + + + 10 fps + 10 fps + + + 5 fps + 5 fps + + + Analyzer Falloff + 分析器下降速度 + + + Slowest + 最慢 + + + Slow + + + + Medium + + + + Fast + + + + Fastest + 最快 + + + Peaks Falloff + 峰值下降速度 + + + Background + 背景 + + + Transparent + 透明 + + + + MainWindow + + Choose a directory + 选择一个目录 + + + Select one or more files to open + 选择打开一个或更多文件 + + + &Jump To File + 跳到文件(&J) + + + J + J + + + Playlist + 播放列表 + + + Open Playlist + 打开播放列表 + + + Save Playlist + 保存播放列表 + + + Playlist Files + 播放列表文件 + + + All Supported Bitstreams + 支持的全部文件 + + + Tools + 工具 + + + + PlayList + + Sort List + 列表排序 + + + By Title + 按标题 + + + By Filename + 按文件名 + + + By Path + Filename + 按路径+文件名 + + + By Date + 按日期 + + + Sort Selection + 选择排序 + + + Randomize List + 随机产生列表 + + + Reverse List + 逆序列表 + + + By Track Number + 按音轨 + + + Playlist + 播放列表 + + + Actions + 动作 + + + + PlayListBrowser + + Delete + 删除 + + + ... + ... @@ -138,6 +1183,87 @@ p, li { white-space: pre-wrap; } 播放列表 + + PopupSettings + + Artist + 艺术家 + + + Album + 专辑 + + + Title + 标题 + + + Genre + 流派 + + + Comment + 备注 + + + Year + 年代 + + + + PresetEditor + + Preset Editor + 预设编辑器 + + + Load + 载入 + + + Delete + 删除 + + + Preset + 预设 + + + Auto-preset + 自动预设 + + + + QMMPStarter + + Usage: qmmp [options] [files] + 使用:qmmp [设置] [文件] + + + Options: + 设置: + + + Print version number and exit + 显示版本并退出 + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + 建议、补丁或提交 bug 请发送到 forkotov02@hotmail.ru + + + Display this text and exit + 显示这些文本并退出 + + + QMMP version: + Qmmp 版本: + + + Qt version: + Qt 版本: + + QtFileDialogFactory @@ -308,38 +1434,52 @@ p, li { white-space: pre-wrap; } 条件 + + TextScroller + + Autoscroll Songname + 自动滚动曲目名 + + UiHelper All Supported Bitstreams - + 支持的全部文件 Select one or more files to open - + 选择打开一个或更多文件 Choose a directory - + 选择一个目录 Playlist Files - + 播放列表文件 Open Playlist - + 打开播放列表 Save Playlist - + 保存播放列表 + + + + VisualMenu + + Visualization + 可视化 diff --git a/src/qmmpui/translations/libqmmpui_zh_TW.ts b/src/qmmpui/translations/libqmmpui_zh_TW.ts index 5127b06c2..2930eec92 100644 --- a/src/qmmpui/translations/libqmmpui_zh_TW.ts +++ b/src/qmmpui/translations/libqmmpui_zh_TW.ts @@ -1,6 +1,749 @@ + + AboutDialog + + About Qmmp + 關於 Qmmp + + + About + 關於 + + + License Agreement + 許可協定 + + + Authors + 作者 + + + Thanks To + 感謝 + + + :/txt/authors_en.txt + :/txt/authors_zh_TW.txt + + + :/txt/thanks_en.txt + :/txt/thanks_zh_TW.txt + + + Qt-based Multimedia Player (Qmmp) + 基於 Qt 的多媒體播放器 (Qmmp) + + + Version: + 版本: + + + :txt/description_en.txt + :txt/description_zh_TW.txt + + + Input plugins: + 匯入插件: + + + Output plugins: + 匯出插件 + + + Visual plugins: + 可視化插件 + + + Effect plugins: + 特效插件: + + + General plugins: + 常規插件: + + + Translators + 翻譯 + + + :/txt/translators_en.txt + :/txt/translators_zh_TW.txt + + + + ActionManager + + &Play + 播放(&P) + + + X + X + + + &Pause + 暫停(&P) + + + C + C + + + &Stop + 停止(&S) + + + V + V + + + &Previous + 上一曲(&P) + + + Z + Z + + + &Next + 下一曲(&N) + + + B + B + + + &Play/Pause + 播放/暫停(&P) + + + Space + 空格 + + + J + J + + + &Repeat Playlist + 重復播放清單(&R) + + + R + R + + + &Repeat Track + 重復音軌(&R) + + + Ctrl+R + Ctrl+R + + + &Shuffle + 亂序(&S) + + + S + S + + + &Add File + 添加檔案(&A) + + + F + F + + + &Add Directory + 添加檔案夾(&A) + + + D + D + + + &Add Url + 添加 URL (&A) + + + U + U + + + &Remove Selected + 移除所選(&R) + + + Del + Del + + + &Remove All + 移除全部(&R) + + + &Remove Unselected + 移除未選(&R) + + + Q + Q + + + Invert Selection + 反選 + + + &Select None + 無選取(&S) + + + &Select All + 選取全部(&S) + + + Ctrl+A + Ctrl+A + + + &View Track Details + 檢視音軌詳細資訊(&V) + + + Alt+I + Alt+I + + + &New List + 新建清單(&N) + + + &Load List + 載入清單(&L) + + + O + O + + + &Save List + 儲存清單(&S) + + + Shift+S + Shift+S + + + &Settings + 設定(&S) + + + Ctrl+P + Ctrl+P + + + &About + 關於(&A) + + + &About Qt + 關於 Qt (&A) + + + &Exit + 結束(&E) + + + Ctrl+Q + Ctrl+Q + + + + AddUrlDialog + + Error + 錯誤 + + + Enter URL to add + 匯入要添加的 URL + + + &Add + 添加(&A) + + + &Cancel + 取消(&C) + + + + BuiltinCommandLineOption + + Skip forward in playlist + 跳到播放清單中的下一曲 + + + Skip backwards in playlist + 跳到播放清單中的上一曲 + + + Start playing current song + 開始播放目前曲目 + + + Don't clear the playlist + 不要清除這個播放清單 + + + Pause current song + 暫停目前曲目 + + + Pause if playing, play otherwise + 正在播放則暫停,相反處於暫停則播放 + + + Stop current song + 停止目前曲目 + + + Display Jump to File dialog + 察看跳到檔案對話 + + + Show/hide application + 察看/隱藏程式 + + + Display Add File dialog + 察看添加檔案對話 + + + Display Add Directory dialog + 察看添加目錄對話 + + + + ConfigDialog + + + Description + 說明 + + + + Filename + 檔名 + + + + Artist + 藝術家 + + + + + Album + 專輯 + + + + Track + 音軌 + + + + Disabled + + + + + Transports + + + + + Decoders + + + + + Engines + + + + + Title + 標題 + + + + Track number + 音軌編號 + + + + Two-digit track number + 兩位數音軌編號 + + + + Disc number + 光槃編號 + + + + Condition + 條件 + + + + Genre + 流派 + + + + Composer + 作曲 + + + + File name + 文件名 + + + + File path + 文件路徑 + + + + Year + 年代 + + + + Comment + 備註 + + + + Qmmp Settings + Qmmp 設定 + + + Skins + 皮膚 + + + Fonts + 字型 + + + Player: + 播放器: + + + Playlist: + 播放清單: + + + ??? + ??? + + + + ... + ... + + + + Metadata + 元資料 + + + + Load metadata from files + 從檔案載入元資料 + + + + Song Display + 察看歌曲 + + + + Title format: + 標題格式: + + + + + Preferences + 引數設定 + + + + + + + Information + 資訊 + + + Appearance + 外觀 + + + + Playlist + 播放清單 + + + + Plugins + 插件 + + + + Advanced + 進階 + + + + 16-bit output + + + + Archived skin + 封包皮膚 + + + Unarchived skin + 未封包皮膚 + + + + Connectivity + 連線 + + + + Visualization + 可視化 + + + + Effects + 特效 + + + + General + 常規 + + + + File Dialog + 檔案對話 + + + + + Audio + 聲訊 + + + + Replay Gain + + + + Show song numbers + 顯示曲目編號 + + + + Replay Gain mode: + + + + + Preamp: + + + + + + dB + + + + + Default gain: + + + + + Use peak info to prevent clipping + + + + + Output: + + + + + Buffer size: + + + + + ms + + + + + Use software volume control + 使用軟裝置音量控制 + + + Hide on close + 關閉時隱藏 + + + Start hidden + 啟動時隱藏 + + + + Cover Image Retrieve + + + + + Use separate image files + + + + + Include files: + + + + + Exclude files: + + + + + Recursive search depth: + + + + + Playback + + + + + Continue playback on startup + + + + + User Interface + + + + + 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 為空格 + + + Select Skin Files + 選取皮膚檔案 + + + Skin files + 皮膚檔案 + + + Add... + 添加... + + + Refresh + 刷新 + + + Show protocol + 顯示協議 + + + Transparency + 透明度 + + + Main window + 主窗口 + + + 0 + 0 + + + Equalizer + 均衡器 + + DetailsDialog @@ -78,44 +821,91 @@ p, li { white-space: pre-wrap; } + + EqWidget + + preset + 預設 + + + &Load/Delete + 載入/移除(&L) + + + &Save Preset + 儲存預設(&S) + + + &Save Auto-load Preset + 儲存自動載入預設(&S) + + + &Clear + 清除(&C) + + + Saving Preset + 儲存預設 + + + Preset name: + 預設名稱: + + + preset # + 預設 # + + + &Import + 導入(&I) + + + Equalizer + 均衡器 + + + Import Preset + 導入預設 + + JumpToTrackDialog Jump To Track - + 跳到音軌 Filter - + 過濾 Queue - + 加入佇列 Refresh - + 刷新 Jump To - + 跳到 Q - + Q J - + J @@ -126,7 +916,262 @@ p, li { white-space: pre-wrap; } Unqueue - + 移出佇列 + + + + MainDisplay + + Previous + 上一曲 + + + Play + 播放 + + + Pause + 暫停 + + + Stop + 停止 + + + Next + 下一曲 + + + Add file + 添加檔案 + + + Equalizer + 均衡器 + + + Playlist + 播放清單 + + + Repeat playlist + 重復播放清單 + + + Shuffle + 亂序 + + + Volume + 音量 + + + Balance + 平衡 + + + + MainVisual + + Visualization Mode + 可視化型態 + + + Analyzer + 解析器 + + + Scope + 示波器 + + + Off + 關閉 + + + Analyzer Mode + 解析型態 + + + Normal + 標準 + + + Fire + 火花 + + + Vertical Lines + 垂直線 + + + Lines + 線形 + + + Bars + 條形 + + + Peaks + 峰值 + + + Refresh Rate + 刷新率 + + + 50 fps + 50 fps + + + 25 fps + 25 fps + + + 10 fps + 10 fps + + + 5 fps + 5 fps + + + Analyzer Falloff + 解析器下降速度 + + + Slowest + 最慢 + + + Slow + + + + Medium + + + + Fast + + + + Fastest + 最快 + + + Peaks Falloff + 峰值下降速度 + + + Background + 背景 + + + Transparent + 透明 + + + + MainWindow + + Choose a directory + 選取一個目錄 + + + Select one or more files to open + 選取開啟一個或更多檔案 + + + &Jump To File + 跳到檔案(&J) + + + J + J + + + Playlist + 播放清單 + + + Open Playlist + 開啟播放清單 + + + Save Playlist + 儲存播放清單 + + + Playlist Files + 播放清單檔案 + + + All Supported Bitstreams + 支援的全部檔案 + + + Tools + 工具 + + + + PlayList + + Sort List + 清單排序 + + + By Title + 按標題 + + + By Filename + 按檔名 + + + By Path + Filename + 按路徑+檔名 + + + By Date + 按日期 + + + Sort Selection + 選取排序 + + + Randomize List + 隨機產生清單 + + + Reverse List + 逆串列表 + + + By Track Number + 按音軌 + + + Playlist + 播放清單 + + + Actions + 動作 + + + + PlayListBrowser + + Delete + 移除 + + + ... + ... @@ -138,6 +1183,87 @@ p, li { white-space: pre-wrap; } 播放清單 + + PopupSettings + + Artist + 藝術家 + + + Album + 專輯 + + + Title + 標題 + + + Genre + 流派 + + + Comment + 備註 + + + Year + 年代 + + + + PresetEditor + + Preset Editor + 預設編輯程式 + + + Load + 載入 + + + Delete + 移除 + + + Preset + 預設 + + + Auto-preset + 自動預設 + + + + QMMPStarter + + Usage: qmmp [options] [files] + 使用:qmmp [設定] [檔案] + + + Options: + 設定: + + + Print version number and exit + 察看版本並結束 + + + Ideas, patches, bugreports send to forkotov02@hotmail.ru + 建議、補丁或提交 bug 請傳送到 forkotov02@hotmail.ru + + + Display this text and exit + 察看這些字檔並結束 + + + QMMP version: + Qmmp 版本: + + + Qt version: + Qt 版本: + + QtFileDialogFactory @@ -308,38 +1434,52 @@ p, li { white-space: pre-wrap; } 條件 + + TextScroller + + Autoscroll Songname + 自動捲動曲目名 + + UiHelper All Supported Bitstreams - + 支援的全部檔案 Select one or more files to open - + 選取開啟一個或更多檔案 Choose a directory - + 選取一個目錄 Playlist Files - + 播放清單檔案 Open Playlist - + 開啟播放清單 Save Playlist - + 儲存播放清單 + + + + VisualMenu + + Visualization + 可視化 -- cgit v1.2.3-13-gbd6f