diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-11-25 18:00:06 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-11-25 18:00:06 +0000 |
| commit | 8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a (patch) | |
| tree | 15d339b62e98d5858a57aa787334e14f0e2f0ad7 /src/plugins/Ui/qsui | |
| parent | 6fc05db7c6de9a51beba754f12ff4ac32859977d (diff) | |
| download | qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.tar.gz qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.tar.bz2 qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.zip | |
copy 1.2 branch to trunk
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7772 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/qsui')
38 files changed, 1468 insertions, 1501 deletions
diff --git a/src/plugins/Ui/qsui/CMakeLists.txt b/src/plugins/Ui/qsui/CMakeLists.txt index a0a3c9bd7..ab302dda4 100644 --- a/src/plugins/Ui/qsui/CMakeLists.txt +++ b/src/plugins/Ui/qsui/CMakeLists.txt @@ -1,14 +1,4 @@ -project(libqsui) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - -include_directories(${CMAKE_CURRENT_SOURCE_DIR}) +project(qsui) # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) @@ -60,7 +50,7 @@ SET(libqsui_HDRS SET(libqsui_RCCS translations/translations.qrc txt/qsui_txt.qrc resources/qsui_resources.qrc) -QT4_ADD_RESOURCES(libqsui_RCC_SRCS ${libqsui_RCCS}) +QT5_ADD_RESOURCES(libqsui_RCC_SRCS ${libqsui_RCCS}) # user interface @@ -74,12 +64,12 @@ SET(libqsui_UIS forms/hotkeyeditor.ui ) -QT4_WRAP_UI(libqsui_UIS_H ${libqsui_UIS}) +QT5_WRAP_UI(libqsui_UIS_H ${libqsui_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(qsui MODULE ${libqsui_SRCS} ${libqsui_UIS_H} ${libqsui_RCC_SRCS} ${libqsui_HDRS}) add_dependencies(qsui qmmpui libqmmp) -target_link_libraries(qsui ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(qsui Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS qsui DESTINATION ${LIB_DIR}/qmmp/Ui) diff --git a/src/plugins/Ui/qsui/filesystembrowser.cpp b/src/plugins/Ui/qsui/filesystembrowser.cpp index 3d43f1e08..fa017bb17 100644 --- a/src/plugins/Ui/qsui/filesystembrowser.cpp +++ b/src/plugins/Ui/qsui/filesystembrowser.cpp @@ -79,11 +79,7 @@ FileSystemBrowser::FileSystemBrowser(QWidget *parent) : m_fileSystemModel = new QFileSystemModel(this); m_fileSystemModel->setReadOnly(true); m_fileSystemModel->setNameFilterDisables(false); -#if QT_VERSION >= 0x040700 m_fileSystemModel->setFilter(QDir::AllDirs | QDir::Files | QDir::NoDot); -#else - m_fileSystemModel->setFilter(QDir::AllDirs | QDir::Files); -#endif m_proxyModel = new FileSystemFilterProxyModel(this); m_proxyModel->setDynamicSortFilter(true); diff --git a/src/plugins/Ui/qsui/listwidget.cpp b/src/plugins/Ui/qsui/listwidget.cpp index 365239cca..5f231fb53 100644 --- a/src/plugins/Ui/qsui/listwidget.cpp +++ b/src/plugins/Ui/qsui/listwidget.cpp @@ -29,6 +29,7 @@ #include <QHelpEvent> #include <QTimer> #include <QScrollBar> +#include <QMimeData> #include <qmmpui/playlistitem.h> #include <qmmpui/playlistmodel.h> #include <qmmpui/qmmpuisettings.h> @@ -196,9 +197,7 @@ void ListWidget::paintEvent(QPaintEvent *) { QPainter painter(this); m_drawer.fillBackground(&painter, width(), height()); -#if QT_VERSION >= 0x040700 painter.setLayoutDirection(Qt::LayoutDirectionAuto); -#endif bool rtl = (layoutDirection() == Qt::RightToLeft); int scroll_bar_width = m_scrollBar->isVisibleTo(this) ? m_scrollBar->sizeHint().width() : 0; diff --git a/src/plugins/Ui/qsui/logo.cpp b/src/plugins/Ui/qsui/logo.cpp index f8fe7cf80..c413dfbb3 100644 --- a/src/plugins/Ui/qsui/logo.cpp +++ b/src/plugins/Ui/qsui/logo.cpp @@ -184,7 +184,7 @@ void Logo::processPreset2() void Logo::processPreset3() { m_lines.clear(); - QString str = QString("...%1...").arg(Qmmp::strVersion().left(6)); + QString str = QString("...%1...").arg(Qmmp::strVersion().left(5)); int at = m_value % str.size(); foreach(QString line, m_source_lines) diff --git a/src/plugins/Ui/qsui/mainwindow.cpp b/src/plugins/Ui/qsui/mainwindow.cpp index bdc7b81c8..3cf109e5e 100644 --- a/src/plugins/Ui/qsui/mainwindow.cpp +++ b/src/plugins/Ui/qsui/mainwindow.cpp @@ -132,6 +132,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) m_ui.statusbar->addPermanentWidget(m_timeLabel, 1); m_ui.statusbar->setMinimumWidth(2); m_statusLabel->setMinimumWidth(2); + m_ui.statusbar->setStyleSheet("QStatusBar::item { border: 0px solid black };"); //volume m_volumeSlider = new VolumeSlider(this); m_volumeSlider->setFocusPolicy(Qt::NoFocus); diff --git a/src/plugins/Ui/qsui/qsuifactory.cpp b/src/plugins/Ui/qsui/qsuifactory.cpp index 014b1aabf..ccf2401dd 100644 --- a/src/plugins/Ui/qsui/qsuifactory.cpp +++ b/src/plugins/Ui/qsui/qsuifactory.cpp @@ -53,5 +53,3 @@ QTranslator *QSUIFactory::createTranslator(QObject *parent) translator->load(QString(":/qsui_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(qsui, QSUIFactory) diff --git a/src/plugins/Ui/qsui/qsuifactory.h b/src/plugins/Ui/qsui/qsuifactory.h index b95931751..138807308 100644 --- a/src/plugins/Ui/qsui/qsuifactory.h +++ b/src/plugins/Ui/qsui/qsuifactory.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2011-2012 by Ilya Kotov * + * Copyright (C) 2011-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -30,6 +30,7 @@ class QSUIFactory : public QObject, public UiFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.UiFactoryInterface.1.0") Q_INTERFACES(UiFactory) public: const UiProperties properties() const; diff --git a/src/plugins/Ui/qsui/qsuiquicksearch.cpp b/src/plugins/Ui/qsui/qsuiquicksearch.cpp index 2b82fa3a4..19509c9c6 100644 --- a/src/plugins/Ui/qsui/qsuiquicksearch.cpp +++ b/src/plugins/Ui/qsui/qsuiquicksearch.cpp @@ -41,21 +41,8 @@ QSUIQuickSearch::QSUIQuickSearch(ListWidget *listWidget, QWidget *parent) : setLayout(layout); layout->addWidget(m_lineEdit); m_lineEdit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); + m_lineEdit->setClearButtonEnabled(true); connect(m_lineEdit, SIGNAL(textEdited(QString)), m_listWidget, SLOT(setFilterString(QString))); - connect(m_lineEdit, SIGNAL(textChanged(QString)), SLOT(onTextChanged(QString))); connect(m_manager, SIGNAL(selectedPlayListChanged(PlayListModel*,PlayListModel*)), m_lineEdit, SLOT(clear())); connect(m_listWidget, SIGNAL(doubleClicked()), m_lineEdit, SLOT(clear())); - - m_clearButton = new QToolButton(this); - m_clearButton->setVisible(false); - m_clearButton->setAutoRaise(true); - m_clearButton->setIcon(QIcon::fromTheme("edit-clear")); - layout->addWidget(m_clearButton); - connect(m_clearButton, SIGNAL(clicked()), m_lineEdit, SLOT(clear())); - connect(m_clearButton, SIGNAL(clicked()), m_listWidget, SLOT(setFilterString())); -} - -void QSUIQuickSearch::onTextChanged(const QString &str) -{ - m_clearButton->setVisible(!str.isEmpty()); } diff --git a/src/plugins/Ui/qsui/qsuiquicksearch.h b/src/plugins/Ui/qsui/qsuiquicksearch.h index 2e51c6388..96e96cd29 100644 --- a/src/plugins/Ui/qsui/qsuiquicksearch.h +++ b/src/plugins/Ui/qsui/qsuiquicksearch.h @@ -27,7 +27,6 @@ class QLineEdit; class PlayListManager; class ListWidget; -class QToolButton; /** @author Ilya Kotov <forkotov02@ya.ru> @@ -38,14 +37,10 @@ class QSUIQuickSearch : public QWidget public: explicit QSUIQuickSearch(ListWidget *listWidget, QWidget *parent = 0); -private slots: - void onTextChanged(const QString &str); - private: QLineEdit *m_lineEdit; PlayListManager *m_manager; ListWidget *m_listWidget; - QToolButton *m_clearButton; }; diff --git a/src/plugins/Ui/qsui/shortcutitem.cpp b/src/plugins/Ui/qsui/shortcutitem.cpp index 8e3412e10..2502b8bd0 100644 --- a/src/plugins/Ui/qsui/shortcutitem.cpp +++ b/src/plugins/Ui/qsui/shortcutitem.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * + * Copyright (C) 2010-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -24,7 +24,7 @@ ShortcutItem::ShortcutItem(QTreeWidgetItem *parent, int type) : QTreeWidgetItem(parent, QStringList() << ActionManager::instance()->action(type)->text().remove("&") - << ActionManager::instance()->action(type)->shortcut()) + << ActionManager::instance()->action(type)->shortcut().toString()) { m_action = ActionManager::instance()->action(type); setIcon(0, m_action->icon()); diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts index 52f8c68ec..da1eaf5e6 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts index d097b455f..2d10cc62d 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Přejmenovat seznam skladeb</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Hlasitost</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pozastaveno</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Zastaveno</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Název seznamu skladeb:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Vzhled</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Zkratky</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Přehrává se</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Umístění</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Seřadit seznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Podle názvu skladby</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Podle alba</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Podle umělce</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Podle názvu souboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Podle cesty a názvu souboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Podle data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Podle čísla skladby</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Podle čísla disku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Podle data vytvoření souboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Seřadit výběr</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Zamíchat seznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Obrátit pořadí seznamu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Činnosti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Načítám: %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts index 14950f6d4..a36d3e2ef 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Zur Wiedergabeliste hinzufügen</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Verzeichnis wechseln</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Schnellsuche</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Verzeichnis auswählen</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Wiedergabeliste umbenennen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Lautstärke</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 Bit|%3 Kan.|%4 Hz|Titel: %5|Gesamtzeit: %6|%7 kbit/s|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausiert</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|Titel: %2|Gesamtzeit: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Gestoppt</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Wiedergabelistenname:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Erscheinungsbild</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Kurzbefehle</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Wiedergabe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Strg+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Position</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Schnellsuche</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Werkzeugleisten bearbeiten</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Wiedergabeliste sortieren</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Nach Titel</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Nach Album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Nach Interpret</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Nach Albuminterpret</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Nach Dateinamen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Nach Pfad & Dateinamen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Nach Datum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Nach Titelnummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Nach Disc-Nummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Nach Dateierstellungsdatum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Nach Dateiänderungsdatum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Nach Gruppe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Auswahl sortieren</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Wiedergabeliste mischen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Wiedergabeliste umkehren</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Aktionen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Neue Wiedergabeliste hinzufügen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Alle Reiter anzeigen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Pufferung: %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts index c5707b310..684c328dc 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Προσθήκη στη Λίστα Αναπαραγωγής</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Αλλαγή καταλόγου</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Γρήγορη αναζήτηση</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Επιλογή καταλόγου</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Μετονομασία της λίστας αναπαραγωγής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Ένταση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 καν|%4 Hz|κομμάτια: %5|συνολικός χρόνος: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Σε παύση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|κομμάτια: %2|συνολικός χρόνος: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Σταματημένο</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Όνομα λίστας αναπαραγωγής:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Εμφάνιση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Συντομεύσεις</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Εκτελείται</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Θέση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Γρήγορη αναζήτηση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Επεξεργασία γραμμών εργαλείων</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Ταξινόμηση λίστας</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Ανά τίτλο</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Ανά άλμπουμ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Ανά καλλιτέχνη</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Ανά καλλιτέχνη άλμπουμ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Ανά όνομα αρχείου</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Ανά διαδρομή + όνομα αρχείου</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Ανά ημερομηνία</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Ανά αριθμό κομματιού</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Ανά αριθμό δίσκου</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Ανά ημερομηνία δημιουργίας του αρχείου </translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Ανά ημερομηνία τροποποίησης του αρχείου </translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Ανά ομάδα</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Ταξινόμηση επιλογής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Τυχαία ταξινόμηση της λίστας</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Αντιστροφή ταξινόμησης της λίστας</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Ενέργειες</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Προσθήκη νέας λίστας αναπαραγωγής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Εμφάνιση όλων των καρτελών</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Πλήρωση ενδιάμεσης μνήμης: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts index 6125885e1..66c995ff3 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts index aa474b799..bad982f31 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Añadir a la lista de reproducción</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Cambiar Directorio</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Búsqueda Rápida</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Seleccionar Directorio</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renombrar lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volumen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|pistas: %5|tiempo total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|pistas: %2|tiempo total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Detenido</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nombre de la lista:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Apariencia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Atajos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reproduciendo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posición</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Búsqueda Rápida</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar Barras de Herramientas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Ordenar la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por intérprete</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por Artista del Álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nombre de archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por ruta + nombre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por fecha</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de pista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por Número de Disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por Fecha de Creación de Archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por Fecha de Modificación de Archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por Grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Ordenar la selección</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatoria</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Invertir la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Acciones</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Añadir nueva lista de reproducción</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Mostrar todas las pestañas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Cargando: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts index 06b376045..df6780a2a 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Lisää soittolistaan</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Vaihda kansio</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Pikahaku</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Valitse kansio</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Nimeä soittolista uudelleen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Äänenvoimakkuus</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Keskeytetty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Pysäytetty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Soittolistan nimi:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Ulkoasu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Pikanäppäimet</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Sijainti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Pikahaku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Muokkaa työkalupalkkeja</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Käänteinen lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Toiminnot</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Lisää uusi soittolista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Puskuroidaan: %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts index e3c47972e..2c754b042 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Ajouter à la liste</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Changer le répertoire</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Recherche rapide</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Sélectionner le répertoire</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renommer la liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|pistes : %5|durée totale : %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>En pause</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|pistes : %2|durée totale : %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Arrêté</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nom de la liste :</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Apparence</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Raccourcis</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>En cours</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Position</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Recherche rapideR</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editer la barre des outils</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Trier la liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>par titre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>par album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>par artiste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>par artiste d'album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>par no mde fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>par chemin et nom de fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>par date</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>par numéro de piste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>par numéro de disque</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>par date de création du fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>par date de modification du fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>par groupe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>trier la sélection</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Mélanger la liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Inverser la lsite</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Actions</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Ajouter une nouvelle liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Montrer tous les onglets</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Mise en tampon : %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts index d809aae90..5dea37eed 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Engadir á lista de producción</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Mudar directorio</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Seleccionar directorio</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodución</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|pistas: %5|tempo total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|pistas: %2|tempo total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Detido</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nome da lista de reprodución:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Apariencia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Accesos rápidos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reproducindo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posición</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar barras de ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Ordear lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por artista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por Artista do álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por ruta + nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de pista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por número de disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por data de creación do ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por data de modificación do arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Ordear selección</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatoria</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Reverter lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Accións</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Engadir nova lista de reproducción</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Amosar tódalas lapelas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buffering: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts index eac6cd6c0..c52f2547c 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>הוסף אל רשימת נגינה</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>שנה מדור</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>בחר מדור</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>שנה שם רשימת נגינה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>עוצמת קול</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>השהה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>הופסקה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>שם רשימת נגינה:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>הופעה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>קיצורי דרך</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>מנגן</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>מיקום</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>ערוך סרגלי כלים</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>מיין רשימה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>לפי כותרת</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>לפי אלבום</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>לפי אמן</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>לפי אלבום אמן</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>לפי שם קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>לפי נתיב + שם קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>לפי תאריך</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>לפי מספר רצועה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>לפי מספר תקליטור</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>לפי תאריך יצירת קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>לפי תאריך שינוי קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>לפי קבוצה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>מיין נבחרות</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>הפוך רשימה לאקראית</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>הפוך רשימה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>פעולות</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>הוסף רשימת נגינה חדשה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>הצג את כל הכרטיסיות</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>אוגר כעת: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts index 635246949..fa35f39c9 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Megjelenés</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Lista rendezése</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Cím szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished">Album szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished">Előadó szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Fájlnév szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Elérési út és fájlnév szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Dátum szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Zene sorszáma szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Jelöltek rendezése</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Lista összekeverése</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Fordított lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Tevékenységek</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished">Lista átnevezése</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts index 53c6b663f..51fd31d26 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Tambah ke Daftarmain</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Ubah Direktori</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Pilih Direktori</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Ubah-nama Daftarmain</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|track: %5|total waktu: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Dijeda</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|track: %2|total waktu: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Dihentikan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nama daftarmain:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Tampilan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Pintasan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Memainkan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posisi</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Edit Bilah-alat</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Daftar Surtir</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Menurut Judul</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Menurut Album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Menurut Artist</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Menurut Album Artist</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Menurut Filename</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Menurut Alur + Filename</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Menurut Tanggal</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Menurut Nomor Trek</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Menurut Nomor Cakram</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Menurut Tanggal Penciptaan File</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Menurut Tanggal Modifikasi File</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Menurut Kelompok</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Pilihan Surtir</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Daftar Acakan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Daftar Mundur</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Tindakan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Tambah daftarmain baru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Tampakkan semua tab</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buffering: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts index 26cfda917..5705399c8 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Aspetto</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Riordina la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Per titolo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished">Per album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished">PEr interprete</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Per titolo del brano</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">per percorso più titolo del brano</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Per data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Per numero di traccia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Riordina la selezione</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Mescola i brnai della lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Inverti la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Azioni</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished">Rinomina lista brani</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts index 020271d49..46c6e309b 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>プレイリストに追加</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>絞り込み検索</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>ディレクトリーを選択</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>ディレクトリーを変更</translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>音量</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|全 %5 曲|総演奏時間: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>一時停止中断</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|全 %2 曲|総演奏時間: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>終演</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>プレイリスト名:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>外観</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>ショートカット</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>演奏中</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>配置</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>絞り込み検索</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>ツールバーを変更</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>リストを並べ換え</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>タイトル名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>アルバム名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>アーティスト名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>アルバムのアーティスト名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>ファイル名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>パスとファイル名の順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>日付順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>トラック番号順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>ディスク番号順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>ファイルの作成日順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>ファイルの加工日時順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>グループ名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>選択範囲内で並び換え</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>リストを順不同に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>リストを逆順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>動作</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>新しいプレイリストを追加</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>すべてのタブを表示</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>バッファーへ先読み: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>QMMP</translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>プレイリスト名を変更</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts index 1f93d2906..45f1334a7 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished">Даусы</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Сыртқы түрі</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Сұрыптау</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Аты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Файл аты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Жолы мен файл аты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Уақыты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Трек нөмірі бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Таңдалғанды сұрыптау</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Тізімді араластыру</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Тізімді кері айналдыру</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Әрекеттер</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts index 8eff0a4d8..2069b99c4 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts @@ -582,22 +582,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Įkelti į grojąraštį</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Pasirinkti aplanką</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Pakeisti aplanką</translation> </message> @@ -663,190 +663,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Garsumas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pristabdyta</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Sustabdyta</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Grojąraščio pavadinimas:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Išvaizda</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Trumpiniai</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Grojama</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Rūšiuoti sąrašą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Pagal dainos pavadinimą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Pagal albumą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Pagal atlikėją</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Pagal bylos pavadinimą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Pagal kelią iki bylos ir pavadinimą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Pagal datą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Pagal takelio numerį</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Pagal disko numerį</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Pagal bylos sukūrimo laiką</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Pagal grupę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Rūšiuoti pasirinktus</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Sumaišyti sąrašą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Apversti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Veiksmai</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Pridėti naują grojąraštį</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Rodyti visas korteles</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buferis: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -992,7 +992,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Pervadinti grojaraštį</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts index f462da0df..ed7380775 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -663,190 +663,190 @@ Afspeellijst</translation> <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Gepauzeerd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Gestopt</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Vertoning</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Sneltoetsen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Spelen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Sorteer Lijst</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Op Titel</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Op Album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Op Artiest</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Op Bestandsnaam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Op Pad + Bestandsnaam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Op Datum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Op Lied Nummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Op CD Nummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Sorteer Selectie</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Schud Lijst</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Draai Lijst Om</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Acties</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Bufferen: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -993,7 +993,7 @@ Instellingen</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Hernoem Afspeellijst</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts index 0cedda077..644b35641 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Dodaj do listy odtwarzania</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Zmień Katalog</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Wybierz Katalog</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Zmień nazwę listy</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Głośność</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Wstrzymane</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Zatrzymane</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nazwa listy odtwarzania:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Wygląd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Skróty klawiszowe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Odtwarzanie</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Pozycja</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Sortuj listę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Według nazwy</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Według nazwy albumu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Według artysty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Według nazwy pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Według Ścieżki + Nazwy pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Wg Daty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Wg numeru utworu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Wg Numeru płyty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Wg Daty Utworzenia pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Wg Grupy</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Sortuj zaznaczone</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Tasuj listę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Odwróć listę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Akcje</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Dodaj nową listę odtwarzania</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Pokaż wszystkie karty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buforowanie: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts index 41aa89f09..6ba7c0221 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Adicionar à lista de reprodução</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Mudar diretório</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Procura rápida</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Selecionar diretório</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ca|%4 Hz|faixas: %5|duração total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausa</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|faixas: %2|duração total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Parado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nome da lista de reprodução:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Aparência</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Atalhos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posição</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Procura rápida</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar barras de ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Organizar lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por artista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por artista do álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por caminho e nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de faixa</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por número de disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por data de criação do ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por data de modificação do ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Organizar seleção</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatória</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Inverter lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Ações</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Adicionar nova lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Mostrar todos os separadores</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Processamento: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts index 3c463822c..cd4fb1950 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Adicionar à lista de reprodução</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Mudar pasta</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Selecionar pasta</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ca|%4 Hz|faixas: %5|duração total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|faixas: %2|duração total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Parado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nome da lista de reprodução:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Aparência</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Atalhos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posição</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar barras de ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Organizar lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por artista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por artista do álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nome de arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por caminho e nome de arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de faixa</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por número de disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por data de criação do arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por data de modificação do arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Organizar seleção</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatória</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Inverter lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Ações</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Adicionar nova lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Mostrar todos as abas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Processamento: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts index 774dc2414..4b3f0e619 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Добавить к списку воспроизведения</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Сменить директорию</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Быстрый поиск</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Выберите директорию</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Переименовать список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Громкость</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 бит|%3 к.|%4 Гц|треков: %5|общее время: %6|%7 кбит/с|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Пауза</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|треков: %2|общее время: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Стоп</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Имя списка:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Внешний вид</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Сочетания клавиш</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Воспр.</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Позиция</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Быстрый поиск</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Изменить панели инструментов</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Сортировать</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>По названию</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>По альбому</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>По исполнителю</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>По исполнителю альбома</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>По имени файла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>По пути и файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>По дате</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>По номеру трека</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>По номеру диска</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>По дате создания файла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>По дате изменения файла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>По группе</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Сортировать выделенное</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Перемешать</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Перевернуть</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Действия</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Добавить новый список воспроизведения</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Показать все вкладки</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Буферизация: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts index 53ca77454..ae0e7d51c 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Vzhľad</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Triediť zoznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Podľa názvu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished">Podľa albumu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished">Podľa interpréta</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Podľa názvu súboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Podľa cesty a názvu súboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Podľa dátumu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Podľa čísla skladby</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Potriediť výber</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Zamiešať zoznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Otočiť zoznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Činnosti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished">Premenovať playlist</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts index fc7804a72..1be40d2f8 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Додај на листу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Промијени фасциклу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Избор фасцикле</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Кумп</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Преименуј листу нумера</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Јачина</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Паузирано</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Заустављено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Име листе нумера:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Изглед</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Пречице</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Пуштање</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Поређај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>по наслову</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>по албуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>по извођачу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>по имену фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>по путањи и имену</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>по датуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>по броју нумере</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>по броју диска</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>по датуму фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>по групи</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Поређај избор</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Претумбај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Обрни</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Радње</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Додај нову листу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Прикажи све језичке</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Баферујем: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts index d088c4938..9e9cbec61 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Додај на листу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Промени фасциклу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Избор фасцикле</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Кумп</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Преименуј листу нумера</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Јачина</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Паузирано</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Заустављено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Име листе нумера:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Изглед</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Пречице</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Пуштање</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Поређај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>по наслову</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>по албуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>по извођачу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>по имену фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>по путањи и имену</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>по датуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>по броју нумере</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>по броју диска</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>по датуму фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>по групи</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Поређај избор</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Претумбај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Обрни</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Радње</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Додај нову листу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Прикажи све језичке</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Баферујем: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts index af4fd111e..a6fad1113 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Görünüm</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Listeyi Sınıflandır</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Başlığa Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Dosya Adına Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Dosya Yolu + Dosya Adına Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Tarihe Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Parça Numarasına Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Seçilenleri Sınıflandır</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Rastgele Listele</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Listeyi Ters Çevir</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Eylemler</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts index b91996f22..87e4b5a05 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts @@ -582,22 +582,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Додати до списку відтворення</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Швидкий пошук</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Виберіть теку</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Змінити теку</translation> </message> @@ -663,190 +663,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Гучність</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 біт|%3 к.|%4 Гц|треків: %5|загальний час: %6|%7 кбіт/с|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Призупинено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|треків: %2|загальний час: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Зупинено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Назва списку:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Зовнішній вигляд</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Комбінації клавіш</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Відтворюється</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Позиція</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Швидкий пошук</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Редагувати панель інструментів</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Сортувати</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>За назвою</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>За альбомом</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>За виконавцем</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>За альбомом виконавця</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>За ім'ям файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>За шляхом та файлом</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>За датою</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>За номером треку</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>За номером диску</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>За датою створення файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>За датою модифікації файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>За групою</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Сортувати вибране</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Перемішати</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Перевернути</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Дії</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Додати новий список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Показати всі вкладки</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Буферизація: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation></translation> </message> @@ -992,7 +992,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Переіменувати список</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts index 98c8b0dd5..d9dc1def2 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>添加到播放列表中</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>更改文件夹</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>选择文件夹</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>重命名播放列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>音量</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b?|%2 比特|%3频道|%4赫兹|曲目:%5|总计时间:%6|%7前比特每秒|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>被暂停</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|曲目:%2|总计时间:%3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>被停止</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>播放列表名称:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>外观</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>热键</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>播放中</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>位置</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>编辑工具栏</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>清单排序</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>按标题</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>按专辑</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>按艺术家</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>按专辑 艺术家</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>按文件名称</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>按路径+文件名称</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>按日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>按单曲号</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>按光盘号</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>按文件的创建日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>按文件的修改日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>按组</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>排序选择</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>随机列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>反序列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>行动</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>添加新播放列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>显示所有的分页标签</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>缓冲中:%1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts index c27319cae..81dc71433 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>音量</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>外觀</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>位置</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>清單排序</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>按標題</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>按檔名</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>按路徑+檔名</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>按日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>按音軌</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>選取排序</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>隨機產生清單</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>逆串列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>動作</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> |
