diff options
Diffstat (limited to 'src/plugins/Ui/skinned')
22 files changed, 81 insertions, 1264 deletions
diff --git a/src/plugins/Ui/skinned/forms/jumptotrackdialog.ui b/src/plugins/Ui/skinned/forms/jumptotrackdialog.ui deleted file mode 100644 index 7f94a2845..000000000 --- a/src/plugins/Ui/skinned/forms/jumptotrackdialog.ui +++ /dev/null @@ -1,152 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>JumpToTrackDialog</class> - <widget class="QDialog" name="JumpToTrackDialog"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>487</width> - <height>315</height> - </rect> - </property> - <property name="windowTitle"> - <string>Jump To Track</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout"> - <property name="leftMargin"> - <number>6</number> - </property> - <property name="rightMargin"> - <number>6</number> - </property> - <property name="bottomMargin"> - <number>6</number> - </property> - <item> - <layout class="QHBoxLayout"> - <property name="spacing"> - <number>6</number> - </property> - <property name="margin"> - <number>0</number> - </property> - <item> - <widget class="QLabel" name="label"> - <property name="text"> - <string>Filter</string> - </property> - </widget> - </item> - <item> - <widget class="QLineEdit" name="filterLineEdit"/> - </item> - </layout> - </item> - <item> - <widget class="QListView" name="songsListView"> - <property name="editTriggers"> - <set>QAbstractItemView::NoEditTriggers</set> - </property> - <property name="alternatingRowColors"> - <bool>true</bool> - </property> - <property name="selectionBehavior"> - <enum>QAbstractItemView::SelectRows</enum> - </property> - </widget> - </item> - <item> - <layout class="QHBoxLayout" name="horizontalLayout"> - <item> - <widget class="QPushButton" name="queuePushButton"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Preferred"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Queue</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="refreshPushButton"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Preferred"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Refresh</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="jumpToPushButton"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Preferred"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Jump To</string> - </property> - </widget> - </item> - <item> - <spacer> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeType"> - <enum>QSizePolicy::MinimumExpanding</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - <item> - <widget class="QDialogButtonBox" name="buttonBox"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="standardButtons"> - <set>QDialogButtonBox::Close</set> - </property> - </widget> - </item> - </layout> - </item> - </layout> - </widget> - <resources/> - <connections> - <connection> - <sender>buttonBox</sender> - <signal>rejected()</signal> - <receiver>JumpToTrackDialog</receiver> - <slot>hide()</slot> - <hints> - <hint type="sourcelabel"> - <x>457</x> - <y>294</y> - </hint> - <hint type="destinationlabel"> - <x>481</x> - <y>279</y> - </hint> - </hints> - </connection> - </connections> -</ui> diff --git a/src/plugins/Ui/skinned/jumptotrackdialog.cpp b/src/plugins/Ui/skinned/jumptotrackdialog.cpp deleted file mode 100644 index d9df0bb75..000000000 --- a/src/plugins/Ui/skinned/jumptotrackdialog.cpp +++ /dev/null @@ -1,138 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2010 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "jumptotrackdialog.h" -#include <qmmpui/playlistmanager.h> -#include <QAction> -#include <QStringListModel> -#include <QSortFilterProxyModel> -#include <QShortcut> -#include <QKeySequence> - -JumpToTrackDialog::JumpToTrackDialog(PlayListManager *manager, QWidget* parent) - : QDialog (parent) -{ - setupUi(this); - setAttribute(Qt::WA_QuitOnClose, false); - m_pl_manager = manager; - m_listModel = new QStringListModel(this); - - m_proxyModel = new QSortFilterProxyModel; - m_proxyModel->setDynamicSortFilter(true); - m_proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); - m_proxyModel->setSourceModel(m_listModel); - songsListView->setModel(m_proxyModel); - - connect(songsListView,SIGNAL(doubleClicked(const QModelIndex &)), - this,SLOT(jumpTo(const QModelIndex&))); - connect(songsListView,SIGNAL(activated(const QModelIndex &)), - this,SLOT(jumpTo(const QModelIndex&))); - connect(songsListView,SIGNAL(activated(const QModelIndex &)), - this,SLOT(accept())); - connect(songsListView->selectionModel(), - SIGNAL(currentRowChanged(const QModelIndex&,const QModelIndex&)), - this,SLOT(queueUnqueue(const QModelIndex&,const QModelIndex&))); - - new QShortcut(tr("Q"),this,SLOT(on_queuePushButton_clicked())); - new QShortcut(tr("J"),this,SLOT(on_jumpToPushButton_clicked())); - new QShortcut(tr("F5"),this,SLOT(on_refreshPushButton_clicked())); - - QAction *selectSongViewAction = new QAction(filterLineEdit); - selectSongViewAction->setShortcut(Qt::Key_Down); - selectSongViewAction->setShortcutContext(Qt::WidgetShortcut); - filterLineEdit->addAction(selectSongViewAction); - connect(selectSongViewAction, SIGNAL(triggered()),songsListView, SLOT(setFocus())); - //setup icons - refreshPushButton->setIcon(QIcon::fromTheme("view-refresh")); - jumpToPushButton->setIcon(QIcon::fromTheme("go-top")); -} - -JumpToTrackDialog::~JumpToTrackDialog() -{ -} - -void JumpToTrackDialog::on_refreshPushButton_clicked() -{ - refresh(); -} - -void JumpToTrackDialog::on_queuePushButton_clicked() -{ - QModelIndexList mi_list = songsListView->selectionModel()->selectedRows(); - if (!mi_list.isEmpty()) - { - int selected = (m_proxyModel->mapToSource(mi_list.at(0))).row(); - m_pl_manager->selectedPlayList()->setQueued(m_pl_manager->selectedPlayList()->item(selected)); - if (m_pl_manager->selectedPlayList()->isQueued(m_pl_manager->selectedPlayList()->item(selected))) - queuePushButton->setText(tr("Unqueue")); - else - queuePushButton->setText(tr("Queue")); - } -} - -void JumpToTrackDialog::on_jumpToPushButton_clicked() -{ - QModelIndexList mi_list = songsListView->selectionModel()->selectedRows(); - if (!mi_list.isEmpty()) - { - jumpTo(mi_list.at(0)); - } -} - -void JumpToTrackDialog::refresh() -{ - filterLineEdit->clear(); - QStringList titles = m_pl_manager->selectedPlayList()->getTitles(0, m_pl_manager->selectedPlayList()->count()); - m_listModel->setStringList(titles); - filterLineEdit->setFocus(); -} - -void JumpToTrackDialog::on_filterLineEdit_textChanged(const QString &str) -{ - m_proxyModel->setFilterFixedString(str); - if (m_proxyModel->hasIndex(0,0)) - songsListView->setCurrentIndex (m_proxyModel->index (0,0)); -} - -void JumpToTrackDialog::on_filterLineEdit_returnPressed () -{ - QModelIndexList mi_list = songsListView->selectionModel()->selectedRows(); - if (!mi_list.isEmpty()) - { - jumpTo(mi_list.at(0)); - accept(); - } -} - -void JumpToTrackDialog::jumpTo(const QModelIndex & index) -{ - int selected = (m_proxyModel->mapToSource(index)).row(); - m_pl_manager->selectedPlayList()->setCurrent(selected); - emit playRequest(); -} - -void JumpToTrackDialog::queueUnqueue(const QModelIndex& curr,const QModelIndex&) -{ - int row = m_proxyModel->mapToSource(curr).row(); - if (m_pl_manager->selectedPlayList()->isQueued(m_pl_manager->selectedPlayList()->item(row))) - queuePushButton->setText(tr("Unqueue")); - else - queuePushButton->setText(tr("Queue")); -} diff --git a/src/plugins/Ui/skinned/jumptotrackdialog.h b/src/plugins/Ui/skinned/jumptotrackdialog.h deleted file mode 100644 index 36186d72c..000000000 --- a/src/plugins/Ui/skinned/jumptotrackdialog.h +++ /dev/null @@ -1,62 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2010 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef JUMPTOTRACKDIALOG_H -#define JUMPTOTRACKDIALOG_H - -#include <QDialog> -#include "ui_jumptotrackdialog.h" - -class QStringListModel; -class QSortFilterProxyModel; -class PlayListManager; - -/** - @author Vladimir Kuznetsov <vovanec@gmail.com> - */ -class JumpToTrackDialog : public QDialog, private Ui::JumpToTrackDialog -{ - Q_OBJECT - -public: - JumpToTrackDialog(PlayListManager *manager, QWidget* parent = 0); - ~JumpToTrackDialog(); - void refresh(); - -protected slots: - void on_refreshPushButton_clicked(); - void on_queuePushButton_clicked(); - void on_jumpToPushButton_clicked(); - void on_filterLineEdit_textChanged(const QString&); - void on_filterLineEdit_returnPressed (); - void jumpTo(const QModelIndex&); - void queueUnqueue(const QModelIndex&,const QModelIndex&); - -signals: - void playRequest(); - -private: - QStringListModel* m_listModel; - QSortFilterProxyModel* m_proxyModel; - PlayListManager *m_pl_manager; -}; - -#endif - diff --git a/src/plugins/Ui/skinned/mainwindow.cpp b/src/plugins/Ui/skinned/mainwindow.cpp index f991b281a..d30c874e9 100644 --- a/src/plugins/Ui/skinned/mainwindow.cpp +++ b/src/plugins/Ui/skinned/mainwindow.cpp @@ -42,7 +42,6 @@ #include "dock.h" #include "eqwidget.h" #include "mainvisual.h" -#include "jumptotrackdialog.h" #include "aboutdialog.h" #include "addurldialog.h" #include "listwidget.h" @@ -86,9 +85,6 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) m_equalizer = new EqWidget(this); dock->addWidget(m_equalizer); - m_jumpDialog = new JumpToTrackDialog(m_pl_manager, this); - m_jumpDialog->hide(); - createActions(); //prepare visualization Visual::initialize(this, m_visMenu, SLOT(updateActions())); @@ -107,8 +103,6 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) connect(m_display,SIGNAL(shuffleToggled(bool)),m_pl_manager,SLOT(setShuffle(bool))); connect(m_display,SIGNAL(repeatableToggled(bool)),m_pl_manager,SLOT(setRepeatableList(bool))); - connect(m_jumpDialog,SIGNAL(playRequest()), SLOT(replay())); - connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(showState(Qmmp::State))); connect(m_core, SIGNAL(elapsedChanged(qint64)),m_playlist, SLOT(setTime(qint64))); connect(m_core, SIGNAL(metaDataChanged()),SLOT(showMetaData())); @@ -467,11 +461,7 @@ void MainWindow::playPause() void MainWindow::jumpToFile() { - if (m_jumpDialog->isHidden()) - { - m_jumpDialog->show(); - m_jumpDialog->refresh(); - } + m_uiHelper->jumpToTrack(this); } void MainWindow::handleCloseRequest() diff --git a/src/plugins/Ui/skinned/mainwindow.h b/src/plugins/Ui/skinned/mainwindow.h index a228b2be9..6b72780ee 100644 --- a/src/plugins/Ui/skinned/mainwindow.h +++ b/src/plugins/Ui/skinned/mainwindow.h @@ -35,7 +35,6 @@ class EqWidget; class MainVisual; class Skin; class SoundCore; -class JumpToTrackDialog; class VisualMenu; class UiHelper; class MediaPlayer; @@ -108,7 +107,6 @@ private: MainVisual *m_vis; bool m_update; Skin *m_skin; - JumpToTrackDialog* m_jumpDialog; bool m_hideOnClose, m_startHidden; VisualMenu *m_visMenu; UiHelper *m_uiHelper; diff --git a/src/plugins/Ui/skinned/skinned.pro b/src/plugins/Ui/skinned/skinned.pro index fffe9071f..1364167d3 100644 --- a/src/plugins/Ui/skinned/skinned.pro +++ b/src/plugins/Ui/skinned/skinned.pro @@ -1,7 +1,6 @@ include(../../plugins.pri) FORMS += forms/configdialog.ui \ forms/preseteditor.ui \ - forms/jumptotrackdialog.ui \ forms/aboutdialog.ui \ forms/addurldialog.ui \ forms/playlistbrowser.ui \ @@ -39,7 +38,6 @@ HEADERS += mainwindow.h \ playlistcontrol.h \ eqpreset.h \ preseteditor.h \ - jumptotrackdialog.h \ aboutdialog.h \ timeindicator.h \ keyboardmanager.h \ @@ -91,7 +89,6 @@ SOURCES += mainwindow.cpp \ playlistcontrol.cpp \ eqpreset.cpp \ preseteditor.cpp \ - jumptotrackdialog.cpp \ aboutdialog.cpp \ timeindicator.cpp \ keyboardmanager.cpp \ diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts index de253f678..7622fee29 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Vyřadit</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Zařadit</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Přeskočit na skladbu</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtr</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Načíst znovu</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Přeskočit na</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>Přeskočit na soubo&r</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation type="unfinished">Zobrazení</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation type="unfinished">Seznam skladeb</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Nástroje</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts index c7af52ee5..4756766c8 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Aus Warteschlange entfernen</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>In Warteschlange</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Zu Titel springen</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filter</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Aktualisieren</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Springen zu</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>Springe zu &Titel</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Wiedergabeliste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts index 495dce779..922ae4a27 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Desencolar</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Encolar</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Saltar hasta pista</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtrar</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Actualizar</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Saltar a</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Saltar a archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Lista de reproducción</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Herramientas</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts index cccf502f4..cc6b22197 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Ugrás számra</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Szűrő</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Sorba betesz</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Frissít</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Ugrás</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Sorból kivesz</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation type="unfinished">Lejátszási lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Ugrás fájlra</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation type="unfinished">Megnéz</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Eszközök</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts index b93c4f811..31d872ca1 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Elimna dalla coda</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Metti in coda</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Vai alla traccia</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtra</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Aggiorna</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Vai a</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Vai al brano</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Strumenti</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts index 82ee5cd2e..c16b56cb9 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>トラックを指定して即刻再生</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>フィルタ</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>キューに入れる</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>再実行</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>この曲に跳ぶ</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>キューから除く</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>プレイリスト</translation> </message> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>ファイルを指定して即刻再生(&J)</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>観容</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>ツール</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts index 403afd03f..77b27eb9a 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts @@ -1055,57 +1055,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Pašalinti iš eilės</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Į eilę</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Pereiti prie takelio</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtras</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Atnaujinti</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Prereiti prie</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1329,27 +1278,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Pereiti prie bylos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Rodyti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Grojaraštis</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Įrankiai</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts index 0aa4447f6..1e7a32e78 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Verwijder uit lijst</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Rij</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Ga Naar Nummer</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filter</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Herlaad</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Ga Naar</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Spring Naar Bestand</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation type="unfinished">Weergave</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation type="unfinished">Afspeellijst</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Gereedschappen</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts index 704837f6b..b6d7e94e1 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Wykolejkuj</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Kolejkuj</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Skocz do utworu</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtr</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Odśwież</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Skocz do</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Skocz do pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Wygląd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Lista odtwarzania</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Narzędzia</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts index 1ed9302f4..26e709dd1 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation type="unfinished">Sem Faixa na Fila</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation type="unfinished">Faixa na Fila</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation type="unfinished">Pular de faixa</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtro</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation type="unfinished">Recarregar</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation type="unfinished">Pular para</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation type="unfinished">Pular para arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation type="unfinished">Lista de músicas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts index 3ca711197..e4a25ebea 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Снять с очереди</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>В очередь</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Перейти к треку</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Фильтр</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Обновить</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Перейти к</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Перейти к файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Сервис</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts index d7d3d9eb2..651bfd2dc 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation>F5</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Vyradiť</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Zaradiť</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Preskočiť na skladbu</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filter</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Obnoviť</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Preskočiť na</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Preskočiť na súbor</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Zobraziť</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Playlist</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Nástroje</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts index 834583923..18ae4cc3e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation type="unfinished">Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation type="unfinished">J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Kuyrukta Değil</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>Kuyruk</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Parçaya Git</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Filtre</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Yenile</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Git</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Parçaya Git</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation type="unfinished">Çalma Listesi</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Araçlar</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts index a0dc30876..0e913383f 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>Зняти з черги</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>В чергу</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>Перейти до треку</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>Фильтр</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>Поновити</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>Перейти до</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>&Перейти до файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>Вигляд</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>Список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>Утиліти</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts index 395d0447d..3103215e0 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>移出队列</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>加入队列</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>跳到音轨</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>过滤</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>刷新</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>跳到</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>跳到文件(&J)</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>视图</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>播放列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>工具</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts index 73eea588d..0bd4936d7 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts @@ -1053,57 +1053,6 @@ </message> </context> <context> - <name>JumpToTrackDialog</name> - <message> - <location filename="../jumptotrackdialog.cpp" line="53"/> - <source>Q</source> - <translation>Q</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="54"/> - <source>J</source> - <translation>J</translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="55"/> - <source>F5</source> - <translation></translation> - </message> - <message> - <location filename="../jumptotrackdialog.cpp" line="84"/> - <location filename="../jumptotrackdialog.cpp" line="135"/> - <source>Unqueue</source> - <translation>移出佇列</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="70"/> - <location filename="../jumptotrackdialog.cpp" line="86"/> - <location filename="../jumptotrackdialog.cpp" line="137"/> - <source>Queue</source> - <translation>加入佇列</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="14"/> - <source>Jump To Track</source> - <translation>跳到音軌</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="37"/> - <source>Filter</source> - <translation>過濾</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="83"/> - <source>Refresh</source> - <translation>刷新</translation> - </message> - <message> - <location filename="../forms/jumptotrackdialog.ui" line="96"/> - <source>Jump To</source> - <translation>跳到</translation> - </message> -</context> -<context> <name>MainDisplay</name> <message> <location filename="../display.cpp" line="57"/> @@ -1327,27 +1276,27 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="379"/> + <location filename="../mainwindow.cpp" line="373"/> <source>&Jump To File</source> <translation>跳到文件(&J)</translation> </message> <message> - <location filename="../mainwindow.cpp" line="380"/> + <location filename="../mainwindow.cpp" line="374"/> <source>J</source> <translation>J</translation> </message> <message> - <location filename="../mainwindow.cpp" line="382"/> + <location filename="../mainwindow.cpp" line="376"/> <source>View</source> <translation>視圖</translation> </message> <message> - <location filename="../mainwindow.cpp" line="390"/> + <location filename="../mainwindow.cpp" line="384"/> <source>Playlist</source> <translation>播放清單</translation> </message> <message> - <location filename="../mainwindow.cpp" line="410"/> + <location filename="../mainwindow.cpp" line="404"/> <source>Tools</source> <translation>工具</translation> </message> |
