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/hal/CMakeLists.txt | 21 +++------------------ src/plugins/General/hal/halfactory.cpp | 7 ++----- src/plugins/General/hal/halfactory.h | 1 + .../General/hal/translations/hal_plugin_bg.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_cs.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_de.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_el.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_en.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_es.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_fi.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_fr.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_gl_ES.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_he.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_hu.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_id.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_it.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_ja.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_kk.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_lt.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_nl.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_pl_PL.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_pt.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_pt_BR.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_ru.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_sk.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_sr_BA.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_sr_RS.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_tr.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_uk_UA.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_zh_CN.ts | 12 ++++++------ .../General/hal/translations/hal_plugin_zh_TW.ts | 12 ++++++------ 31 files changed, 174 insertions(+), 191 deletions(-) (limited to 'src/plugins/General/hal') diff --git a/src/plugins/General/hal/CMakeLists.txt b/src/plugins/General/hal/CMakeLists.txt index 0ed5eb996..d6f786962 100644 --- a/src/plugins/General/hal/CMakeLists.txt +++ b/src/plugins/General/hal/CMakeLists.txt @@ -1,20 +1,5 @@ project(libhal) - -SET (QT_USE_QTDBUS 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}) # libqmmpui & libqmmp @@ -32,7 +17,7 @@ SET(libhal_SRCS SET(libhal_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libhal_RCC_SRCS ${libhal_RCCS}) +QT5_ADD_RESOURCES(libhal_RCC_SRCS ${libhal_RCCS}) # user interface @@ -40,12 +25,12 @@ SET(libhal_UIS settingsdialog.ui ) -QT4_WRAP_UI(libhal_UIS_H ${libhal_UIS}) +QT5_WRAP_UI(libhal_UIS_H ${libhal_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(hal MODULE ${libhal_SRCS} ${libhal_UIS_H} ${libhal_RCC_SRCS}) add_dependencies(hal qmmpui) -target_link_libraries(hal ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(hal Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp) install(TARGETS hal DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/hal/halfactory.cpp b/src/plugins/General/hal/halfactory.cpp index f28207645..cbdd0d825 100644 --- a/src/plugins/General/hal/halfactory.cpp +++ b/src/plugins/General/hal/halfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-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 #include "settingsdialog.h" #include "halplugin.h" @@ -63,5 +62,3 @@ QTranslator *HalFactory::createTranslator(QObject *parent) translator->load(QString(":/hal_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(hal, HalFactory) diff --git a/src/plugins/General/hal/halfactory.h b/src/plugins/General/hal/halfactory.h index 1a78b7e25..02c063993 100644 --- a/src/plugins/General/hal/halfactory.h +++ b/src/plugins/General/hal/halfactory.h @@ -32,6 +32,7 @@ class HalFactory : 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/hal/translations/hal_plugin_bg.ts b/src/plugins/General/hal/translations/hal_plugin_bg.ts index a9f991fe9..dddaac30d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_bg.ts +++ b/src/plugins/General/hal/translations/hal_plugin_bg.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin - + About HAL Plugin - + Qmmp HAL Plugin - + This plugin provides removable devices detection using HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) diff --git a/src/plugins/General/hal/translations/hal_plugin_cs.ts b/src/plugins/General/hal/translations/hal_plugin_cs.ts index c60b36002..1f28066c8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_cs.ts +++ b/src/plugins/General/hal/translations/hal_plugin_cs.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Modul HAL - + About HAL Plugin O modulu HAL - + Qmmp HAL Plugin Modul Qmmp HAL - + This plugin provides removable devices detection using HAL Tento modul umožňuje detekci odpojitelných zařízení prostřednictvím HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Založeno na Solid (knihovna KDE pro hardware) diff --git a/src/plugins/General/hal/translations/hal_plugin_de.ts b/src/plugins/General/hal/translations/hal_plugin_de.ts index f73ab613d..62cf2c6a7 100644 --- a/src/plugins/General/hal/translations/hal_plugin_de.ts +++ b/src/plugins/General/hal/translations/hal_plugin_de.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL-Modul - + About HAL Plugin Über HAL-Modul - + Qmmp HAL Plugin Qmmp HAL-Modul - + This plugin provides removable devices detection using HAL Dieses Modul bietet Wechsellaufwerkerkennung unter Verwendung von HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Geschrieben von: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Basiert auf Solid (KDE Hardware-Bibliothek) diff --git a/src/plugins/General/hal/translations/hal_plugin_el.ts b/src/plugins/General/hal/translations/hal_plugin_el.ts index c9cf9935e..236863f5c 100644 --- a/src/plugins/General/hal/translations/hal_plugin_el.ts +++ b/src/plugins/General/hal/translations/hal_plugin_el.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Πρόσθετο HAL - + About HAL Plugin Σχετικά με το πρόσθετο HAL - + Qmmp HAL Plugin Qmmp πρόσθετο HAL - + This plugin provides removable devices detection using HAL Αυτό το πρόσθετο παρέχει την ανίχνευση των αφαιρούμενων συσκευών μέσω του HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru> - + Based on Solid (KDE hardware library) Βασίζεται στο Solid (Βιβλιοθήκη υλικού του KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_en.ts b/src/plugins/General/hal/translations/hal_plugin_en.ts index 3e3a33e99..5a30c027d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_en.ts +++ b/src/plugins/General/hal/translations/hal_plugin_en.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin - + About HAL Plugin - + Qmmp HAL Plugin - + This plugin provides removable devices detection using HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) diff --git a/src/plugins/General/hal/translations/hal_plugin_es.ts b/src/plugins/General/hal/translations/hal_plugin_es.ts index 394856189..102c88965 100644 --- a/src/plugins/General/hal/translations/hal_plugin_es.ts +++ b/src/plugins/General/hal/translations/hal_plugin_es.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Módulo HAL - + About HAL Plugin Acerca del módulo HAL - + Qmmp HAL Plugin Módulo HAL para Qmmp - + This plugin provides removable devices detection using HAL Este módulo proporciona detección de dispositivos extraibles mediante HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Escrito por: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Basado en Solid (librería de hardware KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_fi.ts b/src/plugins/General/hal/translations/hal_plugin_fi.ts index b9ff9f39f..095de115f 100644 --- a/src/plugins/General/hal/translations/hal_plugin_fi.ts +++ b/src/plugins/General/hal/translations/hal_plugin_fi.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL-liitännäinen - + About HAL Plugin - + Qmmp HAL Plugin Qmmp:n HAL-liitännäinen - + This plugin provides removable devices detection using HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Toteuttanut: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) diff --git a/src/plugins/General/hal/translations/hal_plugin_fr.ts b/src/plugins/General/hal/translations/hal_plugin_fr.ts index a3badfe75..a265aff6c 100644 --- a/src/plugins/General/hal/translations/hal_plugin_fr.ts +++ b/src/plugins/General/hal/translations/hal_plugin_fr.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Greffon HAL - + About HAL Plugin À propos du greffon HAL - + Qmmp HAL Plugin Greffon HAL pour Qmmp - + This plugin provides removable devices detection using HAL Ce greffon fournit une détection de périphériques amovibles en utilisant HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Écrit par : Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Basé sur Solid (bibliothèque matérielle KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts b/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts index dfce0774e..dce0b5a33 100644 --- a/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts +++ b/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Engadido HAL - + About HAL Plugin Sobre engadido HAL - + Qmmp HAL Plugin Engadido Qmmp HAL - + This plugin provides removable devices detection using HAL Este engadido provén detección de dispositivos extraíbles usando HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Baseado en Solid (librería hardware KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_he.ts b/src/plugins/General/hal/translations/hal_plugin_he.ts index c5a9205a6..de1cdf012 100644 --- a/src/plugins/General/hal/translations/hal_plugin_he.ts +++ b/src/plugins/General/hal/translations/hal_plugin_he.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin תוסף HAL - + About HAL Plugin אודות תוסף HAL - + Qmmp HAL Plugin תוסף HAL של Qmmp - + This plugin provides removable devices detection using HAL תוסף זה מספק איתור של התקנים נשלפים באמצעות HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) מבוססת על Solid (ספריית קושחה של KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_hu.ts b/src/plugins/General/hal/translations/hal_plugin_hu.ts index 9600266c9..14878f981 100644 --- a/src/plugins/General/hal/translations/hal_plugin_hu.ts +++ b/src/plugins/General/hal/translations/hal_plugin_hu.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin - + About HAL Plugin - + Qmmp HAL Plugin - + This plugin provides removable devices detection using HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) diff --git a/src/plugins/General/hal/translations/hal_plugin_id.ts b/src/plugins/General/hal/translations/hal_plugin_id.ts index 33e66fef7..dc6612b61 100644 --- a/src/plugins/General/hal/translations/hal_plugin_id.ts +++ b/src/plugins/General/hal/translations/hal_plugin_id.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Plugin HAL - + About HAL Plugin Tentang Plugin HAL - + Qmmp HAL Plugin Plugin HAL Qmmp - + This plugin provides removable devices detection using HAL Plugin ini menyediakan deteksi perangkat dapat-dilepas menggunakan HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Berdasarkan pada Solid (pustaka hardware KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_it.ts b/src/plugins/General/hal/translations/hal_plugin_it.ts index e1b974362..8ea018ac5 100644 --- a/src/plugins/General/hal/translations/hal_plugin_it.ts +++ b/src/plugins/General/hal/translations/hal_plugin_it.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Modulo HAL - + About HAL Plugin Info sul modulo HAL - + Qmmp HAL Plugin Modulo HAL per Qmmp - + This plugin provides removable devices detection using HAL Modulo che permette il rilevamento di dispositivi rimovibili utilizzando HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Autore: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Basato su Solid (libreria hardware KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_ja.ts b/src/plugins/General/hal/translations/hal_plugin_ja.ts index 4db80dd2e..68129193d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_ja.ts +++ b/src/plugins/General/hal/translations/hal_plugin_ja.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL プラグイン - + About HAL Plugin HAL プラグインについて - + Qmmp HAL Plugin QMMP HAL プラグイン - + This plugin provides removable devices detection using HAL このプラグインは着脱可能なデバイスの検知機能を HAL によって提供します - + Written by: Ilya Kotov <forkotov02@ya.ru> 制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Solid (KDE ハードウェアライブラリ) を基に作成 diff --git a/src/plugins/General/hal/translations/hal_plugin_kk.ts b/src/plugins/General/hal/translations/hal_plugin_kk.ts index 4cbf7df9e..c6e959023 100644 --- a/src/plugins/General/hal/translations/hal_plugin_kk.ts +++ b/src/plugins/General/hal/translations/hal_plugin_kk.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin - + About HAL Plugin - + Qmmp HAL Plugin - + This plugin provides removable devices detection using HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) diff --git a/src/plugins/General/hal/translations/hal_plugin_lt.ts b/src/plugins/General/hal/translations/hal_plugin_lt.ts index 6cbe1ca01..5162bd0d6 100644 --- a/src/plugins/General/hal/translations/hal_plugin_lt.ts +++ b/src/plugins/General/hal/translations/hal_plugin_lt.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL įskiepis - + About HAL Plugin Apie HAL įskiepį - + Qmmp HAL Plugin qmmp HAL įskiepis - + This plugin provides removable devices detection using HAL Šis įskiepis atlieka išorinių prijungiamų įrenginių aptikimą naudojant HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Sukūrė: Ilya Kotov - + Based on Solid (KDE hardware library) Sukurta Solid pagrindu (KDE biblioteka) diff --git a/src/plugins/General/hal/translations/hal_plugin_nl.ts b/src/plugins/General/hal/translations/hal_plugin_nl.ts index 0c3ccfbbb..bb5b72eef 100644 --- a/src/plugins/General/hal/translations/hal_plugin_nl.ts +++ b/src/plugins/General/hal/translations/hal_plugin_nl.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL Module - + About HAL Plugin Over de HAL Module - + Qmmp HAL Plugin HAL Module voor Qmmp - + This plugin provides removable devices detection using HAL Deze module faciliteert detectie van verwisselbare apparaten, gebruikmakend van HAL (Verouderd, gebruik UDisks module) - + Written by: Ilya Kotov <forkotov02@ya.ru> Auteur: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Gebasseerd op Solid (KDE hardware bibliotheek) diff --git a/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts b/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts index 30aca83ac..c82edcfe8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts +++ b/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Wtyczka HAL - + About HAL Plugin O wtyczce HAL - + Qmmp HAL Plugin Wtyczka HAL dla Qmmp - + This plugin provides removable devices detection using HAL Ta wtyczka umożliwia detekcję urządzeń przenośnych dzięki HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Oparte na Solid (biblioteka urządzeń dla KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_pt.ts b/src/plugins/General/hal/translations/hal_plugin_pt.ts index db1defafa..1288ad2cc 100644 --- a/src/plugins/General/hal/translations/hal_plugin_pt.ts +++ b/src/plugins/General/hal/translations/hal_plugin_pt.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Suplemento HAL - + About HAL Plugin Sobre o suplemento HAL - + Qmmp HAL Plugin Suplemento Qmmp HAL - + This plugin provides removable devices detection using HAL Este suplemento permite a deteção de discos amovíveis através do serviço HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Desenvolvido por: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Baseado no Solid (biblioteca do KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts b/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts index 7726b5449..396d4c0b8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts +++ b/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Plugin HAL - + About HAL Plugin Sobre o plugin HAL - + Qmmp HAL Plugin Plugin Qmmp HAL - + This plugin provides removable devices detection using HAL Este plugin permite a detecção de dispositivos removíveis através do serviço HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Baseado no Solid (biblioteca do KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_ru.ts b/src/plugins/General/hal/translations/hal_plugin_ru.ts index 6e4a552b4..fa74fa422 100644 --- a/src/plugins/General/hal/translations/hal_plugin_ru.ts +++ b/src/plugins/General/hal/translations/hal_plugin_ru.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Модуль HAL - + About HAL Plugin О Модуле HAL - + Qmmp HAL Plugin Модуль HAL для Qmmp - + This plugin provides removable devices detection using HAL Этот модуль отслеживает съёмные устройства с помощью HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Разработчик: Илья Котов <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Основан на базе Solid (библиотека KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_sk.ts b/src/plugins/General/hal/translations/hal_plugin_sk.ts index 21c5771c5..82a8531e7 100644 --- a/src/plugins/General/hal/translations/hal_plugin_sk.ts +++ b/src/plugins/General/hal/translations/hal_plugin_sk.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin - + About HAL Plugin - + Qmmp HAL Plugin - + This plugin provides removable devices detection using HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) diff --git a/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts b/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts index 0f263b198..fc686c047 100644 --- a/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts +++ b/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin ХАЛ - + About HAL Plugin О прикључку за ХАЛ - + Qmmp HAL Plugin Кумп прикључак за ХАЛ - + This plugin provides removable devices detection using HAL Омогућује откривање уклоњивих уређаја користећи ХАЛ - + Written by: Ilya Kotov <forkotov02@ya.ru> Аутор: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Заснован на Солиду (КДЕ-овој библиотеци) diff --git a/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts b/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts index bf117ebb3..955c69c7d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts +++ b/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin ХАЛ - + About HAL Plugin О прикључку за ХАЛ - + Qmmp HAL Plugin Кумп прикључак за ХАЛ - + This plugin provides removable devices detection using HAL Омогућује откривање уклоњивих уређаја користећи ХАЛ - + Written by: Ilya Kotov <forkotov02@ya.ru> Аутор: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Заснован на Солиду (КДЕ-овој библиотеци) diff --git a/src/plugins/General/hal/translations/hal_plugin_tr.ts b/src/plugins/General/hal/translations/hal_plugin_tr.ts index 757797614..0e4339d04 100644 --- a/src/plugins/General/hal/translations/hal_plugin_tr.ts +++ b/src/plugins/General/hal/translations/hal_plugin_tr.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL Eklentisi - + About HAL Plugin HAL Eklentisi Hakkında - + Qmmp HAL Plugin Qmmp HAL Eklentisi - + This plugin provides removable devices detection using HAL Bu eklenti HAL kullanarak çıkarılabilir aygıtların tanınmasını sağlar - + Written by: Ilya Kotov <forkotov02@ya.ru> Yazan: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Solid (KDE donanım kitaplığı) temellidir diff --git a/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts b/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts index 4ccb1535f..00fdf1ec6 100644 --- a/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts +++ b/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin Модуль HAL - + About HAL Plugin Про модуль HAL - + Qmmp HAL Plugin Модуль HAL для Qmmp - + This plugin provides removable devices detection using HAL Цей модуль відстежує з'ємні пристрої за допомогою HAL - + Written by: Ilya Kotov <forkotov02@ya.ru> Розробник: Ілля Котов <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) Базується на базі Solid (бібліотека KDE) diff --git a/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts b/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts index 730ade340..f30201fd8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts +++ b/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL 插件 - + About HAL Plugin 关于 HAL 插件 - + Qmmp HAL Plugin Qmmp HAL 插件 - + This plugin provides removable devices detection using HAL 此插件利用 HAL 提供可移动设备的检测 - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) 基于 Solid (KDE 硬件库) diff --git a/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts b/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts index ab0da5153..9eb86eb1b 100644 --- a/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts +++ b/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts @@ -4,32 +4,32 @@ HalFactory - + HAL Plugin HAL 外掛 - + About HAL Plugin 關於 HAL 外掛 - + Qmmp HAL Plugin Qmmp HAL 外掛 - + This plugin provides removable devices detection using HAL 此插件利用 HAL 提供可移動設備的檢測 - + Written by: Ilya Kotov <forkotov02@ya.ru> 作者:Ilya Kotov <forkotov02@ya.ru> - + Based on Solid (KDE hardware library) 基於 Solid (KDE 硬件程式庫) -- cgit v1.2.3-13-gbd6f