diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-01-07 17:49:56 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-01-07 17:49:56 +0000 |
| commit | 1a13270970c4194a0f3c306c0a9bb8e72e42c1fd (patch) | |
| tree | 891a6bb950a490c6532d8b7e6c5c2d6deb51e269 /src/plugins/General/library | |
| parent | 26c0acfe811b4494d4aeb0763362eedddcff4806 (diff) | |
| download | qmmp-1a13270970c4194a0f3c306c0a9bb8e72e42c1fd.tar.gz qmmp-1a13270970c4194a0f3c306c0a9bb8e72e42c1fd.tar.bz2 qmmp-1a13270970c4194a0f3c306c0a9bb8e72e42c1fd.zip | |
updated cmake files
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9619 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/library')
31 files changed, 2560 insertions, 1 deletions
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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="bg_BG"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="cs_CZ"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="de_DE"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="el_GR"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="en_US"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="es_ES"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="fi_FI"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="fr_FR"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="gl_ES"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="he_IL"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="hu_HU"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="id_ID"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="it_IT"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="ja_JP"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="kk_KZ"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="lt_LT"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="nl_NL"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="pl_PL"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="pt_BR"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="pt_BR"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="ru_RU"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="sk_SK"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="sr_BA"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="sr_RS"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="tr_TR"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="uk_UA"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="zh_CN"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="zh_TW"> +<context> + <name>Library</name> + <message> + <location filename="../library.cpp" line="66"/> + <source>Update library</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryFactory</name> + <message> + <location filename="../libraryfactory.cpp" line="32"/> + <source>Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="37"/> + <source>Media Library</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="67"/> + <source>About Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="68"/> + <source>Qmmp Media Library Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="69"/> + <source>This plugin represents a database to store music files tags for a fast access</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../libraryfactory.cpp" line="70"/> + <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryModel</name> + <message> + <location filename="../librarymodel.cpp" line="182"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LibraryWidget</name> + <message> + <location filename="../librarywidget.ui" line="14"/> + <source>Form</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../settingsdialog.ui" line="14"/> + <source>Media Library Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="29"/> + <source>List of directories for scanning:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="52"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.ui" line="63"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../settingsdialog.cpp" line="60"/> + <source>Select Directories for Scanning</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<!DOCTYPE RCC> +<RCC version="1.0"> + <qresource> + <file>library_plugin_ru.qm</file> + <file>library_plugin_uk_UA.qm</file> + <file>library_plugin_zh_CN.qm</file> + <file>library_plugin_zh_TW.qm</file> + <file>library_plugin_tr.qm</file> + <file>library_plugin_cs.qm</file> + <file>library_plugin_pt_BR.qm</file> + <file>library_plugin_pt.qm</file> + <file>library_plugin_de.qm</file> + <file>library_plugin_pl_PL.qm</file> + <file>library_plugin_fr.qm</file> + <file>library_plugin_it.qm</file> + <file>library_plugin_kk.qm</file> + <file>library_plugin_lt.qm</file> + <file>library_plugin_hu.qm</file> + <file>library_plugin_nl.qm</file> + <file>library_plugin_ja.qm</file> + <file>library_plugin_sk.qm</file> + <file>library_plugin_es.qm</file> + <file>library_plugin_he.qm</file> + <file>library_plugin_gl_ES.qm</file> + <file>library_plugin_sr_BA.qm</file> + <file>library_plugin_sr_RS.qm</file> + <file>library_plugin_bg.qm</file> + <file>library_plugin_el.qm</file> + <file>library_plugin_id.qm</file> + <file>library_plugin_fi.qm</file> + </qresource> +</RCC> |
