From 1a13270970c4194a0f3c306c0a9bb8e72e42c1fd Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 7 Jan 2021 17:49:56 +0000 Subject: updated cmake files git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9619 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/library/CMakeLists.txt | 35 +++++++++ src/plugins/General/library/library.pro | 2 +- .../library/translations/library_plugin_bg.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_cs.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_de.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_el.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_en.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_es.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_fi.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_fr.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_gl_ES.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_he.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_hu.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_id.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_it.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_ja.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_kk.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_lt.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_nl.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_pl_PL.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_pt.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_pt_BR.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_ru.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_sk.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_sr_BA.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_sr_RS.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_tr.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_uk_UA.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_zh_CN.ts | 89 ++++++++++++++++++++++ .../library/translations/library_plugin_zh_TW.ts | 89 ++++++++++++++++++++++ .../General/library/translations/translations.qrc | 32 ++++++++ 31 files changed, 2560 insertions(+), 1 deletion(-) create mode 100644 src/plugins/General/library/CMakeLists.txt create mode 100644 src/plugins/General/library/translations/library_plugin_bg.ts create mode 100644 src/plugins/General/library/translations/library_plugin_cs.ts create mode 100644 src/plugins/General/library/translations/library_plugin_de.ts create mode 100644 src/plugins/General/library/translations/library_plugin_el.ts create mode 100644 src/plugins/General/library/translations/library_plugin_en.ts create mode 100644 src/plugins/General/library/translations/library_plugin_es.ts create mode 100644 src/plugins/General/library/translations/library_plugin_fi.ts create mode 100644 src/plugins/General/library/translations/library_plugin_fr.ts create mode 100644 src/plugins/General/library/translations/library_plugin_gl_ES.ts create mode 100644 src/plugins/General/library/translations/library_plugin_he.ts create mode 100644 src/plugins/General/library/translations/library_plugin_hu.ts create mode 100644 src/plugins/General/library/translations/library_plugin_id.ts create mode 100644 src/plugins/General/library/translations/library_plugin_it.ts create mode 100644 src/plugins/General/library/translations/library_plugin_ja.ts create mode 100644 src/plugins/General/library/translations/library_plugin_kk.ts create mode 100644 src/plugins/General/library/translations/library_plugin_lt.ts create mode 100644 src/plugins/General/library/translations/library_plugin_nl.ts create mode 100644 src/plugins/General/library/translations/library_plugin_pl_PL.ts create mode 100644 src/plugins/General/library/translations/library_plugin_pt.ts create mode 100644 src/plugins/General/library/translations/library_plugin_pt_BR.ts create mode 100644 src/plugins/General/library/translations/library_plugin_ru.ts create mode 100644 src/plugins/General/library/translations/library_plugin_sk.ts create mode 100644 src/plugins/General/library/translations/library_plugin_sr_BA.ts create mode 100644 src/plugins/General/library/translations/library_plugin_sr_RS.ts create mode 100644 src/plugins/General/library/translations/library_plugin_tr.ts create mode 100644 src/plugins/General/library/translations/library_plugin_uk_UA.ts create mode 100644 src/plugins/General/library/translations/library_plugin_zh_CN.ts create mode 100644 src/plugins/General/library/translations/library_plugin_zh_TW.ts create mode 100644 src/plugins/General/library/translations/translations.qrc (limited to 'src/plugins/General/library') diff --git a/src/plugins/General/library/CMakeLists.txt b/src/plugins/General/library/CMakeLists.txt new file mode 100644 index 000000000..bcc9f3e70 --- /dev/null +++ b/src/plugins/General/library/CMakeLists.txt @@ -0,0 +1,35 @@ +project(liblibrary) + +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +# libqmmpui & libqmmp +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) +link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) +link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) + +SET(liblibrary_SRCS + library.cpp + libraryfactory.cpp + librarymodel.cpp + librarywidget.cpp + settingsdialog.cpp +) + +SET(liblibrary_RCCS translations/translations.qrc) + +QT5_ADD_RESOURCES(liblibrary_RCC_SRCS ${liblibrary_RCCS}) + +# user interface +SET(liblibrary_UIS + librarywidget.ui + settingsdialog.ui +) + +QT5_WRAP_UI(liblibrary_UIS_H ${liblibrary_UIS}) +# Don't forget to include output directory, otherwise +# the UI file won't be wrapped! +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +ADD_LIBRARY(library MODULE ${liblibrary_SRCS} ${liblibrary_UIS_H} ${liblibrary_RCC_SRCS}) +target_link_libraries(library Qt5::Widgets Qt5::Sql Qt5::Concurrent libqmmpui libqmmp) +install(TARGETS library DESTINATION ${PLUGIN_DIR}/General) diff --git a/src/plugins/General/library/library.pro b/src/plugins/General/library/library.pro index a9fe54802..8655a9cc3 100644 --- a/src/plugins/General/library/library.pro +++ b/src/plugins/General/library/library.pro @@ -17,7 +17,7 @@ SOURCES += libraryfactory.cpp \ librarymodel.cpp -#RESOURCES = translations/translations.qrc +RESOURCES = translations/translations.qrc LIBS += $$QMMPUI_LIB diff --git a/src/plugins/General/library/translations/library_plugin_bg.ts b/src/plugins/General/library/translations/library_plugin_bg.ts new file mode 100644 index 000000000..d1b06a811 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_bg.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_cs.ts b/src/plugins/General/library/translations/library_plugin_cs.ts new file mode 100644 index 000000000..a8d05d793 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_cs.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_de.ts b/src/plugins/General/library/translations/library_plugin_de.ts new file mode 100644 index 000000000..da7c42fed --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_de.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_el.ts b/src/plugins/General/library/translations/library_plugin_el.ts new file mode 100644 index 000000000..3ccbcc1ac --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_el.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_en.ts b/src/plugins/General/library/translations/library_plugin_en.ts new file mode 100644 index 000000000..1adf7e27e --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_en.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_es.ts b/src/plugins/General/library/translations/library_plugin_es.ts new file mode 100644 index 000000000..8f5320126 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_es.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_fi.ts b/src/plugins/General/library/translations/library_plugin_fi.ts new file mode 100644 index 000000000..74cfbad3b --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_fi.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_fr.ts b/src/plugins/General/library/translations/library_plugin_fr.ts new file mode 100644 index 000000000..90221adbf --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_fr.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_gl_ES.ts b/src/plugins/General/library/translations/library_plugin_gl_ES.ts new file mode 100644 index 000000000..702ae6eea --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_gl_ES.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_he.ts b/src/plugins/General/library/translations/library_plugin_he.ts new file mode 100644 index 000000000..bf360b76e --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_he.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_hu.ts b/src/plugins/General/library/translations/library_plugin_hu.ts new file mode 100644 index 000000000..540ef1376 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_hu.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_id.ts b/src/plugins/General/library/translations/library_plugin_id.ts new file mode 100644 index 000000000..e3793b36e --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_id.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_it.ts b/src/plugins/General/library/translations/library_plugin_it.ts new file mode 100644 index 000000000..f70da0369 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_it.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_ja.ts b/src/plugins/General/library/translations/library_plugin_ja.ts new file mode 100644 index 000000000..5a883ec82 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_ja.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_kk.ts b/src/plugins/General/library/translations/library_plugin_kk.ts new file mode 100644 index 000000000..4aaf96f4c --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_kk.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_lt.ts b/src/plugins/General/library/translations/library_plugin_lt.ts new file mode 100644 index 000000000..c9d703a84 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_lt.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_nl.ts b/src/plugins/General/library/translations/library_plugin_nl.ts new file mode 100644 index 000000000..e33678bef --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_nl.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_pl_PL.ts b/src/plugins/General/library/translations/library_plugin_pl_PL.ts new file mode 100644 index 000000000..0c9fdcdc9 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_pl_PL.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_pt.ts b/src/plugins/General/library/translations/library_plugin_pt.ts new file mode 100644 index 000000000..c4034407c --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_pt.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_pt_BR.ts b/src/plugins/General/library/translations/library_plugin_pt_BR.ts new file mode 100644 index 000000000..c4034407c --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_pt_BR.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_ru.ts b/src/plugins/General/library/translations/library_plugin_ru.ts new file mode 100644 index 000000000..bb0eb9c16 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_ru.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_sk.ts b/src/plugins/General/library/translations/library_plugin_sk.ts new file mode 100644 index 000000000..3d30795bd --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_sk.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_sr_BA.ts b/src/plugins/General/library/translations/library_plugin_sr_BA.ts new file mode 100644 index 000000000..7f6394bbd --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_sr_BA.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_sr_RS.ts b/src/plugins/General/library/translations/library_plugin_sr_RS.ts new file mode 100644 index 000000000..c6afc4a5d --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_sr_RS.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_tr.ts b/src/plugins/General/library/translations/library_plugin_tr.ts new file mode 100644 index 000000000..51f3d85ea --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_tr.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_uk_UA.ts b/src/plugins/General/library/translations/library_plugin_uk_UA.ts new file mode 100644 index 000000000..12363b270 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_uk_UA.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_zh_CN.ts b/src/plugins/General/library/translations/library_plugin_zh_CN.ts new file mode 100644 index 000000000..4d2c7c09d --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_zh_CN.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/library_plugin_zh_TW.ts b/src/plugins/General/library/translations/library_plugin_zh_TW.ts new file mode 100644 index 000000000..de8a02539 --- /dev/null +++ b/src/plugins/General/library/translations/library_plugin_zh_TW.ts @@ -0,0 +1,89 @@ + + + + + Library + + + Update library + + + + + LibraryFactory + + + Media Library Plugin + + + + + Media Library + + + + + About Media Library Plugin + + + + + Qmmp Media Library Plugin + + + + + This plugin represents a database to store music files tags for a fast access + + + + + Written by: Ilya Kotov <forkotov02@ya.ru> + + + + + LibraryModel + + + Unknown + + + + + LibraryWidget + + + Form + + + + + SettingsDialog + + + Media Library Settings + + + + + List of directories for scanning: + + + + + Add + + + + + Remove + + + + + Select Directories for Scanning + + + + diff --git a/src/plugins/General/library/translations/translations.qrc b/src/plugins/General/library/translations/translations.qrc new file mode 100644 index 000000000..fca072fc6 --- /dev/null +++ b/src/plugins/General/library/translations/translations.qrc @@ -0,0 +1,32 @@ + + + + library_plugin_ru.qm + library_plugin_uk_UA.qm + library_plugin_zh_CN.qm + library_plugin_zh_TW.qm + library_plugin_tr.qm + library_plugin_cs.qm + library_plugin_pt_BR.qm + library_plugin_pt.qm + library_plugin_de.qm + library_plugin_pl_PL.qm + library_plugin_fr.qm + library_plugin_it.qm + library_plugin_kk.qm + library_plugin_lt.qm + library_plugin_hu.qm + library_plugin_nl.qm + library_plugin_ja.qm + library_plugin_sk.qm + library_plugin_es.qm + library_plugin_he.qm + library_plugin_gl_ES.qm + library_plugin_sr_BA.qm + library_plugin_sr_RS.qm + library_plugin_bg.qm + library_plugin_el.qm + library_plugin_id.qm + library_plugin_fi.qm + + -- cgit v1.2.3-13-gbd6f