From 8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 25 Nov 2017 18:00:06 +0000 Subject: 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 --- src/plugins/General/streambrowser/CMakeLists.txt | 25 ++------------ .../General/streambrowser/streambrowserfactory.cpp | 7 ++-- .../General/streambrowser/streambrowserfactory.h | 1 + src/plugins/General/streambrowser/streamwindow.cpp | 7 ++-- .../translations/streambrowser_plugin_bg.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_cs.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_de.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_el.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_en.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_es.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_fi.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_fr.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_gl_ES.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_he.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_hu.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_id.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_it.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_ja.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_kk.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_lt.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_nl.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_pl_PL.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_pt.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_pt_BR.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_ru.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_sk.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_sr_BA.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_sr_RS.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_tr.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_uk_UA.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_zh_CN.ts | 38 +++++++++++----------- .../translations/streambrowser_plugin_zh_TW.ts | 38 +++++++++++----------- 32 files changed, 542 insertions(+), 562 deletions(-) (limited to 'src/plugins/General/streambrowser') diff --git a/src/plugins/General/streambrowser/CMakeLists.txt b/src/plugins/General/streambrowser/CMakeLists.txt index a63b00e60..064525673 100644 --- a/src/plugins/General/streambrowser/CMakeLists.txt +++ b/src/plugins/General/streambrowser/CMakeLists.txt @@ -1,26 +1,7 @@ project(libstreambrowser) - -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -35,7 +16,7 @@ SET(libstreambrowser_SRCS SET(libstreambrowser_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libstreambrowser_RCC_SRCS ${libstreambrowser_RCCS}) +QT5_ADD_RESOURCES(libstreambrowser_RCC_SRCS ${libstreambrowser_RCCS}) # user interface @@ -43,12 +24,12 @@ SET(libstreambrowser_UIS streamwindow.ui ) -QT4_WRAP_UI(libstreambrowser_UIS_H ${libstreambrowser_UIS}) +QT5_WRAP_UI(libstreambrowser_UIS_H ${libstreambrowser_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(streambrowser MODULE ${libstreambrowser_SRCS} ${libstreambrowser_UIS_H} ${libstreambrowser_RCC_SRCS}) add_dependencies(streambrowser qmmpui) -target_link_libraries(streambrowser ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(streambrowser Qt5::Widgets Qt5::Network -lqmmpui -lqmmp) install(TARGETS streambrowser DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/streambrowser/streambrowserfactory.cpp b/src/plugins/General/streambrowser/streambrowserfactory.cpp index 182e3d414..8c4b53fbe 100644 --- a/src/plugins/General/streambrowser/streambrowserfactory.cpp +++ b/src/plugins/General/streambrowser/streambrowserfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2012-2016 by Ilya Kotov * + * Copyright (C) 2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include -#include -#include #include "streambrowser.h" #include "streambrowserfactory.h" @@ -61,5 +60,3 @@ QTranslator *StreamBrowserFactory::createTranslator(QObject *parent) translator->load(QString(":/streambrowser_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(streambrowser, StreamBrowserFactory) diff --git a/src/plugins/General/streambrowser/streambrowserfactory.h b/src/plugins/General/streambrowser/streambrowserfactory.h index aac26dd09..fcaba574c 100644 --- a/src/plugins/General/streambrowser/streambrowserfactory.h +++ b/src/plugins/General/streambrowser/streambrowserfactory.h @@ -33,6 +33,7 @@ class StreamBrowserFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/streambrowser/streamwindow.cpp b/src/plugins/General/streambrowser/streamwindow.cpp index 7153abe48..c3132ed30 100644 --- a/src/plugins/General/streambrowser/streamwindow.cpp +++ b/src/plugins/General/streambrowser/streamwindow.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -59,7 +60,7 @@ StreamWindow::StreamWindow(QWidget *parent) : QWidget(parent) //icecast table ui.icecastTableView->setModel(m_iceCastFilterModel); ui.icecastTableView->verticalHeader()->setDefaultSectionSize(fontMetrics().height() + 3); - ui.icecastTableView->verticalHeader()->setResizeMode(QHeaderView::Fixed); + ui.icecastTableView->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); ui.icecastTableView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui.icecastTableView->setContextMenuPolicy(Qt::CustomContextMenu); connect(ui.icecastTableView, SIGNAL(customContextMenuRequested(QPoint)), @@ -77,7 +78,7 @@ StreamWindow::StreamWindow(QWidget *parent) : QWidget(parent) //favorites table ui.favoritesTableView->setModel(m_favoritesFilterModel); ui.favoritesTableView->verticalHeader()->setDefaultSectionSize(fontMetrics().height() + 3); - ui.favoritesTableView->verticalHeader()->setResizeMode(QHeaderView::Fixed); + ui.favoritesTableView->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); ui.favoritesTableView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui.favoritesTableView->setContextMenuPolicy(Qt::CustomContextMenu); connect(ui.favoritesTableView, SIGNAL(customContextMenuRequested(QPoint)), @@ -231,7 +232,7 @@ void StreamWindow::removeFromFavorites() { rows_to_remove.append(m_favoritesFilterModel->mapToSource(index).row()); } - qStableSort(rows_to_remove); + std::stable_sort(rows_to_remove.begin(), rows_to_remove.end()); int prev_row = -1; for(int i = rows_to_remove.count() - 1; i >= 0; i -= 1 ) { diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts index e5c53d93b..4cc86218e 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts index 7f0910d7f..e03567c12 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Modul prohlížeče proudů - + About Stream Browser Plugin O modulu prohlížeče proudů - + Qmmp Stream Browser Plugin Modul Qmmp na prohlížení proudů - + This plugin allows one to add stream from IceCast stream directory Tento modul umožňuje přidat proud z adresáře proudů IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Aktualizovat - - + + Name Název - - + + Genre Žánr - - + + Bitrate Datový tok - - + + Format Formát - + &Add to favorites Přidat k &oblíbeným - + &Add to playlist Přidat do &seznamu - + &Remove Odst&ranit - + Done Hotovo - + Error Chyba - + Receiving Příjímám diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts index 846526a62..d5d3f4019 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Stream-Browser-Modul - + About Stream Browser Plugin Über Stream-Browser-Modul - + Qmmp Stream Browser Plugin Qmmp Stream-Browser-Modul - + This plugin allows one to add stream from IceCast stream directory Dieses Modul ermöglicht das Hinzufügen von Streams aus dem IceCast-Streamverzeichnis - + Written by: Ilya Kotov <forkotov02@ya.ru> Geschrieben von: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Aktualisieren - - + + Name Name - - + + Genre Genre - - + + Bitrate Bitrate - - + + Format Format - + &Add to favorites Zu &den Favoriten hinzufügen - + &Add to playlist Zu&r Wiedergabeliste hinzufügen - + &Remove &Entfernen - + Done Fertig - + Error Fehler - + Receiving Daten werden empfangen diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts index 564286b6f..d4bb33bba 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Πρόσθετο περιηγητή ροών - + About Stream Browser Plugin Σχετικά με το πρόσθετο περιηγητή ροών - + Qmmp Stream Browser Plugin Qmmp πρόσθετο περιηγητή ροών - + This plugin allows one to add stream from IceCast stream directory Αυτό το πρόσθετο επιτρέπει την προσθήκη μιας ροής από τον κατάλογο ροών του IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru> @@ -75,57 +75,57 @@ Ενημέρωση - - + + Name Όνομα - - + + Genre Είδος - - + + Bitrate Ρυθμός bit - - + + Format Μορφή - + &Add to favorites &Προσθήκη στα προτιμώμενα - + &Add to playlist Προσθήκη στη &λίστα αναπαραγωγής - + &Remove &Αφαίρεση - + Done Έγινε - + Error Σφάλμα - + Receiving Γίνεται λήψη diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts index 63aaea510..597d77e9a 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts index eb8b3d229..fe64c5521 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Módulo Navegador de Flujos - + About Stream Browser Plugin Acerca de el Módulo Navegador de Flujos de Qmmp - + Qmmp Stream Browser Plugin Módulo Navegador de Flujos de Qmmp - + This plugin allows one to add stream from IceCast stream directory Este módulo permite a uno añadir flujos desde directorio de flujos de IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> Escrito por: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Actualizar - - + + Name Nombre - - + + Genre Género - - + + Bitrate Tasa de bits - - + + Format Formato - + &Add to favorites &Añadir a favoritos - + &Add to playlist &Añadir a lista de reproducción - + &Remove Quita&r - + Done Hecho - + Error Error - + Receiving Recibiendo diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts index d0450093c..cbda1558d 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> Toteuttanut: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Päivitä - - + + Name Nimi - - + + Genre Tyylilaji - - + + Bitrate Bittinopeus - - + + Format - + &Add to favorites &Lisää suosikkeihin - + &Add to playlist &Lisää soittolistaan - + &Remove Poi&sta - + Done Valmis - + Error Virhe - + Receiving Vastaanotetaan diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts index ae6ec52ca..5292fec47 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Greffon de navigation de flux - + About Stream Browser Plugin À propos du greffon de navigation de flux - + Qmmp Stream Browser Plugin Greffon de navigation de flux pour Qmmp - + This plugin allows one to add stream from IceCast stream directory Ce greffon permet d'ajouter un flux depuis un annuaire de flux IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> Écrit par : Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Mettre à jour - - + + Name Nom - - + + Genre Genre - - + + Bitrate Débit binaire - - + + Format Format - + &Add to favorites &Ajouter aux favoris - + &Add to playlist Ajouter à la liste - + &Remove &Enlever - + Done Fait - + Error Erreur - + Receiving Réception diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts index 4146f450c..033d6732b 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Engadido de buscador de fluxos - + About Stream Browser Plugin Sobre o engadido buscador de fluxos - + Qmmp Stream Browser Plugin Engadido buscador de fluxos de Qmmp - + This plugin allows one to add stream from IceCast stream directory Este engadido permite engadir fluxos dende o directorio de fluxos de IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Actualizar - - + + Name Nome - - + + Genre Xénero - - + + Bitrate Taxa de bits - - + + Format Formato - + &Add to favorites &Engadir a favoritos - + &Add to playlist &Engadir á lista de reprodución - + &Remove &Eliminar - + Done Feito - + Error Erro - + Receiving Recibindo diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts index b10cc7858..61bff4b74 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin תוסף Stream Browser - + About Stream Browser Plugin אודות תוסף Stream Browser - + Qmmp Stream Browser Plugin תוסף Stream Browser של Qmmp - + This plugin allows one to add stream from IceCast stream directory תוסף זה מתיר לך להוסיף זרם מתוך ספריית זרם IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ עדכן - - + + Name שם - - + + Genre ז׳אנר - - + + Bitrate שיעור סיביות - - + + Format פורמט - + &Add to favorites הוסף אל &מועדפים - + &Add to playlist הוסף אל &רשימת נגינה - + &Remove הס&ר - + Done סיום - + Error שגיאה - + Receiving קבלה diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts index 8ab7dcc29..0d80b659f 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts index 25295cbf7..1b71aa323 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Plugin Browser Stream - + About Stream Browser Plugin Tentang Browser Stream - + Qmmp Stream Browser Plugin Plugin Browser Stream Qmmp - + This plugin allows one to add stream from IceCast stream directory Plugin ini membolehkan untuk menambahkan stream dari direktori stream IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Perbarui - - + + Name Nama - - + + Genre Genre - - + + Bitrate Bitrate - - + + Format Format - + &Add to favorites &Tambah ke favorit - + &Add to playlist &Tambah ke daftarmain - + &Remove &Buang - + Done Kelar - + Error Galat - + Receiving Menerima diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts index f0fa53004..61f7533f8 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> Autore: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving Ricezione diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts index a543bcab9..5ef9726b1 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin ストリームブラウザープラグイン - + About Stream Browser Plugin ストリームブラウザープラグインについて - + Qmmp Stream Browser Plugin QMMP ストリームブラウザープラグイン - + This plugin allows one to add stream from IceCast stream directory このプラグインで IceCast ストリームディレクトリーからストリームの取り込みが可能になります - + Written by: Ilya Kotov <forkotov02@ya.ru> 制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru> @@ -75,57 +75,57 @@ 更新 - - + + Name 局名 - - + + Genre ジャンル - - + + Bitrate ビットレート - - + + Format 形式 - + &Add to favorites お気にいりに追加(&A) - + &Add to playlist プレイリストに追加(&P) - + &Remove 削除(&R) - + Done 完了 - + Error 事故 - + Receiving 取得中 diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts index 7fd931b9f..1a3f72c0a 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts index 200a88d5d..eb1062f5e 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Srautų naršyklės įskiepis - + About Stream Browser Plugin Apie srautų naršyklės įskiepį - + Qmmp Stream Browser Plugin Qmmp srautų naršyklės įskiepis - + This plugin allows one to add stream from IceCast stream directory Šis įskiepis leidžia įdėti IceCast srautus į grojaraštį - + Written by: Ilya Kotov <forkotov02@ya.ru> Sukūrė: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Atnaujinti - - + + Name Pavadinimas - - + + Genre Žanras - - + + Bitrate Kokybė - - + + Format Formatas - + &Add to favorites &Įkelti į mėgstamus - + &Add to playlist &Įkelti į grojaraštį - + &Remove &Pašalinti - + Done Atlikta - + Error Klaida - + Receiving Gaunu diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts index 4310ffd34..62ad67421 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Radio Navigator Module - + About Stream Browser Plugin Over de Radio Navigator Module - + Qmmp Stream Browser Plugin Radio Navigator Module voor Qmmp - + This plugin allows one to add stream from IceCast stream directory Deze module faciliteert in het toevoegen van radiostations uit de IceCast verzameling - + Written by: Ilya Kotov <forkotov02@ya.ru> Auteur: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Bijwerken - - + + Name Naam - - + + Genre - - + + Bitrate Bitsnelheid - - + + Format Formaat - + &Add to favorites &Voeg toe aan favorieten - + &Add to playlist &Voeg toe aan afspeellijst - + &Remove &Verwijder - + Done Klaar - + Error Fout - + Receiving Bezig met ontvangen diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts index 28b580aec..8b7f74c82 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Wtyczka Przeglądarka strumieni - + About Stream Browser Plugin O wtyczce Przeglądarka strumieni - + Qmmp Stream Browser Plugin Wtyczka Qmmp Przeglądarka strumieni - + This plugin allows one to add stream from IceCast stream directory Ta wtyczka pozwala dodawać strumienie z katalogu strumieni IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Aktualizuj - - + + Name Nazwa - - + + Genre Gatunek - - + + Bitrate Przepływność - - + + Format Format - + &Add to favorites &Dodaj do ulubionych - + &Add to playlist &Dodaj do listy odtwarzania - + &Remove &Usuń - + Done Gotowe - + Error Błąd - + Receiving Pobieranie diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts index 29a2fe263..04a186d2b 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Suplemento Stream Browser - + About Stream Browser Plugin Sobre o suplemento Stream Browser - + Qmmp Stream Browser Plugin Suplemento Qmmp Stream Browser - + This plugin allows one to add stream from IceCast stream directory Este suplemento permite a adição de emissões do diretório Icecast - + Written by: Ilya Kotov <forkotov02@ya.ru> Desenvolvido por: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Atualizar - - + + Name Nome - - + + Genre Género - - + + Bitrate Taxa de dados - - + + Format Formato - + &Add to favorites &Adicionar às favoritas - + &Add to playlist A&dicionar à lista de reprodução - + &Remove &Remover - + Done Terminado - + Error Erro - + Receiving Receção diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts index c7ff4bd4c..26b53599c 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Plugin Stream Browser - + About Stream Browser Plugin Sobre o plugin Stream Browser - + Qmmp Stream Browser Plugin Plugin Qmmp Stream Browser - + This plugin allows one to add stream from IceCast stream directory Este plugin permite a adição de transmissões do diretório Icecast - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Atualizar - - + + Name Nome - - + + Genre Gênero - - + + Bitrate Taxa de dados - - + + Format Formato - + &Add to favorites &Adicionar às favoritas - + &Add to playlist A&dicionar à lista de reprodução - + &Remove &Remover - + Done Terminado - + Error Erro - + Receiving Recebendo diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts index f2810c7d2..3ee46de9f 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Модуль обзора потоков - + About Stream Browser Plugin О модуле обзора потоков - + Qmmp Stream Browser Plugin Модуль обзора потоков для Qmmp - + This plugin allows one to add stream from IceCast stream directory Этот модуль предназначен для добавления потоков из директории IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> Разработчик: Илья Котов <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Обновить - - + + Name Имя - - + + Genre Жанр - - + + Bitrate Битовая частота - - + + Format Формат - + &Add to favorites &Добавить в избранное - + &Add to playlist &Добавить в список воспроизведения - + &Remove &Удалить - + Done Готово - + Error Ошибка - + Receiving Получение diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts index 154eaa945..36cbdcbbd 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts index a92e27eac..924cb4ea8 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Прегледач токова - + About Stream Browser Plugin О прегледачу токова - + Qmmp Stream Browser Plugin Кумп прегледач токова - + This plugin allows one to add stream from IceCast stream directory Функција додавања токова са АјсКаст директоријума токова - + Written by: Ilya Kotov <forkotov02@ya.ru> Аутор: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Ажурирај - - + + Name име - - + + Genre жанр - - + + Bitrate битски проток - - + + Format формат - + &Add to favorites Додај у &омиљене - + &Add to playlist Додај у &листу нумера - + &Remove &Уклони - + Done Завршено - + Error Грешка - + Receiving Примање diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts index 2ca3fee7f..cf25e7ee2 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Прегледач токова - + About Stream Browser Plugin О прегледачу токова - + Qmmp Stream Browser Plugin Кумп прегледач токова - + This plugin allows one to add stream from IceCast stream directory Функција додавања токова са АјсКаст директоријума токова - + Written by: Ilya Kotov <forkotov02@ya.ru> Аутор: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Ажурирај - - + + Name име - - + + Genre жанр - - + + Bitrate битски проток - - + + Format формат - + &Add to favorites Додај у &омиљене - + &Add to playlist Додај у &листу нумера - + &Remove &Уклони - + Done Завршено - + Error Грешка - + Receiving Примање diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts index 4a403e653..1d27f5354 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> Yazan: Ilya Kotov <forkotov02@ya.ru> @@ -74,58 +74,58 @@ Update - - - - Name - - - Genre + Name - Bitrate + Genre + Bitrate + + + + + Format - + &Add to favorites - + &Add to playlist - + &Remove - + Done - + Error - + Receiving Alınıyor diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts index c768227dc..77e36a667 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin Модуль огляду потоків - + About Stream Browser Plugin Про модуль огляду потоків - + Qmmp Stream Browser Plugin Модуль огляду потоків для Qmmp - + This plugin allows one to add stream from IceCast stream directory Цей модуль дозволяє додавати потоки з каталогу IceCast - + Written by: Ilya Kotov <forkotov02@ya.ru> Розробник: Ілля Котов <forkotov02@ya.ru> @@ -75,57 +75,57 @@ Оновити - - + + Name Ім'я - - + + Genre Жанр - - + + Bitrate Бітрейт - - + + Format Формат - + &Add to favorites &Додати до вибраного - + &Add to playlist &Додати до списку - + &Remove &Видалити - + Done Готово - + Error Помилка - + Receiving Отримання diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts index b8509bbf7..93cde669d 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin 媒体流浏览器插件 - + About Stream Browser Plugin 关于媒体流浏览器插件 - + Qmmp Stream Browser Plugin Qmmp媒体流浏览器插件 - + This plugin allows one to add stream from IceCast stream directory 此插件允许从IceCast媒体流文件夹向Qmmp中添加媒体流 - + Written by: Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ 更新 - - + + Name 名称 - - + + Genre 风格 - - + + Bitrate 比特率 - - + + Format 格式 - + &Add to favorites 添加到最爱清单(&A) - + &Add to playlist 添加到播放列表中(&A) - + &Remove 移除(&R) - + Done 完成 - + Error 错误 - + Receiving 接收中 diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts index fa942d7c8..15ca48b85 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts @@ -17,27 +17,27 @@ StreamBrowserFactory - + Stream Browser Plugin - + About Stream Browser Plugin - + Qmmp Stream Browser Plugin - + This plugin allows one to add stream from IceCast stream directory - + Written by: Ilya Kotov <forkotov02@ya.ru> 作者:Ilya Kotov <forkotov02@ya.ru> @@ -75,57 +75,57 @@ - - + + Name 名稱 - - + + Genre 流派 - - + + Bitrate 比特率 - - + + Format 格式 - + &Add to favorites - + &Add to playlist - + &Remove - + Done 完成 - + Error 錯誤 - + Receiving 接受 -- cgit v1.2.3-13-gbd6f