diff options
2061 files changed, 14043 insertions, 25099 deletions
diff --git a/.tx/config b/.tx/config index 02f1640fa..c86573a98 100644 --- a/.tx/config +++ b/.tx/config @@ -115,12 +115,6 @@ source_lang = en source_file = src/plugins/Input/sndfile/translations/sndfile_plugin_en.ts type = QT -[qmmp.ffmpeg_legacy] -file_filter = src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_<lang>.ts -source_lang = en -source_file = src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_en.ts -type = QT - [qmmp.modplug] file_filter = src/plugins/Input/modplug/translations/modplug_plugin_<lang>.ts source_lang = en @@ -349,12 +343,6 @@ source_lang = en source_file = src/plugins/General/rgscan/translations/rgscan_plugin_en.ts type = QT -[qmmp.udisks] -file_filter = src/plugins/General/udisks/translations/udisks_plugin_<lang>.ts -source_lang = en -source_file = src/plugins/General/udisks/translations/udisks_plugin_en.ts -type = QT - [qmmp.copypaste] file_filter = src/plugins/General/copypaste/translations/copypaste_plugin_<lang>.ts source_lang = en diff --git a/CMakeLists.txt b/CMakeLists.txt index 6813bd758..f2ed48b7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.6 FATAL_ERROR) +cmake_minimum_required(VERSION 2.8.11 FATAL_ERROR) #freebsd support include_directories(SYSTEM /usr/local/include) @@ -6,13 +6,16 @@ SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /usr/local/include) #macports support IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /opt/local/include) + SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /opt/local/include) ENDIF() if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() +#Qt5 modules +SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} /opt/qt56/lib/cmake) + #extract version from qmmp.h FILE(STRINGS "${CMAKE_CURRENT_SOURCE_DIR}/src/qmmp/qmmp.h" QMMP_VERSION_DATA REGEX "^#define[ \t]+QMMP_VERSION_[A-Z]+[ \t]+[0-9]+.*$") @@ -41,24 +44,18 @@ CONFIGURE_FILE( ADD_CUSTOM_TARGET(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") -SET(QT_MIN_VERSION 4.6.0) -INCLUDE(FindQt4) -INCLUDE(${QT_USE_FILE}) INCLUDE(FindPkgConfig) -SET(CMAKE_AUTOMOC ON) - -IF(NOT QT_LRELEASE_EXECUTABLE) -FIND_PROGRAM(QT_LRELEASE_EXECUTABLE - NAMES lrelease - PATHS ${QT_BINARY_DIR} - NO_DEFAULT_PATH -) -ENDIF(NOT QT_LRELEASE_EXECUTABLE) - -#debian hack -IF(EXISTS ${QT_BINARY_DIR}/lrelease-qt4) -SET(QT_LRELEASE_EXECUTABLE ${QT_BINARY_DIR}/lrelease-qt4) -ENDIF(EXISTS ${QT_BINARY_DIR}/lrelease-qt4) +set(CMAKE_AUTOMOC ON) +set(CMAKE_INCLUDE_CURRENT_DIR ON) +find_package(Qt5Widgets 5.4.0 REQUIRED) +find_package(Qt5LinguistTools 5.4.0 REQUIRED) +find_package(Qt5Network 5.4.0 REQUIRED) +find_package(Qt5X11Extras 5.4.0) +find_package(Qt5DBus 5.4.0) +find_package(Qt5Multimedia 5.4.0) +ADD_DEFINITIONS(-DQMMP_WS_X11) + +get_target_property(QT_LRELEASE_EXECUTABLE Qt5::lrelease IMPORTED_LOCATION) IF(QT_LRELEASE_EXECUTABLE) MESSAGE(STATUS "Found lrelease executable: " ${QT_LRELEASE_EXECUTABLE}) @@ -73,18 +70,16 @@ ELSE(SVN_VERSION) execute_process(COMMAND find ${CMAKE_CURRENT_SOURCE_DIR} -name *.ts COMMAND xargs ${QT_LRELEASE_EXECUTABLE} -silent) ENDIF(SVN_VERSION) +get_target_property(QT_LIBRARY_DIR Qt5::Core LOCATION) +get_filename_component(QT_LIBRARY_DIR ${QT_LIBRARY_DIR} PATH) + IF(NOT LIB_SUFFIX) IF("${QT_LIBRARY_DIR}" MATCHES lib64) set(LIB_SUFFIX 64) ENDIF("${QT_LIBRARY_DIR}" MATCHES lib64) ENDIF(NOT LIB_SUFFIX) -IF(${CMAKE_SYSTEM_NAME} MATCHES Darwin) - SET(LIB_DIR "qmmp.app/Contents/Frameworks" CACHE STRING "library path") -ELSE() - SET(LIB_DIR "lib${LIB_SUFFIX}" CACHE STRING "library path") -ENDIF() - +SET(LIB_DIR "lib${LIB_SUFFIX}" CACHE STRING "library path") SET(USE_SKINNED TRUE CACHE BOOL "enable/disable standard skinned user interface") SET(USE_DIR_ASSOC TRUE CACHE BOOL "enable/disable inode/directory mime type association") @@ -94,10 +89,6 @@ add_subdirectory(src/qmmp) add_subdirectory(src/qmmpui) add_subdirectory(src/plugins) add_subdirectory(src/app) -IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - #Hack for MacOS X to run fix_mac_libs.sh script after installation - add_subdirectory(src/mac) -ENDIF() MACRO(PRINT_SUMMARY str USE FOUND) IF(${USE} AND ${FOUND}) @@ -133,9 +124,13 @@ ADD_CUSTOM_COMMAND( COMMAND find ARGS ${CMAKE_CURRENT_BINARY_DIR} -name "moc_*.cpp" | xargs rm -rf COMMAND find + ARGS ${CMAKE_CURRENT_BINARY_DIR} -name "qrc_*.cxx" | xargs rm -rf + COMMAND find ARGS ${CMAKE_CURRENT_BINARY_DIR} -name "*_automoc.cpp" | xargs rm -rf COMMAND rm ARGS -rf ${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt + COMMAND find + ARGS ${CMAKE_CURRENT_BINARY_DIR} -name *_automoc.dir | xargs rm -rf TARGET distclean ) ENDIF(UNIX) @@ -156,7 +151,6 @@ PRINT_SUMMARY ("MOD support ......................." USE_MODPLUG MODPLUG_FOUND) PRINT_SUMMARY ("Wave support ......................" USE_SNDFILE SNDFILE_FOUND) PRINT_SUMMARY ("WavPack support ..................." USE_WAVPACK WAVPACK_FOUND) PRINT_SUMMARY ("FFmpeg/Libav support .............." USE_FFMPEG FFMPEG_FOUND) -PRINT_SUMMARY ("FFmpeg 0.6-0.8 support ............" USE_FFMPEG_LEGACY FFMPEG_LEGACY_FOUND) PRINT_SUMMARY ("AAC support ......................." USE_AAC FAAD_FOUND) PRINT_SUMMARY ("CUE sheet support ................." USE_CUE 1) PRINT_SUMMARY ("Mplayer support ..................." USE_MPLAYER 1) @@ -178,7 +172,7 @@ PRINT_SUMMARY ("Null output support ..............." USE_NULL 1) PRINT_SUMMARY ("Win32 Waveout support ............." USE_WAVEOUT WINDOWS_H_FOUND) PRINT_SUMMARY ("Win32 DirectSound support ........." USE_DSOUND DSOUND_H_FOUND) PRINT_SUMMARY ("Win32 WASAPI support .............." USE_WASAPI WASAPI_FOUND) -PRINT_SUMMARY ("Qt Multimedia support ............." USE_QTMULTIMEDIA QT_QTMULTIMEDIA_FOUND) +PRINT_SUMMARY ("Qt Multimedia support ............." USE_QTMULTIMEDIA Qt5Multimedia_FOUND) PRINT_SUMMARY ("Icecast support ..................." USE_SHOUT SHOUT_FOUND) MESSAGE("") @@ -197,19 +191,18 @@ PRINT_SUMMARY ("ProjectM .........................." USE_PROJECTM PROJECTM_FOUND MESSAGE("") MESSAGE("General Plugins:") -PRINT_SUMMARY ("MPRIS support ....................." USE_MPRIS 1) +PRINT_SUMMARY ("MPRIS support ....................." USE_MPRIS Qt5DBus_FOUND) PRINT_SUMMARY ("Scrobbler ........................." USE_SCROBBLER 1) PRINT_SUMMARY ("Tray support ......................" USE_STATICON 1) PRINT_SUMMARY ("Notifier support .................." USE_NOTIFIER 1) PRINT_SUMMARY ("Lyrics support ...................." USE_LYRICS 1) -PRINT_SUMMARY ("HAL support ......................." USE_HAL 1) -PRINT_SUMMARY ("UDisks2 support ..................." USE_UDISKS2 1) -PRINT_SUMMARY ("UDisks support ...................." USE_UDISKS 1) -PRINT_SUMMARY ("Global hotkey support ............." USE_HOTKEY X11_FOUND) -PRINT_SUMMARY ("GNOME/Cinnamon hotkey support ....." USE_GNOMEHOTKEY 1) +PRINT_SUMMARY ("HAL support ......................." USE_HAL Qt5DBus_FOUND) +PRINT_SUMMARY ("UDisks2 support ..................." USE_UDISKS2 Qt5DBus_FOUND) +PRINT_SUMMARY ("Global hotkey support ............." USE_HOTKEY X11_FOUND AND Qt5X11Extras_FOUND) +PRINT_SUMMARY ("GNOME/Cinnamon hotkey support ....." USE_GNOMEHOTKEY Qt5DBus_FOUND) PRINT_SUMMARY ("File operations ..................." USE_FILEOPS 1) PRINT_SUMMARY ("Cover manager ....................." USE_COVER 1) -PRINT_SUMMARY ("KDE4 notifications support ........" USE_KDENOTIFY 1) +PRINT_SUMMARY ("KDE4 notifications support ........" USE_KDENOTIFY Qt5DBus_FOUND) PRINT_SUMMARY ("Audio converter ..................." USE_CONVERTER TAGLIB_FOUND) PRINT_SUMMARY ("ReplayGain Scanner ................" USE_RGSCAN TAGLIB_FOUND) PRINT_SUMMARY ("Stream browser ...................." USE_SB 1) @@ -223,7 +216,7 @@ PRINT_SUMMARY ("Two-panel File File Dialog ........" USE_TWO_PANEL_DIALOG 1) MESSAGE("") MESSAGE("Advanced:") -PRINT_SUMMARY ("Skinned user interface ............" USE_SKINNED X11_FOUND) +PRINT_SUMMARY ("Skinned user interface ............" USE_SKINNED X11_FOUND AND Qt5X11Extras_FOUND) PRINT_SUMMARY ("Simple user interface (QSUI) ......" USE_QSUI 1) PRINT_SUMMARY ("Automatic charset detection ......." USE_ENCA ENCA_FOUND) PRINT_SUMMARY ("Directory association ............." USE_DIR_ASSOC 1) @@ -1035,11 +1035,13 @@ Version 0.9.0 * updated Greek translation (Dimitrios Glentadakis) * updated Japanese translation (RyoTa SimaMoto) -Version 0.9.1 +Version 1.0.0 +* switch to Qt5 +* removed ffmpeg_legacy plugin +* removed legacy udisks plugin +* removed support of taglib versions less than 1.8 * fixed 16-bit converter * fixed Russian translation - -Version 0.9.2 * optimized equalizer * optimized flac and wavpack plugins * improved skinned ui in the shaded mode: @@ -1047,43 +1049,52 @@ Version 0.9.2 - fixed playlist colors * fixed clicks while playing some mp3 files * fixed memory leak in the wavpack plugin -* fixed qt 4.6 support -* fixed ffmpeg 0.5 support * fixed effects and decoders sorting * fixed possible race condition * updated Greek translation (Dimitrios Glentadakis) -Version 0.9.3 +Version 1.0.1 +* added XFCE icon theme support +* added Marco WM support +* added test for supported OpenGL implementation while using cmake * improved command line parser * fixed crash in the mplayer engine * fixed time indicator in the qsui plugin * fixed truncated output of the '--pl-dump' command * fixed track indexes calculation -Version 0.9.4 +Version 1.0.2 +* fixed problem with tray icon menu (see QTBUG-48869, patch by equeim) * fixed geometry saving in the skinned UI * fixed segmentation fault in the ReplayGain scanner * fixed hide on close feature +* fixed some skins parsing * fixed Dutch translation (Rhythmdrill) -* fixed build (Ivan Ponomarev) -Version 0.9.5 +Version 1.0.3 * added error handling in the mplayer plugin * fixed problem with some covers embedded in the mp3 files * fixed some skins support * fixed issue with equalizer not saving low levels in the qsui plugin * fixed gcc warnings +* fixed build without Qt X11 Extras +* fixed Cinnamon and MATE support * updated Chinese Simplified translation (mabier) -Version 0.9.6 +Version 1.0.4 +* fixed skinned ui build + +Version 1.0.5 +* added gnome shell support * fixed url dialog size * fixed memory leak in the qsui plugin * fixed ladspa plugin * fixed cpu usage in the vorbis plugins +* fixed utf-8 support in the scrobbler plugin * fixed Greek translation (Dimitrios Glentadakis) * updated French translation (Adrien Vigneron) -Version 0.9.7 +Version 1.0.6 * added feature to change default output plugin * added feature to skip unsupported files in the rgscan plugin * fixed gme plugin build @@ -1092,26 +1103,31 @@ Version 0.9.7 * updated Portuguese translation (Sérgio Marques) * updated Chinese Simplified translation (Mingye Wang) -Version 0.9.8 +Version 1.0.7 * added ffmpeg 3.0 support * added support for theme change event in the qsui plugin * fixed sendig multiple play commands when opening several files for playback * fixed memory leaks +* fixed qt5.6 support -Version 0.9.9 +Version 1.0.8 * fixed session check in the scrobbler plugin * fixed working with both libre.fm and last.fm * fixed cell height in the stream browser * fixed unicode support under windows * fixed problem with file access under windows +* removed borders from statusbar in the qsui plugin -Version 0.9.10 +Version 1.0.9 +* fixed taglib-1.9 support + +Version 1.0.10 * improved sid plugin: - added c64 file extension - fixed default HVSC path * updated Japanese translation (RyoTa SimaMoto) -Version 0.10.0 +Version 1.1.0 * using floating point pcm format for all lossy decoders * using floating point pcm format for all audio effects * added new internal audio converter @@ -1173,34 +1189,35 @@ Version 0.10.0 * updated Russian translation * updated Ukrainian translation (Gennadi Motsyo) -Version 0.10.1 +Version 1.1.1 * added ffmpeg 3.1 support * added portable mode for Windows -* fixed GNOME3/MATE/Cinnamon support +* fixed qt5.7 support * fixed Russian translation * updated Ukrainian translation (Gennadi Motsyo) * updated Portuguese translation (Sérgio Marques) -Version 0.10.2 +Version 1.1.2 * fixed path to equalizer presets file in the qsui plugin (Ryota Shimamoto) * fixed buffer overflow -Version 0.10.3 +Version 1.1.3 * added xesam:contentCreated field in the mpris plugin * improved ape/tta detection * fixed random stop bug * fixed duration calculation in the mpeg plugin +* fixed scrobbling of tracks with '&' symbol * fixed ADTS parser in the aac plugin * fixed librcc database path in the portable mode * updated Brazilian Portuguese translation (Vitor Pereira) * updated German translation (Ettore Atalan) -Version 0.10.4 -* fixed support of skins with UTF-16 encoded pledit.txt +Version 1.1.4 +* fixed support of skins UTF-16 with encoded pledit.txt * fixed 'index out of range' warning * fixed typo in the qsui plugin -Version 0.10.5 +Version 1.1.5 * added ffmpeg 3.2 support * fixed file downloading issue in the http plugin * fixed directory selection in the qsui plugin @@ -1209,7 +1226,7 @@ Version 0.10.5 * fixed some cppcheck warnings * changed file dialog form -Version 0.10.6 +Version 1.1.6 * using http header 'icy-name' as fallback title * enabled AAC by default in the ffmpeg plugin * fixed ADTS parser in the aac plugin @@ -1217,32 +1234,35 @@ Version 0.10.6 * fixed Ogg Opus streams support * updated Chinese Simplified translation (Mingcong Bai) -Version 0.10.7 +Version 1.1.7 * improved stream format determination in the ffmpeg plugin * fixed GCC 6.x support * fixed possible segmentation fault +* fixed crash when using KDE file dialog +* fixed saving state of the visual plugins * updated Brazilian Portuguese translation (Vítor Pereira Barros) -Version 0.10.8 +Version 1.1.8 * fixed PCM Wave support * fixed Game Boy support in the gme plugin * fixed Xing header detection in the mpeg plugin * fixed output of the '--status' command line option * fixed maximum year in the tag editor -Version 0.10.9 +Version 1.1.9 * using relative skin path for portable configuration * improved WASAPI support * fixed cursors support in the skinned user interface * fixed freezing when using DirectSound output * fixed documentation * fixed issue with 'jump to track' dialog when single click activation is enabled +* fixed tray icon tooltip * fixed FLAC bitrate calculation * fixed segmentation fault in the ffmpeg plugin * fixed Russian translation * updated French translation (Adrien Vigneron) -Version 0.10.10 +Version 1.1.10 * added feature to download playlist from https * increased DirectSound buffer size * decreased waiting time in the WASAPI plugin @@ -1256,10 +1276,11 @@ Version 0.10.10 * fixed 24 bits support in the WASAPI plugin * fixed segmentation fault on Ogg FLAC streams * fixed XPM skins support +* fixed Qt 5.9 support in the global hotkey plugin * updated documentation * updated Galician translation (Delio Docampo Cordeiro) -Version 0.10.11 +Version 1.1.11 * added AAC mime types to the qmmp.desktop * added album artist support in the cue parsers * using game name as album tag in the gme plugin (Chris Spiegel) @@ -1277,7 +1298,10 @@ Version 0.10.11 * updated Portuguese translation (Sérgio Marques) * updated Greek translation (Dimitrios Glentadakis) -Version 0.11.0 +Version 1.1.12 +* fixed IPC regression + +Version 1.2.0 * added archive reader plugin (requires TagLib 1.11 or higher) * added file writer plugin * added icecast output plugin @@ -1291,6 +1315,7 @@ Version 0.11.0 * added cache to the lyrics plugin * added feature to clear window title when playback is finished * added 'Raise' method implementation to the mpris plugin +* added mount point list to the file dialog * improved plugin API * improved cover cache * improved visualization support @@ -1311,7 +1336,6 @@ Version 0.11.0 - added cover image alignment - reduced memory usage - improved settings -* fixed FVWM support in the skinned user interface (Andrey A. Rys) * fixed memory leaks * added Finnish translation (Jiri Grönroos) * updated Brazilian Portuguese translation (Vitor Pereira) diff --git a/ChangeLog.rus b/ChangeLog.rus index 8c3cf255a..802ebcc3a 100644 --- a/ChangeLog.rus +++ b/ChangeLog.rus @@ -1037,11 +1037,13 @@ Version 0.2.3 * обновлён греческий перевод (Dimitrios Glentadakis) * обновлён японский перевод (RyoTa SimaMoto) -Версия 0.9.1 +Версия 1.0.0 +* переход на Qt5 +* удалён модуль ffmpeg_legacy +* удалён устаревший модуль udisks +* удалена поддержка taglib версии ниже чем 1.8 * исправлен 16-битный конвертер * исправлен русский перевод - -Версия 0.9.2 * оптимизация эквалайзера * оптимизация модулей flac и wavpack * улучшен минимальный режим интерфейса с поддержкой обложек: @@ -1049,43 +1051,52 @@ Version 0.2.3 - исправлены цвета списка воспроизведения * устранены щелчки при проигрывании некоторых mp3-файлов * устранена утечка памяти в модуле wavpack -* исправлена поддержка qt 4.6 -* исправлена поддержка ffmpeg 0.5 * исправлена сортировка эффектов и декодеров * исправлена возможная гонка ресурсов * обновлён греческий перевод (Dimitrios Glentadakis) -Версия 0.9.3 +Версия 1.0.1 +* добавлена поддержка темы значков XFCE +* добавлена поддержка оконного менеджера Marco +* добавлена проверка поддерживаемой реализации OpenGL при использовании cmake * улучшен парсер командной строки * исправлено аварийное завершение программы в модуле поддержки mplayer-а * исправлен индикатор времени в модуле qsui * исправлен обрезанный вывод консольной команды "--pl-dump" * исправлено индексирование треков -Версия 0.9.4 +Версия 1.0.2 +* исправлена проблема с меню системного лотка (см. QTBUG-48869, автор патча: equeim) * исправлено сохранение положения окон в интерфейсе с поддержкой обложек * устранена ошибка сегментации в сканере ReplayGain * исправлена опция 'скрывать при закрытии' +* исправлена поддержка некоторых обложек * исправлен голландский перевод (Rhythmdrill) -* исправлена сборка (Иван Пономарёв) -Версия 0.9.5 +Версия 1.0.3 * добавлена обработка ошибок в модуле поддержки mplayer * исправлена проблема с отображением некоторых обложек, находящихся внутри mp3-файлов * исправлена поддержка некоторых обложек * устранена невозможность сохранения низких уровней эквалайзера в модуле qsui * исправлены предупреждения компилятора gcc +* исправлена сборка без Qt X11 Extras +* исправлена поддержка Cinnamon и MATE * обновлён китайский упрощённый перевод (mabier) -Версия 0.9.6 +Версия 1.0.4 +* исправлена сборка интерфейса с поддержкой обложек + +Версия 1.0.5 +* добавлена поддержка gnome shell * исправлен размер URL-диалога * исправлена утечка памяти в модуле qsui * исправлен модуль ladspa * устранено повышенное использование процессора в модуле vorbis +* исправлена поддержка utf-8 в модуле scrobbler * исправлен греческий перевод (Dimitrios Glentadakis) * обновлён французский перевод (Adrien Vigneron) -Версия 0.9.7 +Версия 1.0.6 * добавлена возможность сменить модуль вывода по умолчанию * добавлен пропуск неподдерживаемых файлов в модуле rgscan * исправлена сборка модуля gme @@ -1094,26 +1105,31 @@ Version 0.2.3 * обновлён португальский перевод (Sérgio Marques) * обновлён китайский упрощённый перевод (Mingye Wang) -Версия 0.9.8 +Версия 1.0.7 * добавлена поддержка ffmpeg 3.0 * добавлена поддержка события смены темы в модуле qsui * устранена отправка множества команд "воспроизвести" при открытии нескольких файлов для воспроизведения * устранены утечки памяти +* исправлена поддержка qt5.6 -Версия 0.9.9 +Версия 1.0.8 * исправлена проверка сессии в модуле scrobbler * исправлена одновременная работа с last.fm и libre.fm * исправлен размер ячеек в списке интернет-радиостанций * исправлена поддержка юникода под windows * исправлена проблема доступа к файлам под windows +* отключены отступы в строке состояния интерфейса qsui -Версия 0.9.10 +Версия 1.0.9 +* исправлена поддержка taglib-1.9 + +Версия 1.0.10 * улучшен модуль sid: - добавлено расширение c64 - исправлен путь к базе HVSC * обновлён японский перевод (RyoTa SimaMoto) -Версия 0.10.0 +Версия 1.1.0 * использование pcm-формата с плавающей точкой для всех декодеров с потерями * использование pcm-формата с плавающей точкой для всех аудио-эффектов * добавлен новый внутренний аудио-конвертер @@ -1175,34 +1191,35 @@ Version 0.2.3 * обновлён русский перевод * обновлён украинский перевод (Геннадий Моцьо) -Версия 0.10.1 +Версия 1.1.1 * добавлена поддержка ffmpeg 3.1 * добавлен переносимый режим для Windows -* исправлена поддержка GNOME3/MATE/Cinnamon +* исправлена поддержка qt5.7 * исправлен русский перевод * обновлён украинский перевод (Геннадий Моцьо) * обновлён португальский перевод (Sérgio Marques) -Версия 0.10.2 +Версия 1.1.2 * исправлен путь к файлу настроек эквалайзера в модуле qsui (Ryota Shimamoto) * устранено переполнение буфера -Версия 0.10.3 +Версия 1.1.3 * добавлено поле xesam:contentCreated в модуле mpris * улучшено определение ape/tta * исправлена ошибка, связанная с остановкой воспроизведения * исправлено вычисление длительности в модуле mpeg +* исправлен скробблинг треков, содержащих символ '&' в названии * исправлен парсер ADTS в модуле aac * исправлен путь к кэшу librcc для переносимого режима * обновлён бразильский португальский перевод (Vitor Pereira) * обновлён немецкий перевод (Ettore Atalan) -Версия 0.10.4 +Версия 1.1.4 * исправлена поддержка обложек с файлом pledit.txt в кодировке UTF-16 * исправлено предупреждение 'index out of range' * исправлена опечатка в интерфейсе qsui -Версия 0.10.5 +Версия 1.1.5 * добавлена поддержка ffmpeg 3.2 * устранена проблема с загрузкой файлов в модуле http * исправлен выбор директорий в модуле qsui @@ -1211,7 +1228,7 @@ Version 0.2.3 * исправлены некоторые предупреждения cppcheck * изменена форма файлового диалога -Версия 0.10.6 +Версия 1.1.6 * использование http-заголовка 'icy-name' в качестве запасного варианта названия * включена по умолчанию поддержка AAC в модуле ffmpeg * исправлен парсер ADTS в модуле aac @@ -1219,32 +1236,35 @@ Version 0.2.3 * исправлена поддержка потокового вещания в формате Ogg Opus * обновлён китайский упрощённый перевод (Mingcong Bai) -Версия 0.10.7 +Версия 1.1.7 * улучшено определение формата потоков в модуле ffmpeg * исправлена поддержка GCC 6.x * исправлена возможная ошибка сегментации +* исправлено аварийное завершение программы при использовании файлового диалога KDE +* исправлено сохранение состояния модулей визуализации * обновлён бразильский португальский перевод (Vítor Pereira Barros) -Версия 0.10.8 +Версия 1.1.8 * исправлена поддержка PCM Wave * исправлена поддержка формата Game Boy в модуле gme * исправлено определение Xing-заголовка в модуле mpeg * исправлен вывод опции командной строки "--status" * исправлен максимальный год в редакторе тегов -Версия 0.10.9 +Версия 1.1.9 * использование относительного пути к обложке для переносимого режима * улучшена поддержка WASAPI * исправлена поддержка курсоров в интерфейсе по умолчанию * исправлено зависание плеера при использовании вывода через DirectSound * исправлена документация * исправлена проблема с диалогом быстрого перехода при включенной активации по единому щелчку мыши +* исправлена подсказка для иконки системного лотка * исправлено вычисление битовой частоты для FLAC-файлов * исправлена ошибка сегментации в модуле ffmpeg * исправлен русский перевод * обновлён французский перевод (Adrien Vigneron) -Версия 0.10.10 +Версия 1.1.10 * добавлена возможность загружать плейлисты по https * увеличен размер буфера DirectSound * уменьшено время ожидания в модуле WASAPI @@ -1258,10 +1278,11 @@ Version 0.2.3 * исправлена поддержка 24-х бит в модуле WASAPI * исправлена ошибка сегментации на потоках Ogg FLAC * исправлена поддержка обложек в формате XPM +* исправлена поддержка Qt 5.9 в модуле глобальных клавиш * обновлена документация * обновлён галисийский перевод (Delio Docampo Cordeiro) -Версия 0.10.11 +Версия 1.1.11 * добавлены mime-типы AAC в файл qmmp.desktop * добавлена поддержка исполнителя альбома в cue-парсеры * использование имени игры в качестве названия альбома в модуле gme (Chris Spiegel) @@ -1279,7 +1300,10 @@ Version 0.2.3 * обновлён португальский перевод (Sérgio Marques) * обновлён греческий перевод (Dimitrios Glentadakis) -Версия 0.11.0 +Версия 1.1.12 +* исправлена регрессия в межпроцессном взаимодействии + +Версия 1.2.0 * добавлен модуль чтения архивов (требуется TagLib 1.11 или выше) * добавлен модуль записи в файл * добавлен модуль вывода icecast @@ -1293,6 +1317,7 @@ Version 0.2.3 * добавлено кэширование текстов песен * добавлен сброс названия окна при завершении воспроизведения * добавлена реализация метода 'Raise' в модуле mpris +* добавлен список точек монтирования в файловый диалог * улучшен API модулей * улучшено кэширование обложек * улучшена поддержка визуализации @@ -1313,7 +1338,6 @@ Version 0.2.3 - добавлено выравнивание обложки - уменьшено потребление памяти - улучшены настройки -* исправлена поддержка FVWM в интерфейсе с поддержкой обложек (Андрей А. Рысь) * устранены утечки памяти * добавлен финский перевод (Jiri Grönroos) * обновлён бразильский португальский перевод (Vitor Pereira) @@ -76,24 +76,25 @@ Other features: - audio recording Requirements: -- Qt >= 4.6 +- Qt >= 5.4 (qtbase, qtx11extras and qttools for build) - tar, unzip, bzip2, gzip - libmad - libvorbis - libogg - libalsa >= 1.0.1 -- taglib >= 1.6 (1.11 or higher is recommended) +- taglib >= 1.10 (1.11 or higher is recommended) - curl >= 7.16 +- qtmultimedia >= 5.4 (optional) - libmms >= 0.4 (optional) - flac >= 1.1.3 (optional) - libmpcdec >= 1.2.6 (optional) -- jackit >= 0.102.5 (optional) +- jackit1 >= 0.121.0 or jackit2 >= 1.9.8 (optional) - libsoxr >= 0.1.0 (optional) - libmodplug >= 0.8.4 (optional) -- libsndfile >= 1.0.17 (optional) +- libsndfile >= 1.0.21 (optional) - wavpack >= 4.41 (optional) - pulseaudio >= 0.9.15 (optional) -- ffmpeg >= 0.9.1 or libav >= 0.8.0 (optional) +- ffmpeg >= 2.0 or libav >= 0.9 (optional) - libcdio >= 0.80 (optional) - libcdio-paranoia >= 10.2 (since libcdio 0.90) - libcddb >= 1.3.1 (optional) @@ -104,12 +105,12 @@ Requirements: - libWildMidi >= 0.2.3.4 (optional) - libsidplayfp >= 1.0.3 (optional) - libbs2b >= 3.0.0 (optional) -- libprojectM >= 1.2.0 (optional) +- libprojectM >= 2.0.0 (optional) - libenca >= 1.9 (optional) - libarchive >= 3.2.0 (optional) - libshout (optional) - mplayer (optional) -- cmake >= 2.8.6 (for build only) +- cmake >= 2.8.11 (for build only) Attention! Qmmp build needs lrelease installed. @@ -129,13 +130,13 @@ cmake ./ -DUSE_JACK:BOOL=FALSE Available options: - USE_CURL, USE_MMS (transports); - USE_MAD, USE_FLAC, USE_VORBIS, USE_MPC, USE_MODPLUG, USE_SNDFILE, USE_WAVPACK, USE_FFMPEG, USE_AAC, USE_CUE, - USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_FFMPEG_LEGACY, USE_OPUS, USE_SID, USE_ARCHIVE (decoders); + USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_OPUS, USE_SID, USE_ARCHIVE (decoders); - USE_ALSA, USE_OSS, USE_JACK, USE_PULSE, USE_NULL, USE_OSS4, USE_WAVEOUT, UDE_DSOUND, USE_QTMULTIMEDIA, USE_WASAPI, USE_SHOUT (output plugins); - USE_SOXR, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO, USE_FILEWRITER (effects); - USE_ANALYZER, USE_PROJECTM (visualization); - USE_MPRIS, USE_SCROBBLER, USE_STATICON, USE_NOTIFIER, USE_LYRICS, USE_HAL, USE_HOTKEY, USE_FILEOPS, USE_COVER, - USE_KDENOTIFY, USE_UDISKS2, USE_UDISKS, USE_CONVERTER, USE_RGSCAN, USE_SB, USE_TRACKCHANGE, USE_COPYPASTE, + USE_KDENOTIFY, USE_UDISKS2, USE_CONVERTER, USE_SB, USE_RGSCAN, USE_TRACKCHANGE, USE_COPYPASTE, USE_GNOMEHOTKEY (general plugins); - USE_QMMP_DIALOG, USE_TWO_PANEL_DIALOG (file dialogs); - USE_ENCA (automatic charset detection); @@ -148,9 +149,9 @@ Also you can use ccmake for changing plugins configuration. By default program will be installed in /usr/local. You can change default path by running: cmake ./ -DCMAKE_INSTALL_PREFIX=custom_path -OSS3 and UDisks support. -OSS3 and UDisks plugins are deprecated and disabled by default. -To enable them, run 'cmake ./ -DUSE_OSS:BOOL=TRUE' or 'cmake ./ -DUSE_OSS:UDISKS=TRUE' before compilation. +OSS3 support. +OSS3 plugin is deprecated and disabled by default. +To enable it, run 'cmake ./ -DUSE_OSS:BOOL=TRUE' before compilation. UDisks2 support and FreeBSD. Under FreeBSD you are able to use UDisks2 plugin. Also, you should install port sysutils/bsdisks. @@ -178,7 +179,7 @@ Attention! By default all plugins are enabled by default. Changing shared library install path (for some 64-bit distributions). By default, all libraries and plugins will be installed to $(INSTALL PREFIX)/lib. You can change "lib" -to "lib64" by running qmake (qmake-qt4) or cmake with the special parameter: +to "lib64" by running qmake or cmake with the special parameter: qmake LIB_DIR=/lib64 or cmake ./ -DLIB_DIR=lib64 diff --git a/README.RUS b/README.RUS index e7572005e..3d541a6f4 100644 --- a/README.RUS +++ b/README.RUS @@ -75,24 +75,25 @@ Qmmp - Qt-based multimedia player - запись аудио Требования: -- Qt >= 4.6 +- Qt >= 5.4 (qtbase, qtx11extras и qttools для сборки) - tar, unzip, bzip2, gzip - libmad - libvorbis - libogg - libalsa >= 1.0.1 -- taglib >= 1.6 (рекомендуется 1.11 и выше) +- taglib >= 1.10 (рекомендуется 1.11 и выше) - curl >= 7.16 +- qtmultimedia >= 5.4 (опционально) - libmms >= 0.4 (опционально) - flac >= 1.1.3 (опционально) - libmpcdec >= 1.2.6 (опционально) -- jackit >= 0.102.5 (опционально) +- jackit1 >= 0.121.0 или jackit2 >= 1.9.8 (опционально) - soxr >= 0.1.0 (опционально) - libmodplug >= 0.8.4 (опционально) -- libsndfile >= 1.0.17 (опционально) +- libsndfile >= 1.0.21 (опционально) - wavpack >= 4.41 (опционально) - pulseaudio >= 0.9.15 (опционально) -- ffmpeg >= 0.9.1 или libav >= 0.8.0 (опционально) +- ffmpeg >= 2.0 или libav >= 0.9 (опционально) - libcdio >= 0.80 (опционально) - libcdio-paranoia >= 10.2 (начиная с libcdio 0.90) - libcddb >= 1.3.1 (опционально) @@ -103,12 +104,12 @@ Qmmp - Qt-based multimedia player - libWildMidi >= 0.2.3.4 (опционально) - libsidplayfp >= 1.0.3 (опционально) - libbs2b >= 3.0.0 (опционально) -- libprojectM >= 1.2.0 (опционально) +- libprojectM >= 2.0.0 (опционально) - libenca >= 1.9 (опционально) - libarchive >= 3.2.0 (опционально) - libshout (опционально) - mplayer (опционально) -- cmake >= 2.8.6 (только для сборки) +- cmake >= 2.8.11 (только для сборки) Внимание! Для сборки Qmmp нужна утилита lrelease. @@ -127,13 +128,13 @@ cmake ./ -DUSE_JACK:BOOL=FALSE Доступные опции: - USE_CURL, USE_MMS (транспортные модули); - USE_MAD, USE_FLAC, USE_VORBIS, USE_MPC, USE_MODPLUG, USE_SNDFILE, USE_WAVPACK, USE_FFMPEG, USE_AAC, USE_CUE, - USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_FFMPEG_LEGACY, USE_OPUS, USE_SID, USE_ARCHIVE (декодеры); + USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_OPUS, USE_SID, USE_ARCHIVE (декодеры); - USE_ALSA, USE_OSS, USE_JACK, USE_PULSE, USE_NULL, USE_OSS4, USE_WAVEOUT, USE_DSOUND, USE_QTMULTIMEDIA, USE_WASAPI, USE_SHOUT (модули вывода); - USE_SOXR, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO, USE_FILEWRITER (эффекты); - USE_ANALYZER, USE_PROJECTM (визуализация); - USE_MPRIS, USE_SCROBBLER, USE_STATICON, USE_NOTIFIER, USE_LYRICS, USE_HAL, USE_HOTKEY, USE_FILEOPS, USE_COVER, - USE_KDENOTIFY, USE_UDISKS2, USE_UDISKS, USE_CONVERTER, USE_RGSCAN, USE_SB, USE_TRACKCHANGE, USE_COPYPASTE, + USE_KDENOTIFY, USE_UDISKS2, USE_CONVERTER, USE_RGSCAN, USE_SB, USE_TRACKCHANGE, USE_COPYPASTE, USE_GNOMEHOTKEY (модули общего назначения); - USE_QMMP_DIALOG, USE_TWO_PANEL_DIALOG (файловые диалоги); - USE_ENCA (автоматическое определение кодировки); @@ -146,12 +147,12 @@ cmake ./ -DUSE_JACK:BOOL=FALSE По умолчанию программа будет установлена в /usr/local. Вы можете изменить этот путь командой: cmake ./ -DCMAKE_INSTALL_PREFIX=другой_путь -Поддержка OSS3 и Udisks. -Модули OSS3 и UDisks устарели и отключёны по умолчанию. -Для их включения выполните 'cmake ./ -DUSE_OSS:BOOL=TRUE' или 'cmake ./ -DUSE_OSS:UDISKS=TRUE' перед сборкой. +Поддержка OSS3. +Модуль OSS3 устарел и отключён по умолчанию. +Для его включения выполните 'cmake ./ -DUSE_OSS:BOOL=TRUE' перед сборкой. Поддержка UDisks2 и FreeBSD. -Под FreeBSD есть возможность использовать модуль Udisks2. Для этого вы также должны установить порт +Под FreeBSD есть возможность использовать модуль Udisks2. Для этого вы также должны установить порт sysutils/bsdisks. Bsdisks является реализацией сервиса UDisks2 для FreeBSD. В некоторых случаях вы можете использовать qmake для сборки и установки. @@ -174,7 +175,7 @@ qmake DISABLED_PLUGINS+=JACK_PLUGIN DISABLED_PLUGINS+=OSS_PLUGIN Изменение пути установки разделяемых библиотек и модулей (для некоторых 64-битных дистрибутивов). По умолчанию все библиотеки и модули будут установлены в $(INSTALL PREFIX)/lib. Вы можете сменить "lib" -на "lib64" запустив qmake (qmake-qt4), или cmake со специальным параметром: +на "lib64" запустив qmake или cmake со специальным параметром: qmake LIB_DIR=/lib64 или cmake ./ -DLIB_DIR=lib64 diff --git a/README.UKR b/README.UKR index 826d1f1cf..a91ada76b 100644 --- a/README.UKR +++ b/README.UKR @@ -67,21 +67,21 @@ Qmmp - Qt-based multimedia player - сканер ReplayGain Вимоги: -- Qt >= 4.6 +- Qt >= 5.4 (qtbase, qtx11extras та qttools для компіляції) - tar, unzip, bzip2, gzip - libmad - libvorbis - libogg - libalsa >= 1.0.1 -- taglib >= 1.6 +- taglib >= 1.10 - curl >= 7.16 - libmms >= 0.4 (Опціонально) - flac >= 1.1.3 (Опціонально) - libmpcdec >= 1.2.6 (Опціонально) -- jackit >= 0.102.5 (Опціонально) +- jackit1 >= 0.121.0 чи jackit2 >= 1.9.8 (Опціонально) - libsamplerate >= 0.1.2 (Опціонально) - libmodplug >= 0.8.4 (Опціонально) -- libsndfile >= 1.0.17 (Опціонально) +- libsndfile >= 1.0.21 (Опціонально) - wavpack >= 4.41 (Опціонально) - pulseaudio >= 0.9.15 (Опціонально) - ffmpeg >= 0.9.1 чи libav >= 0.8.0 (Опціонально) @@ -95,7 +95,7 @@ Qmmp - Qt-based multimedia player - libWildMidi >= 0.2.3.4 (Опціонально) - libsidplayfp >= 1.0.3 (Опціонально) - libbs2b >= 3.0.0 (Опціонально) -- libprojectM >= 1.2.0 (Опціонально) +- libprojectM >= 2.0.0 (Опціонально) - libenca >= 1.9 (Опціонально) - mplayer (Опціонально) - cmake >= 2.8.6 (тільки для компіляції) @@ -117,17 +117,20 @@ cmake ./ -DUSE_JACK:BOOL=FALSE Доступні опції: - USE_CURL, USE_MMS (транспортні модулі); - USE_MAD, USE_FLAC, USE_VORBIS, USE_MPC, USE_MODPLUG, USE_SNDFILE, USE_WAVPACK, USE_FFMPEG, USE_AAC, USE_CUE, - USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_FFMPEG_LEGACY, USE_OPUS, USE_SID (декодери); -- USE_ALSA, USE_OSS, USE_JACK, USE_PULSE, USE_NULL, USE_OSS4, USE_WAVEOUT, USE_DSOUND (модулі виведення); -- USE_SRC, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO, USE_FILEWRITER (ефекти); + USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_OPUS, USE_SID (декодери); +- USE_ALSA, USE_OSS, USE_JACK, USE_PULSE, USE_NULL, USE_OSS4, USE_WAVEOUT, USE_DSOUND, USE_QTMULTIMEDIA, + USE_WASAPI (модулі виведення); +- USE_SOXR, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO, USE_FILEWRITER (ефекти); - USE_ANALYZER, USE_PROJECTM (візуалізація); - USE_MPRIS, USE_SCROBBLER, USE_STATICON, USE_NOTIFIER, USE_LYRICS, USE_HAL, USE_HOTKEY, USE_FILEOPS, USE_COVER, - USE_KDENOTIFY, USE_UDISKS2, USE_UDISKS, USE_CONVERTER, USE_RGSCAN, USE_TRACKCHANGE, USE_COPYPASTE, + USE_KDENOTIFY, USE_UDISKS2, USE_CONVERTER, USE_RGSCAN, USE_TRACKCHANGE, USE_COPYPASTE, USE_GNOMEHOTKEY (модулі загального призначення); - USE_QMMP_DIALOG (файловий діалог); - USE_ENCA (автоматичне визначення кодування); - USE_SKINNED (стандартний інтерфейс користувача); +- USE_QSUI (простий інтерфейс); - USE_DIR_ASSOC (прив'язка до mime-типу inode/directory); +- QMMP_DEFAULT_OUTPUT (модуль виведення за замовчанням, приклад використання: -DQMMP_DEFAULT_OUTPUT=pulse). Також ви можете використовувати ccmake для зміни конфігурації модулів. За замовчуванням програма буде встановлена в /usr/local. Ви можете змінити цей шлях командою: @@ -156,7 +159,7 @@ make install INSTALL_ROOT=/usr/local Якщо який-небудь модуль не збирається або не потрібен, у файлі qmmp.pri можна його відключити. Для відключення необхідно закоментувати відповідну строчку (символ "#"). -Увага! за замовчуванням включені всі модулі. +Увага! за замовчуванням включені всі модулі крім OSS4. Зміна шляху встановлення поділюваних бібліотек і модулів (потрібно для деяких 64-бітних дистрибутивів). За умовчанням усі бібліотеки та модулі будуть встановлені в $(INSTALL PREFIX)/lib. Ви можете змінити "lib" diff --git a/bin/qmmp_launcher b/bin/qmmp_launcher index 47e982a19..8dce947b6 100755 --- a/bin/qmmp_launcher +++ b/bin/qmmp_launcher @@ -1,6 +1,7 @@ #!/bin/sh MYDIR=$(dirname $0) -QT_LIB_DIR=$(dirname $(which qmake))/../lib +#QT_LIB_DIR=$(dirname $(which qmake))/../lib +QT_LIB_DIR=/opt/qt56/lib QMMP_LIB_DIRS=$MYDIR/../lib:$MYDIR/../src/qmmpui if [ -z ${LD_LIBRARY_PATH} ]; then @@ -5,7 +5,6 @@ unix: QMAKE_DISTCLEAN += -r .build #Some conf to redirect intermediate stuff in separate dirs - UI_DIR=./.build/ui/ MOC_DIR=./.build/moc/ OBJECTS_DIR=./.build/obj @@ -14,10 +13,17 @@ RCC_DIR=./.build/rcc #Defines DEFINES += QT_NO_CAST_FROM_BYTEARRAY QT_STRICT_ITERATORS +DEFINES += QMMP_WS_X11 +DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x050400 + +#Configuration + +CONFIG -= depend_includepath +QT += widgets #Version -QMMP_VERSION = 0.11.0 +QMMP_VERSION = 1.2.1 #Comment/uncomment this if you want to change plugins list @@ -42,7 +48,6 @@ CONFIG += SOXR_PLUGIN CONFIG += LADSPA_PLUGIN CONFIG += FILEWRITER_PLUGIN CONFIG += PROJECTM_PLUGIN -CONFIG += UDISKS_PLUGIN #deprecated CONFIG += UDISKS2_PLUGIN CONFIG += HAL_PLUGIN CONFIG += SID_PLUGIN @@ -52,10 +57,7 @@ CONFIG += SHOUT_PLUGIN #additional features CONFIG += WITH_ENCA -CONFIG += WITH_PROJECTM20 CONFIG += WITH_SKINNED CONFIG += WITH_QSUI -CONFIG += WITH_NEW_JACK -#CONFIG += FFMPEG_LEGACY #uncomment for ffmpeg < 0.9 or libav < 0.8 CONFIG -= $$DISABLED_PLUGINS @@ -10,8 +10,8 @@ unix:exists($$[QT_INSTALL_BINS]/lrelease){ LRELEASE_EXECUTABLE = $$[QT_INSTALL_BINS]/lrelease } -unix:exists($$[QT_INSTALL_BINS]/lrelease-qt4){ -LRELEASE_EXECUTABLE = $$[QT_INSTALL_BINS]/lrelease-qt4 +unix:exists($$[QT_INSTALL_BINS]/lrelease-qt5){ +LRELEASE_EXECUTABLE = $$[QT_INSTALL_BINS]/lrelease-qt5 } diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index e9189d18b..26fabf6df 100644 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -1,11 +1,6 @@ project(app) -SET(QT_USE_QTNETWORK TRUE) - INCLUDE(UsePkgConfig) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) ADD_DEFINITIONS( -Wall ) ADD_DEFINITIONS(-DQT_NO_DEBUG) @@ -25,37 +20,27 @@ SET(app_SRCS builtincommandlineoption.cpp main.cpp qmmpstarter.cpp - lxdesupport.cpp - qmmpapplication.cpp ) -SET(app_HDRS lxdesupport.h) - SET(app_RCCS images/images.qrc translations/qmmp_locales.qrc) -QT4_ADD_RESOURCES(app_RCC_SRCS ${app_RCCS}) +QT5_ADD_RESOURCES(app_RCC_SRCS ${app_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) -ADD_EXECUTABLE(qmmp MACOSX_BUNDLE ${app_SRCS} ${app_RCC_SRCS} ${app_HDRS}) -target_link_libraries(qmmp ${QT_LIBRARIES} libqmmp qmmpui) +ADD_EXECUTABLE(qmmp ${app_SRCS} ${app_RCC_SRCS}) +target_link_libraries(qmmp Qt5::Widgets libqmmp qmmpui) add_dependencies(qmmp qmmpui libqmmp) -IF(${CMAKE_SYSTEM_NAME} MATCHES Darwin) - set(MACOSX_BUNDLE_GUI_IDENTIFIER "com.ylsoftware.qmmp") - set(MACOSX_BUNDLE_ICON_FILE "icons.icns") - install(TARGETS qmmp DESTINATION .) - install(FILES images/mac/icons.icns DESTINATION ./qmmp.app/Contents/Resources) -ELSE() - install(TARGETS qmmp DESTINATION bin) - install(FILES qmmp.desktop DESTINATION share/applications) - install(FILES images/16x16/qmmp.png DESTINATION share/icons/hicolor/16x16/apps) - install(FILES images/32x32/qmmp.png DESTINATION share/icons/hicolor/32x32/apps) - install(FILES images/48x48/qmmp.png DESTINATION share/icons/hicolor/48x48/apps) - install(FILES images/scalable/qmmp.svgz images/scalable/qmmp-simple.svgz DESTINATION share/icons/hicolor/scalable/apps) - IF(USE_DIR_ASSOC) - install(FILES qmmp_enqueue.desktop DESTINATION share/applications) - install(FILES qmmp_dir.desktop DESTINATION share/applications) - ENDIF(USE_DIR_ASSOC) -ENDIF() +install(TARGETS qmmp DESTINATION bin) +install(FILES qmmp.desktop DESTINATION share/applications) +install(FILES images/16x16/qmmp.png DESTINATION share/icons/hicolor/16x16/apps) +install(FILES images/32x32/qmmp.png DESTINATION share/icons/hicolor/32x32/apps) +install(FILES images/48x48/qmmp.png DESTINATION share/icons/hicolor/48x48/apps) +install(FILES images/scalable/qmmp.svgz images/scalable/qmmp-simple.svgz DESTINATION share/icons/hicolor/scalable/apps) + +IF(USE_DIR_ASSOC) +install(FILES qmmp_enqueue.desktop DESTINATION share/applications) +install(FILES qmmp_dir.desktop DESTINATION share/applications) +ENDIF(USE_DIR_ASSOC) diff --git a/src/app/app.pro b/src/app/app.pro index bbc3fcff9..3f7ba55fd 100644 --- a/src/app/app.pro +++ b/src/app/app.pro @@ -8,15 +8,11 @@ win32:TARGET = ../../../bin/qmmp QT += network HEADERS += qmmpstarter.h \ - builtincommandlineoption.h \ - lxdesupport.h \ - qmmpapplication.h + builtincommandlineoption.h SOURCES += qmmpstarter.cpp \ builtincommandlineoption.cpp \ - lxdesupport.cpp \ - main.cpp \ - qmmpapplication.cpp + main.cpp RESOURCES = images/images.qrc translations/qmmp_locales.qrc diff --git a/src/app/desktop-translations/qmmp_cs.desktop.in b/src/app/desktop-translations/qmmp_cs.desktop.in index abecad571..1f1e4caff 100644 --- a/src/app/desktop-translations/qmmp_cs.desktop.in +++ b/src/app/desktop-translations/qmmp_cs.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Keywords=player;audio;video;multimedia; Exec=qmmp %F @@ -9,7 +9,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false Actions=Play;Pause;Stop;Previous;Next; @@ -35,6 +35,3 @@ Exec=qmmp --no-start --next # Translations -GenericName[cs]=Hudební přehrávač -Name[cs]=Qmmp -Icon[cs]=qmmp diff --git a/src/app/desktop-translations/qmmp_de.desktop.in b/src/app/desktop-translations/qmmp_de.desktop.in index e680b7643..2d5b1c113 100644 --- a/src/app/desktop-translations/qmmp_de.desktop.in +++ b/src/app/desktop-translations/qmmp_de.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Keywords=player;audio;video;multimedia; Exec=qmmp %F @@ -9,7 +9,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false Actions=Play;Pause;Stop;Previous;Next; @@ -35,7 +35,7 @@ Exec=qmmp --no-start --next # Translations -Comment[de]=Qt-basierter Multimediaabspieler +Comment[de]=Qt4-basierter Multimediaabspieler GenericName[de]=Audioabspieler Name[de]=Qmmp Icon[de]=qmmp diff --git a/src/app/desktop-translations/qmmp_dir_cs.desktop.in b/src/app/desktop-translations/qmmp_dir_cs.desktop.in index bd7bda025..c2b3d9c86 100644 --- a/src/app/desktop-translations/qmmp_dir_cs.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_cs.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Exec=qmmp %F Icon=qmmp @@ -14,6 +14,3 @@ X-KDE-StartupNotify=false # Translations -GenericName[cs]=Hudební přehrávač -Name[cs]=Qmmp -Icon[cs]=qmmp diff --git a/src/app/desktop-translations/qmmp_dir_de.desktop.in b/src/app/desktop-translations/qmmp_dir_de.desktop.in index 9b4a73961..86d5fc10c 100644 --- a/src/app/desktop-translations/qmmp_dir_de.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_de.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Exec=qmmp %F Icon=qmmp @@ -14,7 +14,7 @@ X-KDE-StartupNotify=false # Translations -Comment[de]=Qt-basierter Multimediaabspieler +Comment[de]=Qt4-basierter Multimediaabspieler GenericName[de]=Audioabspieler Name[de]=Qmmp Icon[de]=qmmp diff --git a/src/app/desktop-translations/qmmp_dir_he.desktop.in b/src/app/desktop-translations/qmmp_dir_he.desktop.in index a89065694..1c58874cd 100644 --- a/src/app/desktop-translations/qmmp_dir_he.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_he.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Exec=qmmp %F Icon=qmmp @@ -14,6 +14,5 @@ X-KDE-StartupNotify=false # Translations +Comment[he]=נגן מולטימדיה מבוסס Qt4 GenericName[he]=נגן שמע -Name[he]=Qmmp -Icon[he]=qmmp diff --git a/src/app/desktop-translations/qmmp_dir_ja.desktop.in b/src/app/desktop-translations/qmmp_dir_ja.desktop.in index adc7ae297..c2b3d9c86 100644 --- a/src/app/desktop-translations/qmmp_dir_ja.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_ja.desktop.in @@ -14,5 +14,3 @@ X-KDE-StartupNotify=false # Translations -Comment[ja]=Qt4 を用いたマルティミディアプレイヤー -GenericName[ja]=音楽プレイヤー diff --git a/src/app/desktop-translations/qmmp_dir_pt.desktop.in b/src/app/desktop-translations/qmmp_dir_pt.desktop.in index bd1d1a032..e8e52245a 100644 --- a/src/app/desktop-translations/qmmp_dir_pt.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_pt.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Exec=qmmp %F Icon=qmmp @@ -14,7 +14,7 @@ X-KDE-StartupNotify=false # Translations -Comment[pt]=Reprodutor multimédia criado em Qt +Comment[pt]=Reprodutor multimédia em Qt4 GenericName[pt]=Reprodutor áudio Name[pt]=Qmmp Icon[pt]=qmmp diff --git a/src/app/desktop-translations/qmmp_dir_pt_BR.desktop.in b/src/app/desktop-translations/qmmp_dir_pt_BR.desktop.in index be013851d..8a55e3c7e 100644 --- a/src/app/desktop-translations/qmmp_dir_pt_BR.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_pt_BR.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Exec=qmmp %F Icon=qmmp @@ -14,6 +14,7 @@ X-KDE-StartupNotify=false # Translations +Comment[pt_BR]=Reprodutor multimídia em Qt4 GenericName[pt_BR]=Reprodutor de áudio Name[pt_BR]=Qmmp Icon[pt_BR]=qmmp diff --git a/src/app/desktop-translations/qmmp_dir_ru.desktop.in b/src/app/desktop-translations/qmmp_dir_ru.desktop.in index c57a293bd..4846253ac 100644 --- a/src/app/desktop-translations/qmmp_dir_ru.desktop.in +++ b/src/app/desktop-translations/qmmp_dir_ru.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Exec=qmmp %F Icon=qmmp @@ -14,7 +14,5 @@ X-KDE-StartupNotify=false # Translations -Comment[ru]=Мультимедиа плеер на основе Qt +Comment[ru]=Мультимедиа плеер на основе Qt4 GenericName[ru]=Аудио-плеер -Name[ru]=Qmmp -Icon[ru]=qmmp diff --git a/src/app/desktop-translations/qmmp_enqueue_cs.desktop.in b/src/app/desktop-translations/qmmp_enqueue_cs.desktop.in index c3e05acf8..b28e0886e 100644 --- a/src/app/desktop-translations/qmmp_enqueue_cs.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_cs.desktop.in @@ -5,7 +5,7 @@ Comment=Add file(s) to the Qmmp playlist Exec=qmmp -e %F Icon=qmmp Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory; Type=Application X-KDE-StartupNotify=false NoDisplay=true @@ -13,4 +13,3 @@ Terminal=false # Translations -Icon[cs]=qmmp diff --git a/src/app/desktop-translations/qmmp_enqueue_de.desktop.in b/src/app/desktop-translations/qmmp_enqueue_de.desktop.in index 018890e1b..1014f36fd 100644 --- a/src/app/desktop-translations/qmmp_enqueue_de.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_de.desktop.in @@ -5,7 +5,7 @@ Comment=Add file(s) to the Qmmp playlist Exec=qmmp -e %F Icon=qmmp Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory; Type=Application X-KDE-StartupNotify=false NoDisplay=true diff --git a/src/app/desktop-translations/qmmp_enqueue_he.desktop.in b/src/app/desktop-translations/qmmp_enqueue_he.desktop.in index f9b5fd327..09cb5d5e3 100644 --- a/src/app/desktop-translations/qmmp_enqueue_he.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_he.desktop.in @@ -5,7 +5,7 @@ Comment=Add file(s) to the Qmmp playlist Exec=qmmp -e %F Icon=qmmp Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory; Type=Application X-KDE-StartupNotify=false NoDisplay=true @@ -15,4 +15,3 @@ Terminal=false # Translations Comment[he]=הוסף קבצים אל רשימת הניגון של Qmmp Name[he]=ספח לתוך Qmmp -Icon[he]=qmmp diff --git a/src/app/desktop-translations/qmmp_enqueue_ja.desktop.in b/src/app/desktop-translations/qmmp_enqueue_ja.desktop.in index 54b6e714b..b28e0886e 100644 --- a/src/app/desktop-translations/qmmp_enqueue_ja.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_ja.desktop.in @@ -13,5 +13,3 @@ Terminal=false # Translations -Comment[ja]=ファイルを QMMP のプレイリストに追加します -Name[ja]=後で QMMP で再生 diff --git a/src/app/desktop-translations/qmmp_enqueue_pt.desktop.in b/src/app/desktop-translations/qmmp_enqueue_pt.desktop.in index 5b7db2acc..a1d3e41f5 100644 --- a/src/app/desktop-translations/qmmp_enqueue_pt.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_pt.desktop.in @@ -5,7 +5,7 @@ Comment=Add file(s) to the Qmmp playlist Exec=qmmp -e %F Icon=qmmp Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory; Type=Application X-KDE-StartupNotify=false NoDisplay=true diff --git a/src/app/desktop-translations/qmmp_enqueue_pt_BR.desktop.in b/src/app/desktop-translations/qmmp_enqueue_pt_BR.desktop.in index a5a1f5481..bf9694bb4 100644 --- a/src/app/desktop-translations/qmmp_enqueue_pt_BR.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_pt_BR.desktop.in @@ -5,7 +5,7 @@ Comment=Add file(s) to the Qmmp playlist Exec=qmmp -e %F Icon=qmmp Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory; Type=Application X-KDE-StartupNotify=false NoDisplay=true diff --git a/src/app/desktop-translations/qmmp_enqueue_ru.desktop.in b/src/app/desktop-translations/qmmp_enqueue_ru.desktop.in index ba78d6069..490f61f63 100644 --- a/src/app/desktop-translations/qmmp_enqueue_ru.desktop.in +++ b/src/app/desktop-translations/qmmp_enqueue_ru.desktop.in @@ -5,7 +5,7 @@ Comment=Add file(s) to the Qmmp playlist Exec=qmmp -e %F Icon=qmmp Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;audio/x-ffmpeg-shorten;inode/directory; Type=Application X-KDE-StartupNotify=false NoDisplay=true @@ -15,4 +15,3 @@ Terminal=false # Translations Comment[ru]=Добавить файл(ы) в список воспроизведения Qmmp Name[ru]=Проиграть в Qmmp -Icon[ru]=qmmp diff --git a/src/app/desktop-translations/qmmp_he.desktop.in b/src/app/desktop-translations/qmmp_he.desktop.in index a44cd6fa1..618a6067a 100644 --- a/src/app/desktop-translations/qmmp_he.desktop.in +++ b/src/app/desktop-translations/qmmp_he.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Keywords=player;audio;video;multimedia; Exec=qmmp %F @@ -9,7 +9,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false Actions=Play;Pause;Stop;Previous;Next; @@ -35,6 +35,5 @@ Exec=qmmp --no-start --next # Translations +Comment[he]=נגן מולטימדיה מבוסס Qt4 GenericName[he]=נגן אודיו -Name[he]=Qmmp -Icon[he]=qmmp diff --git a/src/app/desktop-translations/qmmp_ja.desktop.in b/src/app/desktop-translations/qmmp_ja.desktop.in index f7dd48457..1f1e4caff 100644 --- a/src/app/desktop-translations/qmmp_ja.desktop.in +++ b/src/app/desktop-translations/qmmp_ja.desktop.in @@ -35,5 +35,3 @@ Exec=qmmp --no-start --next # Translations -Comment[ja]=Qt4 を用いたマルティミディアプレイヤー -GenericName[ja]=音楽プレイヤー diff --git a/src/app/desktop-translations/qmmp_pt.desktop.in b/src/app/desktop-translations/qmmp_pt.desktop.in index b8621e489..89dc19ad3 100644 --- a/src/app/desktop-translations/qmmp_pt.desktop.in +++ b/src/app/desktop-translations/qmmp_pt.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Keywords=player;audio;video;multimedia; Exec=qmmp %F @@ -9,7 +9,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false Actions=Play;Pause;Stop;Previous;Next; @@ -35,7 +35,7 @@ Exec=qmmp --no-start --next # Translations -Comment[pt]=Reprodutor multimédia criado em Qt +Comment[pt]=Reprodutor multimédia em Qt4 GenericName[pt]=Reprodutor áudio Name[pt]=Qmmp Icon[pt]=qmmp diff --git a/src/app/desktop-translations/qmmp_pt_BR.desktop.in b/src/app/desktop-translations/qmmp_pt_BR.desktop.in index 75a6a45b3..8a8b1a938 100644 --- a/src/app/desktop-translations/qmmp_pt_BR.desktop.in +++ b/src/app/desktop-translations/qmmp_pt_BR.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Keywords=player;audio;video;multimedia; Exec=qmmp %F @@ -9,7 +9,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false Actions=Play;Pause;Stop;Previous;Next; @@ -35,6 +35,7 @@ Exec=qmmp --no-start --next # Translations +Comment[pt_BR]=Reprodutor multimídia em Qt4 GenericName[pt_BR]=Reprodutor de áudio Name[pt_BR]=Qmmp Icon[pt_BR]=qmmp diff --git a/src/app/desktop-translations/qmmp_ru.desktop.in b/src/app/desktop-translations/qmmp_ru.desktop.in index 319de6570..113fd8b75 100644 --- a/src/app/desktop-translations/qmmp_ru.desktop.in +++ b/src/app/desktop-translations/qmmp_ru.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] X-Desktop-File-Install-Version=0.11 Name=Qmmp -Comment=Qt-based Multimedia Player +Comment=Qt4-based Multimedia Player GenericName=Audio player Keywords=player;audio;video;multimedia; Exec=qmmp %F @@ -9,7 +9,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;audio/aac;audio/x-aac;audio/m4a;audio/x-m4a; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xm;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false Actions=Play;Pause;Stop;Previous;Next; @@ -35,7 +35,5 @@ Exec=qmmp --no-start --next # Translations -Comment[ru]=Мультимедиа плеер на основе Qt +Comment[ru]=Мультимедиа плеер на основе Qt4 GenericName[ru]=Аудио-плеер -Name[ru]=Qmmp -Icon[ru]=qmmp diff --git a/src/app/images/mac/icons.icns b/src/app/images/mac/icons.icns Binary files differdeleted file mode 100644 index 7d1da8cd8..000000000 --- a/src/app/images/mac/icons.icns +++ /dev/null diff --git a/src/app/lxdesupport.cpp b/src/app/lxdesupport.cpp deleted file mode 100644 index da2a97232..000000000 --- a/src/app/lxdesupport.cpp +++ /dev/null @@ -1,48 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010-2014 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QIcon> -#include <QSettings> -#include <QDir> -#include "lxdesupport.h" - -void LXDESupport::load() -{ - if(qgetenv("XDG_CURRENT_DESKTOP") != "LXDE" && qgetenv("DESKTOP_SESSION") != "LXDE") - return; - - QString config_dir = qgetenv("XDG_CONFIG_HOME"); - if(config_dir.isEmpty()) - config_dir = QDir::homePath() + "/.config/"; - - QString config_file = config_dir + "/lxsession/LXDE/desktop.conf"; - QString themeName = "nuoveXT2"; - if(qgetenv("DESKTOP_SESSION") == "Lubuntu") - { - qDebug("LXDESupport: using Lubuntu configuration"); - config_file = config_dir + "/lxsession/Lubuntu/desktop.conf"; - themeName = "lubuntu"; - } - - QSettings lxde_settings(config_file, QSettings::IniFormat); - themeName = lxde_settings.value("GTK/sNet/IconThemeName", themeName).toString(); - if(!themeName.isEmpty()) - QIcon::setThemeName(themeName); -} diff --git a/src/app/lxdesupport.h b/src/app/lxdesupport.h deleted file mode 100644 index 6ac559534..000000000 --- a/src/app/lxdesupport.h +++ /dev/null @@ -1,33 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef LXDESUPPORT_H -#define LXDESUPPORT_H - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -class LXDESupport -{ -public: - static void load(); -}; - -#endif // LXDESUPPORT_H diff --git a/src/app/main.cpp b/src/app/main.cpp index e313e3c7f..671d313f3 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -31,7 +31,6 @@ #include <winuser.h> #endif #include <qmmp/qmmp.h> -#include "qmmpapplication.h" #include "qmmpstarter.h" int main(int argc, char *argv[]) @@ -40,7 +39,7 @@ int main(int argc, char *argv[]) //allows to activate main window from other instances AllowSetForegroundWindow(ASFW_ANY); #endif - QmmpApplication a (argc, argv ); + QApplication a (argc, argv ); a.setApplicationName("qmmp"); QIcon icon; icon.addFile(":/16x16/qmmp.png"); @@ -59,7 +58,7 @@ int main(int argc, char *argv[]) a.installTranslator(&translator); QTranslator qt_translator; - qt_translator.load(QLibraryInfo::location (QLibraryInfo::TranslationsPath) + "/qt_" + locale); + qt_translator.load(QLibraryInfo::location (QLibraryInfo::TranslationsPath) + "/qtbase_" + locale); a.installTranslator(&qt_translator); QMMPStarter starter; diff --git a/src/app/qmmp.rc b/src/app/qmmp.rc index e261a3793..9e3e6bfd6 100644 --- a/src/app/qmmp.rc +++ b/src/app/qmmp.rc @@ -1,7 +1,7 @@ #include <winver.h>
-#define QMMP_FILEVERSION 0,11,0,0
-#define QMMP_PRODUCTVERSION "0.11.0.0"
+#define QMMP_FILEVERSION 1,2,1,0
+#define QMMP_PRODUCTVERSION "1.2.1.0"
IDI_ICON1 ICON DISCARDABLE "images\\ico\\qmmp.ico"
IDI_ICON2 ICON DISCARDABLE "images\\ico\\qmmp_file.ico"
diff --git a/src/app/qmmpapplication.cpp b/src/app/qmmpapplication.cpp deleted file mode 100644 index d8c19c26a..000000000 --- a/src/app/qmmpapplication.cpp +++ /dev/null @@ -1,36 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2012 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <qmmpui/uihelper.h> -#include "qmmpapplication.h" - -QmmpApplication::QmmpApplication(int &argc, char **argv) : QApplication(argc, argv) -{ -} - -void QmmpApplication::commitData(QSessionManager &manager) -{ - if(UiHelper::instance()) - UiHelper::instance()->exit(); -#ifndef QT_NO_SESSIONMANAGER - else - QApplication::commitData(manager); -#endif -} diff --git a/src/app/qmmpapplication.h b/src/app/qmmpapplication.h deleted file mode 100644 index dc72e417e..000000000 --- a/src/app/qmmpapplication.h +++ /dev/null @@ -1,39 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2012 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef QMMPAPPLICATION_H -#define QMMPAPPLICATION_H - -#include <QApplication> - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -class QmmpApplication : public QApplication -{ - Q_OBJECT -public: - explicit QmmpApplication(int &argc, char **argv); - - void commitData(QSessionManager &manager); - -}; - -#endif // QMMPAPPLICATION_H diff --git a/src/app/qmmpstarter.cpp b/src/app/qmmpstarter.cpp index c2d038f6e..cbabb8a28 100644 --- a/src/app/qmmpstarter.cpp +++ b/src/app/qmmpstarter.cpp @@ -38,7 +38,6 @@ #include <qmmpui/uiloader.h> #include <qmmpui/qmmpuisettings.h> #include "qmmpstarter.h" -#include "lxdesupport.h" #include "builtincommandlineoption.h" #ifdef Q_OS_WIN @@ -48,8 +47,6 @@ #include <sys/stat.h> #endif - - #ifdef Q_OS_WIN #define UDS_PATH QString("qmmp") #else @@ -65,6 +62,9 @@ QMMPStarter::QMMPStarter() : QObject() m_ui = 0; m_finished = false; m_exit_code = EXIT_SUCCESS; +#ifndef QT_NO_SESSIONMANAGER + connect(qApp, SIGNAL(commitDataRequest(QSessionManager&)), SLOT(commitData(QSessionManager&)), Qt::DirectConnection); +#endif #ifdef Q_OS_WIN m_named_mutex = 0; #endif @@ -227,9 +227,6 @@ void QMMPStarter::startPlayer() theme_paths << share_path + "/icons"; theme_paths.removeDuplicates(); QIcon::setThemeSearchPaths(theme_paths); - - //load lxde icons - LXDESupport::load(); #endif //prepare libqmmp and libqmmpui libraries for usage @@ -275,6 +272,15 @@ void QMMPStarter::savePosition() m_core->stop(); } +void QMMPStarter::commitData(QSessionManager &manager) +{ + if(UiHelper::instance()) + UiHelper::instance()->exit(); +#ifndef QT_NO_SESSIONMANAGER + manager.release(); +#endif +} + void QMMPStarter::writeCommand() { QString workingDir = QDir::currentPath() + "|||"; diff --git a/src/app/qmmpstarter.h b/src/app/qmmpstarter.h index ce70aabe6..f62fa5b86 100644 --- a/src/app/qmmpstarter.h +++ b/src/app/qmmpstarter.h @@ -24,6 +24,7 @@ #include <QObject> #include <QAbstractSocket> #include <QStringList> +#include <QSessionManager> #ifdef Q_OS_WIN #include <windows.h> #endif @@ -58,6 +59,7 @@ private slots: void writeCommand(); void readCommand(); void savePosition(); + void commitData(QSessionManager& manager); private: QString processCommandArgs(const QStringList &list,const QString& cwd); diff --git a/src/app/translations/qmmp_bg.ts b/src/app/translations/qmmp_bg.ts index 93391400e..569723c7b 100644 --- a/src/app/translations/qmmp_bg.ts +++ b/src/app/translations/qmmp_bg.ts @@ -97,82 +97,82 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> diff --git a/src/app/translations/qmmp_cs.ts b/src/app/translations/qmmp_cs.ts index 7fc1c6c11..0b06a4690 100644 --- a/src/app/translations/qmmp_cs.ts +++ b/src/app/translations/qmmp_cs.ts @@ -97,82 +97,82 @@ <translation>Neznámý příkaz</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Použití: qmmp [volby] [soubory]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Volby:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Nespouštět aplikaci</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Zobrazit tento text a skončit</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Vypsat číslo verze a skončit</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP verze: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Zkompilováno s Qt verze: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Používá Qt verze: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Uživatelská rozhraní</translation> </message> diff --git a/src/app/translations/qmmp_de.ts b/src/app/translations/qmmp_de.ts index fca57233a..8ac935df8 100644 --- a/src/app/translations/qmmp_de.ts +++ b/src/app/translations/qmmp_de.ts @@ -97,82 +97,82 @@ <translation>Unbekannter Befehl</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Aufruf: qmmp [Optionen] [Dateien]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Optionen:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>qmmp mit der angegebenen Benutzeroberfläche starten</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Liste aller verfügbaren Benutzeroberflächen</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Die Anwendung nicht starten</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Zeigt diesen Hilfetext an</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Gibt die Versionsnummer aus</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Homepage: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Entwicklungsseite: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Befehlszeilenhilfe</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Qmmp-Version: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Kompiliert mit der Qt-Version %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Verwendet Qt-Version: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Qmmp-Version</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Benutzeroberflächen</translation> </message> diff --git a/src/app/translations/qmmp_el.ts b/src/app/translations/qmmp_el.ts index 8ecee7660..825a6e71f 100644 --- a/src/app/translations/qmmp_el.ts +++ b/src/app/translations/qmmp_el.ts @@ -97,82 +97,82 @@ <translation>Άγνωστη εντολή</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Χρήση: qmmp [επιλογές] [αρχεία]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Επιλογές:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Εκκίνηση του qmmp με το καθορισμένο περιβάλλον χρήστη</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Εμφάνιση όλων των διαθέσιμων περιβαλλόντων χρήστη</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Να μην εκκινηθεί η εφαρμογή</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Εμφάνιση του κειμένου και έξοδος</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Εμφάνιση του αριθμού έκδοσης και έξοδος</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Ιστοσελίδα: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Ιστοσελίδα ανάπτυξης: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Ιχνηλάτης σφαλμάτων: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Βοήθεια γραμμής εντολών</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Έκδοση του QMMP: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Μεταγλωττίστηκε με την έκδοση της Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Χρήση της έκδοσης της Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Έκδοση του Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Περιβάλλοντα χρήστη</translation> </message> diff --git a/src/app/translations/qmmp_en.ts b/src/app/translations/qmmp_en.ts index be35b785e..0d862397b 100644 --- a/src/app/translations/qmmp_en.ts +++ b/src/app/translations/qmmp_en.ts @@ -97,82 +97,82 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> diff --git a/src/app/translations/qmmp_es.ts b/src/app/translations/qmmp_es.ts index 9f262e095..51e53a884 100644 --- a/src/app/translations/qmmp_es.ts +++ b/src/app/translations/qmmp_es.ts @@ -97,82 +97,82 @@ <translation>Comando desconocido</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Uso: qmmp [opciones] [archivos]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opciones: </translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Iniciar qmmp con la interfaz de usuario especificada</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Mostrar lista de todas las interfaces de usuario disponibles</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>No iniciar la aplicación</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Muestra este texto y sale</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Mostrar el número de versión y salir</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Página de inicio: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Página de desarrollo: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Reporte de errores: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Ayuda de Consola</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP versión: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Compilado con Qt versión: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Usando Qt versión: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Versión de Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Interfaz de usuario</translation> </message> diff --git a/src/app/translations/qmmp_fi.ts b/src/app/translations/qmmp_fi.ts index 7216f3f49..f674758d7 100644 --- a/src/app/translations/qmmp_fi.ts +++ b/src/app/translations/qmmp_fi.ts @@ -97,82 +97,82 @@ <translation>Tuntematon komento</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Käyttö: qmmp [valinnat] [tiedostot]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Valinnat:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Käynnistä qmmp tietyllä käyttöliittymällä</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Listaa kaikki käytettävissä olevat käyttöliittymät</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Älä käynnistä sovellusta</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Näytä tämä teksti ja lopeta</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Tulosta versionumero ja lopeta</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Sivusto: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Kehityssivusto: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Vikaseuranta: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Komentorivin ohje</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP-versio: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Käännetty käyttäen Qt-versiota: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Käytössä Qt-versio: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Qmmp-versio</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Käyttöliittymät</translation> </message> diff --git a/src/app/translations/qmmp_fr.ts b/src/app/translations/qmmp_fr.ts index 12859bcef..79b6f4253 100644 --- a/src/app/translations/qmmp_fr.ts +++ b/src/app/translations/qmmp_fr.ts @@ -97,82 +97,82 @@ <translation>Commande inconnue</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Usage : qmmp [options] [fichiers]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Options : </translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Démarrer Qmmp avec l'interface spécifiée</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Lister toutes les interfaces disponibles</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Ne pas démarrer l'application</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Afficher ce texte et quitter</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Imprimer le numéro de version et quitter</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Page d'accueil: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Page du développement: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Traqueur de bugs: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Aide de la ligne de commande</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP version: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Compilé avec Qt version: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Utilisation de Qt version: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Version de Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Interfaces utilisateur</translation> </message> diff --git a/src/app/translations/qmmp_gl_ES.ts b/src/app/translations/qmmp_gl_ES.ts index 7b6416b5b..1fb4ab28d 100644 --- a/src/app/translations/qmmp_gl_ES.ts +++ b/src/app/translations/qmmp_gl_ES.ts @@ -97,82 +97,82 @@ <translation>Comando descoñecido</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Uso: qmmp [opcións] [ficheiros]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opcións:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Iniciar Qmmp coa interface de usuario especificada</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Listar tódalas interfaces de usuario dispoñibles</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Non lanzar o aplicativo</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Mostar este texto e saír</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Mostar número de versión e saír</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Páxina de inicio: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Páxina de desenrolo: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Seguimento de faios: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Axuda en liña de comandos</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>versión de QMMP: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Compilado coa versión %1 de Qt</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Usando a versión %1 de Qt</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Versión de Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Interfaces de usuario</translation> </message> diff --git a/src/app/translations/qmmp_he.ts b/src/app/translations/qmmp_he.ts index 383a23b9b..631e30bbd 100644 --- a/src/app/translations/qmmp_he.ts +++ b/src/app/translations/qmmp_he.ts @@ -97,82 +97,82 @@ <translation>פקודה לא מוכרת</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>הודר בעזרת Qt גירסה: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>ממשקי משתמש</translation> </message> diff --git a/src/app/translations/qmmp_hu.ts b/src/app/translations/qmmp_hu.ts index 9f3644dd1..ec02c79f7 100644 --- a/src/app/translations/qmmp_hu.ts +++ b/src/app/translations/qmmp_hu.ts @@ -97,82 +97,82 @@ <translation>Ismeretlen parancs</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Használat: qmmp [opciók] [fájlok]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opciók:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Mutasd ezt a szöveget, majd lépj ki</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Mutasd a verziószámot, majd lépj ki</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> diff --git a/src/app/translations/qmmp_id.ts b/src/app/translations/qmmp_id.ts index afc403f32..4bbc74a13 100644 --- a/src/app/translations/qmmp_id.ts +++ b/src/app/translations/qmmp_id.ts @@ -97,82 +97,82 @@ <translation>Perintah tak diketahui</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Penggunaan: qmmp [pilihan] [file]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Pilihan:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Start qmmp dengan antarmuka pengguna yang ditentukan</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Daftar semua antarmuka pengguna yang tersedia</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Jangan mulaikan aplikasi</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Tayangkan teks ini dan keluar</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Cetak nomor versi dan keluar</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Beranda: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Halaman pengembang: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Pelacak bug: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Bantuan Baris Perintah</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Versi QMMP: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Dikompilasi dengan versi Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Menggunakan versi Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Versi Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Antarmuka Pengguna</translation> </message> diff --git a/src/app/translations/qmmp_it.ts b/src/app/translations/qmmp_it.ts index 3be11d30b..dd513234e 100644 --- a/src/app/translations/qmmp_it.ts +++ b/src/app/translations/qmmp_it.ts @@ -92,77 +92,77 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Uso: qmmp [options] [fichiers]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opzioni: </translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Stampa il numero di versione ed esci</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Mostra questo testo ed esci</translation> </message> @@ -172,7 +172,7 @@ <translation>Comando sconosciuto</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> diff --git a/src/app/translations/qmmp_ja.ts b/src/app/translations/qmmp_ja.ts index 868c7ab11..e7570b7d0 100644 --- a/src/app/translations/qmmp_ja.ts +++ b/src/app/translations/qmmp_ja.ts @@ -97,82 +97,82 @@ <translation>不明なコマンドです</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>使用法: qmmp [オプション] [ファイル名:複数可]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>オプション:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>ユーザーインターフェイスを選んで起動する</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>利用可能なユーザーインターフェイス一覧</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>アプリケーションを始動しない</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>このメッセージを表示して終了</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>バージョン番号を表示して終了</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>ホームページ: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>開発者のページ: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>バグトラッカー: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>コマンド行ヘルプ</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP のバージョン: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>コンパイルに使用した Qt のバージョン: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>現在使用中の Qt のバージョン: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>QMMP バージョン</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>ユーザーインターフェイス</translation> </message> diff --git a/src/app/translations/qmmp_kk.ts b/src/app/translations/qmmp_kk.ts index 146f02150..67dba09de 100644 --- a/src/app/translations/qmmp_kk.ts +++ b/src/app/translations/qmmp_kk.ts @@ -97,82 +97,82 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Қолданылуы: qmmp [опциялар] [файлдар]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Опциялары:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Нұсқасын көрсету мен шығу</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Осы мәтінді көрсету және шығу</translation> </message> diff --git a/src/app/translations/qmmp_lt.ts b/src/app/translations/qmmp_lt.ts index 4710dd752..4c2571e6b 100644 --- a/src/app/translations/qmmp_lt.ts +++ b/src/app/translations/qmmp_lt.ts @@ -92,22 +92,22 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Naudojimas: qmmp [nuostatos] [bylos]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Nustatymai:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Parodyti versiją ir išeiti</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Parodyti šį tekstą ir išeiti</translation> </message> @@ -117,62 +117,62 @@ <translation>Nežinoma komanda</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Nepaleisti programos</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Terminalo pagalba </translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP versija: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Sukompiliuota su Qt versija: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Naudojama Qt versija: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Qmmp Versija</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> diff --git a/src/app/translations/qmmp_nl.ts b/src/app/translations/qmmp_nl.ts index ee9506826..38066ff24 100644 --- a/src/app/translations/qmmp_nl.ts +++ b/src/app/translations/qmmp_nl.ts @@ -92,82 +92,82 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Gebruik: qmmp [opties] [bestanden]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opties:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Niet de applicatie starten</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Print versienummer en sluit</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP versie: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Gecompileerd met QT versie: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Gebruikt QT versie: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Toon deze tekst en sluit</translation> </message> diff --git a/src/app/translations/qmmp_pl_PL.ts b/src/app/translations/qmmp_pl_PL.ts index 8e15a93ab..8f735a70c 100644 --- a/src/app/translations/qmmp_pl_PL.ts +++ b/src/app/translations/qmmp_pl_PL.ts @@ -97,82 +97,82 @@ <translation>Nieznane polecenie</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Użycie: qmmp [opcje] [pliki]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opcje:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Nie uruchamiaj aplikacji</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Wyświetla ten tekst i wychodzi</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Wyświetla wersję programu i wychodzi</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Linia Poleceń Pomoc</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Wersja QMMP: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Skompilowane z wersją QT: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Używana wersja Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Wersja Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Interfejs użytkownika</translation> </message> diff --git a/src/app/translations/qmmp_pt.ts b/src/app/translations/qmmp_pt.ts index 42a9cd518..74ed105f2 100644 --- a/src/app/translations/qmmp_pt.ts +++ b/src/app/translations/qmmp_pt.ts @@ -97,82 +97,82 @@ <translation>Comando desconhecido</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Utilização: qmmp [opções] [ficheiros]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opções:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Inicia o qmmp com a interface especificada</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Lista todas as interfaces disponíveis</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Não iniciar a aplicação</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Mostrar este texto e sair</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Mostrar número da versão e sair</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Página web: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Página de desenvolvimento: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Reporte de erros: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Ajuda para linha de comandos</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Versão Qmmp: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Compilado com Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Utiliza a versão Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Versão Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Interface de utilizador</translation> </message> diff --git a/src/app/translations/qmmp_pt_BR.ts b/src/app/translations/qmmp_pt_BR.ts index 76235c325..f3b60d8b8 100644 --- a/src/app/translations/qmmp_pt_BR.ts +++ b/src/app/translations/qmmp_pt_BR.ts @@ -97,82 +97,82 @@ <translation>Comando desconhecido</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>qmmp [opção] [arquivo]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Opções:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Não iniciar o aplicativo</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Exibir esse texto e sair</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Exibir informações sobre a versão e sair</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Ajuda para linha de comandos</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Versão do Qmmp: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Versão do Qt usado para compilação: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Versão Qt usada: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Versão Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Interface de usuário</translation> </message> diff --git a/src/app/translations/qmmp_ru.ts b/src/app/translations/qmmp_ru.ts index a34e28d2b..caa10c189 100644 --- a/src/app/translations/qmmp_ru.ts +++ b/src/app/translations/qmmp_ru.ts @@ -97,82 +97,82 @@ <translation>Неизвестная команда</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Использование: qmmp [options] [files]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Опции:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Запустить qmmp с указанным интерфейсом пользователя</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Вывести доступные интерфейсы пользователя</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Не запускать приложение</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Показать этот текст и выйти</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Показать версии и выйти</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Домашняя страница: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Страница разработки: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Система регистрации ошибок: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Справка по командной строке</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Версия QMMP: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Собрано с версией Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Используемая версия Qt: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Версия Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Интерфейсы пользователя</translation> </message> diff --git a/src/app/translations/qmmp_sk.ts b/src/app/translations/qmmp_sk.ts index 25bef13db..fa8b20132 100644 --- a/src/app/translations/qmmp_sk.ts +++ b/src/app/translations/qmmp_sk.ts @@ -92,82 +92,82 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Použitie: qmmp [možnosti] [súbory]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Možnosti:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Nezapnúť program</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Vypísať číslo verzie a skončiť</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Zobraziť tento text a skončiť</translation> </message> diff --git a/src/app/translations/qmmp_sr_BA.ts b/src/app/translations/qmmp_sr_BA.ts index dc7a94570..d4be0a222 100644 --- a/src/app/translations/qmmp_sr_BA.ts +++ b/src/app/translations/qmmp_sr_BA.ts @@ -92,82 +92,82 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Употреба: qmmp [опције] [фајлови]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Опције:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Не покрећи програм</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Прикажи издање и изађи</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Помоћ командне линије</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>КуМП: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Комилован Кут издањем: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Користим Кут издање: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Издање Кумпа</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Прикажи овај текст и изађи</translation> </message> diff --git a/src/app/translations/qmmp_sr_RS.ts b/src/app/translations/qmmp_sr_RS.ts index 74c51fa8e..c9cebf49c 100644 --- a/src/app/translations/qmmp_sr_RS.ts +++ b/src/app/translations/qmmp_sr_RS.ts @@ -92,82 +92,82 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Употреба: qmmp [опције] [фајлови]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Опције:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Не покрећи програм</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Прикажи издање и изађи</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Помоћ командне линије</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>КуМП: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Комилован Кут издањем: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Користим Кут издање: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Издање Кумпа</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Прикажи овај текст и изађи</translation> </message> diff --git a/src/app/translations/qmmp_tr.ts b/src/app/translations/qmmp_tr.ts index 718bcd580..747bc0040 100644 --- a/src/app/translations/qmmp_tr.ts +++ b/src/app/translations/qmmp_tr.ts @@ -92,82 +92,82 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Kullanım:qmmp [seçenek] [dosyalar]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Seçenekler:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Sürüm numarasını yazdır ve çık</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Bu metni göster ve çık</translation> </message> diff --git a/src/app/translations/qmmp_uk_UA.ts b/src/app/translations/qmmp_uk_UA.ts index a3a0c67c2..5f9398f20 100644 --- a/src/app/translations/qmmp_uk_UA.ts +++ b/src/app/translations/qmmp_uk_UA.ts @@ -92,82 +92,82 @@ <context> <name>QMMPStarter</name> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>Використання: qmmp [options] [files]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>Опції:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>Запустити qmmp з вказаним інтерфейсом користувача</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>Перелік доступних інтерфейсів користувача</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>Не запускати програму</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>Показати версію та вийти</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>Домашня сторінка: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>Сторінка розробки: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>Трекер помилок: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>Довідка по командному рядку</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>Версія QMMP: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>Зібрано з Qt версії: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>Використовується Qt версії: %1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Версія Qmmp</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>Інтерфейси користувача</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>Показати цей текст та вийти</translation> </message> diff --git a/src/app/translations/qmmp_zh_CN.ts b/src/app/translations/qmmp_zh_CN.ts index 5bab1c55f..38761b114 100644 --- a/src/app/translations/qmmp_zh_CN.ts +++ b/src/app/translations/qmmp_zh_CN.ts @@ -97,82 +97,82 @@ <translation>未知指令</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>使用:qmmp [设置] [文件]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>设置:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation>使用指定的用户界面启动 QMMP</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation>列出所有可用的用户界面</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>无法启动此程序</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>显示这些文本并退出</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>显示版本并退出</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation>主页:%1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation>开发页面:%1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation>问题报告站点:%1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation>命令行帮助</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation>QMMP版本:%1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation>用于编译的QT版本:%1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation>使用的Qt版本:%1</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation>Qmmp播放器版本</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation>用户界面</translation> </message> diff --git a/src/app/translations/qmmp_zh_TW.ts b/src/app/translations/qmmp_zh_TW.ts index 1947b820a..713d11ea9 100644 --- a/src/app/translations/qmmp_zh_TW.ts +++ b/src/app/translations/qmmp_zh_TW.ts @@ -97,82 +97,82 @@ <translation>未知指令</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="367"/> + <location filename="../qmmpstarter.cpp" line="373"/> <source>Usage: qmmp [options] [files]</source> <translation>使用:qmmp [設定] [文件]</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="368"/> + <location filename="../qmmpstarter.cpp" line="374"/> <source>Options:</source> <translation>設定:</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="374"/> + <location filename="../qmmpstarter.cpp" line="380"/> <source>Start qmmp with the specified user interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="375"/> + <location filename="../qmmpstarter.cpp" line="381"/> <source>List all available user interfaces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="376"/> + <location filename="../qmmpstarter.cpp" line="382"/> <source>Don't start the application</source> <translation>無法啟動此程式</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="377"/> + <location filename="../qmmpstarter.cpp" line="383"/> <source>Display this text and exit</source> <translation>察看這些字檔並結束</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="378"/> + <location filename="../qmmpstarter.cpp" line="384"/> <source>Print version number and exit</source> <translation>察看版本並結束</translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="380"/> + <location filename="../qmmpstarter.cpp" line="386"/> <source>Home page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="381"/> + <location filename="../qmmpstarter.cpp" line="387"/> <source>Development page: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="382"/> + <location filename="../qmmpstarter.cpp" line="388"/> <source>Bug tracker: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="387"/> + <location filename="../qmmpstarter.cpp" line="393"/> <source>Command Line Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="400"/> + <location filename="../qmmpstarter.cpp" line="406"/> <source>QMMP version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="401"/> + <location filename="../qmmpstarter.cpp" line="407"/> <source>Compiled with Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="402"/> + <location filename="../qmmpstarter.cpp" line="408"/> <source>Using Qt version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="405"/> + <location filename="../qmmpstarter.cpp" line="411"/> <source>Qmmp Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpstarter.cpp" line="422"/> + <location filename="../qmmpstarter.cpp" line="428"/> <source>User Interfaces</source> <translation type="unfinished"></translation> </message> diff --git a/src/mac/CMakeLists.txt b/src/mac/CMakeLists.txt deleted file mode 100644 index b3a55065a..000000000 --- a/src/mac/CMakeLists.txt +++ /dev/null @@ -1,2 +0,0 @@ -#Hack for MacOS X to run fix_mac_libs.sh script after installation -install(CODE "execute_process(COMMAND ${CMAKE_SOURCE_DIR}/utils/fix_mac_libs.sh ${CMAKE_INSTALL_PREFIX}/qmmp.app)") diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt index 0817582d5..0383f53b5 100644 --- a/src/plugins/CMakeLists.txt +++ b/src/plugins/CMakeLists.txt @@ -1,7 +1,8 @@ SET(USE_ENCA TRUE CACHE BOOL "enable/disable libenca support") include(FindPkgConfig) +set(CMAKE_CXX_VISIBILITY_PRESET hidden) pkg_search_module(ENCA enca>=1.9) -pkg_search_module(TAGLIB taglib>=1.6) +pkg_search_module(TAGLIB taglib>=1.10) add_subdirectory(Input) add_subdirectory(Output) add_subdirectory(Visual) diff --git a/src/plugins/CommandLineOptions/IncDecVolumeOption/CMakeLists.txt b/src/plugins/CommandLineOptions/IncDecVolumeOption/CMakeLists.txt index 07f86eab6..59ac695a1 100644 --- a/src/plugins/CommandLineOptions/IncDecVolumeOption/CMakeLists.txt +++ b/src/plugins/CommandLineOptions/IncDecVolumeOption/CMakeLists.txt @@ -1,20 +1,7 @@ project(libincdecvolumeoption) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -26,7 +13,7 @@ SET(libincdecvolumeoption_SRCS SET(libincdecvolumeoption_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libincdecvolumeoption_RCC_SRCS ${libincdecvolumeoption_RCCS}) +QT5_ADD_RESOURCES(libincdecvolumeoption_RCC_SRCS ${libincdecvolumeoption_RCCS}) # Don't forget to include output directory, otherwise @@ -36,5 +23,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(incdecvolumeoption MODULE ${libincdecvolumeoption_SRCS} ${libincdecvolumeoption_RCC_SRCS}) add_dependencies(incdecvolumeoption qmmpui) -target_link_libraries(incdecvolumeoption ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(incdecvolumeoption Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS incdecvolumeoption DESTINATION ${LIB_DIR}/qmmp/CommandLineOptions) diff --git a/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp b/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp index d5171e20c..3153fd6f6 100644 --- a/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp +++ b/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp @@ -70,5 +70,3 @@ QTranslator *IncDecVolumeCommandLineOption::createTranslator(QObject *parent) translator->load(QString(":/incdecvolume_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(incdecvolumeoption, IncDecVolumeCommandLineOption) diff --git a/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.h b/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.h index 28008c8a1..ad734880d 100644 --- a/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.h +++ b/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.h @@ -31,6 +31,7 @@ class IncDecVolumeCommandLineOption : public QObject, public CommandLineOption { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.CommandLineOptionInterface.1.0") Q_INTERFACES(CommandLineOption) public: virtual bool identify(const QString& opt_str) const; diff --git a/src/plugins/CommandLineOptions/PlayListOption/CMakeLists.txt b/src/plugins/CommandLineOptions/PlayListOption/CMakeLists.txt index dfbf50cf9..4a673e24d 100644 --- a/src/plugins/CommandLineOptions/PlayListOption/CMakeLists.txt +++ b/src/plugins/CommandLineOptions/PlayListOption/CMakeLists.txt @@ -1,20 +1,7 @@ project(libplaylistoption) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -26,7 +13,7 @@ SET(libplaylistoption_SRCS SET(libplaylistoption_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libplaylistoption_RCC_SRCS ${libplaylistoption_RCCS}) +QT5_ADD_RESOURCES(libplaylistoption_RCC_SRCS ${libplaylistoption_RCCS}) # Don't forget to include output directory, otherwise @@ -36,5 +23,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(playlistoption MODULE ${libplaylistoption_SRCS} ${libplaylistoption_RCC_SRCS}) add_dependencies(playlistoption qmmpui) -target_link_libraries(playlistoption ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(playlistoption Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS playlistoption DESTINATION ${LIB_DIR}/qmmp/CommandLineOptions) diff --git a/src/plugins/CommandLineOptions/PlayListOption/playlistoption.cpp b/src/plugins/CommandLineOptions/PlayListOption/playlistoption.cpp index 285e26f98..9f01bbca2 100644 --- a/src/plugins/CommandLineOptions/PlayListOption/playlistoption.cpp +++ b/src/plugins/CommandLineOptions/PlayListOption/playlistoption.cpp @@ -161,5 +161,3 @@ QString PlayListOption::boolToText(bool enabled) { return QString(enabled ? "[+]" : "[-]"); } - -Q_EXPORT_PLUGIN2(playlistoption, PlayListOption) diff --git a/src/plugins/CommandLineOptions/PlayListOption/playlistoption.h b/src/plugins/CommandLineOptions/PlayListOption/playlistoption.h index 8e6f72a32..a255e095a 100644 --- a/src/plugins/CommandLineOptions/PlayListOption/playlistoption.h +++ b/src/plugins/CommandLineOptions/PlayListOption/playlistoption.h @@ -33,6 +33,7 @@ class PlayListOption : public QObject, public CommandLineOption { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.CommandLineOptionInterface.1.0") Q_INTERFACES(CommandLineOption) public: virtual bool identify(const QString& opt_str) const; diff --git a/src/plugins/CommandLineOptions/SeekOption/CMakeLists.txt b/src/plugins/CommandLineOptions/SeekOption/CMakeLists.txt index 468e1861a..5a660e326 100644 --- a/src/plugins/CommandLineOptions/SeekOption/CMakeLists.txt +++ b/src/plugins/CommandLineOptions/SeekOption/CMakeLists.txt @@ -1,20 +1,7 @@ project(seekoption) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -26,7 +13,7 @@ SET(seekoption_SRCS SET(seekoption_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(seekoption_RCC_SRCS ${seekoption_RCCS}) +QT5_ADD_RESOURCES(seekoption_RCC_SRCS ${seekoption_RCCS}) # Don't forget to include output directory, otherwise @@ -35,5 +22,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(seekoption MODULE ${seekoption_SRCS} ${seekoption_RCC_SRCS}) add_dependencies(seekoption qmmpui) -target_link_libraries(seekoption ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(seekoption Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS seekoption DESTINATION ${LIB_DIR}/qmmp/CommandLineOptions) diff --git a/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp b/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp index 509f62392..02e971940 100644 --- a/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp +++ b/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp @@ -87,5 +87,3 @@ QTranslator *SeekOption::createTranslator(QObject *parent) translator->load(QString(":/seek_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(seekoption, SeekOption) diff --git a/src/plugins/CommandLineOptions/SeekOption/seekoption.h b/src/plugins/CommandLineOptions/SeekOption/seekoption.h index e19dae366..4310b1e53 100644 --- a/src/plugins/CommandLineOptions/SeekOption/seekoption.h +++ b/src/plugins/CommandLineOptions/SeekOption/seekoption.h @@ -31,6 +31,7 @@ class SeekOption : public QObject, public CommandLineOption { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.CommandLineOptionInterface.1.0") Q_INTERFACES(CommandLineOption) public: virtual bool identify(const QString& opt_str) const; diff --git a/src/plugins/CommandLineOptions/StatusOption/CMakeLists.txt b/src/plugins/CommandLineOptions/StatusOption/CMakeLists.txt index d04371f8a..b3bdec669 100644 --- a/src/plugins/CommandLineOptions/StatusOption/CMakeLists.txt +++ b/src/plugins/CommandLineOptions/StatusOption/CMakeLists.txt @@ -1,20 +1,7 @@ project(statusoption) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -26,7 +13,7 @@ SET(statusoption_SRCS SET(statusoption_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(statusoption_RCC_SRCS ${statusoption_RCCS}) +QT5_ADD_RESOURCES(statusoption_RCC_SRCS ${statusoption_RCCS}) # Don't forget to include output directory, otherwise @@ -35,5 +22,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(statusoption MODULE ${statusoption_SRCS} ${statusoption_RCC_SRCS}) add_dependencies(statusoption qmmpui) -target_link_libraries(statusoption ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(statusoption Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS statusoption DESTINATION ${LIB_DIR}/qmmp/CommandLineOptions) diff --git a/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp b/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp index 0450418c4..b2884fc76 100644 --- a/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp +++ b/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp @@ -139,5 +139,3 @@ QString StatusOption::genProgressBar() } return out; } - -Q_EXPORT_PLUGIN2(statusoption, StatusOption) diff --git a/src/plugins/CommandLineOptions/StatusOption/statusoption.h b/src/plugins/CommandLineOptions/StatusOption/statusoption.h index 840c6ca4a..1764aa136 100644 --- a/src/plugins/CommandLineOptions/StatusOption/statusoption.h +++ b/src/plugins/CommandLineOptions/StatusOption/statusoption.h @@ -34,6 +34,7 @@ class StatusOption : public QObject, public CommandLineOption { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.CommandLineOptionInterface.1.0") Q_INTERFACES(CommandLineOption) public: virtual bool identify(const QString& opt_str) const; diff --git a/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.cpp b/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.cpp index d74aebd61..a4a096f1b 100644 --- a/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.cpp +++ b/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.cpp @@ -71,5 +71,3 @@ QTranslator *UninstallOption::createTranslator(QObject *parent) translator->load(QString(":/uninstall_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(uninstalloption, UninstallOption) diff --git a/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h b/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h index 9eba15f49..21eb302a2 100644 --- a/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h +++ b/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h @@ -33,6 +33,7 @@ class UninstallOption : public QObject, public CommandLineOption { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.CommandLineOptionInterface.1.0") Q_INTERFACES(CommandLineOption) public: virtual bool identify(const QString& opt_str) const; diff --git a/src/plugins/Effect/bs2b/CMakeLists.txt b/src/plugins/Effect/bs2b/CMakeLists.txt index 884af2644..74e1d457d 100644 --- a/src/plugins/Effect/bs2b/CMakeLists.txt +++ b/src/plugins/Effect/bs2b/CMakeLists.txt @@ -1,20 +1,7 @@ project(libbs2b) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -31,7 +18,7 @@ SET(libbs2b_HDRS SET(libbs2b_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libbs2b_RCC_SRCS ${libbs2b_RCCS}) +QT5_ADD_RESOURCES(libbs2b_RCC_SRCS ${libbs2b_RCCS}) pkg_search_module(BS2B libbs2b>=3.0.0) @@ -45,7 +32,7 @@ SET(libbs2b_UIS settingsdialog.ui ) -QT4_WRAP_UI(libbs2b_UIS_H ${libbs2b_UIS}) +QT5_WRAP_UI(libbs2b_UIS_H ${libbs2b_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -54,6 +41,6 @@ IF(BS2B_FOUND) ADD_LIBRARY(bs2b MODULE ${libbs2b_SRCS} ${libbs2b_UIS_H} ${libbs2b_RCC_SRCS} ${libbs2b_HDRS}) add_dependencies(bs2b qmmp) -target_link_libraries(bs2b ${QT_LIBRARIES} libqmmp ${BS2B_LDFLAGS}) +target_link_libraries(bs2b Qt5::Widgets -lqmmp ${BS2B_LDFLAGS}) install(TARGETS bs2b DESTINATION ${LIB_DIR}/qmmp/Effect) ENDIF(BS2B_FOUND) diff --git a/src/plugins/Effect/bs2b/effectbs2bfactory.cpp b/src/plugins/Effect/bs2b/effectbs2bfactory.cpp index cb43dd017..ef60a6d88 100644 --- a/src/plugins/Effect/bs2b/effectbs2bfactory.cpp +++ b/src/plugins/Effect/bs2b/effectbs2bfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <bs2b/bs2bversion.h> #include <qmmp/qmmp.h> #include "effectbs2bfactory.h" @@ -68,5 +67,3 @@ QTranslator *EffectBs2bFactory::createTranslator(QObject *parent) translator->load(QString(":/bs2b_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(bs2b,EffectBs2bFactory) diff --git a/src/plugins/Effect/bs2b/effectbs2bfactory.h b/src/plugins/Effect/bs2b/effectbs2bfactory.h index 18cd391e1..3abe51a1d 100644 --- a/src/plugins/Effect/bs2b/effectbs2bfactory.h +++ b/src/plugins/Effect/bs2b/effectbs2bfactory.h @@ -30,7 +30,8 @@ class EffectBs2bFactory : public QObject, public EffectFactory { Q_OBJECT -Q_INTERFACES(EffectFactory); +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) public: const EffectProperties properties() const; diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_bg.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_bg.ts index 98531e2f9..ef32f2526 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_bg.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_bg.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_cs.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_cs.ts index ea37a5d85..a463b6527 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_cs.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_cs.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Modul BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>O efektovém modulu BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Toto je modul Qmmp pro digitální efekt Borise Michajlova „Bauer stereophonic-to-binaural“, zkracovaný bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Pro podrobnosti navštivte %1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Sestaveno s libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Vývojáři:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_de.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_de.ts index cad2bf1fb..d5f951b67 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_de.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_de.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B-Modul</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Über BS2B-Effektmodul</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Das ist das Qmmp-Modul von Boris Mikhaylovs Kopfhörer-DSP-Effekt „Bauer stereophonic-to-binaural”, abgekürzt bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Besuchen Sie %1 für mehr Informationen</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Kompiliert gegen libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Entwickler:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_el.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_el.ts index 9714495cf..eb1d55289 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_el.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_el.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Πρόσθετο BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Σχετικά με το πρόσθετο τεχνασμάτων εντυπωσιασμού BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Αυτό είναι η έκδοση του Qmmp του πρόσθετου του Boris Mikhaylov τεχνασμάτων ακουστικών DSP «Bauer stereophonic-to-binaural», στη συντομογραφία bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Ανατρέξτε στο %1 για περισσότερες πληροφορίες</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Μεταγλωττίστηκε χρησιμοποιώντας τη βιβλιοθήκη libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Προγραμματιστές:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_en.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_en.ts index ea1deddbb..7542084c5 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_en.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_en.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_es.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_es.ts index a88c34288..7101c06b5 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_es.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_es.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Módulo BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Sobre el módulo de efectos BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Esta es la versión para Qmmp del módulo de efecto auricular DSP de Boris Mikhaylov "Bauer stereophonic-to-binaural", abreviado bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Visita %1 para más detalles</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Compilado con libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Desarrolladores:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_fi.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_fi.ts index b20b37397..8931eb98a 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_fi.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_fi.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B-liitännäinen</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Tietoja - BS2B-tehosteliitännäinen</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Kehittäjät:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_fr.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_fr.ts index aacab69ce..b121fac70 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_fr.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_fr.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Greffon BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>À propos du greffon d'effets BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Ceci est le greffon pour Qmmp de l'implémentation par Boris Mikhaylov de la conversion « stéréophonie-vers-binaural Bauer », en abrégé BS2B.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Visitez %1 pour plus de détails</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Compilé contre libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Développeurs :</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_gl_ES.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_gl_ES.ts index 63bb98370..0a4ddd2ce 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_gl_ES.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_gl_ES.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Engadido BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Sobre o engadido de efecto BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Este engadido é a versión de Qmmp do efecto headphone DSP de Boris Mikhaylov "Bauer stereophonic-to-binaural", abreviado bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Visita %1 para máis detalles</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Compilado con libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Desenvolvedores:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_he.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_he.ts index f3364b33e..fe52eb6e3 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_he.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_he.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>תוסף BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>אודות תוסף אפקט BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>זוהי גירסת תוסף Qmmp של אפקט אוזניות DSP של Boris Mikhaylov "Bauer stereophonic-to-binaural", ובקיצור bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>בקרו אצל %1 למידע נוסף</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>הודר כנגד libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>מפתחים:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_hu.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_hu.ts index 7c1cf3bd5..6f2646635 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_hu.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_hu.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_id.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_id.ts index 2a97b754e..e26e63ba1 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_id.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_id.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Plugin BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Tentang Plugin Efek BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Ini adalah versi plugin Qmmp pada efek headphone Boris Mikhaylov's "Bauer stereophonic-to-binaural", yang disingkat bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Kunjungi %1 untuk lebih jelasnya</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Dikompilasi terhadap libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Pengembang:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_it.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_it.ts index 7c50336b8..d4453ebef 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_it.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_it.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Modulo BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Info sul modulo effetti BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Versione per Qmmp del modulo headphone DSP effect "Bauer stereophonic-to-binaural" di Boris Mikhaylov, abbreviato in bs2b</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Visita %1 per maggiori informazioni</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Compilato con libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Sviluppatori:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_ja.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_ja.ts index 81cb8e467..c72f6eabc 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_ja.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_ja.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B プラグイン</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>BS2B 効果プラグインについて</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>これは "Bauer stereophonic-to-binaural" (BS2B) に基づき Борис Михайлов (Boris Mikhaylov) 氏が作成したヘッドフォン用 DSP 効果ライブラリを利用するための QMMP 用プラグインです。</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>詳しい情報は %1 でご覧ください</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>libbs2b-%1 を使用してコンパイル</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>開発者:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_kk.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_kk.ts index d03a37d37..9b7cf5228 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_kk.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_kk.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_lt.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_lt.ts index e4aeed72c..d6c241a3f 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_lt.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_lt.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B įskiepis</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Apie BS2B įskiepį</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Boriso Mikhaylovo ausinių DSP efektas "Bauer stereophonic-to-binaural", sutrumpinimas bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Daugiau informacijos %1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Surinkta iš libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Sukūrė:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_nl.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_nl.ts index 6db78ce3e..f0bef6066 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_nl.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_nl.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B Module</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Over de BS2B Effecten Module</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Dit is de Qmmp module versie van Boris Mikhaylov's "Headset DSP effect" Bauer stereofonisch-naar-'binaural', afgekort bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Bezoek %1 voor meer details</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Gecompileerd tegen libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Ontwikkelaars:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_pl_PL.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_pl_PL.ts index 0357d3bc3..eb54b3acb 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_pl_PL.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_pl_PL.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Wtyczka BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>O wtyczce BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Jest to wersja wtyczki efektu DSP dla słuchawek autorstwa Boris Mikhaylov'a "Bauer stereophonic-to-binaural", w skrócie bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Odwiedź %1 po więcej informacji</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Skompilowane z biblioteką w wersji-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Autorzy:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt.ts index 6b86a2612..c55f4bfbb 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Suplemento BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Sobre o suplemento BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Este é o suplemento Qmmp do efeito DSP "Bauer stereophonic-to-binaural", abreviado para BS2B e desenvolvido por Boris Mikhaylov.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Aceda a %1 para mais detalhes</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Compilado com libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Programadores:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt_BR.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt_BR.ts index 1c7719709..76e8e7fbc 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt_BR.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_pt_BR.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Plugin BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Sobre o plugin BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Este é o plugin Qmmp do efeito DSP "Bauer stereophonic-to-binaural", abreviado para BS2B e desenvolvido por Boris Mikhaylov.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Acesse %1 para mais detalhes</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Compilado com libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Programadores:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_ru.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_ru.ts index 87a0572c4..6c199dca6 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_ru.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_ru.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Модуль BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>О модуле эффектов BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Этот модуль добавляет эффект "Bauer stereophonic-to-binaural" (сокращённо bs2b) Бориса Михайлова.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Для получения информации посетите %1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Собрано с libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Разработчики:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation>Sebastian Pipping <sebastian@pipping.org></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_sk.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_sk.ts index b2289d268..377005d86 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_sk.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_sk.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_BA.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_BA.ts index 82834b586..e81098393 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_BA.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_BA.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>БС2Б прикључак</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>О прикључку за БС2Б ефекат</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Кумп издање прикључка ДСП ефекта за слушалице „Бауерово стереофонски-на-бинаурално“ Бориса Михајлова, скраћено бс2б.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Посјетите %1 за више детаља</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Компилован на libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Програмери:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_RS.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_RS.ts index ab1939ccc..b7d96966a 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_RS.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_sr_RS.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>БС2Б прикључак</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>О прикључку за БС2Б ефекат</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Кумп издање прикључка ДСП ефекта за слушалице „Бауерово стереофонски-на-бинаурално“ Бориса Михајлова, скраћено бс2б.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Посетите %1 за више детаља</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Компилован на libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Програмери:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_tr.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_tr.ts index 84da238fb..00d0105b2 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_tr.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_tr.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B Eklentisi</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>BS2B Efekt Eklentisi Hakkında</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Bu eklenti Boris Mikhaylov'un "Bauer-stereophonic-to-binaural", kısaca bs2b, kulaklık DSP efektinin Qmmp sürümüdür.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Detaylar için %1 adresini ziyaret edin</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>libbs2b-%1 ile derlenmiştir</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Geliştiriciler:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_uk_UA.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_uk_UA.ts index f52222a59..30bbeb33a 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_uk_UA.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_uk_UA.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>Модуль BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>Про модуль ефектів BS2B</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>Цей модуль додає ефект "Bauer stereophonic-to-binaural" (скорочено bs2b) Бориса Михайлова.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>Для отримання інформації відвідайте %1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>Зібрано з libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>Розробники:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_CN.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_CN.ts index c0d0d6a39..34a32b48f 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_CN.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_CN.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B 插件</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>关于 BS2B 特效插件</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>此版本的 Qmmp 插件基于 Boris Mikhaylov 的耳机 DSP 特效 "Bauer stereophonic-to-binaural", 精简的 bs2b 。</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>访问 %1 了解更多情况</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>编译依赖 libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>开发者:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_TW.ts b/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_TW.ts index 81d8ce27a..0086491a0 100644 --- a/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_TW.ts +++ b/src/plugins/Effect/bs2b/translations/bs2b_plugin_zh_TW.ts @@ -4,42 +4,42 @@ <context> <name>EffectBs2bFactory</name> <message> - <location filename="../effectbs2bfactory.cpp" line="33"/> + <location filename="../effectbs2bfactory.cpp" line="32"/> <source>BS2B Plugin</source> <translation>BS2B 外掛</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="53"/> + <location filename="../effectbs2bfactory.cpp" line="52"/> <source>About BS2B Effect Plugin</source> <translation>關於BS2B 特效插件</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="54"/> + <location filename="../effectbs2bfactory.cpp" line="53"/> <source>This is the Qmmp plugin version of Boris Mikhaylov's headphone DSP effect "Bauer stereophonic-to-binaural", abbreviated bs2b.</source> <translation>此版本的 Qmmp 插件基於 Boris Mikhaylov 的耳機 DSP 特效 "Bauer stereophonic-to-binaural", 簡單的 bs2b.</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="56"/> + <location filename="../effectbs2bfactory.cpp" line="55"/> <source>Visit %1 for more details</source> <translation>訪問 %1 了解更多內容</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="58"/> + <location filename="../effectbs2bfactory.cpp" line="57"/> <source>Compiled against libbs2b-%1</source> <translation>編譯依賴 libbs2b-%1</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="59"/> + <location filename="../effectbs2bfactory.cpp" line="58"/> <source>Developers:</source> <translation>開發者:</translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="60"/> + <location filename="../effectbs2bfactory.cpp" line="59"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectbs2bfactory.cpp" line="61"/> + <location filename="../effectbs2bfactory.cpp" line="60"/> <source>Sebastian Pipping <sebastian@pipping.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/CMakeLists.txt b/src/plugins/Effect/crossfade/CMakeLists.txt index 5f0480f5d..3b4fdea5f 100644 --- a/src/plugins/Effect/crossfade/CMakeLists.txt +++ b/src/plugins/Effect/crossfade/CMakeLists.txt @@ -1,20 +1,7 @@ project(libcrossfade) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -31,7 +18,7 @@ SET(libcrossfade_HDRS SET(libcrossfade_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libcrossfade_RCC_SRCS ${libcrossfade_RCCS}) +QT5_ADD_RESOURCES(libcrossfade_RCC_SRCS ${libcrossfade_RCCS}) # user interface @@ -39,7 +26,7 @@ SET(libcrossfade_UIS settingsdialog.ui ) -QT4_WRAP_UI(libcrossfade_UIS_H ${libcrossfade_UIS}) +QT5_WRAP_UI(libcrossfade_UIS_H ${libcrossfade_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -48,5 +35,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(crossfade MODULE ${libcrossfade_SRCS} ${libcrossfade_UIS_H} ${libcrossfade_RCC_SRCS} ${libcrossfade_HDRS}) add_dependencies(crossfade qmmp) -target_link_libraries(crossfade ${QT_LIBRARIES} libqmmp) +target_link_libraries(crossfade Qt5::Widgets -lqmmp) install(TARGETS crossfade DESTINATION ${LIB_DIR}/qmmp/Effect) diff --git a/src/plugins/Effect/crossfade/effectcrossfadefactory.cpp b/src/plugins/Effect/crossfade/effectcrossfadefactory.cpp index 09cc33b77..5fb4061e3 100644 --- a/src/plugins/Effect/crossfade/effectcrossfadefactory.cpp +++ b/src/plugins/Effect/crossfade/effectcrossfadefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * + * Copyright (C) 2010-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "effectcrossfadefactory.h" #include "settingsdialog.h" @@ -62,5 +61,3 @@ QTranslator *EffectCrossfadeFactory::createTranslator(QObject *parent) translator->load(QString(":/crossfade_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(crossfade,EffectCrossfadeFactory) diff --git a/src/plugins/Effect/crossfade/effectcrossfadefactory.h b/src/plugins/Effect/crossfade/effectcrossfadefactory.h index 6958985af..b2f268441 100644 --- a/src/plugins/Effect/crossfade/effectcrossfadefactory.h +++ b/src/plugins/Effect/crossfade/effectcrossfadefactory.h @@ -30,7 +30,8 @@ class EffectCrossfadeFactory : public QObject, public EffectFactory { Q_OBJECT -Q_INTERFACES(EffectFactory); +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) public: const EffectProperties properties() const; diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_bg.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_bg.ts index c5c5d9cc2..0a4d13643 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_bg.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_cs.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_cs.ts index 3d113efec..004302efa 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_cs.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Modul prolínání</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>O modulu prolínání</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Modul prolínání Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_de.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_de.ts index 8b4ac278d..f4c1532c6 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_de.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Überblendungsmodul</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Über Überblendungsmodul</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Qmmp Überblendungsmodul</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_el.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_el.ts index 887b1d1e5..0b07d2711 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_el.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Πρόσθετο ομαλής μετάβασης</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Σχετικά με το πρόσθετο ομαλής μετάβασης</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Qmmp πρόσθετο ομαλής μετάβασης</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_en.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_en.ts index 2ab45038f..d94e6d13d 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_en.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_es.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_es.ts index 111e780ff..1d0699cfa 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_es.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Módulo Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Acerca del módulo Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Módulo Crossfade para Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_fi.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_fi.ts index 2dc353780..eb0b9afb9 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_fi.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Ristiinhäivytysliitännäinen</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Qmmp-ristiinhäivytysliitännäinen</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_fr.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_fr.ts index 15abe547f..4d45f6f32 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_fr.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Greffon de fondu enchaîné</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>À propos du greffon de fondu enchaîné</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Greffon de fondu enchaîné pour Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_gl_ES.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_gl_ES.ts index 10952df03..61ff65a63 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_gl_ES.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Engadido Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Sobre o engadido Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Engadido Crossfade Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_he.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_he.ts index 0cc5e52cc..0335c075c 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_he.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>תוסף עמעום</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>אודות תוסף עמעום</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>תוסף עמעום של Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_hu.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_hu.ts index afcd213cf..98e4caa41 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_hu.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_id.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_id.ts index c12237b0a..1161a4592 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_id.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Plugin Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Tentang Plugin Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Plugin Crossfade Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_it.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_it.ts index 0e90203de..8101ff9e4 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_it.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_ja.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_ja.ts index 6d54601b7..0002aa294 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_ja.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Crossfade プラグイン</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Crossfade プラグインについて</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>QMMP Crossfade プラグイン</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_kk.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_kk.ts index c0c76ec31..c36832d57 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_kk.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_lt.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_lt.ts index 45ae11d43..9ab0c2ec6 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_lt.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Crossfade įskiepis</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Apie crossfade įskiepį</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Qmmp Crossfade įskiepis</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_nl.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_nl.ts index dfe2db39b..e6a2b1eb7 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_nl.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Overlap Module</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Over de Overlap Module</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Overlap Module voor Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_pl_PL.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_pl_PL.ts index 2d20858e7..6e112cf2b 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_pl_PL.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Wtyczka Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>O wtyczce Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Wtyczka Crossfade dla Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt.ts index 552818e65..a544307ac 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Suplemento Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Sobre o suplemento Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Suplemento Qmmp Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt_BR.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt_BR.ts index a7d650166..04fa94385 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt_BR.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Plugin Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Sobre o plugin Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Plugin Qmmp Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_ru.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_ru.ts index 669af0c2a..6f8c0e02c 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_ru.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Модуль Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>О модуле crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Модуль crossfade для Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_sk.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_sk.ts index 027bac533..295fe5bff 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_sk.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_BA.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_BA.ts index eefd3c714..0c497bbed 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_BA.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Претапање</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>О прикључку за претапање</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Кумп прикључак за претапање</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_RS.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_RS.ts index ac26ec41b..7b7127b8e 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_RS.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Претапање</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>О прикључку за претапање</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Кумп прикључак за претапање</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_tr.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_tr.ts index 3b1a7d0e5..6ab631617 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_tr.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_uk_UA.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_uk_UA.ts index c221b4131..03a409ce4 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_uk_UA.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>Модуль Crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>Про модуль crossfade</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Модуль crossfade для Qmmp</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_CN.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_CN.ts index 6311ccd62..03cb8e84f 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_CN.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>交叉衰落插件</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>关于交叉衰落插件</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Qmmp 交叉衰落插件</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_TW.ts b/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_TW.ts index 763b4d2f0..c3a3d4037 100644 --- a/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_TW.ts +++ b/src/plugins/Effect/crossfade/translations/crossfade_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>EffectCrossfadeFactory</name> <message> - <location filename="../effectcrossfadefactory.cpp" line="32"/> + <location filename="../effectcrossfadefactory.cpp" line="31"/> <source>Crossfade Plugin</source> <translation>交叉衰落插件</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="53"/> + <location filename="../effectcrossfadefactory.cpp" line="52"/> <source>About Crossfade Plugin</source> <translation>關於交叉衰落插件</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="54"/> + <location filename="../effectcrossfadefactory.cpp" line="53"/> <source>Qmmp Crossfade Plugin</source> <translation>Qmmp 交叉衰落插件</translation> </message> <message> - <location filename="../effectcrossfadefactory.cpp" line="55"/> + <location filename="../effectcrossfadefactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/CMakeLists.txt b/src/plugins/Effect/filewriter/CMakeLists.txt index 7fa00b30e..2e28c58fd 100644 --- a/src/plugins/Effect/filewriter/CMakeLists.txt +++ b/src/plugins/Effect/filewriter/CMakeLists.txt @@ -1,20 +1,7 @@ project(libfilewriter) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -39,7 +26,7 @@ SET(libfilewriter_HDRS SET(libfilewriter_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libfilewriter_RCC_SRCS ${libfilewriter_RCCS}) +QT5_ADD_RESOURCES(libfilewriter_RCC_SRCS ${libfilewriter_RCCS}) # user interface @@ -47,7 +34,7 @@ SET(libfilewriter_UIS settingsdialog.ui ) -QT4_WRAP_UI(libfilewriter_UIS_H ${libfilewriter_UIS}) +QT5_WRAP_UI(libfilewriter_UIS_H ${libfilewriter_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -55,6 +42,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(VORBISENC_FOUND) ADD_LIBRARY(filewriter MODULE ${libfilewriter_SRCS} ${libfilewriter_UIS_H} ${libfilewriter_RCC_SRCS} ${libfilewriter_HDRS}) add_dependencies(filewriter qmmp qmmpui) -target_link_libraries(filewriter ${QT_LIBRARIES} libqmmp qmmpui ${VORBISENC_LDFLAGS}) +target_link_libraries(filewriter Qt5::Widgets -lqmmp -lqmmpui ${VORBISENC_LDFLAGS}) install(TARGETS filewriter DESTINATION ${LIB_DIR}/qmmp/Effect) ENDIF(VORBISENC_FOUND) diff --git a/src/plugins/Effect/filewriter/effectfilewriterfactory.cpp b/src/plugins/Effect/filewriter/effectfilewriterfactory.cpp index 276fcc575..140b14f50 100644 --- a/src/plugins/Effect/filewriter/effectfilewriterfactory.cpp +++ b/src/plugins/Effect/filewriter/effectfilewriterfactory.cpp @@ -20,7 +20,6 @@ #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "filewriterplugin.h" #include "settingsdialog.h" @@ -62,5 +61,3 @@ QTranslator *EffectFileWriterFactory::createTranslator(QObject *parent) translator->load(QString(":/filewriter_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(filewriter,EffectFileWriterFactory) diff --git a/src/plugins/Effect/filewriter/effectfilewriterfactory.h b/src/plugins/Effect/filewriter/effectfilewriterfactory.h index 494f4c41b..8f15a13db 100644 --- a/src/plugins/Effect/filewriter/effectfilewriterfactory.h +++ b/src/plugins/Effect/filewriter/effectfilewriterfactory.h @@ -30,6 +30,7 @@ class EffectFileWriterFactory : public QObject, public EffectFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") Q_INTERFACES(EffectFactory) public: diff --git a/src/plugins/Effect/filewriter/filewriterplugin.cpp b/src/plugins/Effect/filewriter/filewriterplugin.cpp index 1091787a1..c605370e0 100644 --- a/src/plugins/Effect/filewriter/filewriterplugin.cpp +++ b/src/plugins/Effect/filewriter/filewriterplugin.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ #include <QSettings> -#include <QDesktopServices> +#include <QStandardPaths> #include <time.h> #include <qmmp/soundcore.h> #include <qmmpui/metadataformatter.h> @@ -116,7 +116,7 @@ void FileWriterPlugin::init(const QMap<Qmmp::MetaData, QString> &metaData) QSettings settings(Qmmp::configFile(), QSettings::IniFormat); float quality = settings.value("FileWriter/vorbis_quality", 0.8).toFloat(); - QString outDir = QDesktopServices::storageLocation(QDesktopServices::MusicLocation); + QString outDir = QStandardPaths::writableLocation(QStandardPaths::MusicLocation); outDir = settings.value("FileWriter/out_dir", outDir).toString(); QString fileName = settings.value("FileWriter/file_name", "%p%if(%p&%t, - ,)%t").toString(); if(fileName.isEmpty()) diff --git a/src/plugins/Effect/filewriter/settingsdialog.cpp b/src/plugins/Effect/filewriter/settingsdialog.cpp index 8e2731b37..e5f30e143 100644 --- a/src/plugins/Effect/filewriter/settingsdialog.cpp +++ b/src/plugins/Effect/filewriter/settingsdialog.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ #include <QSettings> -#include <QDesktopServices> +#include <QStandardPaths> #include <qmmp/qmmp.h> #include <qmmpui/filedialog.h> #include <qmmpui/metadataformattermenu.h> @@ -37,7 +37,7 @@ SettingsDialog::SettingsDialog(QWidget *parent) connect(fileNameMenu, SIGNAL(patternSelected(QString)), SLOT(addTitleString(QString))); QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - QString outDir = QDesktopServices::storageLocation(QDesktopServices::MusicLocation); + QString outDir = QStandardPaths::writableLocation(QStandardPaths::MusicLocation); m_ui.outDirEdit->setText(settings.value("FileWriter/out_dir", outDir).toString()); m_ui.outFileEdit->setText(settings.value("FileWriter/file_name", "%p%if(%p&%t, - ,)%t").toString()); m_ui.qualitySpinBox->setValue(settings.value("FileWriter/vorbis_quality", 0.8).toFloat()); diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_bg.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_bg.ts index 6d3a5a220..63060b3eb 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_bg.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_cs.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_cs.ts index 723848d0e..e16d035e6 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_cs.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_de.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_de.ts index 43c7c05de..360a2eac6 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_de.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_el.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_el.ts index 311a2a6a3..082d7e04b 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_el.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Πρόσθετο εγγραφής αρχείων</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>Σχετικά με το πρόσθετο εγγραφής αρχείων</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Πρόσθετο εγγραφής αρχείων Qmmp</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_en.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_en.ts index 7d167aea3..dfbe44e86 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_en.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_es.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_es.ts index 8f415a7c5..f984d10af 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_es.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Módulo Escritor de Archivos</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>Acerca del Módulo Escritor de Archivos</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Módulo Escritor de Archivos de Qmmp</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_fi.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_fi.ts index 2929d450e..2cbc591b0 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_fi.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_fr.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_fr.ts index 991f0b21e..bd3e9494c 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_fr.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Plugin d'écriture des fichiers</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>A propose du plugin d'écriture des fichiers</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Plugin Qmmp d'écriture des fichiers</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_gl_ES.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_gl_ES.ts index 7e4088c60..cdb938a07 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_gl_ES.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Engadido File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>Acerca do engadido File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Engadido Qmmp File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_he.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_he.ts index 1aeca94c9..fc0d3711b 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_he.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_hu.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_hu.ts index e82699b9b..4cdf988d2 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_hu.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_id.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_id.ts index d811145eb..ff0e49e78 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_id.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Plugin File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>Tentang Plugin File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Plugin File Writer Qmmp</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_it.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_it.ts index 0d3bc715d..35b06215b 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_it.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_ja.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_ja.ts index 6846e8135..7b61559f0 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_ja.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>音声ファイル書き出しプラグイン</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>音声ファイル書き出しプラグインについて</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>QMMP 音声ファイル書き出しプラグイン</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_kk.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_kk.ts index b455026b2..be0d1b82c 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_kk.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_lt.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_lt.ts index 4e5119f2b..183583b8c 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_lt.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_nl.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_nl.ts index 7756ab143..5bbcb34c1 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_nl.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_pl_PL.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_pl_PL.ts index 25f523c44..600694001 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_pl_PL.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt.ts index 5d8370e60..ae81b2a42 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Suplemento File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>Sobre o suplemento File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Suplemento Qmmp File Writer</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt_BR.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt_BR.ts index 1dde98068..5a3c941c5 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt_BR.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_ru.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_ru.ts index 6cf6017f6..a1083f973 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_ru.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Модуль записи файлов</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>О модуле записи файлов</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Модуль записи файлов для Qmmp</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_sk.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_sk.ts index ed621b0a2..8a3a3b473 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_sk.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_BA.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_BA.ts index 94378ed6b..ff7a62e09 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_BA.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_RS.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_RS.ts index 5781da82f..29ea6f3b0 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_RS.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_tr.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_tr.ts index 066519d3b..8fad6e411 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_tr.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_uk_UA.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_uk_UA.ts index a3267b54b..2cf000c3b 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_uk_UA.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>Модуль запису файлів</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>Про модуль запису файлів</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Модуль запису файлів для Qmmp</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_CN.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_CN.ts index 8ae09adb6..d5d52b141 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_CN.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation>文件写入插件</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation>关于文件写入插件</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation>Qmmp 文件写入插件</translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_TW.ts b/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_TW.ts index aea7ee95e..b32076677 100644 --- a/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_TW.ts +++ b/src/plugins/Effect/filewriter/translations/filewriter_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>EffectFileWriterFactory</name> <message> - <location filename="../effectfilewriterfactory.cpp" line="32"/> + <location filename="../effectfilewriterfactory.cpp" line="31"/> <source>File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="53"/> + <location filename="../effectfilewriterfactory.cpp" line="52"/> <source>About File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="54"/> + <location filename="../effectfilewriterfactory.cpp" line="53"/> <source>Qmmp File Writer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectfilewriterfactory.cpp" line="55"/> + <location filename="../effectfilewriterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/CMakeLists.txt b/src/plugins/Effect/ladspa/CMakeLists.txt index 98c129995..979345431 100644 --- a/src/plugins/Effect/ladspa/CMakeLists.txt +++ b/src/plugins/Effect/ladspa/CMakeLists.txt @@ -1,20 +1,7 @@ project(libladspa) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -34,7 +21,7 @@ SET(libladspa_HDRS SET(libladspa_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libladspa_RCC_SRCS ${libladspa_RCCS}) +QT5_ADD_RESOURCES(libladspa_RCC_SRCS ${libladspa_RCCS}) # user interface @@ -42,7 +29,7 @@ SET(libladspa_UIS settingsdialog.ui ) -QT4_WRAP_UI(libladspa_UIS_H ${libladspa_UIS}) +QT5_WRAP_UI(libladspa_UIS_H ${libladspa_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -50,6 +37,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(ladspa MODULE ${libladspa_SRCS} ${libladspa_UIS_H} ${libladspa_RCC_SRCS} ${libladspa_HDRS}) add_dependencies(ladspa qmmp) -target_link_libraries(ladspa ${QT_LIBRARIES} libqmmp ${CMAKE_DL_LIBS}) +target_link_libraries(ladspa Qt5::Widgets -lqmmp ${CMAKE_DL_LIBS}) install(TARGETS ladspa DESTINATION ${LIB_DIR}/qmmp/Effect) diff --git a/src/plugins/Effect/ladspa/effectladspafactory.cpp b/src/plugins/Effect/ladspa/effectladspafactory.cpp index 24a72771a..af746e2ae 100644 --- a/src/plugins/Effect/ladspa/effectladspafactory.cpp +++ b/src/plugins/Effect/ladspa/effectladspafactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "ladspahelper.h" @@ -65,5 +64,3 @@ QTranslator *EffectLADSPAFactory::createTranslator(QObject *parent) translator->load(QString(":/ladspa_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(ladspa,EffectLADSPAFactory) diff --git a/src/plugins/Effect/ladspa/effectladspafactory.h b/src/plugins/Effect/ladspa/effectladspafactory.h index 9c694a7b0..b8c9b2fdb 100644 --- a/src/plugins/Effect/ladspa/effectladspafactory.h +++ b/src/plugins/Effect/ladspa/effectladspafactory.h @@ -30,7 +30,8 @@ class EffectLADSPAFactory : public QObject, public EffectFactory { Q_OBJECT -Q_INTERFACES(EffectFactory); +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) public: const EffectProperties properties() const; diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts index 9ba380a79..977cbb28b 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts index e6de43f71..46fa67ec2 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Modul LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>O modulu LADSPA hostitele pro Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Hostitel LADSPA pro Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Založeno na hostiteli LADSPA pro BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Vývojáři BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts index 2cbac6277..0d6359e96 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA-Modul</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Über LADSPA-Host für Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>LADSPA-Host für Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Basierend auf dem LADSPA-Host für BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>BMP-LADSPA-Entwickler:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts index 163fdf9a0..ad79c1481 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Πρόσθετο LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Σχετικά με το πρόσθετο υποδοχέα LADSPA για το Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Πρόσθετο υποδοχέα LADSPA για το Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Βασισμένο στον υποδοχέα LADSPA για BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Προγραμματιστές των BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts index 4b4951f63..8be404e5e 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts index 5dbc6f3f0..b0e59f5fb 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Módulo LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Acerca del módulo LADSPA para Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Módulo LADSPA para Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Basado en el módulo LADSPA para BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Desarrolladores de BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts index e3df01e97..397de889c 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA-liitännäinen</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts index d7db18f54..c215261c6 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Greffon LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>À propos du greffon LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Hôte LADSPA pour Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Basé sur l'hôte LADSPA pour BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Développeurs BMP-ladspa :</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts index 0f0d7fec8..4c674c875 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Engadido LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Sobre LADSPA Host para Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>LADSPA Host para Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Baseado no LADSPA Host para BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Desenvolvedores de BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts index 78c23a01d..bc34576be 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>תוסף LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>אודות מארח LADSPA עבור Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>מארח LADSPA עבור Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>מבוסס על LADSPA Host עבור BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>מפתחי BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts index 58fef69af..b618aaa8e 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts index a42744770..53cbe16a1 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Plugin LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Tentang Host LADSPA bagi Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Host LADSPA bagi Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Berdasarkan pada Host LADSPA bagi BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Pengembang BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts index 94940592c..7590d8988 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Plugin LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Informazioni su LADSPA per Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Host LADSPA per Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autori: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Basato su Host LADSPA per BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Sviluppatori BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts index 1845f045b..7cb002a7d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA プラグイン</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>QMMP 用の LADSPA ホストについて</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>QMMP 用の LADSPA ホスト</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>BMP 用 LADSPA ホストを基に作成</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>BMP-ladspa 開発者:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts index 479a2cb00..ebbd81420 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts index e16377646..46a4f3261 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA Įskiepis</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Apie LADSPA įskiepį</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>LADSPA įskiepis</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Sukurta "LADSPA Host for BMP" pagrindu</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>BMP LADSPA kurėjai:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts index 2c230f68d..c68fc990b 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA Module</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Over de LADSPA Module voor Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>LADSPA Host voor Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Gebasseerd op de LADSPA Host voor BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>BMP-ladspa ontwikkelaars:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts index 2b32250ce..786a146f6 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Wtyczka LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>O wtyczce LADSPA dla Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Host LADSPA dla Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Oparta na LADSPA Host dla BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Autorzy BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts index c58e9c4eb..559d1ad09 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Suplemento LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Sobre o suplemento Qmmp LADSPA Host</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Suplemento Qmmp LADSPA Host</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Baseado no LADSPA Host para BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Programadores BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts index 35b82f81f..d68f53c7e 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Plugin LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Sobre o plugin Qmmp LADSPA Host</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Plugin Qmmp LADSPA Host</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Baseado no LADSPA Host para BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Programadores BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts index 005cc735a..06ed932cd 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Модуль LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>О модуле LADSPA для Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>LADSPA Host для Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Разработан на основе модуля LADSPA для BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Разработчики BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts index 2f2aecb22..5f86c6d1d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts index d4ec315ab..7237477ed 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>ЛАДСПА</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>О ЛАДСПА хосту за Кумп</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>ЛАДСПА хост за Кумп</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Заснован на ЛАДСПА хосту за БМП</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>БМП-ладспа програмери:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts index 369801eb8..537d5bf18 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>ЛАДСПА</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>О ЛАДСПА хосту за Кумп</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>ЛАДСПА хост за Кумп</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Заснован на ЛАДСПА хосту за БМП</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>БМП-ладспа програмери:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts index 8ab7ca7c1..4ad67225d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts index 3da605958..7cee91725 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>Модуль LADSPA</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>Про модуль LADSPA для Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>LADSPA Host для Qmmp</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>Базується на модулі LADSPA для BMP</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>Розробники BMP-ladspa:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts index ba885c9d5..47e2fd0e7 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA 插件</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>关于 Qmmp LADSPA 主机</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Qmmp 的 LADSPA 主机</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>基于 BMP 的 LADSPA 主机</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>BMP-ladspa 开发者:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation>Nick Lamb <njl195@zepler.org.uk></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation>Giacomo Lozito <city_hunter@users.sf.net></translation> </message> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts index d2cc542a8..555c3c74d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts @@ -4,42 +4,42 @@ <context> <name>EffectLADSPAFactory</name> <message> - <location filename="../effectladspafactory.cpp" line="32"/> + <location filename="../effectladspafactory.cpp" line="31"/> <source>LADSPA Plugin</source> <translation>LADSPA 外掛</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="52"/> + <location filename="../effectladspafactory.cpp" line="51"/> <source>About LADSPA Host for Qmmp</source> <translation>關於 Qmmp LADSPA 主机</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="53"/> + <location filename="../effectladspafactory.cpp" line="52"/> <source>LADSPA Host for Qmmp</source> <translation>Qmmp 的 LADSPA 主机</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="54"/> + <location filename="../effectladspafactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="55"/> + <location filename="../effectladspafactory.cpp" line="54"/> <source>Based on the LADSPA Host for BMP</source> <translation>基於 BMP 的 LADSPA 主机</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="56"/> + <location filename="../effectladspafactory.cpp" line="55"/> <source>BMP-ladspa developers:</source> <translation>BMP-ladspa 開發者:</translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="57"/> + <location filename="../effectladspafactory.cpp" line="56"/> <source>Nick Lamb <njl195@zepler.org.uk></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectladspafactory.cpp" line="58"/> + <location filename="../effectladspafactory.cpp" line="57"/> <source>Giacomo Lozito <city_hunter@users.sf.net></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/CMakeLists.txt b/src/plugins/Effect/soxr/CMakeLists.txt index 0fd6259ea..3badea89b 100644 --- a/src/plugins/Effect/soxr/CMakeLists.txt +++ b/src/plugins/Effect/soxr/CMakeLists.txt @@ -1,13 +1,5 @@ project(libsoxr) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) SET(QT_INCLUDES @@ -37,7 +29,7 @@ SET(libsoxr_HDRS SET(libsoxr_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libsoxr_RCC_SRCS ${libsoxr_RCCS}) +QT5_ADD_RESOURCES(libsoxr_RCC_SRCS ${libsoxr_RCCS}) # user interface @@ -45,7 +37,7 @@ SET(libsoxr_UIS settingsdialog.ui ) -QT4_WRAP_UI(libsoxr_UIS_H ${libsoxr_UIS}) +QT5_WRAP_UI(libsoxr_UIS_H ${libsoxr_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -53,6 +45,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(SOXR_FOUND) ADD_LIBRARY(soxr MODULE ${libsoxr_SRCS} ${libsoxr_UIS_H} ${libsoxr_RCC_SRCS} ${libsoxr_HDRS}) add_dependencies(soxr qmmp) -target_link_libraries(soxr ${QT_LIBRARIES} libqmmp ${SOXR_LDFLAGS}) +target_link_libraries(soxr Qt5::Widgets -lqmmp ${SOXR_LDFLAGS}) install(TARGETS soxr DESTINATION ${LIB_DIR}/qmmp/Effect) ENDIF(SOXR_FOUND) diff --git a/src/plugins/Effect/soxr/effectsoxrfactory.cpp b/src/plugins/Effect/soxr/effectsoxrfactory.cpp index 9343ae288..2d5004e40 100644 --- a/src/plugins/Effect/soxr/effectsoxrfactory.cpp +++ b/src/plugins/Effect/soxr/effectsoxrfactory.cpp @@ -20,7 +20,6 @@ #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "soxresampler.h" @@ -62,5 +61,3 @@ QTranslator *EffectSoXRFactory::createTranslator(QObject *parent) translator->load(QString(":/soxr_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(soxr, EffectSoXRFactory) diff --git a/src/plugins/Effect/soxr/effectsoxrfactory.h b/src/plugins/Effect/soxr/effectsoxrfactory.h index efd643a01..c5cb435dd 100644 --- a/src/plugins/Effect/soxr/effectsoxrfactory.h +++ b/src/plugins/Effect/soxr/effectsoxrfactory.h @@ -30,7 +30,8 @@ class EffectSoXRFactory : public QObject, public EffectFactory { Q_OBJECT -Q_INTERFACES(EffectFactory); +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) public: const EffectProperties properties() const; diff --git a/src/plugins/Effect/soxr/settingsdialog.ui b/src/plugins/Effect/soxr/settingsdialog.ui index fa253bed4..435362c88 100644 --- a/src/plugins/Effect/soxr/settingsdialog.ui +++ b/src/plugins/Effect/soxr/settingsdialog.ui @@ -7,22 +7,13 @@ <x>0</x> <y>0</y> <width>360</width> - <height>108</height> + <height>111</height> </rect> </property> <property name="windowTitle"> - <string>SoX Resampler Settings</string> + <string>Sample Rate Converter Plugin Settings</string> </property> <layout class="QGridLayout" name="gridLayout"> - <property name="leftMargin"> - <number>6</number> - </property> - <property name="rightMargin"> - <number>6</number> - </property> - <property name="bottomMargin"> - <number>6</number> - </property> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_bg.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_bg.ts index af7cc0813..14d5d4c0c 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_bg.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_cs.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_cs.ts index 6e26a92be..4300579e1 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_cs.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Vzorkovací frekvence (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_de.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_de.ts index 117c3e041..f73ae2475 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_de.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>SoX-Abtastratenkonvertierermodul</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Über SoX-Abtastratenkonvertierermodul</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Qmmp SoX-Abtastratenkonvertierermodul</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Einstellungen SoX-Abtastratenkonvertierer</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Abtastrate (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Qualität:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_el.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_el.ts index 17dd21c41..bc97ad748 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_el.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Πρόσθετο επαναδειγματοληψίας SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Περί του Πρόσθετου επαναδειγματοληψίας SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Qmmp πρόσθετο επαναδειγματοληψίας SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Ρυθμίσεις του πρόσθετου επαναδειγματοληψίας SoX</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Ρυθμός δειγματοληψίας (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Ποιότητα:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_en.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_en.ts index 9ed15af21..eb2bf9e2c 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_en.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_es.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_es.ts index 8eb521873..b7b97762a 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_es.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Módulo Recalculador SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Acerca del Módulo Recalculador SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Módulo Recalculador SoX de Qmmp</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Configuración de Recalculador SoX</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Frecuencia (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Calidad:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_fi.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_fi.ts index 3017f9dfc..f33ed26d5 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_fi.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Näytteenottotaajuus (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Laatu:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_fr.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_fr.ts index 3d99afea0..035bede5c 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_fr.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Plugin SoX de rééchantillonnage</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>A propos du plugin SoX de rééchantillonnage</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Plugin SoX Qmmp de rééchantillonnage</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Paramètres du rééchantillonneur SoX</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Taux d'échantillonnage (Hz) :</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Qualité:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_gl_ES.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_gl_ES.ts index 4d18c6e7a..b682bf9a8 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_gl_ES.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Plugin SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Acerca do plugin SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Plugin Qmmp SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Configuracións SoX Resampler</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Frecuencia (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Calidade:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_he.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_he.ts index d420132ff..115b51ddc 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_he.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>תוסף SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>אודות תוסף SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>תוספת SoX Resampler של Qmmp</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>הגדרות SoX Resampler</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>שיעור דגימה (הרץ):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>איכות:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_hu.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_hu.ts index a79f58d4d..362076b72 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_hu.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_id.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_id.ts index 5e07692b1..da96611b9 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_id.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Plugin Resampler SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Tentang Plugin Resampler SoX</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Plugin Resampler SoX Qmmp</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Setelan Resampler SoX</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Sample Rate (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Kualitas:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_it.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_it.ts index 4547b4ca6..06ae202b5 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_it.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Campionamento (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_ja.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_ja.ts index 952499cd2..d4fe7ad9c 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_ja.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>SoX Resampler プラグイン</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>SoX Resampler プラグインについて</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>QMMP SoX Resampler プラグイン</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>SoX Resampler の設定</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>サンプルレート (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>音質:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_kk.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_kk.ts index dce5b1e47..73a167313 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_kk.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_lt.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_lt.ts index 350e111d7..7c6cf2ce4 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_lt.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Sukurta: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Diskretizacijos dažnis (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_nl.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_nl.ts index 029a22d7e..947464ded 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_nl.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Sample frequentie (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_pl_PL.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_pl_PL.ts index 163bc5d60..f3c82ad76 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_pl_PL.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Próbkowanie (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_pt.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_pt.ts index 96e356ddc..c3a792709 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_pt.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Suplemento SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Sobre o suplemento SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Suplemento Qmmp SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Definições</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Frequência (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Qualidade:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_pt_BR.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_pt_BR.ts index 23fe8b811..c933a737a 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_pt_BR.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Plugin SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Sobre o plugin SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Plugin Qmmp SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Preferências do plugin SoX Resampler</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Frequência (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Qualidade:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_ru.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_ru.ts index 3ffc62b1a..94736b1c0 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_ru.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Модуль SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>О модуле SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Преобразователь частоты SoX Resampler для Qmmp</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Настройки SoX Resampler</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Частота дискретизации (Гц):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Качество:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_sk.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_sk.ts index 93b6c239b..31b537e14 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_sk.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_sr_BA.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_sr_BA.ts index 2baed99e6..4ba6d8939 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_sr_BA.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Узорковање (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_sr_RS.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_sr_RS.ts index 1931670af..914b4ccb6 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_sr_RS.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Узорковање (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_tr.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_tr.ts index c705159af..9f699b36f 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_tr.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Örnekleme Oranı (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_uk_UA.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_uk_UA.ts index f8253f1fd..aed3eaae4 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_uk_UA.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>Модуль SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>Про модуль SoX Resampler</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Перетворювач частоти SoX Resampler для Qmmp</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>Налаштування модуля перетворювача частоти</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>Дискретизація семпла (Гц):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>Якість:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_zh_CN.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_zh_CN.ts index 7ff35255e..bbcce6785 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_zh_CN.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation>SoX重新取样器插件</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation>关于SoX重新取样器插件</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation>Qmmp SoX 重新取样器插件</translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> - <translation>SoX重新取样器设置</translation> + <source>Sample Rate Converter Plugin Settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>取样率 (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation>质量:</translation> </message> diff --git a/src/plugins/Effect/soxr/translations/soxr_plugin_zh_TW.ts b/src/plugins/Effect/soxr/translations/soxr_plugin_zh_TW.ts index 1ac295d35..8419ad123 100644 --- a/src/plugins/Effect/soxr/translations/soxr_plugin_zh_TW.ts +++ b/src/plugins/Effect/soxr/translations/soxr_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>EffectSoXRFactory</name> <message> - <location filename="../effectsoxrfactory.cpp" line="32"/> + <location filename="../effectsoxrfactory.cpp" line="31"/> <source>SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="53"/> + <location filename="../effectsoxrfactory.cpp" line="52"/> <source>About SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="54"/> + <location filename="../effectsoxrfactory.cpp" line="53"/> <source>Qmmp SoX Resampler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectsoxrfactory.cpp" line="55"/> + <location filename="../effectsoxrfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -28,16 +28,16 @@ <name>SettingsDialog</name> <message> <location filename="../settingsdialog.ui" line="14"/> - <source>SoX Resampler Settings</source> + <source>Sample Rate Converter Plugin Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../settingsdialog.ui" line="29"/> + <location filename="../settingsdialog.ui" line="20"/> <source>Sample Rate (Hz):</source> <translation>取樣率 (Hz):</translation> </message> <message> - <location filename="../settingsdialog.ui" line="49"/> + <location filename="../settingsdialog.ui" line="40"/> <source>Quality:</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/CMakeLists.txt b/src/plugins/Effect/stereo/CMakeLists.txt index a9469a2a3..b2fecd805 100644 --- a/src/plugins/Effect/stereo/CMakeLists.txt +++ b/src/plugins/Effect/stereo/CMakeLists.txt @@ -1,20 +1,7 @@ project(libstereo) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -31,7 +18,7 @@ SET(libstereo_HDRS SET(libstereo_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libstereo_RCC_SRCS ${libstereo_RCCS}) +QT5_ADD_RESOURCES(libstereo_RCC_SRCS ${libstereo_RCCS}) # user interface @@ -39,7 +26,7 @@ SET(libstereo_UIS settingsdialog.ui ) -QT4_WRAP_UI(libstereo_UIS_H ${libstereo_UIS}) +QT5_WRAP_UI(libstereo_UIS_H ${libstereo_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -47,5 +34,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(stereo MODULE ${libstereo_SRCS} ${libstereo_UIS_H} ${libstereo_RCC_SRCS} ${libstereo_HDRS}) add_dependencies(stereo qmmp) -target_link_libraries(stereo ${QT_LIBRARIES} libqmmp) +target_link_libraries(stereo Qt5::Widgets -lqmmp) install(TARGETS stereo DESTINATION ${LIB_DIR}/qmmp/Effect) diff --git a/src/plugins/Effect/stereo/effectstereofactory.cpp b/src/plugins/Effect/stereo/effectstereofactory.cpp index bb9d434a4..4c87179d8 100644 --- a/src/plugins/Effect/stereo/effectstereofactory.cpp +++ b/src/plugins/Effect/stereo/effectstereofactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "effectstereofactory.h" #include "settingsdialog.h" @@ -62,5 +61,3 @@ QTranslator *EffectStereoFactory::createTranslator(QObject *parent) translator->load(QString(":/stereo_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(stereo,EffectStereoFactory) diff --git a/src/plugins/Effect/stereo/effectstereofactory.h b/src/plugins/Effect/stereo/effectstereofactory.h index 9d83147fd..5e072d23d 100644 --- a/src/plugins/Effect/stereo/effectstereofactory.h +++ b/src/plugins/Effect/stereo/effectstereofactory.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2011 by Ilya Kotov * + * Copyright (C) 2011-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -30,7 +30,8 @@ class EffectStereoFactory : public QObject, public EffectFactory { Q_OBJECT -Q_INTERFACES(EffectFactory); +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) public: const EffectProperties properties() const; diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_bg.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_bg.ts index 7072cd1b7..dc7488675 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_bg.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_cs.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_cs.ts index 4fca7fc5a..d8916afdd 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_cs.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Modul pro rozšířené stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>O modulu pro rozšířené stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Modul Qmmp pro rozšířené stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Založeno na Extra Stereo Plugin pro XMMS od Johana Levina</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_de.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_de.ts index a956d3802..30842a77b 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_de.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Extra-Stereo-Modul</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Über Extra-Stereo-Modul</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Qmmp Extra-Stereo-Modul</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Basiert auf dem Extra-Stereo-Modul für XMMS von Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_el.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_el.ts index 87a1fbb89..dcec48044 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_el.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Πρόσθετο επιπλέον στερεοφωνικού</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Σχετικά με το πρόσθετο επιπλέον στερεοφωνικού</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Qmmp πρόσθετο επιπλέον στερεοφωνικού</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Βασισμένο στο πρόσθετο επιπλέον στερεοφωνικού για το Xmms από τον Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_en.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_en.ts index 7ed937546..9b78cd298 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_en.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_es.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_es.ts index c55ffd4a7..327dfe31a 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_es.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Módulo de estéreo extra</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Acerca del módulo de estéreo extra</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Módulo de estéreo extra para Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Basado en el módulo de estéreo extra para Xmms de Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_fi.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_fi.ts index 830969d0a..1df819551 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_fi.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_fr.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_fr.ts index 151241a29..7b861ec0b 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_fr.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Greffon de stéréo augmentée</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>À propos du greffon de stéréo augmentée</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Greffon de stéréo augmentée pour Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Basé sur le greffon de stéréo augmentée pour Xmms par Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_gl_ES.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_gl_ES.ts index 1a14cbc91..e003782cb 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_gl_ES.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Engadido Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Sobre o engadido Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Engadido Qmmp Extra Stereo Plugin</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Baseado no engadido Extra Stereo para Xmms por Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_he.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_he.ts index 284e99bc9..f0c61640f 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_he.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>תוסף סטריאו נוסף</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>אודות תוסף סטריאו נוסף</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>תוסף סטריאו נוסף של Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>מבוסס על תוסף סטריאו נוסף עבור Xmms מאתJohan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_hu.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_hu.ts index 03c003f77..f81135731 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_hu.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_id.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_id.ts index 50267cf44..51fb44d5b 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_id.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Plugin Stereo Extra</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Tentang Plugin Stereo Extra</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Plugin Stereo Extra Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Berdasarkan pada Plugin Stereo Extra untuk Xmms oleh Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_it.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_it.ts index edfa96601..fedcc752f 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_it.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_ja.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_ja.ts index 56a87c2d4..e80875db0 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_ja.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>拡張ステレオプラグイン</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>拡張ステレオプラグインについて</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>QMMP 拡張ステレオプラグイン</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Johan Levin 作の XMMS 拡張ステレオプラグインを基に作成</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_kk.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_kk.ts index 66a6a015e..e557f8469 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_kk.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_lt.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_lt.ts index 11ede0322..ff866af11 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_lt.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Ekstra Stereo įskiepis</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Apie Ekstra Stereo įskiepį</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Qmmp Ekstra tereo įskiepis</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Sukurta Xmms Ekstra Stereo įskiepio pagrindu, kurio autorius Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_nl.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_nl.ts index 0aef7d602..4616f3568 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_nl.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Extra Stereo Module</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Over de Extra Stereo Module</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Extra Stereo Module voor Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Gebasseerd op de Extra Stereo Module voor Xmms geschreven door Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_pl_PL.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_pl_PL.ts index 6eba8b8ea..a11bc6577 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_pl_PL.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Wtyczka Ekstra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>O wtyczce Ekstra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Wtyczka Ekstra Stereo dla Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Oparta na wtyczce Ekstra Stereo dla Xmms (Johan Levin)</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_pt.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_pt.ts index 069ecda63..45ce3f80d 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_pt.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Suplemento Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Sobre o suplemento Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Suplemento Qmmp Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Baseado no suplemento Extra Stereo Plugin for Xmms de Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_pt_BR.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_pt_BR.ts index 85956d7ea..11562f187 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_pt_BR.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Plugin Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Sobre o plugin Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Plugin Qmmp Extra Stereo</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Baseado no Extra Stereo Plugin for Xmms de Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_ru.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_ru.ts index 68b9bde67..d9928d572 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_ru.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Модуль расш. стереобазы</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>О модуле расширения стереобащы</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Модуль расширения стереобазы для Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Основан на базе модуля Extra Stereo для Xmms (разработчик: Johan Levin)</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_sk.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_sk.ts index 95835ab6e..f6443b270 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_sk.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_sr_BA.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_sr_BA.ts index aa2c76085..d4c333a49 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_sr_BA.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Додатни стерео</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>О прикључку за додатни стерео</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Кумп прикључак за додатни стерео</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Заснован на ИксММС прикључку додатног стереа од Јохана Левина (Johan Levin)</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_sr_RS.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_sr_RS.ts index 24910500b..cb1c2a869 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_sr_RS.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Додатни стерео</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>О прикључку за додатни стерео</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Кумп прикључак за додатни стерео</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Заснован на ИксММС прикључку додатног стереа од Јохана Левина (Johan Levin)</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_tr.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_tr.ts index 8cd26c6c7..3171a91c8 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_tr.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_uk_UA.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_uk_UA.ts index 282bbe26e..4927ad227 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_uk_UA.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>Модуль розширення стереобази</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>Про модуль розширення стереобази</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Модуль розширення стереобази для Qmmp</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>Базується на модулі розширення стерео для Xmms від Johan Levin</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_zh_CN.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_zh_CN.ts index f35bc1a20..f038461a0 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_zh_CN.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>立体声扩展插件</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>关于立体声扩展插件</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Qmmp 立体声扩展插件</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>基于 Johan Levin 的 Xmms 立体声扩展插件</translation> </message> diff --git a/src/plugins/Effect/stereo/translations/stereo_plugin_zh_TW.ts b/src/plugins/Effect/stereo/translations/stereo_plugin_zh_TW.ts index 9b8c21e7f..b36bd9150 100644 --- a/src/plugins/Effect/stereo/translations/stereo_plugin_zh_TW.ts +++ b/src/plugins/Effect/stereo/translations/stereo_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>EffectStereoFactory</name> <message> - <location filename="../effectstereofactory.cpp" line="32"/> + <location filename="../effectstereofactory.cpp" line="31"/> <source>Extra Stereo Plugin</source> <translation>立体聲擴展插件</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="52"/> + <location filename="../effectstereofactory.cpp" line="51"/> <source>About Extra Stereo Plugin</source> <translation>關於立体聲擴展插件</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="53"/> + <location filename="../effectstereofactory.cpp" line="52"/> <source>Qmmp Extra Stereo Plugin</source> <translation>Qmmp 立体聲擴展插件</translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="54"/> + <location filename="../effectstereofactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../effectstereofactory.cpp" line="55"/> + <location filename="../effectstereofactory.cpp" line="54"/> <source>Based on the Extra Stereo Plugin for Xmms by Johan Levin</source> <translation>基於 Johan Levin 的 Xmms 立体聲擴展插件</translation> </message> diff --git a/src/plugins/Engines/mplayer/CMakeLists.txt b/src/plugins/Engines/mplayer/CMakeLists.txt index a835950e7..af0f2d09d 100644 --- a/src/plugins/Engines/mplayer/CMakeLists.txt +++ b/src/plugins/Engines/mplayer/CMakeLists.txt @@ -1,20 +1,7 @@ project(libmplayer) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_BINARY_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -29,7 +16,7 @@ SET(libmplayer_SRCS SET(libmplayer_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libmplayer_RCC_SRCS ${libmplayer_RCCS}) +QT5_ADD_RESOURCES(libmplayer_RCC_SRCS ${libmplayer_RCCS}) # user interface @@ -38,13 +25,13 @@ SET(libmplayer_UIS settingsdialog.ui ) -QT4_WRAP_UI(libmplayer_UIS_H ${libmplayer_UIS}) +QT5_WRAP_UI(libmplayer_UIS_H ${libmplayer_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(mplayer MODULE ${libmplayer_SRCS} ${libmplayer_RCC_SRCS} ${libmplayer_UIS_H}) add_dependencies(mplayer qmmp) -target_link_libraries(mplayer ${QT_LIBRARIES} libqmmp) +target_link_libraries(mplayer Qt5::Widgets -lqmmp) install(TARGETS mplayer DESTINATION ${LIB_DIR}/qmmp/Engines) diff --git a/src/plugins/Engines/mplayer/mplayerengine.cpp b/src/plugins/Engines/mplayer/mplayerengine.cpp index 08196b05e..4de93fb96 100644 --- a/src/plugins/Engines/mplayer/mplayerengine.cpp +++ b/src/plugins/Engines/mplayer/mplayerengine.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -56,7 +56,7 @@ FileInfo *MplayerInfo::createFileInfo(const QString &path) mplayer_process.start("mplayer", args); mplayer_process.waitForFinished(1500); mplayer_process.kill(); - QString str = QString::fromLocal8Bit(mplayer_process.readAll().constData()).trimmed(); + QString str = QString::fromLocal8Bit(mplayer_process.readAll()).trimmed(); FileInfo *info = new FileInfo(path); QStringList lines = str.split("\n"); foreach(QString line, lines) @@ -194,7 +194,7 @@ void MplayerEngine::setMuted(bool muted) void MplayerEngine::readStdOut() { - QString line = QString::fromLocal8Bit(m_process->readAll().constData()).trimmed(); + QString line = QString::fromLocal8Bit(m_process->readAll ()).trimmed(); QStringList lines = line.split("\n"); foreach(line, lines) { diff --git a/src/plugins/Engines/mplayer/mplayerenginefactory.cpp b/src/plugins/Engines/mplayer/mplayerenginefactory.cpp index 9f106052b..3e90dba9c 100644 --- a/src/plugins/Engines/mplayer/mplayerenginefactory.cpp +++ b/src/plugins/Engines/mplayer/mplayerenginefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -20,7 +20,6 @@ #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include "mplayermetadatamodel.h" #include "settingsdialog.h" #include "mplayerengine.h" @@ -94,5 +93,3 @@ QTranslator *MplayerEngineFactory::createTranslator(QObject *parent) translator->load(QString(":/mplayer_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(mplayer,MplayerEngineFactory) diff --git a/src/plugins/Engines/mplayer/mplayerenginefactory.h b/src/plugins/Engines/mplayer/mplayerenginefactory.h index df2c96599..30857e63a 100644 --- a/src/plugins/Engines/mplayer/mplayerenginefactory.h +++ b/src/plugins/Engines/mplayer/mplayerenginefactory.h @@ -33,6 +33,7 @@ class MplayerEngineFactory : public QObject, EngineFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EngineFactoryInterface.1.0") Q_INTERFACES(EngineFactory) public: diff --git a/src/plugins/Engines/mplayer/mplayermetadatamodel.cpp b/src/plugins/Engines/mplayer/mplayermetadatamodel.cpp index a16a4dabf..efac4af80 100644 --- a/src/plugins/Engines/mplayer/mplayermetadatamodel.cpp +++ b/src/plugins/Engines/mplayer/mplayermetadatamodel.cpp @@ -64,7 +64,7 @@ QHash<QString, QString> MplayerMetaDataModel::audioProperties() QProcess mplayer_process; mplayer_process.start("mplayer", args); mplayer_process.waitForFinished(); - QString str = QString::fromLocal8Bit(mplayer_process.readAll().constData()).trimmed(); + QString str = QString::fromLocal8Bit(mplayer_process.readAll()).trimmed(); QStringList lines = str.split("\n"); int height = 0, width = 0; //mplayer std output parsing diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_bg.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_bg.ts index 1ba90614e..a448b35f1 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_bg.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_cs.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_cs.ts index 4b4c40419..2af0d31d0 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_cs.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Modul MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Videosoubory</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>O modulu MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Modul Qmmp MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Tento modul používá jako backend MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_de.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_de.ts index ad55e49d0..c15acc615 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_de.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>MPlayer-Modul</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Videodateien</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Über MPlayer-Modul</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Qmmp MPlayer-Modul</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Dieses Modul nutzt MPlayer als Backend</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_el.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_el.ts index 8ef240db4..97a8d07ff 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_el.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Πρόσθετο Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Αρχεία βίντεο</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Σχετικά με το πρόσθετο MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Qmmp πρόσθετο MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Αυτό το πρόσθετο χρησιμοποιεί το MPlayer ως σύστημα υποστήριξης</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_en.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_en.ts index 0e5ac7e91..c85b40073 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_en.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_es.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_es.ts index ac283182d..3dfdcc653 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_es.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Módulo MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Archivos de vídeo</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Acerca del módulo MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Modulo MPlayer para Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Este módulo utiliza MPlayer como soporte</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_fi.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_fi.ts index 50f341a37..cc4e713f7 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_fi.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Mplayer-liitännäinen</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Videotiedostot</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_fr.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_fr.ts index 8a80862c2..1610c3afc 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_fr.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Greffon MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Fichiers vidéo</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>À propos du greffon MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Greffon MPlayer pour Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Ce greffon utilise MPlayer comme programme d'arrière-plan</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_gl_ES.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_gl_ES.ts index cb0acd172..4c1fcaa73 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_gl_ES.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Engadido Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Ficheiros de vídeo</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Sobre o engadido Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Engadido Qmmp Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Este engadido usa Mplayer como motor</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_he.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_he.ts index 527f9a5f9..d13f7a600 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_he.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>תוסף Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>קבצי וידיאו</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>אודות תוסף MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>תוסף MPlayer של Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>תוסף זו משתמש ביישום MPlayer בתור מגשר עורפי</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_hu.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_hu.ts index 9562eeaf7..87c6e0b02 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_hu.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_id.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_id.ts index e39da2045..8a0205078 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_id.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Plugin Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>File Video</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Tentang Plugin Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Plugin Mplayer Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Plugin ini digunakan MPlayer sebagai backend</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_it.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_it.ts index 04b8c8920..d6a00a87e 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_it.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Modulo MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Documenti video</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Info sul modulo MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Modulo MPlayer per Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Modulo che usa MPlayer come Backend</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autori: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_ja.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_ja.ts index 1ddfdc29a..11a44c70b 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_ja.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Mplayer プラグイン</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>ビデオファイル</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>MPlayer プラグインについて</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>QMMP MPlayer プラグイン</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>このプラグインの実行は MPlayer で裏打ちされています</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_kk.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_kk.ts index f725f2881..0eb1494ef 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_kk.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_lt.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_lt.ts index 736707935..bc07e35b7 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_lt.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>MPlayer įskiepis</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Video bylos</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Apie MPlayer Qmmp įskiepį</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Qmmp MPlayer įskiepis</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Šis įskiepis naudoja Mplayer video grojimui</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_nl.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_nl.ts index 8aa46c3ad..b164aada9 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_nl.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>MPlayer Module</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Videobestanden</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Over de MPlayer Module</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>MPlayer Module voor Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Deze plugin gebruikt MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_pl_PL.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_pl_PL.ts index a80d7fa5b..598a81fa7 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_pl_PL.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Wtyczka Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Pliki wideo</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>O wtyczce Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Wtyczka Mplayer dla Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Ta wtyczka używa Mplayer do odtwarzania</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt.ts index 076d1f632..30912b918 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Suplemento Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Ficheiros de vídeo</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Sobre o suplemento Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Suplemento Qmmp Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Este suplemento utiliza o mplayer para a reprodução</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt_BR.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt_BR.ts index f6747d0da..f43749ec5 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt_BR.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Plugin Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Arquivos de vídeo</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Sobre o plugin Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Plugin Qmmp Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Este plugin utiliza o Mplayer para a reprodução</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_ru.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_ru.ts index 00d991933..9ecb11b71 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_ru.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Модуль MPlayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Файлы видео</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>О модуле MPlayer для Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Модуль поддержки MPlayer для Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>В этом модуле для воспроизведения используется Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_sk.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_sk.ts index 690d1690c..b3f0ee089 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_sk.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_BA.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_BA.ts index fe21ac02e..9665c2c52 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_BA.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Мплејер прикључак</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Видео фајлови</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>О прикључку за Мплејер</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Кумп прикључак за Мплејер</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Мплејер мотор за Кумп</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_RS.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_RS.ts index 46ebbf53a..4f1286584 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_RS.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Мплејер прикључак</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Видео фајлови</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>О прикључку за Мплејер</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Кумп прикључак за Мплејер</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Мплејер мотор за Кумп</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_tr.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_tr.ts index 8ab0a1d61..970344d35 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_tr.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation type="unfinished">Mplayer Eklentisi</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation type="unfinished">Video Dosyaları</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation type="unfinished">MPlayer Eklentisi Hakkında</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation type="unfinished">Qmmp MPlayer Eklentisi</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation type="unfinished">Bu eklenti arka uç olarak MPlayer kullanır</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_uk_UA.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_uk_UA.ts index c2c3f8a51..6674150d4 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_uk_UA.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Модуль Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>Відео файли</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>Про модуль Mplayer</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Модуль Mplayer для Qmmp</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>Цей модуль використовує MPlayer як бекенд</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_CN.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_CN.ts index b1bcdb85a..80a47ed8c 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_CN.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Mplayer 插件</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>视频文件</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>关于 MPlayer 插件</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Qmmp MPlayer 插件</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>此插件使用 MPlayer 后端</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_TW.ts b/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_TW.ts index 10cd85bf0..9ffef0d27 100644 --- a/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_TW.ts +++ b/src/plugins/Engines/mplayer/translations/mplayer_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>MplayerEngineFactory</name> <message> - <location filename="../mplayerenginefactory.cpp" line="35"/> + <location filename="../mplayerenginefactory.cpp" line="34"/> <source>Mplayer Plugin</source> <translation>Mplayer 外掛</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="38"/> + <location filename="../mplayerenginefactory.cpp" line="37"/> <source>Video Files</source> <translation>視頻文件</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="84"/> + <location filename="../mplayerenginefactory.cpp" line="83"/> <source>About MPlayer Plugin</source> <translation>關於 Mplayer 外掛</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="85"/> + <location filename="../mplayerenginefactory.cpp" line="84"/> <source>Qmmp MPlayer Plugin</source> <translation>Qmmp Mplayer 外掛</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="86"/> + <location filename="../mplayerenginefactory.cpp" line="85"/> <source>This plugin uses MPlayer as backend</source> <translation>此插件使用 Mplayer 後端</translation> </message> <message> - <location filename="../mplayerenginefactory.cpp" line="87"/> + <location filename="../mplayerenginefactory.cpp" line="86"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/CMakeLists.txt b/src/plugins/FileDialogs/QmmpFileDialog/CMakeLists.txt index b699ceeee..7355d3f45 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/CMakeLists.txt +++ b/src/plugins/FileDialogs/QmmpFileDialog/CMakeLists.txt @@ -1,20 +1,7 @@ project(libqmmpfiledialog) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -28,7 +15,7 @@ SET(libqmmpfiledialog_SRCS SET(libqmmpfiledialog_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libqmmpfiledialog_RCC_SRCS ${libqmmpfiledialog_RCCS}) +QT5_ADD_RESOURCES(libqmmpfiledialog_RCC_SRCS ${libqmmpfiledialog_RCCS}) # user interface @@ -37,12 +24,12 @@ SET(libqmmpfiledialog_UIS qmmpfiledialog.ui ) -QT4_WRAP_UI(libqmmpfiledialog_UIS_H ${libqmmpfiledialog_UIS}) +QT5_WRAP_UI(libqmmpfiledialog_UIS_H ${libqmmpfiledialog_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(qmmpfiledialog MODULE ${libqmmpfiledialog_SRCS} ${libqmmpfiledialog_UIS_H} ${libqmmpfiledialog_RCC_SRCS}) add_dependencies(qmmpfiledialog qmmpui) -target_link_libraries(qmmpfiledialog ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(qmmpfiledialog Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS qmmpfiledialog DESTINATION ${LIB_DIR}/qmmp/FileDialogs) diff --git a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.cpp b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.cpp index da825dbe7..298ddfa72 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.cpp +++ b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.cpp @@ -41,6 +41,7 @@ void QmmpFileDialog::raise(const QString &dir, Mode mode, const QString &caption { m_dialog->setModeAndMask(dir, mode, mask); m_dialog->setWindowTitle(caption); + m_dialog->loadMountedVolumes(); m_dialog->show(); m_dialog->raise(); } @@ -91,5 +92,3 @@ QTranslator *QmmpFileDialogFactory::createTranslator(QObject *parent) translator->load(QString(":/qmmp_file_dialog_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(qmmpfiledialog, QmmpFileDialogFactory) diff --git a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.h b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.h index d9ad4b17a..d0d0e5c26 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.h +++ b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.h @@ -46,8 +46,9 @@ private: class QmmpFileDialogFactory : public QObject, public FileDialogFactory { - Q_OBJECT - Q_INTERFACES(FileDialogFactory) +Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.FileDialogFactoryInterface.1.0") +Q_INTERFACES(FileDialogFactory) public: virtual FileDialog* create(); virtual const FileDialogProperties properties() const; diff --git a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.ui b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.ui index 6164bc4b5..071bd4b6c 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.ui +++ b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialog.ui @@ -6,8 +6,8 @@ <rect> <x>0</x> <y>0</y> - <width>574</width> - <height>374</height> + <width>616</width> + <height>367</height> </rect> </property> <property name="windowTitle"> @@ -23,8 +23,141 @@ <property name="bottomMargin"> <number>6</number> </property> + <item row="1" column="0" colspan="3"> + <widget class="QSplitter" name="splitter"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <widget class="QListWidget" name="mountPointsListWidget"/> + <widget class="QStackedWidget" name="stackedWidget"> + <property name="currentIndex"> + <number>0</number> + </property> + <widget class="QWidget" name="page"> + <layout class="QVBoxLayout"> + <property name="margin"> + <number>0</number> + </property> + <item> + <widget class="QListView" name="fileListView"> + <property name="selectionMode"> + <enum>QAbstractItemView::ExtendedSelection</enum> + </property> + <property name="movement"> + <enum>QListView::Free</enum> + </property> + <property name="isWrapping" stdset="0"> + <bool>true</bool> + </property> + <property name="resizeMode"> + <enum>QListView::Adjust</enum> + </property> + <property name="layoutMode"> + <enum>QListView::SinglePass</enum> + </property> + <property name="uniformItemSizes"> + <bool>false</bool> + </property> + <property name="wordWrap"> + <bool>false</bool> + </property> + </widget> + </item> + </layout> + </widget> + <widget class="QWidget" name="page_2"> + <layout class="QVBoxLayout"> + <property name="margin"> + <number>0</number> + </property> + <item> + <widget class="QTreeView" name="treeView"> + <property name="selectionMode"> + <enum>QAbstractItemView::ExtendedSelection</enum> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> + </property> + <property name="sortingEnabled"> + <bool>true</bool> + </property> + <property name="allColumnsShowFocus"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + </widget> + </widget> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="label"> + <property name="text"> + <string>File name:</string> + </property> + </widget> + </item> + <item row="2" column="1"> + <widget class="QLineEdit" name="fileNameLineEdit"/> + </item> + <item row="2" column="2"> + <widget class="QPushButton" name="addPushButton"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string>Add</string> + </property> + </widget> + </item> + <item row="3" column="0"> + <widget class="QLabel" name="label_3"> + <property name="text"> + <string>Files of type:</string> + </property> + </widget> + </item> + <item row="3" column="1"> + <widget class="QComboBox" name="fileTypeComboBox"> + <property name="sizePolicy"> + <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="sizeAdjustPolicy"> + <enum>QComboBox::AdjustToMinimumContentsLength</enum> + </property> + </widget> + </item> + <item row="3" column="2"> + <widget class="QPushButton" name="closePushButton"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string>Close</string> + </property> + </widget> + </item> <item row="0" column="0" colspan="3"> - <layout class="QHBoxLayout"> + <layout class="QHBoxLayout" name="_2"> <item> <widget class="QComboBox" name="lookInComboBox"> <property name="sizePolicy"> @@ -113,127 +246,6 @@ </item> </layout> </item> - <item row="1" column="0" colspan="3"> - <widget class="QStackedWidget" name="stackedWidget"> - <property name="currentIndex"> - <number>1</number> - </property> - <widget class="QWidget" name="page"> - <layout class="QVBoxLayout"> - <property name="margin"> - <number>0</number> - </property> - <item> - <widget class="QListView" name="fileListView"> - <property name="selectionMode"> - <enum>QAbstractItemView::ExtendedSelection</enum> - </property> - <property name="movement"> - <enum>QListView::Free</enum> - </property> - <property name="isWrapping" stdset="0"> - <bool>true</bool> - </property> - <property name="resizeMode"> - <enum>QListView::Adjust</enum> - </property> - <property name="layoutMode"> - <enum>QListView::SinglePass</enum> - </property> - <property name="uniformItemSizes"> - <bool>false</bool> - </property> - <property name="wordWrap"> - <bool>false</bool> - </property> - </widget> - </item> - </layout> - </widget> - <widget class="QWidget" name="page_2"> - <layout class="QVBoxLayout"> - <property name="margin"> - <number>0</number> - </property> - <item> - <widget class="QTreeView" name="treeView"> - <property name="selectionMode"> - <enum>QAbstractItemView::ExtendedSelection</enum> - </property> - <property name="rootIsDecorated"> - <bool>false</bool> - </property> - <property name="itemsExpandable"> - <bool>false</bool> - </property> - <property name="sortingEnabled"> - <bool>true</bool> - </property> - <property name="allColumnsShowFocus"> - <bool>true</bool> - </property> - </widget> - </item> - </layout> - </widget> - </widget> - </item> - <item row="2" column="0"> - <widget class="QLabel" name="label"> - <property name="text"> - <string>File name:</string> - </property> - </widget> - </item> - <item row="2" column="1"> - <widget class="QLineEdit" name="fileNameLineEdit"/> - </item> - <item row="2" column="2"> - <widget class="QPushButton" name="addPushButton"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Add</string> - </property> - </widget> - </item> - <item row="3" column="0"> - <widget class="QLabel" name="label_3"> - <property name="text"> - <string>Files of type:</string> - </property> - </widget> - </item> - <item row="3" column="1"> - <widget class="QComboBox" name="fileTypeComboBox"> - <property name="sizePolicy"> - <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="sizeAdjustPolicy"> - <enum>QComboBox::AdjustToMinimumContentsLength</enum> - </property> - </widget> - </item> - <item row="3" column="2"> - <widget class="QPushButton" name="closePushButton"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Close</string> - </property> - </widget> - </item> </layout> </widget> <resources/> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.cpp b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.cpp index 2181a0428..7c3388c7d 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.cpp +++ b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.cpp @@ -27,7 +27,8 @@ #include <QSettings> #include <QMessageBox> #include <QHeaderView> - +#include <QStorageInfo> +#include <QStyle> #include <qmmp/qmmp.h> #define HISTORY_SIZE 8 @@ -94,6 +95,11 @@ QmmpFileDialogImpl::QmmpFileDialogImpl(QWidget * parent, Qt::WindowFlags f) : QD addPushButton->setIcon(qApp->style()->standardIcon(QStyle::SP_DialogOpenButton)); closePushButton->setIcon(qApp->style()->standardIcon(QStyle::SP_DialogCloseButton)); } + + splitter->setStretchFactor(0, 0); + splitter->setStretchFactor(1, 10); + splitter->setSizes(QList<int>() << 150 << width() - 150); + splitter->restoreState(settings.value("QMMPFileDialog/splitter_state").toByteArray()); } QmmpFileDialogImpl::~QmmpFileDialogImpl() @@ -117,6 +123,12 @@ QStringList QmmpFileDialogImpl::selectedFiles () return l; } +void QmmpFileDialogImpl::on_mountPointsListWidget_itemClicked(QListWidgetItem *item) +{ + lookInComboBox->setEditText(item->data(Qt::UserRole).toString()); + on_lookInComboBox_activated(item->data(Qt::UserRole).toString()); +} + void QmmpFileDialogImpl::on_lookInComboBox_activated(const QString &path) { if (QDir(path).exists ()) @@ -300,6 +312,23 @@ void QmmpFileDialogImpl::setModeAndMask(const QString& d,FileDialog::Mode m, con lookInComboBox->setEditText(QDir::cleanPath(path)); } +void QmmpFileDialogImpl::loadMountedVolumes() +{ + mountPointsListWidget->clear(); + foreach (QStorageInfo i, QStorageInfo::mountedVolumes()) + { + if(i.fileSystemType() == "tmpfs") + continue; + QString name = i.displayName(); + name.replace("\\x20", " "); + QListWidgetItem *item = new QListWidgetItem(name); + item->setData(Qt::UserRole, i.rootPath()); + item->setToolTip(i.rootPath()); + item->setIcon(style()->standardIcon(QStyle::SP_DirIcon)); + mountPointsListWidget->addItem(item); + } +} + void QmmpFileDialogImpl::on_listToolButton_toggled(bool yes) { if (yes) @@ -327,6 +356,7 @@ void QmmpFileDialogImpl::hideEvent (QHideEvent *event) settings.setValue("QMMPFileDialog/close_on_add", closeOnAddToolButton->isChecked()); settings.setValue("QMMPFileDialog/geometry", saveGeometry()); settings.setValue("QMMPFileDialog/history", m_history); + settings.setValue("QMMPFileDialog/splitter_state", splitter->saveState()); QWidget::hideEvent(event); } diff --git a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.h b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.h index 7419f08cf..6b3463fdc 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.h +++ b/src/plugins/FileDialogs/QmmpFileDialog/qmmpfiledialogimpl.h @@ -38,9 +38,11 @@ public: ~QmmpFileDialogImpl(); void setModeAndMask(const QString&,FileDialog::Mode m, const QStringList& mask = QStringList()); + void loadMountedVolumes(); QStringList selectedFiles (); protected slots: + void on_mountPointsListWidget_itemClicked(QListWidgetItem *item); void on_lookInComboBox_activated(const QString&); void on_upToolButton_clicked(); void on_fileListView_doubleClicked(const QModelIndex&); diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_bg.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_bg.ts index d52328e01..d47e9a8e1 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_bg.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_bg.ts @@ -9,50 +9,50 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation type="unfinished"></translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_cs.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_cs.ts index 0a0ecf0d0..fa377f4e3 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_cs.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_cs.ts @@ -9,50 +9,50 @@ <translation>Přidat soubory</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Nahoru</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>…</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Seznam</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Podrobnosti</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Zavřít dialog po přidání</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Název souboru:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Přidat</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Soubory typu:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Zavřít</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Souborový dialog Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>O souborovém dialogu Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Část kódu je zkopírována z knihovny Qt</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Přidat</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Adresáře</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 již existuje. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_de.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_de.ts index 6c03937eb..fade8dedb 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_de.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_de.ts @@ -9,50 +9,50 @@ <translation>Datei(en) hinzufügen</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Nach oben</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>…</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Listenansicht</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Detailansicht</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Dialog nach Hinzufügen schließen</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Dateiname:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Filter:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Schließen</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp Datei-Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Über Qmmp Datei-Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Einige Codezeilen wurden von der Qt-Bibliothek übernommen</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Verzeichnisse</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 existiert bereits. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_el.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_el.ts index 481660a3f..4fb92c944 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_el.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_el.ts @@ -9,50 +9,50 @@ <translation>Προσθήκη αρχείων</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Πάνω</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Προβολή λίστας</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Προβολή λεπτομερειών</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Κλείσιμο του διαλόγου κατά την προσθήκη</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Όνομα αρχείου:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Προσθήκη</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Τύποι αρχείων:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Κλείσιμο</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Διάλογος αρχείων Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Σχετικά με το διάλογο αρχείων Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Έχουν χρησιμοποιηθεί αποσπάσματα κώδικα από τη βιβλιοθήκη Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Προσθήκη</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Αποθήκευση</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Καταλόγοι</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>Το %1 υπάρχει ήδη. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_en.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_en.ts index 669770dfa..a4be80178 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_en.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_en.ts @@ -9,50 +9,50 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation type="unfinished"></translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_es.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_es.ts index 2e3279ed8..6a01ccb17 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_es.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_es.ts @@ -9,50 +9,50 @@ <translation>Añadir archivos</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Subir</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Vista de lista</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Vista detallada</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Cerrar diálogo al añadir</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nombre del archivo:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Añadir</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Archivos de tipo:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Cerrar</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Diálogo de archivos para Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Acerca del diálogo de archivos para Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Parte del código se ha copiado de la librería Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Añadir</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Directorios</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 ya existe. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fi.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fi.ts index e80506068..446dc09ed 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fi.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fi.ts @@ -9,50 +9,50 @@ <translation>Lisää tiedostoja</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Tiedostonimi:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Lisää</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Sulje</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation type="unfinished"></translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Lisää</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Tallenna</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Kansiot</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 on jo olemassa. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fr.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fr.ts index 98175498c..a2c66d800 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fr.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_fr.ts @@ -9,50 +9,50 @@ <translation>Ajouter des fichiers</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Haut</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Vue par liste</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Vue détaillée</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Fermer le dialogue après ajout</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nom du fichier :</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Ajouter</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Fichiers de type :</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Fermer</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Dialogue de fichier Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>À propos de Dialogue de fichier Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Du code est copié de la bibliothèque Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Ajouter</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Sauver</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Répertoires</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 existe déjà. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_gl_ES.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_gl_ES.ts index dfba68656..1e2dfab60 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_gl_ES.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_gl_ES.ts @@ -9,50 +9,50 @@ <translation>Engadir ficheiros</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Arriba</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Vista de lista</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Vista detallada</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Pechar diálogo ó engadir</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nome do ficheiro:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Engadir</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Tipos de ficheiro:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Pechar</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Diálogo de ficheiro de Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Sobre diálogo de ficheiro de Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Algún código está copiado da librería Qt</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Engadir</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Gardar</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Directorios</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 xa existe diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_he.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_he.ts index 5ed4a09fb..14e8a1790 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_he.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_he.ts @@ -9,50 +9,50 @@ <translation>הוסף קבצים</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>מעלה</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>תצוגת רשימה</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>תצוגה מפורטת</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>סגור דו שיח בעת הוספה</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>שם קובץ:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>הוסף</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>קבצים מטיפוס:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>סגור</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>דו שיח קובץ Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>אודות דו שיח קובץ Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>קוד מסוים מועתק מתוך הספרייה Qt</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>הוסף</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>שמור</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>מדורים</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 כבר קיים. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_hu.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_hu.ts index 569d4eb3e..86d4732f5 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_hu.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_hu.ts @@ -9,50 +9,50 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation type="unfinished"></translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_id.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_id.ts index f0f2a28c6..05e6fbf62 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_id.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_id.ts @@ -9,50 +9,50 @@ <translation>Tambah File</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Naik</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Tinjau daftar</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Tinjau rincian</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Tutup dialog pada tambah</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nama file:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Tambah</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Tipe-tipe file:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Tutup</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Dialog File Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Tentang Dialog File Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Beberapa kode adalah salinan dari pustaka Qt</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Tambah</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Simpan</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Direktori</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 sudah ada. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_it.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_it.ts index a70ff0857..cf134bfa3 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_it.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_it.ts @@ -9,50 +9,50 @@ <translation>Aggiungi brani</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Livello Superiore</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Mostra lista</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Mostra Dettagli</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Chiudi finestra quando aggiungi</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nome brano:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Aggiungi</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Tipo brani:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Chiudi</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Finestra di dialogo Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Info sulla finestra di dialogo Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Parti del codice sono riprese dalla libreria Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Aggiungi</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Cartelle</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 esiste già. Vuoi sostituirlo?</translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ja.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ja.ts index eae113240..1ca443902 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ja.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ja.ts @@ -9,50 +9,50 @@ <translation>ファイルを追加</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>親階層へ</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>一覧表示</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>詳細表示</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>追加を終えるとダイアログも閉じる</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>ファイル名:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>追加</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>この種のファイル:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>閉じる</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>QMMP ファイルダイアログ</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>QMMP ファイルダイアログについて</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Ilya Kotov <forkotov02@ya.ru></source> Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>コードの一部に Qt ライブラリのソースを流用しています</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>追加</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>ディレクトリ</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 は既にあります。 diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_kk.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_kk.ts index 5a0350c4c..63033a1a7 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_kk.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_kk.ts @@ -9,50 +9,50 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation type="unfinished"></translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_lt.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_lt.ts index c0a8c2e1f..095a73d8e 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_lt.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_lt.ts @@ -9,50 +9,50 @@ <translation>Įdėti bylas</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Į viršų</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Sąrašo peržiūra</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Detali peržiūra</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Užverti pridėjus</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Bylos pavadinimas:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Pridėti</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Bylų tipai:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Užverti</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp bylų langas</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Apie Qmmp bylų langą</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Dalis kodo nukopijuota iš Qt bibliotekos</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Pridėti</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Išsaugoti</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Aplankai</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 jau yra. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_nl.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_nl.ts index 9325815d5..36ed011aa 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_nl.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_nl.ts @@ -9,50 +9,50 @@ <translation>Bestanden toevoegen</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Omhoog</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Weergave modus</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Gedetailleerde weergave</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Sluit venster na toevoegen</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Bestandsnaam:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Toevoegen</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Bestandstype:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Sluiten</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp Bestandsdialoog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Over de Qmmp Bestandsdialoog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimír Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Sommige code is gekopiëerd van de Qt bibliotheek</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Toevoegen</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Bewaren</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Mappen</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 bestaat al. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pl_PL.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pl_PL.ts index 6ccac80e5..4e709237f 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pl_PL.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pl_PL.ts @@ -9,50 +9,50 @@ <translation>Dodaj pliki</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>W górę</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Widok listy</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Widok szczegółowy</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Zamknij okno dialogowe po dodaniu</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nazwa pliku:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Dodaj</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Typy plików:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Zamknij</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp Okno Dialogowe</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>O Qmmp File Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Część kodu zostało skopiowane z biblioteki QT</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Dodaj</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Zapisz</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Katalogi</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 już istnieje. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt.ts index 742e382b2..ce1ee5c42 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt.ts @@ -9,50 +9,50 @@ <translation>Adicionar ficheiros</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Cima</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Vista em lista</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Vista detalhada</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Fechar diálogo ao adicionar</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nome do ficheiro</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Adicionar</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Ficheiros do tipo:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Fechar</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp File Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Sobre o Qmmp File Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Utiliza algum código da biblioteca Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Adicionar</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Diretórios</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 já existe. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt_BR.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt_BR.ts index b08229576..6e47ce7a5 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt_BR.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_pt_BR.ts @@ -9,50 +9,50 @@ <translation>Adicionar arquivos</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Cima</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Vista em lista</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Vista detalhada</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Fechar caixa de diálogo ao adicionar</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Nome do arquivo:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Adicionar</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Arquivos do tipo:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Fechar</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp File Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Sobre o Qmmp File Dialog</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Utiliza algum código da biblioteca Qt</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Adicionar</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Salvar</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Pastas</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 já existe. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ru.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ru.ts index 04ffee44c..93979573b 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ru.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_ru.ts @@ -9,50 +9,50 @@ <translation>Добавить файлы</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Вверх</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Краткое представление</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Детальное представление</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Закрыть при добавлении</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Имя файла:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Добавить</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Тип файла:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Закрыть</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Файловый диалог Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>О файловом диалоге Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Ilya Kotov <forkotov02@ya.ru></source> Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Часть кода использована из библиотеки Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Добавить</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Директории</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 уже существует. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sk.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sk.ts index f2449bea3..87140bf31 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sk.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sk.ts @@ -9,50 +9,50 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation type="unfinished"></translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_BA.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_BA.ts index 74dc58ed5..dc9efb718 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_BA.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_BA.ts @@ -9,50 +9,50 @@ <translation>Додавање фајлова</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Горе</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Сажети приказ</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Приказ детаља</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Затвори дијалог по додавању</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Име фајла:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Додај</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Типови фајлова:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Затвори</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Кумп дијалог фајлова</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>О Кумповом дијалогу фајлова</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Дио кôда је преузет из Кут библиотеке</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Додај</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Сачувај</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Фасцикле</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 већ постоји. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_RS.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_RS.ts index ea699640c..5660556f3 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_RS.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_sr_RS.ts @@ -9,50 +9,50 @@ <translation>Додавање фајлова</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Горе</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Сажети приказ</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Приказ детаља</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Затвори дијалог по додавању</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Име фајла:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Додај</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Типови фајлова:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Затвори</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Кумп дијалог фајлова</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>О Кумповом дијалогу фајлова</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Део кôда је преузет из Кут библиотеке</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Додај</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Сачувај</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Фасцикле</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 већ постоји. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_tr.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_tr.ts index 66f3aeafb..9e1d8be24 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_tr.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_tr.ts @@ -9,50 +9,50 @@ <translation>Dosya Ekle</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Yukarı</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Liste görünümü</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Detaylı görünüm</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Eklenince diyaloğu kapat</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Dosya adı:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Ekle</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Dosya tipi:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Kapat</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp Dosya Diyaloğu</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Qmmp Dosya Diyaloğu Hakkında</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Bazı kodlar Qt kitaplığından kopyalanmıştır</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Ekle</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Dizinler</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_uk_UA.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_uk_UA.ts index e76267471..f14648556 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_uk_UA.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_uk_UA.ts @@ -9,50 +9,50 @@ <translation>Додати файли</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>Вгору</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>Перегляд списком</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>Деталізований перегляд</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>Закрити після додавання</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>Ім'я файлу:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>Додати</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>Типи файлів:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>Закрити</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Діалог файлів Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>Про діалог файлів Qmmp</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Ilya Kotov <forkotov02@ya.ru></source> Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>Деякий код скопійовано з бібліотеки Qt</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>Додати</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>Зберегти</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>Теки</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 існує. diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_CN.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_CN.ts index 0a39168be..062a1809a 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_CN.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_CN.ts @@ -9,50 +9,50 @@ <translation>添加文件</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>向上</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>…</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>列表视图</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>详细视图</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>关闭对话并打开已添加</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>文件名:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>添加</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>文件类型:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>关闭</translation> </message> @@ -60,25 +60,25 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp 文件对话</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>关于 Qmmp 文件对话</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>一些源码基于 Qt 库</translation> </message> @@ -86,22 +86,22 @@ Ilya Kotov <forkotov02@ya.ru></source> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>添加</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>目录</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 早已存在。 diff --git a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_TW.ts b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_TW.ts index b0900ec89..2137d46bc 100644 --- a/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_TW.ts +++ b/src/plugins/FileDialogs/QmmpFileDialog/translations/qmmp_file_dialog_plugin_zh_TW.ts @@ -9,50 +9,50 @@ <translation>添加文件</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="44"/> + <location filename="../qmmpfiledialog.ui" line="177"/> <source>Up</source> <translation>向上</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="47"/> - <location filename="../qmmpfiledialog.ui" line="60"/> - <location filename="../qmmpfiledialog.ui" line="79"/> - <location filename="../qmmpfiledialog.ui" line="104"/> + <location filename="../qmmpfiledialog.ui" line="180"/> + <location filename="../qmmpfiledialog.ui" line="193"/> + <location filename="../qmmpfiledialog.ui" line="212"/> + <location filename="../qmmpfiledialog.ui" line="237"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="57"/> + <location filename="../qmmpfiledialog.ui" line="190"/> <source>List view</source> <translation>清單視圖</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="76"/> + <location filename="../qmmpfiledialog.ui" line="209"/> <source>Detailed view</source> <translation>詳細視圖</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="101"/> + <location filename="../qmmpfiledialog.ui" line="234"/> <source>Close dialog on add</source> <translation>關閉對話並打開已添加</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="184"/> + <location filename="../qmmpfiledialog.ui" line="106"/> <source>File name:</source> <translation>文件名:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="200"/> + <location filename="../qmmpfiledialog.ui" line="122"/> <source>Add</source> <translation>添加</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="207"/> + <location filename="../qmmpfiledialog.ui" line="129"/> <source>Files of type:</source> <translation>文件類型:</translation> </message> <message> - <location filename="../qmmpfiledialog.ui" line="233"/> + <location filename="../qmmpfiledialog.ui" line="155"/> <source>Close</source> <translation>關閉</translation> </message> @@ -60,18 +60,18 @@ <context> <name>QmmpFileDialogFactory</name> <message> - <location filename="../qmmpfiledialog.cpp" line="69"/> - <location filename="../qmmpfiledialog.cpp" line="79"/> + <location filename="../qmmpfiledialog.cpp" line="70"/> + <location filename="../qmmpfiledialog.cpp" line="80"/> <source>Qmmp File Dialog</source> <translation>Qmmp 檔案會話</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="78"/> + <location filename="../qmmpfiledialog.cpp" line="79"/> <source>About Qmmp File Dialog</source> <translation>關於 Qmmp 檔案會話</translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="80"/> + <location filename="../qmmpfiledialog.cpp" line="81"/> <source>Written by: Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></source> @@ -80,7 +80,7 @@ Vladimir Kuznetsov <vovanec@gmail.com> Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../qmmpfiledialog.cpp" line="83"/> + <location filename="../qmmpfiledialog.cpp" line="84"/> <source>Some code is copied from the Qt library</source> <translation>一些源碼基於 Qt 程式庫</translation> </message> @@ -88,22 +88,22 @@ Ilya Kotov <forkotov02@ya.ru></translation> <context> <name>QmmpFileDialogImpl</name> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="250"/> + <location filename="../qmmpfiledialogimpl.cpp" line="262"/> <source>Add</source> <translation>添加</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="263"/> + <location filename="../qmmpfiledialogimpl.cpp" line="275"/> <source>Save</source> <translation>儲存</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="277"/> + <location filename="../qmmpfiledialogimpl.cpp" line="289"/> <source>Directories</source> <translation>目錄</translation> </message> <message> - <location filename="../qmmpfiledialogimpl.cpp" line="446"/> + <location filename="../qmmpfiledialogimpl.cpp" line="476"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1早已存在。 diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/CMakeLists.txt b/src/plugins/FileDialogs/TwoPanelFileDialog/CMakeLists.txt index d7f7a7e50..22f723f9d 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/CMakeLists.txt +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/CMakeLists.txt @@ -1,20 +1,7 @@ project(libtwopanelfiledialog) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -28,7 +15,7 @@ SET(libtwopanelfiledialog_SRCS SET(libtwopanelfiledialog_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libtwopanelfiledialog_RCC_SRCS ${libtwopanelfiledialog_RCCS}) +QT5_ADD_RESOURCES(libtwopanelfiledialog_RCC_SRCS ${libtwopanelfiledialog_RCCS}) # user interface @@ -37,12 +24,12 @@ SET(libtwopanelfiledialog_UIS twopanelfiledialog.ui ) -QT4_WRAP_UI(libtwopanelfiledialog_UIS_H ${libtwopanelfiledialog_UIS}) +QT5_WRAP_UI(libtwopanelfiledialog_UIS_H ${libtwopanelfiledialog_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(twopanelfiledialog MODULE ${libtwopanelfiledialog_SRCS} ${libtwopanelfiledialog_UIS_H} ${libtwopanelfiledialog_RCC_SRCS}) add_dependencies(twopanelfiledialog qmmpui) -target_link_libraries(twopanelfiledialog ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(twopanelfiledialog Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS twopanelfiledialog DESTINATION ${LIB_DIR}/qmmp/FileDialogs) diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_bg.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_bg.ts index 21f25a469..6ee21e74c 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_bg.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_bg.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_cs.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_cs.ts index 8268c5d54..09ab7b251 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_cs.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_cs.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Přidat</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Adresáře</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 již existuje. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_de.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_de.ts index bf5c7fe73..1e0fe7d06 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_de.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_de.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Verzeichnisse</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 existiert bereits. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_el.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_el.ts index b90a239f2..949b1b335 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_el.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_el.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Προσθήκη</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Καταλόγοι</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Αποθήκευση</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>Το %1 υπάρχει ήδη. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_en.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_en.ts index 897b41ea4..e23a5ce80 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_en.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_en.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_es.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_es.ts index ce42e6e4a..ad8fc545f 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_es.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_es.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Añadir</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Directorios</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 ya existe. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fi.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fi.ts index e61b8825d..0bf2b550a 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fi.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fi.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Lisää</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Kansiot</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Tallenna</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 on jo olemassa. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fr.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fr.ts index 32e1d2edb..8db55303b 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fr.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_fr.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Ajouter</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Répertoires</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Sauver</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 existe déjà. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_gl_ES.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_gl_ES.ts index a911bde37..2b54c8003 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_gl_ES.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_gl_ES.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Engadir</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Directorios</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Gardar</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 xa existe diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_he.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_he.ts index fd7a685db..86b2cf7d4 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_he.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_he.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>הוסף</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>מדורים</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>שמור</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 כבר קיים. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_hu.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_hu.ts index 7cce0ff78..68c55d147 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_hu.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_hu.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_id.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_id.ts index f696eb624..88eff103c 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_id.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_id.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Tambah</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Direktori</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Simpan</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 sudah ada. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_it.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_it.ts index c3d63881c..cec174efd 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_it.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_it.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ja.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ja.ts index 49f229f46..67e854b8a 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ja.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ja.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>追加</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>ディレクトリー</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 が既にあります。 diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_kk.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_kk.ts index 539a16ded..3a9410b3f 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_kk.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_kk.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_lt.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_lt.ts index 2ab0e8c50..1929ea8ba 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_lt.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_lt.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_nl.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_nl.ts index c323f5e42..63ad06445 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_nl.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_nl.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pl_PL.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pl_PL.ts index 1e5235b0d..5f5f58a31 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pl_PL.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pl_PL.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Dodaj</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Katalogi</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Zapisz</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 już istnieje. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt.ts index a190c1d2b..6d02ae318 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Adicionar</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Diretórios</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 já existe. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt_BR.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt_BR.ts index 0ac754a99..73e5ae701 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt_BR.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_pt_BR.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Adicionar</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Pastas</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Salvar</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 já existe. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ru.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ru.ts index 6e1a119f8..497c2d23b 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ru.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_ru.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Добавить</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Директории</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 уже существует. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sk.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sk.ts index e51e7bcf2..c0fe7fae4 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sk.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sk.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_BA.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_BA.ts index a421ed30e..df960dff7 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_BA.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_BA.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_RS.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_RS.ts index bcc0b7eb7..818809a93 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_RS.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_sr_RS.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_tr.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_tr.ts index f45ef4643..7619ab81b 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_tr.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_tr.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation type="unfinished"></translation> diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_uk_UA.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_uk_UA.ts index 8322bedec..d53618595 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_uk_UA.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_uk_UA.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>Додати</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>Теки</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>Зберегти</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 вже існує. diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_CN.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_CN.ts index 0e2eedff9..d1beea248 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_CN.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_CN.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>添加</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>目录</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1 早已存在。 diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_TW.ts b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_TW.ts index fd4e5e8d1..f09afd8ff 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_TW.ts +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/translations/two_panel_file_dialog_plugin_zh_TW.ts @@ -61,23 +61,23 @@ <context> <name>TwoPanelFileDialogImpl</name> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="326"/> - <location filename="../twopanelfiledialogimpl.cpp" line="342"/> + <location filename="../twopanelfiledialogimpl.cpp" line="322"/> + <location filename="../twopanelfiledialogimpl.cpp" line="338"/> <source>Add</source> <translation>添加</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="344"/> + <location filename="../twopanelfiledialogimpl.cpp" line="340"/> <source>Directories</source> <translation>目錄</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="356"/> + <location filename="../twopanelfiledialogimpl.cpp" line="352"/> <source>Save</source> <translation>儲存</translation> </message> <message> - <location filename="../twopanelfiledialogimpl.cpp" line="463"/> + <location filename="../twopanelfiledialogimpl.cpp" line="459"/> <source>%1 already exists. Do you want to replace it?</source> <translation>%1早已存在。 diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.cpp b/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.cpp index e236e2a6a..9d182189b 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.cpp +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.cpp @@ -87,5 +87,3 @@ QTranslator *TwoPanelFileDialogFactory::createTranslator(QObject *parent) translator->load(QString(":/two_panel_file_dialog_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(TwoPanelFileDialog, TwoPanelFileDialogFactory) diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.h b/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.h index 61a029ca2..5cd2b7455 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.h +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialog.h @@ -54,6 +54,7 @@ private: class TwoPanelFileDialogFactory : public QObject, public FileDialogFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.FileDialogFactoryInterface.1.0") Q_INTERFACES(FileDialogFactory) public: FileDialog* create(); diff --git a/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialogimpl.cpp b/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialogimpl.cpp index bd13e462c..09828fc11 100644 --- a/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialogimpl.cpp +++ b/src/plugins/FileDialogs/TwoPanelFileDialog/twopanelfiledialogimpl.cpp @@ -63,11 +63,7 @@ TwoPanelFileDialogImpl::TwoPanelFileDialogImpl(QWidget * parent) : QDialog(paren m_dirModel->setReadOnly(true); m_ui.dirListView->setModel(m_dirModel); m_dirModel->setRootPath(""); -#if (QT_VERSION >= 0x040700) m_dirModel->setFilter(QDir::AllDirs | QDir::NoDot); -#else - m_dirModel->setFilter(QDir::AllDirs); -#endif m_dirModel->setNameFilterDisables (false); connect(m_ui.dirListView->selectionModel(), diff --git a/src/plugins/General/CMakeLists.txt b/src/plugins/General/CMakeLists.txt index bbeec67cf..80acaf8b2 100644 --- a/src/plugins/General/CMakeLists.txt +++ b/src/plugins/General/CMakeLists.txt @@ -5,7 +5,6 @@ SET(USE_NOTIFIER TRUE CACHE BOOL "enable/disable notifier plugin") SET(USE_LYRICS TRUE CACHE BOOL "enable/disable lyrics version") SET(USE_HAL (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") CACHE BOOL "enable/disable hal plugin") SET(USE_UDISKS2 TRUE CACHE BOOL "enable/disable udisks2 plugin") -SET(USE_UDISKS FALSE CACHE BOOL "enable/disable udisks plugin") SET(USE_HOTKEY TRUE CACHE BOOL "enable/disable global hotkey plugin") SET(USE_GNOMEHOTKEY TRUE CACHE BOOL "enable/disable gnome hotkey plugin") SET(USE_FILEOPS TRUE CACHE BOOL "enable/disable fileops plugin") @@ -17,9 +16,9 @@ SET(USE_SB TRUE CACHE BOOL "enable/disable stream browser plugin") SET(USE_TRACKCHANGE TRUE CACHE BOOL "enable/disable track change plugin") SET(USE_COPYPASTE TRUE CACHE BOOL "enable/disable copy/paste change plugin") -IF(USE_MPRIS) +IF(USE_MPRIS AND Qt5DBus_FOUND) add_subdirectory(mpris) -ENDIF(USE_MPRIS) +ENDIF(USE_MPRIS AND Qt5DBus_FOUND) IF(USE_SCROBBLER) add_subdirectory(scrobbler) @@ -37,21 +36,17 @@ IF(USE_LYRICS) add_subdirectory(lyrics) ENDIF(USE_LYRICS) -IF(USE_HAL) +IF(USE_HAL AND Qt5DBus_FOUND) add_subdirectory(hal) -ENDIF(USE_HAL) +ENDIF(USE_HAL AND Qt5DBus_FOUND) -IF(USE_UDISKS2) +IF(USE_UDISKS2 AND Qt5DBus_FOUND) add_subdirectory(udisks2) -ENDIF(USE_UDISKS2) +ENDIF(USE_UDISKS2 AND Qt5DBus_FOUND) -IF(USE_UDISKS) -add_subdirectory(udisks) -ENDIF(USE_UDISKS) - -IF(USE_HOTKEY) +IF(USE_HOTKEY AND Qt5X11Extras_FOUND) add_subdirectory(hotkey) -ENDIF(USE_HOTKEY) +ENDIF(USE_HOTKEY AND Qt5X11Extras_FOUND) IF(USE_FILEOPS) add_subdirectory(fileops) @@ -61,9 +56,9 @@ IF(USE_COVER) add_subdirectory(covermanager) ENDIF(USE_COVER) -IF(USE_KDENOTIFY) +IF(USE_KDENOTIFY AND Qt5DBus_FOUND) add_subdirectory(kdenotify) -ENDIF(USE_KDENOTIFY) +ENDIF(USE_KDENOTIFY AND Qt5DBus_FOUND) IF(USE_CONVERTER AND TAGLIB_FOUND) add_subdirectory(converter) @@ -85,6 +80,6 @@ IF(USE_COPYPASTE) add_subdirectory(copypaste) ENDIF(USE_COPYPASTE) -IF(USE_GNOMEHOTKEY) +IF(USE_GNOMEHOTKEY AND Qt5DBus_FOUND) add_subdirectory(gnomehotkey) -ENDIF(USE_GNOMEHOTKEY) +ENDIF(USE_GNOMEHOTKEY AND Qt5DBus_FOUND) diff --git a/src/plugins/General/General.pro b/src/plugins/General/General.pro index 9484a4b3d..03727ba7d 100644 --- a/src/plugins/General/General.pro +++ b/src/plugins/General/General.pro @@ -16,10 +16,6 @@ unix:SUBDIRS += mpris \ converter \ gnomehotkey -contains(CONFIG, UDISKS_PLUGIN){ - unix:SUBDIRS += udisks -} - contains(CONFIG, UDISKS2_PLUGIN){ unix:SUBDIRS += udisks2 } diff --git a/src/plugins/General/converter/CMakeLists.txt b/src/plugins/General/converter/CMakeLists.txt index 2d67bd731..e9de97024 100644 --- a/src/plugins/General/converter/CMakeLists.txt +++ b/src/plugins/General/converter/CMakeLists.txt @@ -1,22 +1,7 @@ project(libconverter) -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -39,7 +24,7 @@ SET(libconverter_SRCS SET(libconverter_RCCS translations/translations.qrc presets.qrc) -QT4_ADD_RESOURCES(libconverter_RCC_SRCS ${libconverter_RCCS}) +QT5_ADD_RESOURCES(libconverter_RCC_SRCS ${libconverter_RCCS}) # user interface @@ -48,12 +33,12 @@ SET(libconverter_UIS preseteditor.ui ) -QT4_WRAP_UI(libconverter_UIS_H ${libconverter_UIS}) +QT5_WRAP_UI(libconverter_UIS_H ${libconverter_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(converter MODULE ${libconverter_SRCS} ${libconverter_UIS_H} ${libconverter_RCC_SRCS}) add_dependencies(converter qmmpui) -target_link_libraries(converter ${QT_LIBRARIES} qmmpui libqmmp ${TAGLIB_LDFLAGS}) +target_link_libraries(converter Qt5::Widgets -lqmmpui -lqmmp ${TAGLIB_LDFLAGS}) install(TARGETS converter DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/converter/converter.cpp b/src/plugins/General/converter/converter.cpp index 32a63ec53..f11a28ca5 100644 --- a/src/plugins/General/converter/converter.cpp +++ b/src/plugins/General/converter/converter.cpp @@ -20,7 +20,7 @@ #include <stdio.h> #include <QStringList> -#include <QDesktopServices> +#include <QStandardPaths> #include <qmmp/inputsourcefactory.h> #include <qmmp/decoderfactory.h> #include <qmmp/metadatamanager.h> @@ -33,8 +33,6 @@ #include <taglib/mpegfile.h> #include "converter.h" -#define QStringToTString_qt4(s) TagLib::String(s.toUtf8().constData(), TagLib::String::UTF8) - Converter::Converter(QObject *parent) : QObject(parent), QRunnable() { m_user_stop = false; @@ -170,7 +168,7 @@ void Converter::run() QString command = m_preset["command"].toString(); command.replace("%o", "\"" + full_path + "\""); - QString tmp_path = QDesktopServices::storageLocation(QDesktopServices::TempLocation) + "/tmp.wav"; + QString tmp_path = QStandardPaths::writableLocation(QStandardPaths::TempLocation) + "/tmp.wav"; bool use_file = command.contains("%i"); command.replace("%i", "\"" + tmp_path + "\""); @@ -258,11 +256,11 @@ void Converter::run() TagLib::FileRef file(qPrintable(full_path)); if(file.tag()) { - file.tag()->setTitle(QStringToTString_qt4(metadata[Qmmp::TITLE])); - file.tag()->setArtist(QStringToTString_qt4(metadata[Qmmp::ARTIST])); - file.tag()->setAlbum(QStringToTString_qt4(metadata[Qmmp::ALBUM])); - file.tag()->setGenre(QStringToTString_qt4(metadata[Qmmp::GENRE])); - file.tag()->setComment(QStringToTString_qt4(metadata[Qmmp::COMMENT])); + file.tag()->setTitle(QStringToTString(metadata[Qmmp::TITLE])); + file.tag()->setArtist(QStringToTString(metadata[Qmmp::ARTIST])); + file.tag()->setAlbum(QStringToTString(metadata[Qmmp::ALBUM])); + file.tag()->setGenre(QStringToTString(metadata[Qmmp::GENRE])); + file.tag()->setComment(QStringToTString(metadata[Qmmp::COMMENT])); file.tag()->setYear(metadata[Qmmp::YEAR].toUInt()); file.tag()->setTrack(metadata[Qmmp::TRACK].toUInt()); diff --git a/src/plugins/General/converter/converterdialog.cpp b/src/plugins/General/converter/converterdialog.cpp index 11266e611..2325b125b 100644 --- a/src/plugins/General/converter/converterdialog.cpp +++ b/src/plugins/General/converter/converterdialog.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ #include <QSettings> -#include <QDesktopServices> +#include <QStandardPaths> #include <QMenu> #include <QFile> #include <QDir> @@ -40,7 +40,7 @@ ConverterDialog::ConverterDialog(QList <PlayListTrack *> tracks, QWidget *paren { m_ui.setupUi(this); m_ui.tableWidget->verticalHeader()->setDefaultSectionSize(fontMetrics().height() + 3); - m_ui.tableWidget->verticalHeader()->setResizeMode(QHeaderView::Fixed); + m_ui.tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); QStringList paths; MetaDataFormatter formatter("%if(%p&%t,%p - %t,%f) - %l"); @@ -72,7 +72,7 @@ ConverterDialog::ConverterDialog(QList <PlayListTrack *> tracks, QWidget *paren QSettings settings(Qmmp::configFile(), QSettings::IniFormat); settings.beginGroup("Converter"); - QString music_path = QDesktopServices::storageLocation(QDesktopServices::MusicLocation); + QString music_path = QStandardPaths::writableLocation(QStandardPaths::MusicLocation); m_ui.outDirEdit->setText(settings.value("out_dir", music_path).toString()); m_ui.outFileEdit->setText(settings.value("file_name","%p - %t").toString()); m_ui.overwriteCheckBox->setChecked(settings.value("overwrite",false).toBool()); @@ -272,7 +272,7 @@ void ConverterDialog::readPresets(const QString &path) QList <QVariantMap> dataList; while(!file.atEnd()) { - QString line = QString::fromUtf8(file.readLine().trimmed().constData()); + QString line = QString::fromUtf8(file.readLine().trimmed()); if(!line.contains("=")) continue; QString key = line.split("=").at(0); diff --git a/src/plugins/General/converter/converterfactory.cpp b/src/plugins/General/converter/converterfactory.cpp index 6b2e32a43..cda17108c 100644 --- a/src/plugins/General/converter/converterfactory.cpp +++ b/src/plugins/General/converter/converterfactory.cpp @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "converterhelper.h" #include "converterfactory.h" @@ -62,5 +61,3 @@ QTranslator *ConverterFactory::createTranslator(QObject *parent) translator->load(QString(":/converter_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(converter, ConverterFactory) diff --git a/src/plugins/General/converter/converterfactory.h b/src/plugins/General/converter/converterfactory.h index 27b340296..88017bfcf 100644 --- a/src/plugins/General/converter/converterfactory.h +++ b/src/plugins/General/converter/converterfactory.h @@ -33,6 +33,7 @@ class ConverterFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/converter/translations/converter_plugin_bg.ts b/src/plugins/General/converter/translations/converter_plugin_bg.ts index d68f7c317..cd633677d 100644 --- a/src/plugins/General/converter/translations/converter_plugin_bg.ts +++ b/src/plugins/General/converter/translations/converter_plugin_bg.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_cs.ts b/src/plugins/General/converter/translations/converter_plugin_cs.ts index c4cc65d8e..18400f78d 100644 --- a/src/plugins/General/converter/translations/converter_plugin_cs.ts +++ b/src/plugins/General/converter/translations/converter_plugin_cs.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Chyba</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Modul konvertoru</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>O modulu konvertoru</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Modul Qmmp pro konverzi</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Tento modul konvertuje podporované zvukové soubory do jiných formátů pomocí externích kodérů</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_de.ts b/src/plugins/General/converter/translations/converter_plugin_de.ts index 566175bde..aa7244830 100644 --- a/src/plugins/General/converter/translations/converter_plugin_de.ts +++ b/src/plugins/General/converter/translations/converter_plugin_de.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Abgebrochen</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Konvertierungsvorgang</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Kodierung</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Fertiggestellt</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Konvertermodul</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Über Konvertermodul</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Qmmp Konvertermodul</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Dieses Modul konvertiert unterstützte Audiodateien durch externe Befehlszeilen-Kodierer in andere Formate</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_el.ts b/src/plugins/General/converter/translations/converter_plugin_el.ts index 2b0eb5c5a..b1e2624bd 100644 --- a/src/plugins/General/converter/translations/converter_plugin_el.ts +++ b/src/plugins/General/converter/translations/converter_plugin_el.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Ακυρώθηκε</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Σφάλμα</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Μετατρέπεται</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Κωδικοποίηση</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Ολοκληρώθηκε</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Πρόσθετο Μετατροπέας</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Σχετικά με το πρόσθετο Μετατροπέας</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Qmmp πρόσθετο Μετατροπέας</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Αυτό το πρόσθετο μετατρέπει υποστηριζόμενους τύπους αρχείων ήχου σε άλλες μορφές χρησιμοποιώντας κωδικοποιητές της γραμμής εντολών </translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_en.ts b/src/plugins/General/converter/translations/converter_plugin_en.ts index 4faaa7d45..90bff91ea 100644 --- a/src/plugins/General/converter/translations/converter_plugin_en.ts +++ b/src/plugins/General/converter/translations/converter_plugin_en.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_es.ts b/src/plugins/General/converter/translations/converter_plugin_es.ts index ef23b1be2..801c09b3e 100644 --- a/src/plugins/General/converter/translations/converter_plugin_es.ts +++ b/src/plugins/General/converter/translations/converter_plugin_es.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Cancelado</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Convirtiendo</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Codificando</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Finalizado</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Módulo Convertidor</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Acerca del Módulo Convertidor</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Módulo Convertidor de Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Este módulo convierte archivos de audio soportados hacia otros formatos utilizando codificadores externos de consola</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_fi.ts b/src/plugins/General/converter/translations/converter_plugin_fi.ts index 62e46df78..7b273ff46 100644 --- a/src/plugins/General/converter/translations/converter_plugin_fi.ts +++ b/src/plugins/General/converter/translations/converter_plugin_fi.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Peruttu</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Virhe</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_fr.ts b/src/plugins/General/converter/translations/converter_plugin_fr.ts index 656c3e8f7..069337923 100644 --- a/src/plugins/General/converter/translations/converter_plugin_fr.ts +++ b/src/plugins/General/converter/translations/converter_plugin_fr.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Annulé</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Erreur</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Conversion</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Encodage</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Terminé</translation> </message> @@ -135,27 +135,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Greffon de conversion</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>À propos du greffon de conversion</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Greffon de conversion pour Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Ce greffon convertit les fichiers audio supportés dans d'autres formats en utilisant des encodeurs en ligne de commande</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_gl_ES.ts b/src/plugins/General/converter/translations/converter_plugin_gl_ES.ts index 81a019566..de42b71b0 100644 --- a/src/plugins/General/converter/translations/converter_plugin_gl_ES.ts +++ b/src/plugins/General/converter/translations/converter_plugin_gl_ES.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Cancelado</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Convertendo</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Codificando</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Rematado</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Engadido Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Sobre o engadido Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Engadido Qmmp Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Este engadido converte ficheiros de audio soportados a outros formatos de ficheiro usando codificadores por liña de comandos externos</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_he.ts b/src/plugins/General/converter/translations/converter_plugin_he.ts index 29ee7569d..624cc0624 100644 --- a/src/plugins/General/converter/translations/converter_plugin_he.ts +++ b/src/plugins/General/converter/translations/converter_plugin_he.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>בוטלה</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>שגיאה</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>המרה</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>קידוד</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>נסתיימה</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>תוסף ממיר</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>אודות תוסף ממיר</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>תוסף ממיר של Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>תוסף זה ממיר קבצי שמע נתמכים לפורמט קובץ באמצעות שורת פקודה של מקודדים חיצוניים</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_hu.ts b/src/plugins/General/converter/translations/converter_plugin_hu.ts index fae3f3b6f..a13158f8c 100644 --- a/src/plugins/General/converter/translations/converter_plugin_hu.ts +++ b/src/plugins/General/converter/translations/converter_plugin_hu.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_id.ts b/src/plugins/General/converter/translations/converter_plugin_id.ts index 046fdfbf1..72c447932 100644 --- a/src/plugins/General/converter/translations/converter_plugin_id.ts +++ b/src/plugins/General/converter/translations/converter_plugin_id.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Dibatalkan</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Galat</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Mengkonversi</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Mengenkode</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Selesai</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Plugin Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Tentang Plugin Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Plugin Converter Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Plugin ini mengkonversi file audio yang didukung ke format file lainnya menggunakan enkoder baris-perintah eksternal</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_it.ts b/src/plugins/General/converter/translations/converter_plugin_it.ts index ef317b5da..cd94bee4d 100644 --- a/src/plugins/General/converter/translations/converter_plugin_it.ts +++ b/src/plugins/General/converter/translations/converter_plugin_it.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_ja.ts b/src/plugins/General/converter/translations/converter_plugin_ja.ts index a581d8bc1..21264f0a1 100644 --- a/src/plugins/General/converter/translations/converter_plugin_ja.ts +++ b/src/plugins/General/converter/translations/converter_plugin_ja.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>中止しました</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>エラーです</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>転換しています</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>符号化しています</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>完了しました</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>ファイル形式転換プラグイン</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>転換プラグインについて</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>QMMP 転換プラグイン</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>このプラグインは外部のコマンドライン方式のエンコーダーを利用してサポート対象形式間で音声ファイルを転換し別の音声ファイルを生成します。</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_kk.ts b/src/plugins/General/converter/translations/converter_plugin_kk.ts index 08897f006..c2ec6aab0 100644 --- a/src/plugins/General/converter/translations/converter_plugin_kk.ts +++ b/src/plugins/General/converter/translations/converter_plugin_kk.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_lt.ts b/src/plugins/General/converter/translations/converter_plugin_lt.ts index 722a4a228..c646e5162 100644 --- a/src/plugins/General/converter/translations/converter_plugin_lt.ts +++ b/src/plugins/General/converter/translations/converter_plugin_lt.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Perkodavimo įskiepis</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Apie perkodavimo įskiepį</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Qmmp perkodavimo įskiepis</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Šis įskiepis perkoduoja palaikomas audio bylas, naudodamasis išorinėmis perkodavimo programomis</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_nl.ts b/src/plugins/General/converter/translations/converter_plugin_nl.ts index 07fbcc05e..0f3063cf2 100644 --- a/src/plugins/General/converter/translations/converter_plugin_nl.ts +++ b/src/plugins/General/converter/translations/converter_plugin_nl.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Converteer Module</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Over de Converteer Module</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Converteer Module voor Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Deze module converteert ondersteunde audiobestanden naar andere formaten door gebruik van externe commando prompt encoders</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_pl_PL.ts b/src/plugins/General/converter/translations/converter_plugin_pl_PL.ts index 18b51ab85..a64d143ab 100644 --- a/src/plugins/General/converter/translations/converter_plugin_pl_PL.ts +++ b/src/plugins/General/converter/translations/converter_plugin_pl_PL.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Błąd</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Wtyczka konwertera</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>O wtyczce Konwerter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Wtyczka Konwerter dla Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Ta wtyczka konwertuje wspierane pliki dźwiękowe do innego formatu przy użyciu zewnętrznych programów</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_pt.ts b/src/plugins/General/converter/translations/converter_plugin_pt.ts index ff2f4d30c..14d7b535a 100644 --- a/src/plugins/General/converter/translations/converter_plugin_pt.ts +++ b/src/plugins/General/converter/translations/converter_plugin_pt.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Cancelada</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Conversão</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Codificação</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Terminada</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Suplemento Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Sobre o suplemento Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Suplemento Qmmp Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Este suplemento converte os ficheiros áudio suportados para outros formatos através da utilização de codificadores externos</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_pt_BR.ts b/src/plugins/General/converter/translations/converter_plugin_pt_BR.ts index 7edb6c99e..bc2bf1a63 100644 --- a/src/plugins/General/converter/translations/converter_plugin_pt_BR.ts +++ b/src/plugins/General/converter/translations/converter_plugin_pt_BR.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Cancelada</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Conversão</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Codificação</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Terminada</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Plugin Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Sobre o plugin Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Plugin Qmmp Converter</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Este plugin converte os arquivos de áudio suportados para outros formatos através da utilização de codificadores externos</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_ru.ts b/src/plugins/General/converter/translations/converter_plugin_ru.ts index 3414b2879..0c253645f 100644 --- a/src/plugins/General/converter/translations/converter_plugin_ru.ts +++ b/src/plugins/General/converter/translations/converter_plugin_ru.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Отменено</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Преобразование</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Кодирование</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Завершено</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Модуль преобр. форматов</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>О преобразователе форматов</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Модуль преобразования аудио-форматов для Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Этот модуль предназначен для преобразования поддерживаемых аудио-файлов в другой формат с использованием внешних консольных программ</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_sk.ts b/src/plugins/General/converter/translations/converter_plugin_sk.ts index afabc8b6f..b0153dbcf 100644 --- a/src/plugins/General/converter/translations/converter_plugin_sk.ts +++ b/src/plugins/General/converter/translations/converter_plugin_sk.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_sr_BA.ts b/src/plugins/General/converter/translations/converter_plugin_sr_BA.ts index dfffab661..5522c4f73 100644 --- a/src/plugins/General/converter/translations/converter_plugin_sr_BA.ts +++ b/src/plugins/General/converter/translations/converter_plugin_sr_BA.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Претварач</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>О претварачу</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Кумп прикључак за претварање</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Претвара подржане фајлове звука у остале формате користећи спољашње програме</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_sr_RS.ts b/src/plugins/General/converter/translations/converter_plugin_sr_RS.ts index 8c8d525e3..67cb72af9 100644 --- a/src/plugins/General/converter/translations/converter_plugin_sr_RS.ts +++ b/src/plugins/General/converter/translations/converter_plugin_sr_RS.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Претварач</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>О претварачу</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Кумп прикључак за претварање</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Претвара подржане фајлове звука у остале формате користећи спољашње програме</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_tr.ts b/src/plugins/General/converter/translations/converter_plugin_tr.ts index 9cb1ff6a4..791d4ea54 100644 --- a/src/plugins/General/converter/translations/converter_plugin_tr.ts +++ b/src/plugins/General/converter/translations/converter_plugin_tr.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts b/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts index ece5917c3..cdae9dc5d 100644 --- a/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts +++ b/src/plugins/General/converter/translations/converter_plugin_uk_UA.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>Скасовано</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>Помилка</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>Конвертування</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>Кодування</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>Завершено</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>Модуль конвертера</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>Про модуль конвертера</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Модуль конвертера для Qmmp</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>Цей модуль призначений для конвертування аудіофайлів, що підтримуються, в інший формат з використанням зовнішніх консольних програм</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts b/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts index 448987a41..b23b6c488 100644 --- a/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts +++ b/src/plugins/General/converter/translations/converter_plugin_zh_CN.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation>已取消</translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>错误</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation>转化中</translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation>编码中</translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation>完成</translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation>转换器插件</translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation>关于转换器插件</translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation>Qmmp转换器插件</translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation>该插件使用外置命令行编码器转换支持格式的音频文件</translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts b/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts index 4d50ddb1e..c0bb91df4 100644 --- a/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts +++ b/src/plugins/General/converter/translations/converter_plugin_zh_TW.ts @@ -4,29 +4,29 @@ <context> <name>Converter</name> <message> - <location filename="../converter.cpp" line="131"/> - <location filename="../converter.cpp" line="231"/> + <location filename="../converter.cpp" line="129"/> + <location filename="../converter.cpp" line="229"/> <source>Cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="146"/> - <location filename="../converter.cpp" line="213"/> + <location filename="../converter.cpp" line="144"/> + <location filename="../converter.cpp" line="211"/> <source>Error</source> <translation>錯誤</translation> </message> <message> - <location filename="../converter.cpp" line="178"/> + <location filename="../converter.cpp" line="176"/> <source>Converting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="242"/> + <location filename="../converter.cpp" line="240"/> <source>Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converter.cpp" line="280"/> + <location filename="../converter.cpp" line="278"/> <source>Finished</source> <translation type="unfinished"></translation> </message> @@ -134,27 +134,27 @@ <context> <name>ConverterFactory</name> <message> - <location filename="../converterfactory.cpp" line="30"/> + <location filename="../converterfactory.cpp" line="29"/> <source>Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="51"/> + <location filename="../converterfactory.cpp" line="50"/> <source>About Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="52"/> + <location filename="../converterfactory.cpp" line="51"/> <source>Qmmp Converter Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="53"/> + <location filename="../converterfactory.cpp" line="52"/> <source>This plugin converts supported audio files to other file formats using external command-line encoders</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../converterfactory.cpp" line="55"/> + <location filename="../converterfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/CMakeLists.txt b/src/plugins/General/copypaste/CMakeLists.txt index a1d3842d9..1172ef9a2 100644 --- a/src/plugins/General/copypaste/CMakeLists.txt +++ b/src/plugins/General/copypaste/CMakeLists.txt @@ -1,22 +1,7 @@ project(libcopypaste) -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -30,7 +15,7 @@ SET(libcopypaste_SRCS SET(libcopypaste_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libcopypaste_RCC_SRCS ${libcopypaste_RCCS}) +QT5_ADD_RESOURCES(libcopypaste_RCC_SRCS ${libcopypaste_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -38,5 +23,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(copypaste MODULE ${libcopypaste_SRCS} ${libcopypaste_UIS_H} ${libcopypaste_RCC_SRCS}) add_dependencies(copypaste qmmpui) -target_link_libraries(copypaste ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(copypaste Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS copypaste DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/copypaste/copypastefactory.cpp b/src/plugins/General/copypaste/copypastefactory.cpp index b4fd61a6b..bbd189c55 100644 --- a/src/plugins/General/copypaste/copypastefactory.cpp +++ b/src/plugins/General/copypaste/copypastefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2013-2016 by Ilya Kotov * + * Copyright (C) 2013 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "copypaste.h" #include "copypastefactory.h" @@ -60,5 +59,3 @@ QTranslator *CopyPasteFactory::createTranslator(QObject *parent) translator->load(QString(":/copypaste_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(copypaste, CopyPasteFactory) diff --git a/src/plugins/General/copypaste/copypastefactory.h b/src/plugins/General/copypaste/copypastefactory.h index 2e157cb2e..0b8f5c7fa 100644 --- a/src/plugins/General/copypaste/copypastefactory.h +++ b/src/plugins/General/copypaste/copypastefactory.h @@ -32,6 +32,7 @@ class CopyPasteFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_bg.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_bg.ts index 98c0085ea..6a1fc53cc 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_bg.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_bg.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_cs.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_cs.ts index dfdd321eb..c3ec00d4e 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_cs.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_cs.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Modul kopírování/vkládání</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>O modulu kopírování/vkládání</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Modul Qmmp pro kopírování a vkládání</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Tento modul umožňuje kopírovat vybrané stopy z jednoho seznamu stop do jiného</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_de.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_de.ts index d8d6286fb..5ed18042a 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_de.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_de.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Kopieren/Einfügen-Modul</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Über Kopieren/Einfügen-Modul</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Qmmp Kopieren/Einfügen-Modul</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Dieses Modul ermöglicht es, ausgewählte Titel aus einer Wiedergabeliste in eine andere zu kopieren</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_el.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_el.ts index 720a80754..19b184fc8 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_el.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_el.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Πρόσθετο Αντιγραφής/Επικόλλησης</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Σχετικά με το πρόσθετο Αντιγραφής/Επικόλλησης</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Qmmp πρόσθετο Αντιγραφής/Επικόλλησης</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Αυτό το πρόσθετο επιτρέπει την αντιγραφή επιλεγμένων κομματιών από μια λίστα αναπαραγωγής σε μια άλλη. </translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_en.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_en.ts index fb3629321..263380368 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_en.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_en.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_es.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_es.ts index 3560d5d4a..98f1fef60 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_es.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_es.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Módulo Copiar/Pegar</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Acerca del Módulo Copiar/Pegar</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Módulo Copiar/Pegar de Qmmp</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Este módulo permite copiar pistas seleccionadas desde una lista de hacia otra</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_fi.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_fi.ts index f07c1e26c..7c5d22969 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_fi.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_fi.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Kopioi/liitä-liitännäinen</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_fr.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_fr.ts index 93fdf5ce2..ded128787 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_fr.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_fr.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Greffon copier/coller</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>À propos du greffon copier/coller</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Greffon copier/coller pour Qmmp</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Ce greffon permet de copier les pistes sélectionnées d'une liste à une autre.</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_gl_ES.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_gl_ES.ts index 9c17ed948..3a36baad5 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_gl_ES.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_gl_ES.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Engadido Copiar/Pegar</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Sobre o engadido Copiar/Pegar</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Engadido Qmmp Copiar/Pegar</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Este engadido permite copiar pistas seleccionadas dunha lista de reprodución a outra</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_he.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_he.ts index 96da5b8dd..1bf897c2c 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_he.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_he.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>תוסף העתק/הדבק</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>אודות תוסף העתק/הדבק</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>תוסף העתק/הדבק של Qmmp</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>תוסף זה מתיר לך להעתיק רצועות נבחרות מתוך רשימת נגינה אחת לאחרת</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_hu.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_hu.ts index 27fdd105b..4acb2b44c 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_hu.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_hu.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_id.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_id.ts index cabe5a2e6..9d16d31b0 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_id.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_id.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Plugin Salin/Tempel</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Tentang Plugin Salin/Tempel</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Plugin Salin/Tempel Qmmp</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Plugin ini membolehkan untuk menyalin track terpilih dari salah satu daftarmain ke yang lain</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_it.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_it.ts index dc692ff30..493e8b2c8 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_it.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_it.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_ja.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_ja.ts index 44b1f77b7..62823b594 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_ja.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_ja.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>プレイリスト切り貼りプラグイン</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>切り貼りプラグインについて</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>QMMP 切り貼りプラグイン</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>このプラグインでプレイリストからトラックを選んで他のプレイリストにコピーできます</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_kk.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_kk.ts index 43be73333..a129f2c50 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_kk.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_kk.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_lt.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_lt.ts index c7b356987..e7d3b1990 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_lt.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_lt.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Copy/Paste Įskiepis</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Apie Copy/Paste Įskiepį </translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Qmmp Copy/Paste Įskiepis </translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Šis įskiepis leidžia kopijuoti pasirinktus takelius iš vieno grojaraščio į kitą</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru> </translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_nl.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_nl.ts index bcab01a99..7916a1f7b 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_nl.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_nl.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_pl_PL.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_pl_PL.ts index 9812d857e..a17772781 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_pl_PL.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_pl_PL.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Wtyczka Kopiuj/Wklej</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>O wtyczce Kopiuj/Wklej</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Wtyczka Kopiuj/Wklej dla Qmmp</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Ta wtyczka pozwala na kopiowanie wybranych utworów z jednej listy odtwarzania do innej</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_pt.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_pt.ts index 745e7289f..bdd3d57c5 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_pt.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_pt.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Suplemento Copy/Paste</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Sobre o suplemento Copy/Paste</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Suplemento Qmmp Copy/Paste</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Este suplemento permite copiar as faixas entre as várias listas de reprodução</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_pt_BR.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_pt_BR.ts index 856091efb..7afcdc247 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_pt_BR.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_pt_BR.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Plugin Copy/Paste</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Sobre o plugin Copy/Paste</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Plugin Qmmp Copy/Paste</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Este plugin permite copiar faixas selecionadas de uma lista de reprodução para outra</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_ru.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_ru.ts index 59bfbac8e..c3be5e484 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_ru.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_ru.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Модуль копир./вставки</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>О модуле копирования/вставки</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Модуль копирования/вставки</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Данный модуль позволяет копировать выбранные треки из одного списка воспроизведения в другой</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_sk.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_sk.ts index c1d42d10a..613222d83 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_sk.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_sk.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_sr_BA.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_sr_BA.ts index 8e7ac2b66..ebaa94376 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_sr_BA.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_sr_BA.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Копирај/налијепи</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>О прикључку за копирање/лијепљење</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Кумп прикључак за копирање/лијепљење</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Омогућује копирање изабране нумере са једне листе нумера на другу</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_sr_RS.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_sr_RS.ts index 52b7a0a6b..b970f6f73 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_sr_RS.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_sr_RS.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Копирај/налепи</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>О прикључку за копирање/лепљење</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Кумп прикључак за копирање/лепљење</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Омогућује копирање изабране нумере са једне листе нумера на другу</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_tr.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_tr.ts index c09e0e0f6..41ee131bb 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_tr.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_tr.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_uk_UA.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_uk_UA.ts index f41f666fc..16aafe9eb 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_uk_UA.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_uk_UA.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>Модуль копіюв./вставки</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>Про модуль копіювання/вставки</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Модуль копіювання/вставки Qmmp</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>Даний модуль дозволяє копіювати выбрані треки з одного переліка відтворення в інший</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_zh_CN.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_zh_CN.ts index 4ecc73538..bc0edef2e 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_zh_CN.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_zh_CN.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation>复制/粘贴插件</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation>关于复制/粘贴插件</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation>Qmmp复制/粘贴插件</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation>此插件允许操作者从一个播放列表中复制选定的曲目到另一个播放列表中</translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/copypaste/translations/copypaste_plugin_zh_TW.ts b/src/plugins/General/copypaste/translations/copypaste_plugin_zh_TW.ts index 6352cd0b6..4b1042d3e 100644 --- a/src/plugins/General/copypaste/translations/copypaste_plugin_zh_TW.ts +++ b/src/plugins/General/copypaste/translations/copypaste_plugin_zh_TW.ts @@ -37,27 +37,27 @@ <context> <name>CopyPasteFactory</name> <message> - <location filename="../copypastefactory.cpp" line="30"/> + <location filename="../copypastefactory.cpp" line="29"/> <source>Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="50"/> + <location filename="../copypastefactory.cpp" line="49"/> <source>About Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="51"/> + <location filename="../copypastefactory.cpp" line="50"/> <source>Qmmp Copy/Paste Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="52"/> + <location filename="../copypastefactory.cpp" line="51"/> <source>This plugin allows one to copy selected tracks from one playlist to another</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../copypastefactory.cpp" line="53"/> + <location filename="../copypastefactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/CMakeLists.txt b/src/plugins/General/covermanager/CMakeLists.txt index 10265b03a..54a1d83d3 100644 --- a/src/plugins/General/covermanager/CMakeLists.txt +++ b/src/plugins/General/covermanager/CMakeLists.txt @@ -1,18 +1,5 @@ project(libcovermanager) -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) @@ -33,7 +20,7 @@ SET(libcovermanager_RCCS images/cm_images.qrc ) -QT4_ADD_RESOURCES(libcovermanager_RCC_SRCS ${libcovermanager_RCCS}) +QT5_ADD_RESOURCES(libcovermanager_RCC_SRCS ${libcovermanager_RCCS}) # user interface @@ -41,7 +28,7 @@ QT4_ADD_RESOURCES(libcovermanager_RCC_SRCS ${libcovermanager_RCCS}) SET(libcovermanager_UIS ) -QT4_WRAP_UI(libcovermanager_UIS_H ${libcovermanager_UIS}) +QT5_WRAP_UI(libcovermanager_UIS_H ${libcovermanager_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -49,5 +36,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(covermanager MODULE ${libcovermanager_SRCS} ${libcovermanager_UIS_H} ${libcovermanager_RCC_SRCS}) add_dependencies(covermanager qmmpui) -target_link_libraries(covermanager ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(covermanager Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS covermanager DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/covermanager/covermanagerfactory.cpp b/src/plugins/General/covermanager/covermanagerfactory.cpp index ad44dc095..1bdc22f99 100644 --- a/src/plugins/General/covermanager/covermanagerfactory.cpp +++ b/src/plugins/General/covermanager/covermanagerfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "covermanager.h" #include "covermanagerfactory.h" @@ -60,5 +59,3 @@ QTranslator *CoverManagerFactory::createTranslator(QObject *parent) translator->load(QString(":/covermanager_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(covermanager, CoverManagerFactory) diff --git a/src/plugins/General/covermanager/covermanagerfactory.h b/src/plugins/General/covermanager/covermanagerfactory.h index 02a37bdb6..c0394cc75 100644 --- a/src/plugins/General/covermanager/covermanagerfactory.h +++ b/src/plugins/General/covermanager/covermanagerfactory.h @@ -32,6 +32,7 @@ class CoverManagerFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_bg.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_bg.ts index 36054e560..d7a04d25e 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_bg.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_bg.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts index 58d111983..2c9b8114c 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Modul správy obalů</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>O modulu správy obalů</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Modul Qmmp pro správu obalů</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts index bbf0a5793..2ba056074 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Cover-Verwaltungsmodul</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Über Cover-Verwaltungsmodul</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Qmmp Cover-Verwaltungsmodul</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_el.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_el.ts index e9308d20e..b0ecbb6a7 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_el.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_el.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Πρόσθετο διαχείρισης εξώφυλλων</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Σχετικά με το πρόσθετο διαχείρισης εξώφυλλων</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Qmmp πρόσθετο διαχείρισης εξώφυλλων</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_en.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_en.ts index aeecb3ed1..786e9dc23 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_en.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_en.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_es.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_es.ts index f5f7fe12a..c8e5ba723 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_es.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_es.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Módulo de gestión de carátulas</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Acerca del módulo de gestión de carátulas</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Módulo de gestión de carátulas para Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_fi.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_fi.ts index d3fa5e060..de0134b5f 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_fi.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_fi.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Kansikuvien hallinta -liitännäinen</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Tietoja - Kansikuvien hallinta -liitännäinen</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Qmmp:n kansikuvien hallinta -liitännäinen</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_fr.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_fr.ts index f3a747e5a..eea98e9f8 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_fr.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_fr.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Greffon de gestion des couvertures</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>À propos du greffon de gestion des couvertures</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Greffon de gestion des couvertures pour Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_gl_ES.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_gl_ES.ts index b04ea5fa0..781e86ab3 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_gl_ES.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_gl_ES.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Engadido de manexador de cubertas</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Sobre o engadido de cubertas</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Engadido Qmmp de cubertas</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_he.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_he.ts index c7ce80f40..a8f8975eb 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_he.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_he.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>תוסף ניהול כיסוי</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>אודות תוסף ניהול כיסוי</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>תוסף ניהול כיסוי של Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_hu.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_hu.ts index 463a3437f..bffdebca3 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_hu.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_hu.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_id.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_id.ts index b6f66d1bc..389523fc4 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_id.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_id.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Plugin Manager Cover</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Tentang Plugin Manager Cover</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Plugin Manager Cover Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts index 5cd2b3d8b..e43f8e3f3 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Plugin gestione copertine</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Info sul Plugin gestione copertine</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Plugin gestione copertine</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autori: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_ja.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_ja.ts index 9b90fbb62..7946c511d 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_ja.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_ja.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>カバーマネージャープラグイン</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>カバーマネージャープラグインについて</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>QMMP カバーマネージャープラグイン</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_kk.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_kk.ts index 89a77f328..632fad5da 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_kk.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_kk.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts index c4a71d988..35a147168 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Viršelų tvarkyklės įskiepis</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Apie viršelių tvarkyklės įskiepį</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Qmmp viršelių tvarkyklės įskiepis</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_nl.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_nl.ts index 0e96d8153..947d3320d 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_nl.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_nl.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Albumhoes Module</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Over de Albumhoes Module</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Albumhoes Module voor Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_pl_PL.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_pl_PL.ts index 8c65ea8fe..b0d2b3718 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_pl_PL.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_pl_PL.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Wtyczka zarządzania okładkami</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>O wtyczce Menedżer okładek</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Wtyczka Menedżer Okładek dla Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_pt.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_pt.ts index 4bfbd0408..cf962eb0b 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_pt.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_pt.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Suplemento Cover Manager</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Sobre o suplemento Cover Manager</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Suplemento Qmmp Cover Manager</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_pt_BR.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_pt_BR.ts index dca0516ed..b8c5323fc 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_pt_BR.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_pt_BR.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Plugin Cover Manager</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Sobre o plugin Cover Manager</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Plugin Qmmp Cover Manager</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts index 9b3ac359c..8d1559277 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Модуль упр. обложками</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>О модуле управления обложками</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Модуль управления обложками для Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_sk.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_sk.ts index 39ce0a23c..c1d9e1f9b 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_sk.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_sk.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_sr_BA.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_sr_BA.ts index 0041f3697..4c95579b2 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_sr_BA.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_sr_BA.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Уређивач омота</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>О уређивачу омота</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Кумп прикључак за уређивање омота</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_sr_RS.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_sr_RS.ts index ca31ff855..a76af955b 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_sr_RS.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_sr_RS.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Уређивач омота</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>О уређивачу омота</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Кумп прикључак за уређивање омота</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts index 6ecb14e7c..c9bb6e420 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts index 0e815804a..7b894e7fc 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>Модуль керування обкладинками</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>Про модуль керування обкладинками</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Модуль керування обкладинками для Qmmp</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts index 97ddd4afe..25de03aa3 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>封面管理插件</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>关于封面管理插件</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Qmmp 封面管理插件</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts index e65bb82d3..2d19c820d 100644 --- a/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts @@ -17,22 +17,22 @@ <context> <name>CoverManagerFactory</name> <message> - <location filename="../covermanagerfactory.cpp" line="31"/> + <location filename="../covermanagerfactory.cpp" line="30"/> <source>Cover Manager Plugin</source> <translation>封面管理插件</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="51"/> + <location filename="../covermanagerfactory.cpp" line="50"/> <source>About Cover Manager Plugin</source> <translation>關於封面管理插件</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="52"/> + <location filename="../covermanagerfactory.cpp" line="51"/> <source>Qmmp Cover Manager Plugin</source> <translation>Qmmp 封面管理插件</translation> </message> <message> - <location filename="../covermanagerfactory.cpp" line="53"/> + <location filename="../covermanagerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/CMakeLists.txt b/src/plugins/General/fileops/CMakeLists.txt index a66716870..bdfd43e42 100644 --- a/src/plugins/General/fileops/CMakeLists.txt +++ b/src/plugins/General/fileops/CMakeLists.txt @@ -1,22 +1,7 @@ project(libfileops) -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -32,7 +17,7 @@ SET(libfileops_SRCS SET(libfileops_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libfileops_RCC_SRCS ${libfileops_RCCS}) +QT5_ADD_RESOURCES(libfileops_RCC_SRCS ${libfileops_RCCS}) # user interface @@ -41,12 +26,12 @@ SET(libfileops_UIS hotkeydialog.ui ) -QT4_WRAP_UI(libfileops_UIS_H ${libfileops_UIS}) +QT5_WRAP_UI(libfileops_UIS_H ${libfileops_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(fileops MODULE ${libfileops_SRCS} ${libfileops_UIS_H} ${libfileops_RCC_SRCS}) add_dependencies(fileops qmmpui) -target_link_libraries(fileops ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(fileops Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS fileops DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/fileops/fileopsfactory.cpp b/src/plugins/General/fileops/fileopsfactory.cpp index 854afb31c..799d9e3db 100644 --- a/src/plugins/General/fileops/fileopsfactory.cpp +++ b/src/plugins/General/fileops/fileopsfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "fileops.h" #include "settingsdialog.h" #include "fileopsfactory.h" @@ -60,5 +59,3 @@ QTranslator *FileOpsFactory::createTranslator(QObject *parent) translator->load(QString(":/fileops_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(fileops, FileOpsFactory) diff --git a/src/plugins/General/fileops/fileopsfactory.h b/src/plugins/General/fileops/fileopsfactory.h index e95fa581b..5d070c2a6 100644 --- a/src/plugins/General/fileops/fileopsfactory.h +++ b/src/plugins/General/fileops/fileopsfactory.h @@ -33,6 +33,7 @@ class FileOpsFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/fileops/settingsdialog.cpp b/src/plugins/General/fileops/settingsdialog.cpp index 702602082..2431a8ba2 100644 --- a/src/plugins/General/fileops/settingsdialog.cpp +++ b/src/plugins/General/fileops/settingsdialog.cpp @@ -22,7 +22,7 @@ #include <QApplication> #include <QCheckBox> #include <QComboBox> -#include <QDesktopServices> +#include <QStandardPaths> #include <qmmp/qmmp.h> #include <qmmpui/filedialog.h> #include <qmmpui/metadataformattermenu.h> @@ -34,9 +34,9 @@ SettingsDialog::SettingsDialog(QWidget *parent) : QDialog(parent) { m_ui.setupUi(this); - m_ui.tableWidget->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents); + m_ui.tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); m_ui.tableWidget->verticalHeader()->hide(); - m_ui.tableWidget->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents); + m_ui.tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); QSettings settings(Qmmp::configFile(), QSettings::IniFormat); settings.beginGroup("FileOps"); @@ -135,7 +135,7 @@ void SettingsDialog::on_newButton_clicked() comboBox->setFocusPolicy (Qt::NoFocus); ActionItem *item = new ActionItem(tr("New action")); - item->setDestination(QDesktopServices::storageLocation(QDesktopServices::MusicLocation)); + item->setDestination(QStandardPaths::writableLocation(QStandardPaths::MusicLocation)); item->setPattern("%p - %t"); connect(comboBox, SIGNAL(activated(int)), SLOT(updateLineEdits())); diff --git a/src/plugins/General/fileops/translations/fileops_plugin_bg.ts b/src/plugins/General/fileops/translations/fileops_plugin_bg.ts index f9877102a..e454d3f85 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_bg.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_bg.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_cs.ts b/src/plugins/General/fileops/translations/fileops_plugin_cs.ts index 0e9cd90b9..4c09f617c 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_cs.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_cs.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Modul pro operace se soubory</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>O modulu pro operace se soubory</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Modul Qmmp pro operace se soubory</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_de.ts b/src/plugins/General/fileops/translations/fileops_plugin_de.ts index 532dc3a0b..030e06274 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_de.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_de.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Dateioperationsmodul</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Über Dateioperationsmodul</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Qmmp Dateioperationsmodul</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_el.ts b/src/plugins/General/fileops/translations/fileops_plugin_el.ts index 95fa888c6..0673d58db 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_el.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_el.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Πρόσθετο λειτουργιών αρχείων</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Σχετικά με το πρόσθετο λειτουργιών αρχείων</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Qmmp πρόσθετο λειτουργιών αρχείων</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_en.ts b/src/plugins/General/fileops/translations/fileops_plugin_en.ts index ef6da3239..6c86cfb71 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_en.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_en.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_es.ts b/src/plugins/General/fileops/translations/fileops_plugin_es.ts index 139fbc9ab..633990cbc 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_es.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_es.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Módulo de operaciones de archivo</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Acerca del módulo de operaciones de archivo</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Módulo de operaciones de archivo para Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_fi.ts b/src/plugins/General/fileops/translations/fileops_plugin_fi.ts index c0280fc89..6cf2a6ec3 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_fi.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_fi.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_fr.ts b/src/plugins/General/fileops/translations/fileops_plugin_fr.ts index 9ac01c381..eeaf0374f 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_fr.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_fr.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Greffon d'opérations sur fichiers</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>À propos du greffon d'opérations sur fichiers</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Greffon d'opérations sur fichiers pour Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_gl_ES.ts b/src/plugins/General/fileops/translations/fileops_plugin_gl_ES.ts index fd94b8204..42b653ec4 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_gl_ES.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_gl_ES.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Engadido de operacións de ficheiro</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Sobre o engadido de operacións de ficheiro</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Engadido Qmmp operacións de ficheiro</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_he.ts b/src/plugins/General/fileops/translations/fileops_plugin_he.ts index cee1652c8..e3e8fcff7 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_he.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_he.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>תוסף מבצעי קובץ</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>אודות תוסף מבצעי קובץ</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>תוסף מבצעי קובץ של Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_hu.ts b/src/plugins/General/fileops/translations/fileops_plugin_hu.ts index 4823e46f9..26620e5e2 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_hu.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_hu.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_id.ts b/src/plugins/General/fileops/translations/fileops_plugin_id.ts index a095eab3a..e628148df 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_id.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_id.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Plugin Operasi File</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Tentang Plugin Operasi File</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Plugin Operasi File Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_it.ts b/src/plugins/General/fileops/translations/fileops_plugin_it.ts index ed0790d0e..4aab3d8c5 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_it.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_it.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Modulo Operazioni su file</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Info sul modulo Operazioni file</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Modulo Operazioni su file di Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_ja.ts b/src/plugins/General/fileops/translations/fileops_plugin_ja.ts index 7efc2da0e..1adf20234 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_ja.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_ja.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>ファイル操作プラグイン</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>ファイル操作プラグインについて</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>QMMP ファイル操作プラグイン</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_kk.ts b/src/plugins/General/fileops/translations/fileops_plugin_kk.ts index f4ce01c4a..90d530d19 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_kk.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_kk.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_lt.ts b/src/plugins/General/fileops/translations/fileops_plugin_lt.ts index a682ef81c..92abdab75 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_lt.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_lt.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Bylų įskiepis</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Apie bylų įskiepį</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Qmmp bylų įskiepis</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_nl.ts b/src/plugins/General/fileops/translations/fileops_plugin_nl.ts index f965bd95f..39d45ccec 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_nl.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_nl.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Bestands Beheer Module</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Over de Bestands Beheer Module</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Bestands Beheer Module voor Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_pl_PL.ts b/src/plugins/General/fileops/translations/fileops_plugin_pl_PL.ts index 816e81695..e7d039a8b 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_pl_PL.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_pl_PL.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Wtyczka Operacji na plikach</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>O wtyczce Operacje na plikach</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Wtyczka Operacje na plikach dla Qmmp </translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_pt.ts b/src/plugins/General/fileops/translations/fileops_plugin_pt.ts index f3e0096d3..259920ff8 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_pt.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_pt.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Suplemento File Operations</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Sobre o suplemento File Operations</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Suplemento Qmmp File Operations</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_pt_BR.ts b/src/plugins/General/fileops/translations/fileops_plugin_pt_BR.ts index cf5b612aa..8a99af994 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_pt_BR.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_pt_BR.ts @@ -71,22 +71,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Plugin File Operations</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Sobre o plugin File Operations</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Plugin Qmmp File Operations</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_ru.ts b/src/plugins/General/fileops/translations/fileops_plugin_ru.ts index db2051784..c33768f33 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_ru.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_ru.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Модуль файловых операций</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>О модуле файловых операций</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Модуль работы с файлами для Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_sk.ts b/src/plugins/General/fileops/translations/fileops_plugin_sk.ts index ca25c3d9c..fcccf0d63 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_sk.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_sk.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_sr_BA.ts b/src/plugins/General/fileops/translations/fileops_plugin_sr_BA.ts index ce71614a1..34db0d704 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_sr_BA.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_sr_BA.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Руковање фајловима</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>О прикључку за руковање фајловима</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Кумп прикључак за руковање фајловима</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_sr_RS.ts b/src/plugins/General/fileops/translations/fileops_plugin_sr_RS.ts index 00eba52b3..7c6541e76 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_sr_RS.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_sr_RS.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Руковање фајловима</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>О прикључку за руковање фајловима</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Кумп прикључак за руковање фајловима</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_tr.ts b/src/plugins/General/fileops/translations/fileops_plugin_tr.ts index 1eff3830b..03389fdd0 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_tr.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_tr.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Dosya İşlemleri Eklentisi</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Dosya İşlemleri Eklentisi Hakkında</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Qmmp Dosya İşlemleri Eklentisi</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_uk_UA.ts b/src/plugins/General/fileops/translations/fileops_plugin_uk_UA.ts index ac1ccdc9b..4f4f6790e 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_uk_UA.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_uk_UA.ts @@ -73,22 +73,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>Модуль файлових операцій</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>Про модуль файлових операцій</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Модуль роботи з файлами для Qmmp</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_zh_CN.ts b/src/plugins/General/fileops/translations/fileops_plugin_zh_CN.ts index d7cfb3b55..dfd9166a6 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_zh_CN.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_zh_CN.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>文件操作插件</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>关于文件操作插件</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Qmmp 文件操作插件</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/fileops/translations/fileops_plugin_zh_TW.ts b/src/plugins/General/fileops/translations/fileops_plugin_zh_TW.ts index 090b033bd..64a40d430 100644 --- a/src/plugins/General/fileops/translations/fileops_plugin_zh_TW.ts +++ b/src/plugins/General/fileops/translations/fileops_plugin_zh_TW.ts @@ -69,22 +69,22 @@ <context> <name>FileOpsFactory</name> <message> - <location filename="../fileopsfactory.cpp" line="31"/> + <location filename="../fileopsfactory.cpp" line="30"/> <source>File Operations Plugin</source> <translation>檔案操作插件</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="51"/> + <location filename="../fileopsfactory.cpp" line="50"/> <source>About File Operations Plugin</source> <translation>關於檔案操作插件</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="52"/> + <location filename="../fileopsfactory.cpp" line="51"/> <source>Qmmp File Operations Plugin</source> <translation>Qmmp 檔案操作插件</translation> </message> <message> - <location filename="../fileopsfactory.cpp" line="53"/> + <location filename="../fileopsfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/CMakeLists.txt b/src/plugins/General/gnomehotkey/CMakeLists.txt index 2916ada2f..a43c99e0d 100644 --- a/src/plugins/General/gnomehotkey/CMakeLists.txt +++ b/src/plugins/General/gnomehotkey/CMakeLists.txt @@ -1,20 +1,5 @@ project(libgnomehotkey) - -SET (QT_USE_QTDBUS TRUE) - -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmpui & libqmmp @@ -29,7 +14,7 @@ SET(libgnomehotkey_SRCS SET(libgnomehotkey_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libgnomehotkey_RCC_SRCS ${libgnomehotkey_RCCS}) +QT5_ADD_RESOURCES(libgnomehotkey_RCC_SRCS ${libgnomehotkey_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -37,5 +22,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(gnomehotkey MODULE ${libgnomehotkey_SRCS} ${libgnomehotkey_RCC_SRCS}) add_dependencies(gnomehotkey qmmpui) -target_link_libraries(gnomehotkey ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(gnomehotkey Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp) install(TARGETS gnomehotkey DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp index dd7e8699d..82c535c28 100644 --- a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp +++ b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "mediakeys.h" #include "gnomehotkeyfactory.h" @@ -62,5 +61,3 @@ QTranslator *GnomeHotkeyFactory::createTranslator(QObject *parent) translator->load(QString(":/gnomehotkey_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(gnomehotkey, GnomeHotkeyFactory) diff --git a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h index 1a4230783..0210dde80 100644 --- a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h +++ b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h @@ -32,6 +32,7 @@ class GnomeHotkeyFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_bg.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_bg.ts index 7e22e4cc3..bcaf9052f 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_bg.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_cs.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_cs.ts index 02d4728a8..7cba177eb 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_cs.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Modul Qmmp Gnome pro klávesové zkratky</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_de.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_de.ts index 0709ba086..b15be7861 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_de.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Gnome-Kurzbefehle-Modul</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Über Gnome-Kurzbefehle-Modul</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Qmmp Gnome-Kurzbefehle-Modul</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Dieses Modul fügt die Unterstützung der GNOME/Cinnamon-Kurzbefehle hinzu</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_el.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_el.ts index a3ce13f72..154fc1fd0 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_el.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Πρόσθετο συντομεύσεων Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Σχετικά με το πρόσθετο συντομεύσεων Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Qmmp πρόσθετο συντομεύσεων Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Αυτό το πρόσθετο προσθέτει υποστήριξη συντομεύσεων για GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_en.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_en.ts index 6e5e5c890..d93939c40 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_en.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_es.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_es.ts index ebc48ecbf..bb2acfb07 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_es.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Módulo Acceso Rápido de GNOME</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Acerca del Módulo Acceso Rápido de GNOME</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Módulo Acceso Rápido de GNOME de Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>El módulo añade soporte para los accesos rápidos de GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fi.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fi.ts index 89c711e02..cd6c35c30 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fi.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fr.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fr.ts index dcb76af75..fbdb26571 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fr.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Greffon de raccourci clavier pour Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>À propos du greffon de raccourci clavier pour Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Greffon de raccourci clavier pour Gnome, pour Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Ce greffon ajoute le support des raccourcis clavier pour Gnome/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_gl_ES.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_gl_ES.ts index 067396eab..5581bf660 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_gl_ES.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Engadido teclas de acceso rápido para Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Acerca do engadido de teclas de acceso rápido para Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Engadido Qmmp teclas de acceso rápido para Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Este engadido engade soporte para as teclas de acceso rápido de GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_he.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_he.ts index 680d55e69..9bd2968bb 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_he.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>תוסף מקשים חמים Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>אודות תוסף מקשים חמים Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>מקשים חמים Gnome של Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>תוסף זה מוסיף תמיכה למקשים חמים של GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_hu.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_hu.ts index 864afccbb..c9cfed5ff 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_hu.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_id.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_id.ts index 6acf6e7cd..cda05cb01 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_id.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Plugin Hotkey Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Tentang Plugin Hotkey Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Plugin Hotkey Gnome Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Plugin ini menambahkan dukungan pada hotkey GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_it.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_it.ts index 134276c08..4a1a2905b 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_it.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ja.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ja.ts index 127f1b694..c7af561ed 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ja.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>GNOME ホットキープラグイン</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>GNOME ホットキープラグインについて</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>QMMP GNOME ホットキープラグイン</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>このプラグインは GNOME/Cinnamon ホットキーをサポートします</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_kk.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_kk.ts index 26a60afd6..28fe62edb 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_kk.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_lt.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_lt.ts index bf1745c01..8ca518be6 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_lt.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished">Gnome Hotkey įskiepis</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished">Apie Gnome Hotkey Įskiepį </translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished">Qmmp Gnome Hotkey Įskiepis </translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished">Šis įskiepis įgalina GNOME/Cinnamon sparčiūjų klavišų palaikymą</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru> </translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_nl.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_nl.ts index aca7a8998..ab038921e 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_nl.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pl_PL.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pl_PL.ts index 0fc2d0722..50675ad19 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pl_PL.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Wtyczka Skrótów Klawiszowych Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>O wtyczce Skrótów Klawiszowych dla Gnome</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Wtyczka Skrótów Klawiszowych Gnome dla Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Ta wtyczka dodaje wsparcie skrótów klawiszowych dla GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt.ts index e2697e82c..ddfced0fb 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Suplemento Gnome Hotkey</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Sobre o suplemento Gnome Hotkey</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Suplemento Qmmp Gnome Hotkey</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Este suplemento adiciona suporte as teclas de atalho GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt_BR.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt_BR.ts index f59e8455f..80e8e94a1 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt_BR.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Plugin Gnome Hotkey</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Sobre o plugin Gnome Hotkey</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Plugin Qmmp Gnome Hotkey</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Este plugin adiciona suporte as teclas de atalho GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ru.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ru.ts index f5085913b..47eadf8c4 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ru.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Модуль клавиш GNOME</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>О модуле горячих клавиш GNOME</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Модуль горчих клавиш GNOME для Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Этот модуль добавляет поддержку горячих клавиш GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sk.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sk.ts index 2cc7bdaa5..5395e9526 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sk.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_BA.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_BA.ts index c6d7afb01..5a6ec8c01 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_BA.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Пречице за Гном</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>О пречицама за Гном</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Кумп прикључак за пречице за Гном</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Функционалност пречица за Гном/Цинамон</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_RS.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_RS.ts index 4c3b5c34b..46486fa76 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_RS.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Пречице за Гном</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>О пречицама за Гном</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Кумп прикључак за пречице за Гном</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Функционалност пречица за Гном/Цинамон</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_tr.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_tr.ts index acc8d166c..cad47fe52 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_tr.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_uk_UA.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_uk_UA.ts index 435b1243c..0372cb90a 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_uk_UA.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Модуль гарячих клавіш GNOME</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>Про модуль гарячих клавіш GNOME</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Модуль гарячих клавіш GNOME для Qmmp</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>Цей модуль додає підтримку гарячих клавіш GNOME/Cinnamon</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_CN.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_CN.ts index 7c4eda20b..d4fd7d18f 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_CN.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation>Gnome热键插件</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation>关于Gnome热键插件</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation>Qmmp Gnome 热键插件</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation>此插件增加了对GNOME/Cinnamon热键的支持</translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_TW.ts b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_TW.ts index c89ede0dc..9b79fcc5a 100644 --- a/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_TW.ts +++ b/src/plugins/General/gnomehotkey/translations/gnomehotkey_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>GnomeHotkeyFactory</name> <message> - <location filename="../gnomehotkeyfactory.cpp" line="31"/> + <location filename="../gnomehotkeyfactory.cpp" line="30"/> <source>Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="52"/> + <location filename="../gnomehotkeyfactory.cpp" line="51"/> <source>About Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="53"/> + <location filename="../gnomehotkeyfactory.cpp" line="52"/> <source>Qmmp Gnome Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="54"/> + <location filename="../gnomehotkeyfactory.cpp" line="53"/> <source>This plugin adds support of the GNOME/Cinnamon hotkeys</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../gnomehotkeyfactory.cpp" line="55"/> + <location filename="../gnomehotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hal/CMakeLists.txt b/src/plugins/General/hal/CMakeLists.txt index 0ed5eb996..d6f786962 100644 --- a/src/plugins/General/hal/CMakeLists.txt +++ b/src/plugins/General/hal/CMakeLists.txt @@ -1,20 +1,5 @@ project(libhal) - -SET (QT_USE_QTDBUS TRUE) - -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmpui & libqmmp @@ -32,7 +17,7 @@ SET(libhal_SRCS SET(libhal_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libhal_RCC_SRCS ${libhal_RCCS}) +QT5_ADD_RESOURCES(libhal_RCC_SRCS ${libhal_RCCS}) # user interface @@ -40,12 +25,12 @@ SET(libhal_UIS settingsdialog.ui ) -QT4_WRAP_UI(libhal_UIS_H ${libhal_UIS}) +QT5_WRAP_UI(libhal_UIS_H ${libhal_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(hal MODULE ${libhal_SRCS} ${libhal_UIS_H} ${libhal_RCC_SRCS}) add_dependencies(hal qmmpui) -target_link_libraries(hal ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(hal Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp) install(TARGETS hal DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/hal/halfactory.cpp b/src/plugins/General/hal/halfactory.cpp index f28207645..cbdd0d825 100644 --- a/src/plugins/General/hal/halfactory.cpp +++ b/src/plugins/General/hal/halfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "halplugin.h" @@ -63,5 +62,3 @@ QTranslator *HalFactory::createTranslator(QObject *parent) translator->load(QString(":/hal_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(hal, HalFactory) diff --git a/src/plugins/General/hal/halfactory.h b/src/plugins/General/hal/halfactory.h index 1a78b7e25..02c063993 100644 --- a/src/plugins/General/hal/halfactory.h +++ b/src/plugins/General/hal/halfactory.h @@ -32,6 +32,7 @@ class HalFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/hal/translations/hal_plugin_bg.ts b/src/plugins/General/hal/translations/hal_plugin_bg.ts index a9f991fe9..dddaac30d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_bg.ts +++ b/src/plugins/General/hal/translations/hal_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_cs.ts b/src/plugins/General/hal/translations/hal_plugin_cs.ts index c60b36002..1f28066c8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_cs.ts +++ b/src/plugins/General/hal/translations/hal_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Modul HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>O modulu HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Modul Qmmp HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Tento modul umožňuje detekci odpojitelných zařízení prostřednictvím HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Založeno na Solid (knihovna KDE pro hardware)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_de.ts b/src/plugins/General/hal/translations/hal_plugin_de.ts index f73ab613d..62cf2c6a7 100644 --- a/src/plugins/General/hal/translations/hal_plugin_de.ts +++ b/src/plugins/General/hal/translations/hal_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL-Modul</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Über HAL-Modul</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Qmmp HAL-Modul</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Dieses Modul bietet Wechsellaufwerkerkennung unter Verwendung von HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Basiert auf Solid (KDE Hardware-Bibliothek)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_el.ts b/src/plugins/General/hal/translations/hal_plugin_el.ts index c9cf9935e..236863f5c 100644 --- a/src/plugins/General/hal/translations/hal_plugin_el.ts +++ b/src/plugins/General/hal/translations/hal_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Πρόσθετο HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Σχετικά με το πρόσθετο HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Qmmp πρόσθετο HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Αυτό το πρόσθετο παρέχει την ανίχνευση των αφαιρούμενων συσκευών μέσω του HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Βασίζεται στο Solid (Βιβλιοθήκη υλικού του KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_en.ts b/src/plugins/General/hal/translations/hal_plugin_en.ts index 3e3a33e99..5a30c027d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_en.ts +++ b/src/plugins/General/hal/translations/hal_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_es.ts b/src/plugins/General/hal/translations/hal_plugin_es.ts index 394856189..102c88965 100644 --- a/src/plugins/General/hal/translations/hal_plugin_es.ts +++ b/src/plugins/General/hal/translations/hal_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Módulo HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Acerca del módulo HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Módulo HAL para Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Este módulo proporciona detección de dispositivos extraibles mediante HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Basado en Solid (librería de hardware KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_fi.ts b/src/plugins/General/hal/translations/hal_plugin_fi.ts index b9ff9f39f..095de115f 100644 --- a/src/plugins/General/hal/translations/hal_plugin_fi.ts +++ b/src/plugins/General/hal/translations/hal_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL-liitännäinen</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Qmmp:n HAL-liitännäinen</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_fr.ts b/src/plugins/General/hal/translations/hal_plugin_fr.ts index a3badfe75..a265aff6c 100644 --- a/src/plugins/General/hal/translations/hal_plugin_fr.ts +++ b/src/plugins/General/hal/translations/hal_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Greffon HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>À propos du greffon HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Greffon HAL pour Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Ce greffon fournit une détection de périphériques amovibles en utilisant HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Basé sur Solid (bibliothèque matérielle KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts b/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts index dfce0774e..dce0b5a33 100644 --- a/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts +++ b/src/plugins/General/hal/translations/hal_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Engadido HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Sobre engadido HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Engadido Qmmp HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Este engadido provén detección de dispositivos extraíbles usando HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Baseado en Solid (librería hardware KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_he.ts b/src/plugins/General/hal/translations/hal_plugin_he.ts index c5a9205a6..de1cdf012 100644 --- a/src/plugins/General/hal/translations/hal_plugin_he.ts +++ b/src/plugins/General/hal/translations/hal_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>תוסף HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>אודות תוסף HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>תוסף HAL של Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>תוסף זה מספק איתור של התקנים נשלפים באמצעות HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>מבוססת על Solid (ספריית קושחה של KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_hu.ts b/src/plugins/General/hal/translations/hal_plugin_hu.ts index 9600266c9..14878f981 100644 --- a/src/plugins/General/hal/translations/hal_plugin_hu.ts +++ b/src/plugins/General/hal/translations/hal_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_id.ts b/src/plugins/General/hal/translations/hal_plugin_id.ts index 33e66fef7..dc6612b61 100644 --- a/src/plugins/General/hal/translations/hal_plugin_id.ts +++ b/src/plugins/General/hal/translations/hal_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Plugin HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Tentang Plugin HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Plugin HAL Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Plugin ini menyediakan deteksi perangkat dapat-dilepas menggunakan HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Berdasarkan pada Solid (pustaka hardware KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_it.ts b/src/plugins/General/hal/translations/hal_plugin_it.ts index e1b974362..8ea018ac5 100644 --- a/src/plugins/General/hal/translations/hal_plugin_it.ts +++ b/src/plugins/General/hal/translations/hal_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Modulo HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Info sul modulo HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Modulo HAL per Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Modulo che permette il rilevamento di dispositivi rimovibili utilizzando HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Basato su Solid (libreria hardware KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_ja.ts b/src/plugins/General/hal/translations/hal_plugin_ja.ts index 4db80dd2e..68129193d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_ja.ts +++ b/src/plugins/General/hal/translations/hal_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL プラグイン</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>HAL プラグインについて</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>QMMP HAL プラグイン</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>このプラグインは着脱可能なデバイスの検知機能を HAL によって提供します</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Solid (KDE ハードウェアライブラリ) を基に作成</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_kk.ts b/src/plugins/General/hal/translations/hal_plugin_kk.ts index 4cbf7df9e..c6e959023 100644 --- a/src/plugins/General/hal/translations/hal_plugin_kk.ts +++ b/src/plugins/General/hal/translations/hal_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_lt.ts b/src/plugins/General/hal/translations/hal_plugin_lt.ts index 6cbe1ca01..5162bd0d6 100644 --- a/src/plugins/General/hal/translations/hal_plugin_lt.ts +++ b/src/plugins/General/hal/translations/hal_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL įskiepis</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Apie HAL įskiepį</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>qmmp HAL įskiepis</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Šis įskiepis atlieka išorinių prijungiamų įrenginių aptikimą naudojant HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov</translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Sukurta Solid pagrindu (KDE biblioteka)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_nl.ts b/src/plugins/General/hal/translations/hal_plugin_nl.ts index 0c3ccfbbb..bb5b72eef 100644 --- a/src/plugins/General/hal/translations/hal_plugin_nl.ts +++ b/src/plugins/General/hal/translations/hal_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL Module</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Over de HAL Module</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>HAL Module voor Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Deze module faciliteert detectie van verwisselbare apparaten, gebruikmakend van HAL (Verouderd, gebruik UDisks module)</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Gebasseerd op Solid (KDE hardware bibliotheek)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts b/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts index 30aca83ac..c82edcfe8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts +++ b/src/plugins/General/hal/translations/hal_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Wtyczka HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>O wtyczce HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Wtyczka HAL dla Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Ta wtyczka umożliwia detekcję urządzeń przenośnych dzięki HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Oparte na Solid (biblioteka urządzeń dla KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_pt.ts b/src/plugins/General/hal/translations/hal_plugin_pt.ts index db1defafa..1288ad2cc 100644 --- a/src/plugins/General/hal/translations/hal_plugin_pt.ts +++ b/src/plugins/General/hal/translations/hal_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Suplemento HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Sobre o suplemento HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Suplemento Qmmp HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Este suplemento permite a deteção de discos amovíveis através do serviço HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Baseado no Solid (biblioteca do KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts b/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts index 7726b5449..396d4c0b8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts +++ b/src/plugins/General/hal/translations/hal_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Plugin HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Sobre o plugin HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Plugin Qmmp HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Este plugin permite a detecção de dispositivos removíveis através do serviço HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Baseado no Solid (biblioteca do KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_ru.ts b/src/plugins/General/hal/translations/hal_plugin_ru.ts index 6e4a552b4..fa74fa422 100644 --- a/src/plugins/General/hal/translations/hal_plugin_ru.ts +++ b/src/plugins/General/hal/translations/hal_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Модуль HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>О Модуле HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Модуль HAL для Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Этот модуль отслеживает съёмные устройства с помощью HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Основан на базе Solid (библиотека KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_sk.ts b/src/plugins/General/hal/translations/hal_plugin_sk.ts index 21c5771c5..82a8531e7 100644 --- a/src/plugins/General/hal/translations/hal_plugin_sk.ts +++ b/src/plugins/General/hal/translations/hal_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts b/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts index 0f263b198..fc686c047 100644 --- a/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts +++ b/src/plugins/General/hal/translations/hal_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>О прикључку за ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Кумп прикључак за ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Омогућује откривање уклоњивих уређаја користећи ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Заснован на Солиду (КДЕ-овој библиотеци)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts b/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts index bf117ebb3..955c69c7d 100644 --- a/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts +++ b/src/plugins/General/hal/translations/hal_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>О прикључку за ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Кумп прикључак за ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Омогућује откривање уклоњивих уређаја користећи ХАЛ</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Заснован на Солиду (КДЕ-овој библиотеци)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_tr.ts b/src/plugins/General/hal/translations/hal_plugin_tr.ts index 757797614..0e4339d04 100644 --- a/src/plugins/General/hal/translations/hal_plugin_tr.ts +++ b/src/plugins/General/hal/translations/hal_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL Eklentisi</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>HAL Eklentisi Hakkında</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Qmmp HAL Eklentisi</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Bu eklenti HAL kullanarak çıkarılabilir aygıtların tanınmasını sağlar</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Solid (KDE donanım kitaplığı) temellidir</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts b/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts index 4ccb1535f..00fdf1ec6 100644 --- a/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts +++ b/src/plugins/General/hal/translations/hal_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>Модуль HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>Про модуль HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Модуль HAL для Qmmp</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>Цей модуль відстежує з'ємні пристрої за допомогою HAL</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>Базується на базі Solid (бібліотека KDE)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts b/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts index 730ade340..f30201fd8 100644 --- a/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts +++ b/src/plugins/General/hal/translations/hal_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL 插件</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>关于 HAL 插件</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Qmmp HAL 插件</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>此插件利用 HAL 提供可移动设备的检测</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>基于 Solid (KDE 硬件库)</translation> </message> diff --git a/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts b/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts index ab0da5153..9eb86eb1b 100644 --- a/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts +++ b/src/plugins/General/hal/translations/hal_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>HalFactory</name> <message> - <location filename="../halfactory.cpp" line="32"/> + <location filename="../halfactory.cpp" line="31"/> <source>HAL Plugin</source> <translation>HAL 外掛</translation> </message> <message> - <location filename="../halfactory.cpp" line="52"/> + <location filename="../halfactory.cpp" line="51"/> <source>About HAL Plugin</source> <translation>關於 HAL 外掛</translation> </message> <message> - <location filename="../halfactory.cpp" line="53"/> + <location filename="../halfactory.cpp" line="52"/> <source>Qmmp HAL Plugin</source> <translation>Qmmp HAL 外掛</translation> </message> <message> - <location filename="../halfactory.cpp" line="54"/> + <location filename="../halfactory.cpp" line="53"/> <source>This plugin provides removable devices detection using HAL</source> <translation>此插件利用 HAL 提供可移動設備的檢測</translation> </message> <message> - <location filename="../halfactory.cpp" line="55"/> + <location filename="../halfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../halfactory.cpp" line="56"/> + <location filename="../halfactory.cpp" line="55"/> <source>Based on Solid (KDE hardware library)</source> <translation>基於 Solid (KDE 硬件程式庫)</translation> </message> diff --git a/src/plugins/General/hotkey/CMakeLists.txt b/src/plugins/General/hotkey/CMakeLists.txt index 9cf51d112..ca8188a31 100644 --- a/src/plugins/General/hotkey/CMakeLists.txt +++ b/src/plugins/General/hotkey/CMakeLists.txt @@ -2,22 +2,8 @@ project(libhotkey) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) -ADD_DEFINITIONS(${X11_CFLAGS}) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - include_directories(${X11_INCLUDE_DIRS}) link_directories(${X11_LIBRARY_DIRS}) @@ -45,7 +31,7 @@ SET(libhotkey_RCCS translations/translations.qrc ) -QT4_ADD_RESOURCES(libhotkey_RCC_SRCS ${libhotkey_RCCS}) +QT5_ADD_RESOURCES(libhotkey_RCC_SRCS ${libhotkey_RCCS}) # user interface @@ -55,7 +41,7 @@ SET(libhotkey_UIS hotkeydialog.ui ) -QT4_WRAP_UI(libhotkey_UIS_H ${libhotkey_UIS}) +QT5_WRAP_UI(libhotkey_UIS_H ${libhotkey_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -64,6 +50,6 @@ IF(X11_FOUND) set_property(SOURCE hotkeymanager_x11.cpp PROPERTY SKIP_AUTOMOC ON) ADD_LIBRARY(hotkey MODULE ${libhotkey_SRCS} ${libhotkey_UIS_H} ${libhotkey_RCC_SRCS}) add_dependencies(hotkey qmmpui) -target_link_libraries(hotkey ${QT_LIBRARIES} qmmpui libqmmp ${X11_LDFLAGS}) +target_link_libraries(hotkey Qt5::Widgets Qt5::X11Extras -lqmmpui -lqmmp ${X11_LDFLAGS}) install(TARGETS hotkey DESTINATION ${LIB_DIR}/qmmp/General) ENDIF(X11_FOUND) diff --git a/src/plugins/General/hotkey/hotkey.pro b/src/plugins/General/hotkey/hotkey.pro index 7195a5811..e8477431e 100644 --- a/src/plugins/General/hotkey/hotkey.pro +++ b/src/plugins/General/hotkey/hotkey.pro @@ -25,4 +25,5 @@ unix { INSTALLS += target
PKGCONFIG += x11
DEFINES += HAVE_XKBLIB_H
+ QT += x11extras
}
diff --git a/src/plugins/General/hotkey/hotkeyfactory.cpp b/src/plugins/General/hotkey/hotkeyfactory.cpp index de944514e..7c0c176de 100644 --- a/src/plugins/General/hotkey/hotkeyfactory.cpp +++ b/src/plugins/General/hotkey/hotkeyfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "hotkeymanager.h" @@ -62,5 +61,3 @@ QTranslator *HotkeyFactory::createTranslator(QObject *parent) translator->load(QString(":/hotkey_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(hotkey, HotkeyFactory) diff --git a/src/plugins/General/hotkey/hotkeyfactory.h b/src/plugins/General/hotkey/hotkeyfactory.h index caae05029..d4f1618a5 100644 --- a/src/plugins/General/hotkey/hotkeyfactory.h +++ b/src/plugins/General/hotkey/hotkeyfactory.h @@ -32,6 +32,7 @@ class HotkeyFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/hotkey/hotkeymanager.h b/src/plugins/General/hotkey/hotkeymanager.h index cf816dd6f..200aa68f4 100644 --- a/src/plugins/General/hotkey/hotkeymanager.h +++ b/src/plugins/General/hotkey/hotkeymanager.h @@ -20,6 +20,7 @@ #ifndef HOTKEYMANAGER_H #define HOTKEYMANAGER_H +#include <QObject> #include <QString> #include <QTableWidgetItem> #include <QList> @@ -80,13 +81,13 @@ public: static QList<long> ignModifiersList(); static quint32 keycodeToKeysym(quint32 keycode); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 protected: virtual bool eventFilter(QObject* o, QEvent* e); #endif private: -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 static void ensureModifiers(); QList <Hotkey *> m_grabbedKeys; static long m_alt_mask; diff --git a/src/plugins/General/hotkey/hotkeymanager_x11.cpp b/src/plugins/General/hotkey/hotkeymanager_x11.cpp index 3954eebb3..05b46280a 100644 --- a/src/plugins/General/hotkey/hotkeymanager_x11.cpp +++ b/src/plugins/General/hotkey/hotkeymanager_x11.cpp @@ -21,7 +21,7 @@ ***************************************************************************/ #include <QtGlobal> -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 #include <QSettings> #include <QX11Info> #include <QEvent> @@ -80,6 +80,12 @@ quint32 Hotkey::defaultKey(int act) HotkeyManager::HotkeyManager(QObject *parent) : QObject(parent) { +#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0)) + //Workaround Qt regression of no longer delivering events for the root window + //See qtbase commit 2b34aefcf02f09253473b096eb4faffd3e62b5f4 + //More information: https://bugs.kde.org/show_bug.cgi?id=360841 + qApp->desktop()->winId(); +#endif QCoreApplication::instance()->installEventFilter(this); WId rootWindow = QX11Info::appRootWindow(); QSettings settings(Qmmp::configFile(), QSettings::IniFormat); //load settings @@ -138,8 +144,7 @@ const QString HotkeyManager::getKeyString(quint32 key, quint32 modifiers) bool HotkeyManager::eventFilter(QObject* o, QEvent* e) { - //receive events from active and root windows only - if (e->type() == QEvent::KeyPress && (o == qApp->desktop () || o == qApp->activeWindow ())) + if (e->type() == QEvent::KeyPress) { QKeyEvent* k = static_cast<QKeyEvent*>(e); quint32 key = keycodeToKeysym(k->nativeScanCode()); @@ -198,7 +203,7 @@ bool HotkeyManager::eventFilter(QObject* o, QEvent* e) break; } - qApp->processEvents(); + return true; } } return QObject::eventFilter(o, e); diff --git a/src/plugins/General/hotkey/settingsdialog.cpp b/src/plugins/General/hotkey/settingsdialog.cpp index 08d429227..2830e58ee 100644 --- a/src/plugins/General/hotkey/settingsdialog.cpp +++ b/src/plugins/General/hotkey/settingsdialog.cpp @@ -30,9 +30,9 @@ SettingsDialog::SettingsDialog(QWidget *parent) { m_ui.setupUi(this); m_ui.tableWidget->verticalHeader()->setDefaultSectionSize(fontMetrics().height()); - m_ui.tableWidget->verticalHeader()->setResizeMode(QHeaderView::Fixed); + m_ui.tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); m_ui.tableWidget->verticalHeader()->hide(); - m_ui.tableWidget->horizontalHeader()->setResizeMode(QHeaderView::Stretch); + m_ui.tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch); m_ui.tableWidget->setRowCount (13); m_ui.tableWidget->setItem(0,0, new QTableWidgetItem(tr("Play"))); m_ui.tableWidget->setItem(1,0, new QTableWidgetItem(tr("Stop"))); diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts index 5b0d9cf86..fb4ee116d 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts index f50bb126d..e0af4d5ad 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Modul klávesových zkratek</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>O modulu klávesových zkratek</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Modul Qmmp pro klávesové zkratky</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Tento modul přidává podporu multimediálních kláves a globálních klávesových zkratek</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts index 0df163b93..7458400df 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Globales Kurzbefehle-Modul</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Über Globales Kurzbefehle-Modul</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Qmmp Globales Kurzbefehle-Modul</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Dieses Modul fügt Unterstützung für Multimedia-Tasten oder allgemeine Tastaturkombinationen hinzu</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts index 4e1a449fe..49476d733 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Πρόσθετο καθολικών συντομεύσεων</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Σχετικά με το πρόσθετο καθολικών συντομεύσεων</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Qmmp πρόσθετο καθολικών συντομεύσεων</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Αυτό το πρόσθετο προσθέτει υποστήριξη για συνδυασμό πλήκτρων πληκτρολογίου ή πολυμέσων</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts index 42e4c65a9..c6e3a99bf 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts index 1a30c5d43..bcf035c72 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Módulo de atajos de teclado global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Acerca del módulo de atajos de teclado global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Módulo de atajos de teclado global para Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Este módulo añade soporte para teclas multimedia o combinaciones de teclas globales</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts index 6164beda1..ad49e3973 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts index a999d317f..666de769c 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Greffon de raccourci clavier global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>À propos du greffon de raccourci clavier global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Greffon de raccourci clavier global pour Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Ce greffon ajoute un support pour des touches multimédia ou des combinaisons globales de touches</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts index eea0cad45..79b5cd202 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Engadido Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Sobre o engadido Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Engadido Qmmp Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Este engadido ofrece soporte para teclas multimedia ou combinacións de teclas globais</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts index 8db3d759c..1e7357a01 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>תוסף מקש חם גלובלי</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>אודות תוסף מקש חם גלובלי</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>תוסף מקש חם גלובלי של Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>תוסף זה מוסיף תמיכה למקשי מולטימדיה או צירופי מקש גלובלי</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts index 35ec12deb..6977a2e40 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts index a85361684..930f51e4b 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Plugin Hotkey Global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Tentang Plugin Hotkey Global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Plugin Hotkey Global Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Plugin ini menambahkan dukungan untuk tombol multimedia atau kombinasi tombol global</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts index 146fab9b5..10166150f 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Modulo scorciatoie globali</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Info sul modulo scorciatoie globali</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Modulo scorciatoie globali per Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Modulo che aggiunge il supporto per combinazione di tasti multimedia o scorciatoie</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts index 48ca697e2..2a53c59c9 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>共通ホットキープラグイン</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>共通ホットキープラグインについて</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>QMMP 通用ホットキープラグイン</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>このプラグインはマルティミディアキーや共通キーを組み合わせるサポートを加えます</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts index 1c4373e0f..b6717ce8e 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts index fcbfc62cc..4a4a74e7f 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Global Hotkey klavišų įskiepis</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Apie Global Hotkey įskiepį</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Qmmp Global Hotkey įskiepis</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>This plugin adds support for multimedia keys or global key combinations</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts index 56e1ea8ac..4278e1cc0 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Globale Sneltoets Module</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Over de Globale Sneltoets Module</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Globale Sneltoets Module voor Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Deze module voegt ondersteuning toe voor multimedia toetsen of globale toetscombinaties</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts index daa25cf53..e53d9f27a 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Wtyczka klawiszów skrótowych</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>O wtyczce Klawisze Skrótowe</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Wtyczka Skróŧy Klawiszowe dla Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Ta wtyczka obsługuje klawisze multimedialne oraz globalne kombinacje klawiszów skrótowych</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts index 2adc4fde7..c26e27d32 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Suplemento Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Sobre o suplemento Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Suplemento Qmmp Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Este suplemento adiciona suporte às teclas multimédia ou a combinações de teclas</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts index a89444930..585cc440b 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Plugin Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Sobre o plugin Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Plugin Qmmp Global Hotkey</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Este plugin adiciona suporte às teclas multimídia ou a combinações de teclas</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts index b8bb9e1e7..d84aaf4c4 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Модуль глоб. клавиш</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>О модуле глобальных клавиш</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Модуль глобальных клавиш для Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Этот модуль добавляет поддержку медиа- или глобальных клавиш</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts index 36bd98162..1743d2e1b 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts index ce2bf7062..67c64b838 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Глобалне пречице</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>О прикључку за глобалне пречице</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Кумп прикључак за глобалне пречице</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Подршка за мултимедијалне тастере или глобалне комбинације тастера</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts index 80b173f2a..0941e8ba5 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Глобалне пречице</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>О прикључку за глобалне пречице</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Кумп прикључак за глобалне пречице</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Подршка за мултимедијалне тастере или глобалне комбинације тастера</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts index 3161c133e..f225c967a 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Genel Kısayol Eklentisi</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Genel Kısayol Eklentisi Hakkında</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Qmmp Genel Kısayol Eklentisi</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Bu eklenti çokluortam tuşları veya genel tuş kombinasyonu desteği ekler</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts index 29c63d8af..3142f5288 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>Модуль глобальних клавіш</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>Про модуль глобальних клавіш</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Модуль глобальних клавіш для Qmmp</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>Цей модуль додає підтримку мультимедійних чи глобальних клавіш</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts index 05cf83a54..29f5eaf20 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>全局快捷键插件</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>关于全局快捷键插件</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Qmmp 全局快捷键插件</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>此插件支持增加多媒体快捷键和全局快捷键</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts index 8f068a3d0..6bfa96cbd 100644 --- a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts +++ b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts @@ -22,27 +22,27 @@ <context> <name>HotkeyFactory</name> <message> - <location filename="../hotkeyfactory.cpp" line="32"/> + <location filename="../hotkeyfactory.cpp" line="31"/> <source>Global Hotkey Plugin</source> <translation>全局熱鍵插件</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="52"/> + <location filename="../hotkeyfactory.cpp" line="51"/> <source>About Global Hotkey Plugin</source> <translation>關於全局熱鍵插件</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="53"/> + <location filename="../hotkeyfactory.cpp" line="52"/> <source>Qmmp Global Hotkey Plugin</source> <translation>Qmmp 全局熱鍵插件</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="54"/> + <location filename="../hotkeyfactory.cpp" line="53"/> <source>This plugin adds support for multimedia keys or global key combinations</source> <translation>此插件支援添加多媒體熱鍵與全局熱鍵</translation> </message> <message> - <location filename="../hotkeyfactory.cpp" line="55"/> + <location filename="../hotkeyfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/kdenotify/CMakeLists.txt b/src/plugins/General/kdenotify/CMakeLists.txt index e24ae1711..abfab62d0 100644 --- a/src/plugins/General/kdenotify/CMakeLists.txt +++ b/src/plugins/General/kdenotify/CMakeLists.txt @@ -1,22 +1,5 @@ project(libkdenotify) - -SET (QT_USE_QTDBUS TRUE) - -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - - - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmpui & libqmmp @@ -32,25 +15,23 @@ SET(libkdenotify_SRCS SET(libkdenotify_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libkdenotify_RCC_SRCS ${libkdenotify_RCCS}) +QT5_ADD_RESOURCES(libkdenotify_RCC_SRCS ${libkdenotify_RCCS}) # user interface SET(libkdenotify_UIS settingsdialog.ui ) -QT4_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS}) +QT5_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS}) -# QT4_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS}) +# QT5_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(kdenotify MODULE ${libkdenotify_SRCS} ${libkdenotify_RCC_SRCS} ${libkdenotify_UIS_H}) add_dependencies(kdenotify qmmpui) -target_link_libraries(kdenotify ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(kdenotify Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp) install(TARGETS kdenotify DESTINATION ${LIB_DIR}/qmmp/General) -IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - install(FILES images/empty_cover.png DESTINATION share/qmmp/images) - install(FILES images/app_icon.png DESTINATION share/qmmp/images) -ENDIF() +install(FILES images/empty_cover.png DESTINATION share/qmmp/images) +install(FILES images/app_icon.png DESTINATION share/qmmp/images) diff --git a/src/plugins/General/kdenotify/kdenotifyfactory.cpp b/src/plugins/General/kdenotify/kdenotifyfactory.cpp index 557c9f024..2de043e0f 100644 --- a/src/plugins/General/kdenotify/kdenotifyfactory.cpp +++ b/src/plugins/General/kdenotify/kdenotifyfactory.cpp @@ -19,13 +19,12 @@ ***************************************************************************/ #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "kdenotifyfactory.h" #include "kdenotify.h" #include "settingsdialog.h" + const GeneralProperties KdeNotifyFactory::properties() const { GeneralProperties properties; @@ -61,5 +60,3 @@ QTranslator *KdeNotifyFactory::createTranslator(QObject *parent) translator->load(QString(":/kdenotify_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(kdenotify, KdeNotifyFactory) diff --git a/src/plugins/General/kdenotify/kdenotifyfactory.h b/src/plugins/General/kdenotify/kdenotifyfactory.h index 9eb0b49fa..1c6f7543a 100644 --- a/src/plugins/General/kdenotify/kdenotifyfactory.h +++ b/src/plugins/General/kdenotify/kdenotifyfactory.h @@ -30,8 +30,9 @@ class KdeNotifyFactory : public QObject, public GeneralFactory { - Q_OBJECT - Q_INTERFACES(GeneralFactory) +Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") +Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; QObject *create(QObject *parent); diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts index beb9b7037..40c963dc8 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts index 5df07c248..f30102e24 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Notifikační modul pro KDE4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>O notifikačním modulu pro KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Notifikační modul Qmmp pro KDE4</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts index ce3a0fafc..633cb9d2a 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>KDE-4-Benachrichtigungsmodul</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Über KDE-4-Benachrichtigungsmodul</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>KDE-4-Benachrichtigungsmodul für Qmmp</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts index e890c5199..0c88946a2 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Πρόσθετο ειδοποιήσεων του KDE4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Σχετικά με το πρόσθετο ειδοποιήσεων KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Qmmp πρόσθετο ειδοποιήσεων του KDE4</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts index d3ee0067e..c35ba83bc 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts index deb49854a..cb46d77ec 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Módulo de notificación KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Acerca del módulo de notificación KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Módulo de notificación KDE 4 para Qmmp diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts index 36d4aef3c..767e5d3bb 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts index f6d93a975..1e97d7e03 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Greffon de notification KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>À propos du greffon de notification KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Greffon de notification KDE 4 pour Qmmp diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts index f753367d0..1923fa0e4 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Engadido para as notificacións de KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Sobre o engadido para as notificacións de KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Engadido de Qmmp para as notificacións de KDE 4</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts index 2910c2c7e..99b5569c2 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>תוסף התראת KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>אודות תוסף התראת KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>תוסף התראת KDE 4 עבור Qmmp diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts index d889fee31..21ca28642 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts index 369eb583e..683bab14c 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Plugin pemberitahuan KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Tentang Plugin Pemberitahuan KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Plugin pemberitahuan KDE 4 bagi Qmmp</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts index 91a28c2db..29964f409 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Plugin notificazione per KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Info sul Plugin di notificazione per KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Plugin di notificazione epr KDE 4</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts index 235e4046e..84205be58 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>KDE 4 通知プラグイン</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>KDE 通知プラグインについて</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>QMMP 用 KDE 4 通知プラグイン</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts index 909e5551b..fa863946d 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts index 5da6bca99..3b849fc41 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>KDE 4 pranešimų įskiepis</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Apie qmmp KDE 4 pranešimų įskiepį</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Qmmp KDE 4 pranešimų įskiepis diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts index edc0ba3be..a4b110575 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Notificatie Module voor KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Over de KDE 4 Notificatie Module</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>KDE 4 Notificatie Module voor Qmmp</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts index 7e661c9cc..a3ec0c8ef 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Wtyczka powiadamiania KDE 4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>O wtyczce Powiadomienia KDE</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Wtyczka Powiadomienia KDE 4 dla Qmmp diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts index e2df55434..ff22b93b5 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Suplemento KDE4 Notification</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Sobre o suplemento KDE4 Notification</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Suplemento Qmmp KDE4 Notification diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts index 6c9903166..d877c726e 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Plugin KDE 4 Notification</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Sobre o plugin KDE Notification</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Plugin KDE 4 Notification para o Qmmp </translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts index b194e558c..af1b7bdfa 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Модуль уведомлений KDE4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>О модуле уведомлений KDE4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Модуль уведомлений KDE4 для Qmmp diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts index 70f5a5625..d6cdc473d 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts index 60f7826c9..9bec3e346 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>КДЕ4 обавјештавач</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>О КДЕ4 обавјештавачу</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Кумп прикључак за обавјештавање у КДЕ4</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts index ad990896b..97ef9586f 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>КДЕ4 обавештавач</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>О КДЕ4 обавештавачу</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Кумп прикључак за обавештавање у КДЕ4</translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts index 6d06f14b3..c038ccb28 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation type="unfinished"></translation> diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts index 3f89537d1..851e727f8 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>Модуль повідомлень KDE4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>Про модуль повідомлень KDE4</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Модуль повідомлень KDE4 для Qmmp diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts index 9cf44ac53..1171d7421 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>KDE 4 通知插件</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>关于 KDE 4 通知插件</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Qmmp KDE 4 通知插件 diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts index 3874720e7..8f7e5c2b1 100644 --- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts +++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts @@ -12,17 +12,17 @@ <context> <name>KdeNotifyFactory</name> <message> - <location filename="../kdenotifyfactory.cpp" line="32"/> + <location filename="../kdenotifyfactory.cpp" line="31"/> <source>KDE 4 notification plugin</source> <translation>KDE 4 通知插件</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="52"/> + <location filename="../kdenotifyfactory.cpp" line="51"/> <source>About KDE Notification Plugin</source> <translation>關於 KDE 通知插件</translation> </message> <message> - <location filename="../kdenotifyfactory.cpp" line="53"/> + <location filename="../kdenotifyfactory.cpp" line="52"/> <source>KDE 4 notification plugin for Qmmp </source> <translation>Qmmp 的 KDE 4通知插件 diff --git a/src/plugins/General/lyrics/CMakeLists.txt b/src/plugins/General/lyrics/CMakeLists.txt index 64a1da810..c2703ff48 100644 --- a/src/plugins/General/lyrics/CMakeLists.txt +++ b/src/plugins/General/lyrics/CMakeLists.txt @@ -1,26 +1,7 @@ project(liblyrics) - -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -35,7 +16,7 @@ SET(liblyrics_SRCS SET(liblyrics_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(liblyrics_RCC_SRCS ${liblyrics_RCCS}) +QT5_ADD_RESOURCES(liblyrics_RCC_SRCS ${liblyrics_RCCS}) # user interface @@ -43,12 +24,12 @@ SET(liblyrics_UIS lyricswindow.ui ) -QT4_WRAP_UI(liblyrics_UIS_H ${liblyrics_UIS}) +QT5_WRAP_UI(liblyrics_UIS_H ${liblyrics_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(lyrics MODULE ${liblyrics_SRCS} ${liblyrics_UIS_H} ${liblyrics_RCC_SRCS}) add_dependencies(lyrics qmmpui) -target_link_libraries(lyrics ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(lyrics Qt5::Widgets Qt5::Network -lqmmpui -lqmmp) install(TARGETS lyrics DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/lyrics/lyricsfactory.cpp b/src/plugins/General/lyrics/lyricsfactory.cpp index 0ddfd6224..60cb001f1 100644 --- a/src/plugins/General/lyrics/lyricsfactory.cpp +++ b/src/plugins/General/lyrics/lyricsfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "lyrics.h" #include "lyricsfactory.h" @@ -61,5 +60,3 @@ QTranslator *LyricsFactory::createTranslator(QObject *parent) translator->load(QString(":/lyrics_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(lyrcis, LyricsFactory) diff --git a/src/plugins/General/lyrics/lyricsfactory.h b/src/plugins/General/lyrics/lyricsfactory.h index a35af440b..6d61e864c 100644 --- a/src/plugins/General/lyrics/lyricsfactory.h +++ b/src/plugins/General/lyrics/lyricsfactory.h @@ -33,6 +33,7 @@ class LyricsFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/lyrics/lyricswindow.cpp b/src/plugins/General/lyrics/lyricswindow.cpp index c899e71bc..d914e1630 100644 --- a/src/plugins/General/lyrics/lyricswindow.cpp +++ b/src/plugins/General/lyrics/lyricswindow.cpp @@ -189,7 +189,7 @@ QString LyricsWindow::cacheFilePath() const { QString name = m_ui.artistLineEdit->text() + "_" + m_ui.titleLineEdit->text(); QByteArray hash = QCryptographicHash::hash(name.toUtf8(), QCryptographicHash::Md5); - return m_cachePath + QString::fromLatin1(hash.toHex().constData()) + ".html"; + return m_cachePath + QString::fromLatin1(hash.toHex()) + ".html"; } bool LyricsWindow::loadFromCache() @@ -205,7 +205,7 @@ bool LyricsWindow::loadFromCache() return false; } - m_ui.textBrowser->setHtml(QString::fromUtf8(file.readAll().constData())); + m_ui.textBrowser->setHtml(QString::fromUtf8(file.readAll())); m_ui.stateLabel->setText(tr("Done")); return true; } diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_bg.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_bg.ts index 3c3d04b06..183a6a45c 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_bg.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_bg.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts index 1ca4aa101..54e91fd64 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Modul pro texty písní</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>O modulu pro texty písní</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Modul Qmmp pro texty písní</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Tento modul získává texty písní z LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts index 4c51d3fbd..daca2344f 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Liedtext-Modul</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Über Liedtext-Modul</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp Liedtext-Modul</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Dieses Modul empfängt Liedtexte von LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_el.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_el.ts index 968ea2adb..348a51748 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_el.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_el.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Πρόσθετο στίχων</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Σχετικά με το πρόσθετο στίχων</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp πρόσθετο στίχων</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Αυτό το πρόσθετο κάνει λήψη στίχων από το LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_en.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_en.ts index b412af515..4c6372133 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_en.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_en.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_es.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_es.ts index 9add9e221..33e58ff1f 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_es.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_es.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Módulo de letras</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Acerca del módulo de letras</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Módulo de letras para Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Este módulo descarga letras de LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_fi.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_fi.ts index 71a941c2d..3f1b62b0a 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_fi.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_fi.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Sanoitusliitännäinen</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Tietoja - Sanoitusliitännäinen</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp-sanoitusliitännäinen</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Tämä liitännäinen noutaa sanoituksia LyricWikistä</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_fr.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_fr.ts index 8ba2e6297..db7624a31 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_fr.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_fr.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Greffon de paroles</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>À propos du greffon de paroles</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Greffon de paroles pour Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Ce greffon récupère les paroles depuis LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_gl_ES.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_gl_ES.ts index 7f1f07e4d..935c5161f 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_gl_ES.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_gl_ES.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Engadido de letras</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Sobre o engadido de letras</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Engadido de letras de Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Este engadido recupera letras dende LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_he.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_he.ts index ea487c866..60ad7087c 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_he.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_he.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>תוסף מילות שיר</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>אודות תוסף מילות שיר</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>תוסף מילות שיר של Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>תוסף zv מאחזר מילות שיר מתוך LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_hu.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_hu.ts index 32a73f846..53b302bd7 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_hu.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_hu.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_id.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_id.ts index 18e441cdc..b1e3c86ba 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_id.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_id.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Plugin Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Tentang Plugin Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Plugin Lyrics Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Plugin ini menarik lirik dari LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_it.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_it.ts index d1648aad9..d5c3a9dfe 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_it.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_it.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Modulo Lirica</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Info sul modulo Lirica</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Modulo Lirica per Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Modulo che permette di trovare testi di canzoni da LyricWiki</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_ja.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_ja.ts index 1ae083ea9..69f206b62 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_ja.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_ja.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>歌詞プラグイン</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>歌詞プラグインについて</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>QMMP 歌詞プラグイン</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>このプラグインは LyricWiki より歌詞を取得します</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_kk.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_kk.ts index fb65f759b..fb2d2d440 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_kk.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_kk.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_lt.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_lt.ts index 9e7a9f371..51d855138 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_lt.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_lt.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Lyrics įskiepis</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Apie Lyrics įskiepį</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp Lyrics įskiepis</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Šis įskiepis atsiunčia dainų žodžius iš LyricWiki</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_nl.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_nl.ts index b0050779f..ba07b208c 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_nl.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_nl.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Liedtekst Module</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Over de Liedtekst Module</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Liedtekst Module voor Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Deze module haalt liedteksten van LyricWiki</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_pl_PL.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_pl_PL.ts index 58087a58c..ab7b7b747 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_pl_PL.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_pl_PL.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Wtyczka tekstów piosenek</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>O wtyczce Teksty piosenek</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Wtyczka Teksty Piosenek dla Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Ta wtyczka ściąga teksty piosenek z LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_pt.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_pt.ts index 97810ea47..ee087d112 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_pt.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_pt.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Suplemento Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Sobre o suplemento Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Suplemento Qmmp Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Este suplemento obtém as letras através do sítio web LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_pt_BR.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_pt_BR.ts index 48a78d554..7abe4c106 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_pt_BR.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_pt_BR.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Plugin Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Sobre o plugin Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Plugin Qmmp Lyrics</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Este plugin obtém as letras através do LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts index a7ad26918..268d1a604 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Модуль показа текстов</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>О модуле показа текстов песен</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Модуль показа текстов песен для Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Этот модуль предназначен для получания текстов песен из LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_sk.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_sk.ts index 22d4f1c6d..6ff871a84 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_sk.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_sk.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_sr_BA.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_sr_BA.ts index 3f65cf492..9ee5429c0 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_sr_BA.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_sr_BA.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Стихови</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>О прикључку за стихове</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Кумп прикључак за стихове</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Добавља стихове са LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_sr_RS.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_sr_RS.ts index 649c2284b..ebe6af459 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_sr_RS.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_sr_RS.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Стихови</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>О прикључку за стихове</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Кумп прикључак за стихове</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Добавља стихове са LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_tr.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_tr.ts index 528c4937b..91671892d 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_tr.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_tr.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Şarkı Sözü Eklentisi</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Şarkı Sözü Eklentisi Hakkında</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp Şarkı Sözü Eklentisi</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Bu eklenti şarkı sözlerini LyricWiki adresinden alır</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts index 1e2f034d7..862ff4af4 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>Модуль текстів</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>Про модуль текстів</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Модуль текстів для Qmmp</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>Цей модуль отримує тексти з LyricWiki</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts index 72d066523..989d4515c 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>歌词插件</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>关于歌词插件</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp 歌词插件</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>此插件使用的歌词来源于 LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts index 17188b091..8ec6a2f2d 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts @@ -17,27 +17,27 @@ <context> <name>LyricsFactory</name> <message> - <location filename="../lyricsfactory.cpp" line="30"/> + <location filename="../lyricsfactory.cpp" line="29"/> <source>Lyrics Plugin</source> <translation>歌詞插件</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="51"/> + <location filename="../lyricsfactory.cpp" line="50"/> <source>About Lyrics Plugin</source> <translation>關於歌詞插件</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="52"/> + <location filename="../lyricsfactory.cpp" line="51"/> <source>Qmmp Lyrics Plugin</source> <translation>Qmmp 歌詞插件</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="53"/> + <location filename="../lyricsfactory.cpp" line="52"/> <source>This plugin retrieves lyrics from LyricWiki</source> <translation>此插件歌詞來自於 LyricWiki</translation> </message> <message> - <location filename="../lyricsfactory.cpp" line="54"/> + <location filename="../lyricsfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/CMakeLists.txt b/src/plugins/General/mpris/CMakeLists.txt index 6126c4040..75c98dc88 100644 --- a/src/plugins/General/mpris/CMakeLists.txt +++ b/src/plugins/General/mpris/CMakeLists.txt @@ -1,22 +1,5 @@ project(libmpris) - -SET (QT_USE_QTDBUS TRUE) - -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - - - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmpui & libqmmp @@ -36,17 +19,17 @@ SET(libmpris_SRCS SET(libmpris_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libmpris_RCC_SRCS ${libmpris_RCCS}) +QT5_ADD_RESOURCES(libmpris_RCC_SRCS ${libmpris_RCCS}) # user interface -# QT4_WRAP_UI(libmpris_UIS_H ${libmpris_UIS}) +# QT5_WRAP_UI(libmpris_UIS_H ${libmpris_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(mpris MODULE ${libmpris_SRCS} ${libmpris_RCC_SRCS}) add_dependencies(mpris qmmpui) -target_link_libraries(mpris ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(mpris Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp) install(TARGETS mpris DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/mpris/mprisfactory.cpp b/src/plugins/General/mpris/mprisfactory.cpp index 5f48a3540..30c013713 100644 --- a/src/plugins/General/mpris/mprisfactory.cpp +++ b/src/plugins/General/mpris/mprisfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "mpris.h" #include "mprisfactory.h" @@ -60,5 +59,3 @@ QTranslator *MPRISFactory::createTranslator(QObject *parent) translator->load(QString(":/mpris_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(mpris, MPRISFactory) diff --git a/src/plugins/General/mpris/mprisfactory.h b/src/plugins/General/mpris/mprisfactory.h index 7f5b9a1c3..7d1fd85e3 100644 --- a/src/plugins/General/mpris/mprisfactory.h +++ b/src/plugins/General/mpris/mprisfactory.h @@ -32,6 +32,7 @@ class MPRISFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/mpris/translations/mpris_plugin_bg.ts b/src/plugins/General/mpris/translations/mpris_plugin_bg.ts index fb85f0df4..9c66e343f 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_bg.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_cs.ts b/src/plugins/General/mpris/translations/mpris_plugin_cs.ts index 885041a08..9cf323a9f 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_cs.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Modul MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>O modulu MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Modul Qmmp MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_de.ts b/src/plugins/General/mpris/translations/mpris_plugin_de.ts index 125223494..a691a54af 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_de.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS-Modul</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Über MPRIS-Modul</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp MPRIS-Modul</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_el.ts b/src/plugins/General/mpris/translations/mpris_plugin_el.ts index 6580b0fb7..84645abc9 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_el.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Πρόσθετο MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Σχετικά με το πρόσθετο MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp πρόσθετο MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_en.ts b/src/plugins/General/mpris/translations/mpris_plugin_en.ts index bc0fdea35..9eee38910 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_en.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_es.ts b/src/plugins/General/mpris/translations/mpris_plugin_es.ts index e30621262..784a4ede1 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_es.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Módulo MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Acerca del módulo MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Módulo MPRIS para Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_fi.ts b/src/plugins/General/mpris/translations/mpris_plugin_fi.ts index 71b0cd7bc..90f167c0a 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_fi.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS-liitännäinen</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Tietoja - MPRIS-liitännäinen</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp:n MPRIS-liitännäinen</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_fr.ts b/src/plugins/General/mpris/translations/mpris_plugin_fr.ts index f09a35e75..0c58a4dda 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_fr.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Greffon MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>À propos du greffon MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Greffon MPRIS pour Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_gl_ES.ts b/src/plugins/General/mpris/translations/mpris_plugin_gl_ES.ts index cac689b1b..807d926f6 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_gl_ES.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Engadido MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Sobre o engadido MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Engadido MPRIS de Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_he.ts b/src/plugins/General/mpris/translations/mpris_plugin_he.ts index 81dc7ff3b..804b08523 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_he.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>תוסף MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>אודות תוסף MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>תוסף MPRIS של Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_hu.ts b/src/plugins/General/mpris/translations/mpris_plugin_hu.ts index ea8227776..12d5505ad 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_hu.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_id.ts b/src/plugins/General/mpris/translations/mpris_plugin_id.ts index 642dfc52e..5d3b0c4ee 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_id.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Plugin MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Tentang Plugin MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Plugin MPRIS Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_it.ts b/src/plugins/General/mpris/translations/mpris_plugin_it.ts index ee644aa25..d2ad842ab 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_it.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Modulo MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Info sul modulo MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Modulo MPRIS per Qmmp</translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_ja.ts b/src/plugins/General/mpris/translations/mpris_plugin_ja.ts index daef2d672..eed97338f 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_ja.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS プラグイン</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>MPRIS プラグインについて</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>QMMP MPRIS プラグイン</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_kk.ts b/src/plugins/General/mpris/translations/mpris_plugin_kk.ts index 123ad2f5e..3feab0a1a 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_kk.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_lt.ts b/src/plugins/General/mpris/translations/mpris_plugin_lt.ts index a8e268bd6..741930a51 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_lt.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS įskiepis</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Apie MPRIS įskiepį</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp MPRIS įskiepis</translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_nl.ts b/src/plugins/General/mpris/translations/mpris_plugin_nl.ts index 88d59078a..419b667f4 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_nl.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS Module</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Over de MPRIS Module</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp MPRIS Module</translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_pl_PL.ts b/src/plugins/General/mpris/translations/mpris_plugin_pl_PL.ts index a175b7905..330dfc2ce 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_pl_PL.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Wtyczka MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>O wtyczce MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Wtyczka MPRIS dla Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_pt.ts b/src/plugins/General/mpris/translations/mpris_plugin_pt.ts index 606bb3892..e71e13ba6 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_pt.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Suplemento MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Sobre o suplemento MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Suplemento Qmmp MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_pt_BR.ts b/src/plugins/General/mpris/translations/mpris_plugin_pt_BR.ts index 537d2d76f..c14386703 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_pt_BR.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Plugin MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Sobre o plugin MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Plugin Qmmp MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_ru.ts b/src/plugins/General/mpris/translations/mpris_plugin_ru.ts index 7f19d9590..360e63e85 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_ru.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Модуль MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>О модуле MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Модуль MPRIS для Qmmp</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_sk.ts b/src/plugins/General/mpris/translations/mpris_plugin_sk.ts index 95e729fd1..758107fcf 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_sk.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_sr_BA.ts b/src/plugins/General/mpris/translations/mpris_plugin_sr_BA.ts index 0299c1036..46ae1273d 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_sr_BA.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>МПРИС</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>О прикључку за МПРИС</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Кумп МПРИС прикључак</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_sr_RS.ts b/src/plugins/General/mpris/translations/mpris_plugin_sr_RS.ts index d3d9badb2..fc0749e40 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_sr_RS.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>МПРИС</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>О прикључку за МПРИС</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Кумп МПРИС прикључак</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Written by: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_tr.ts b/src/plugins/General/mpris/translations/mpris_plugin_tr.ts index 455210030..aa3fb2fa8 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_tr.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS Eklentisi</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>MPRIS Eklentisi Hakkında</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp MPRIS Eklentisi</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_uk_UA.ts b/src/plugins/General/mpris/translations/mpris_plugin_uk_UA.ts index b1e28aa53..02b61a295 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_uk_UA.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>Модуль MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>Про модуль MPRIS</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Модуль MPRIS для Qmmp</translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_zh_CN.ts b/src/plugins/General/mpris/translations/mpris_plugin_zh_CN.ts index 61effea64..170737967 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_zh_CN.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS 插件</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>关于 MPRIS 插件</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp MPRIS 插件</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/mpris/translations/mpris_plugin_zh_TW.ts b/src/plugins/General/mpris/translations/mpris_plugin_zh_TW.ts index b40a05bfb..14080aaea 100644 --- a/src/plugins/General/mpris/translations/mpris_plugin_zh_TW.ts +++ b/src/plugins/General/mpris/translations/mpris_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>MPRISFactory</name> <message> - <location filename="../mprisfactory.cpp" line="31"/> + <location filename="../mprisfactory.cpp" line="30"/> <source>MPRIS Plugin</source> <translation>MPRIS 外掛</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="51"/> + <location filename="../mprisfactory.cpp" line="50"/> <source>About MPRIS Plugin</source> <translation>關於 MPRIS 外掛</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="52"/> + <location filename="../mprisfactory.cpp" line="51"/> <source>Qmmp MPRIS Plugin</source> <translation>Qmmp MPRIS 外掛</translation> </message> <message> - <location filename="../mprisfactory.cpp" line="53"/> + <location filename="../mprisfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/CMakeLists.txt b/src/plugins/General/notifier/CMakeLists.txt index ae11cd7c0..0b2df2839 100644 --- a/src/plugins/General/notifier/CMakeLists.txt +++ b/src/plugins/General/notifier/CMakeLists.txt @@ -1,20 +1,7 @@ project(libnotifier) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -27,11 +14,11 @@ SET(libnotifier_SRCS popupwidget.cpp ) -SET(libnotifier_RCCS +SET(libnotifier_RCCS translations/translations.qrc notifier_images.qrc) -QT4_ADD_RESOURCES(libnotifier_RCC_SRCS ${libnotifier_RCCS}) +QT5_ADD_RESOURCES(libnotifier_RCC_SRCS ${libnotifier_RCCS}) # user interface @@ -40,20 +27,20 @@ SET(libnotifier_UIS settingsdialog.ui ) -QT4_WRAP_UI(libnotifier_UIS_H ${libnotifier_UIS}) +QT5_WRAP_UI(libnotifier_UIS_H ${libnotifier_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(notifier MODULE ${libnotifier_SRCS} ${libnotifier_UIS_H} ${libnotifier_RCC_SRCS}) add_dependencies(notifier qmmpui) -IF(X11_FOUND) +IF(X11_FOUND AND Qt5X11Extras_FOUND) include_directories(${X11_INCLUDE_DIRS}) link_directories(${X11_LIBRARY_DIRS}) ADD_DEFINITIONS(${X11_CFLAGS}) ADD_DEFINITIONS(-DX11_FOUND) - target_link_libraries(notifier ${QT_LIBRARIES} qmmpui libqmmp ${X11_LDFLAGS}) -ELSE(X11_FOUND) - target_link_libraries(notifier ${QT_LIBRARIES} qmmpui libqmmp) -ENDIF(X11_FOUND) + target_link_libraries(notifier Qt5::X11Extras Qt5::Widgets ${X11_LDFLAGS} -lqmmpui -lqmmp) +ELSE(X11_FOUND AND Qt5X11Extras_FOUND) + target_link_libraries(notifier Qt5::Widgets -lqmmpui -lqmmp) +ENDIF(X11_FOUND AND Qt5X11Extras_FOUND) install(TARGETS notifier DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/notifier/notifier.cpp b/src/plugins/General/notifier/notifier.cpp index 1edaeaf36..c55008406 100644 --- a/src/plugins/General/notifier/notifier.cpp +++ b/src/plugins/General/notifier/notifier.cpp @@ -32,7 +32,7 @@ #include <X11/Xatom.h> #include <X11/Xlib.h> #include <X11/Xutil.h> -#elif defined (Q_OS_WIN) +#elif defined(Q_OS_WIN) #include <windows.h> #endif diff --git a/src/plugins/General/notifier/notifier.pro b/src/plugins/General/notifier/notifier.pro index eea864b6c..d3e38c6fc 100644 --- a/src/plugins/General/notifier/notifier.pro +++ b/src/plugins/General/notifier/notifier.pro @@ -20,8 +20,9 @@ RESOURCES = notifier_images.qrc \ LIBS += $$QMMPUI_LIB unix { - PKGCONFIG += x11 - DEFINES += X11_FOUND target.path = $$LIB_DIR/qmmp/General INSTALLS += target + PKGCONFIG += x11 + QT += x11extras + DEFINES += X11_FOUND } diff --git a/src/plugins/General/notifier/notifierfactory.cpp b/src/plugins/General/notifier/notifierfactory.cpp index d7bc37b07..1e6f47d36 100644 --- a/src/plugins/General/notifier/notifierfactory.cpp +++ b/src/plugins/General/notifier/notifierfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "notifier.h" #include "settingsdialog.h" #include "notifierfactory.h" @@ -60,5 +59,3 @@ QTranslator *NotifierFactory::createTranslator(QObject *parent) translator->load(QString(":/notifier_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(notifier,NotifierFactory) diff --git a/src/plugins/General/notifier/notifierfactory.h b/src/plugins/General/notifier/notifierfactory.h index e11a8662e..a968c9c67 100644 --- a/src/plugins/General/notifier/notifierfactory.h +++ b/src/plugins/General/notifier/notifierfactory.h @@ -33,6 +33,7 @@ class NotifierFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/notifier/translations/notifier_plugin_bg.ts b/src/plugins/General/notifier/translations/notifier_plugin_bg.ts index b2461d263..5b8ea6288 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_bg.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_cs.ts b/src/plugins/General/notifier/translations/notifier_plugin_cs.ts index 274d3e2ce..ec7727e7d 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_cs.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Notifikační modul</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>O notifikačním modulu</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Notifikační modul Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_de.ts b/src/plugins/General/notifier/translations/notifier_plugin_de.ts index 23252a6de..c3016380c 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_de.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Benachrichtigungsmodul</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Über Benachrichtigungsmodul</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Qmmp Benachrichtigungsmodul</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_el.ts b/src/plugins/General/notifier/translations/notifier_plugin_el.ts index 41fc9e8cb..e193eae43 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_el.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_el.ts @@ -4,25 +4,25 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Πρόσθετο ειδοποιήσεων </translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Σχετικά με το πρόσθετο ειδοποιήσεων </translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Qmmp πρόσθετο ειδοποιήσεων </translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_en.ts b/src/plugins/General/notifier/translations/notifier_plugin_en.ts index fd09d7bc9..1561310da 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_en.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_es.ts b/src/plugins/General/notifier/translations/notifier_plugin_es.ts index 6734b1c01..357552032 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_es.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Módulo de avisos</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Acerca del módulo de avisos</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Módulo de avisos para Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_fi.ts b/src/plugins/General/notifier/translations/notifier_plugin_fi.ts index 8fd2ad648..677cdc067 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_fi.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_fr.ts b/src/plugins/General/notifier/translations/notifier_plugin_fr.ts index 0e24bce50..b4aae94ea 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_fr.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Greffon de notification</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>À propos du greffon de notification</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Greffon de notification pour Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_gl_ES.ts b/src/plugins/General/notifier/translations/notifier_plugin_gl_ES.ts index b3e3914d0..7d771c4bb 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_gl_ES.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Engadido notificador</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Sobre o engadido notificador</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Engadido notificador de Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_he.ts b/src/plugins/General/notifier/translations/notifier_plugin_he.ts index 41579206c..2981a909d 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_he.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>תוסף התראה</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>אודות תוסף התראה</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>תוסף התראה של Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_hu.ts b/src/plugins/General/notifier/translations/notifier_plugin_hu.ts index 33b0ddc5f..49e6d36d6 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_hu.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_id.ts b/src/plugins/General/notifier/translations/notifier_plugin_id.ts index ed1ce1747..6b8a72f4f 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_id.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Plugin Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Tentang Plugin Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Plugin Notifier Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_it.ts b/src/plugins/General/notifier/translations/notifier_plugin_it.ts index bd0bf3a10..27ee940cf 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_it.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Modulo notifica</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Info sul modulo notifica</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Modulo notifica per Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_ja.ts b/src/plugins/General/notifier/translations/notifier_plugin_ja.ts index 064b25cfd..cef35786c 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_ja.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>通知プラグイン</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>通知プラグインについて</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>QMMP 通知プラグイン</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_kk.ts b/src/plugins/General/notifier/translations/notifier_plugin_kk.ts index 9995ce780..2ad30aa85 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_kk.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_lt.ts b/src/plugins/General/notifier/translations/notifier_plugin_lt.ts index 758e6ac00..f29d26057 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_lt.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Notifier įskiepis</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Apie Notifier įskiepį</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Qmmp Notifier Įskiepis</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_nl.ts b/src/plugins/General/notifier/translations/notifier_plugin_nl.ts index cac6be165..9cec0058a 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_nl.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Notificatie Module</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Over de Notificatie Module</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Notificatie Module voor Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_pl_PL.ts b/src/plugins/General/notifier/translations/notifier_plugin_pl_PL.ts index 8b63f9b2a..8106ad27a 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_pl_PL.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Wtyczka Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>O wtyczce Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Wtyczka Notifier dla Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_pt.ts b/src/plugins/General/notifier/translations/notifier_plugin_pt.ts index 9fbb2adae..f5a30f9fe 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_pt.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Suplemento Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Sobre o suplemento Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Suplemento Qmmp Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_pt_BR.ts b/src/plugins/General/notifier/translations/notifier_plugin_pt_BR.ts index a27043739..aa96c0478 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_pt_BR.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Plugin Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Sobre o plugin Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Plugin Qmmp Notifier</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_ru.ts b/src/plugins/General/notifier/translations/notifier_plugin_ru.ts index 17d184156..793f0c791 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_ru.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Модуль уведомлений</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>О модуле уведомлений</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Модуль уведомлений для Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_sk.ts b/src/plugins/General/notifier/translations/notifier_plugin_sk.ts index 12c7fb01c..17c888933 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_sk.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_sr_BA.ts b/src/plugins/General/notifier/translations/notifier_plugin_sr_BA.ts index e525b6b39..6ca5dada4 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_sr_BA.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Обавјештавач</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>О обавјештавачу</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Кумп прикључак за обавјештавање</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_sr_RS.ts b/src/plugins/General/notifier/translations/notifier_plugin_sr_RS.ts index 8ad6dd98d..758cf9880 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_sr_RS.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Обавештавач</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>О обавештавачу</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Кумп прикључак за обавештавање</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_tr.ts b/src/plugins/General/notifier/translations/notifier_plugin_tr.ts index 5ea682c19..d7785b990 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_tr.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Bildirim Eklentisi</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Bildirim Eklentisi Hakkında</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Qmmp Bildirim Eklentisi</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_uk_UA.ts b/src/plugins/General/notifier/translations/notifier_plugin_uk_UA.ts index 8eb5fdba4..ddb855f88 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_uk_UA.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>Модуль повідомлень</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>Про модуль повідомлень</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Модуль повідомлень для Qmmp</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_zh_CN.ts b/src/plugins/General/notifier/translations/notifier_plugin_zh_CN.ts index 789e3c144..7c7a95519 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_zh_CN.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>通知插件</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>关于通知插件</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Qmmp 通知插件</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/notifier/translations/notifier_plugin_zh_TW.ts b/src/plugins/General/notifier/translations/notifier_plugin_zh_TW.ts index 30f5c2c8a..204232177 100644 --- a/src/plugins/General/notifier/translations/notifier_plugin_zh_TW.ts +++ b/src/plugins/General/notifier/translations/notifier_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>NotifierFactory</name> <message> - <location filename="../notifierfactory.cpp" line="31"/> + <location filename="../notifierfactory.cpp" line="30"/> <source>Notifier Plugin</source> <translation>通知插件</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="51"/> + <location filename="../notifierfactory.cpp" line="50"/> <source>About Notifier Plugin</source> <translation>關於通知插件</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="52"/> + <location filename="../notifierfactory.cpp" line="51"/> <source>Qmmp Notifier Plugin</source> <translation>Qmmp 通知插件</translation> </message> <message> - <location filename="../notifierfactory.cpp" line="53"/> + <location filename="../notifierfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/rgscan/CMakeLists.txt b/src/plugins/General/rgscan/CMakeLists.txt index 62cd415e9..4e420afe5 100644 --- a/src/plugins/General/rgscan/CMakeLists.txt +++ b/src/plugins/General/rgscan/CMakeLists.txt @@ -1,22 +1,7 @@ project(librgscan) -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -44,7 +29,7 @@ SET(librgscan_RCCS translations/translations.qrc ) -QT4_ADD_RESOURCES(librgscan_RCC_SRCS ${librgscan_RCCS}) +QT5_ADD_RESOURCES(librgscan_RCC_SRCS ${librgscan_RCCS}) # user interface @@ -52,12 +37,12 @@ SET(librgscan_UIS rgscandialog.ui ) -QT4_WRAP_UI(librgscan_UIS_H ${librgscan_UIS}) +QT5_WRAP_UI(librgscan_UIS_H ${librgscan_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(rgscan MODULE ${librgscan_SRCS} ${librgscan_UIS_H} ${librgscan_HDRS} ${librgscan_RCC_SRCS}) add_dependencies(rgscan qmmpui) -target_link_libraries(rgscan ${QT_LIBRARIES} qmmpui libqmmp ${TAGLIB_LDFLAGS}) +target_link_libraries(rgscan Qt5::Widgets -lqmmpui -lqmmp ${TAGLIB_LDFLAGS}) install(TARGETS rgscan DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/rgscan/rgscandialog.cpp b/src/plugins/General/rgscan/rgscandialog.cpp index 183cd2218..2784a1a42 100644 --- a/src/plugins/General/rgscan/rgscandialog.cpp +++ b/src/plugins/General/rgscan/rgscandialog.cpp @@ -35,15 +35,11 @@ #include <taglib/wavpackfile.h> #include <taglib/id3v2tag.h> #include <taglib/textidentificationframe.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 10)) #include <taglib/mp4file.h> -#endif -#include <taglib/taglib.h> #include "rgscanner.h" #include "gain_analysis.h" #include "rgscandialog.h" -#define QStringToTString_qt4(s) TagLib::String(s.toUtf8().constData(), TagLib::String::UTF8) #define FILE_SKIPPED (Qt::UserRole + 1) struct ReplayGainInfoItem @@ -57,7 +53,7 @@ RGScanDialog::RGScanDialog(QList <PlayListTrack *> tracks, QWidget *parent) : Q { m_ui.setupUi(this); m_ui.tableWidget->verticalHeader()->setDefaultSectionSize(fontMetrics().height() + 3); - m_ui.tableWidget->verticalHeader()->setResizeMode(QHeaderView::Fixed); + m_ui.tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); QStringList paths; MetaDataFormatter formatter("%if(%p&%t,%p - %t,%f) - %l"); @@ -79,12 +75,8 @@ RGScanDialog::RGScanDialog(QList <PlayListTrack *> tracks, QWidget *parent) : Q ext == "flac" || //native flac ext == "oga" || //ogg flac ext == "ogg" || //ogg vorbis - ext == "wv" //wavpack -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 10)) - || ext == "m4a") //aac (mp4 container) -#else - ) -#endif + ext == "wv" || //wavpack + ext == "m4a") //aac (mp4 container) { paths.append(track->url()); QString name = formatter.format(track); @@ -293,12 +285,12 @@ QString RGScanDialog::getAlbumName(const QString &url) TagLib::String RGScanDialog::gainToString(double value) { - return QStringToTString_qt4(QString("%1 dB").arg(value, 0, 'f', 2)); + return QStringToTString(QString("%1 dB").arg(value, 0, 'f', 2)); } TagLib::String RGScanDialog::peakToString(double value) { - return QStringToTString_qt4(QString("%1").arg(value, 0, 'f', 6)); + return QStringToTString(QString("%1").arg(value, 0, 'f', 6)); } TagLib::StringList RGScanDialog::gainToStringList(double value) @@ -376,10 +368,8 @@ void RGScanDialog::writeVorbisComment(TagLib::Ogg::XiphComment *tag, ReplayGainI } } -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 10)) void RGScanDialog::writeMP4Tag(TagLib::MP4::Tag *tag, ReplayGainInfoItem *item) { - if(m_ui.trackCheckBox->isChecked()) { tag->setItem("----:com.apple.iTunes:replaygain_track_gain", @@ -395,7 +385,6 @@ void RGScanDialog::writeMP4Tag(TagLib::MP4::Tag *tag, ReplayGainInfoItem *item) gainToStringList(item->info[Qmmp::REPLAYGAIN_ALBUM_PEAK])); } } -#endif void RGScanDialog::on_writeButton_clicked() { @@ -439,13 +428,11 @@ void RGScanDialog::on_writeButton_clicked() writeAPETag(file.APETag(true), item); file.save(); } -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 10)) else if(ext == "m4a") //MPEG-4 Part 14 { TagLib::MP4::File file(qPrintable(item->url)); writeMP4Tag(file.tag(), item); file.save(); } -#endif } } diff --git a/src/plugins/General/rgscan/rgscandialog.h b/src/plugins/General/rgscan/rgscandialog.h index 761b594c2..18dcda9ad 100644 --- a/src/plugins/General/rgscan/rgscandialog.h +++ b/src/plugins/General/rgscan/rgscandialog.h @@ -24,7 +24,6 @@ #include <QDialog> #include <QStringList> #include <qmmp/qmmp.h> -#include <taglib/taglib.h> #include <taglib/tstring.h> #include <taglib/tstringlist.h> #include "ui_rgscandialog.h" @@ -49,12 +48,10 @@ namespace TagLib { class XiphComment; } -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 10)) namespace MP4 { class Tag; } -#endif } /** @@ -84,9 +81,7 @@ private: void writeAPETag(TagLib::APE::Tag *tag, ReplayGainInfoItem *item); void writeID3v2Tag(TagLib::ID3v2::Tag *tag, ReplayGainInfoItem *item); void writeVorbisComment(TagLib::Ogg::XiphComment *tag, ReplayGainInfoItem *item); -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 10)) void writeMP4Tag(TagLib::MP4::Tag *tag, ReplayGainInfoItem *item); -#endif Ui::RGScanDialog m_ui; QList<RGScanner *> m_scanners; QList<ReplayGainInfoItem*> m_replayGainItemList; diff --git a/src/plugins/General/rgscan/rgscanfactory.cpp b/src/plugins/General/rgscan/rgscanfactory.cpp index e3f3992d8..1bc3545fe 100644 --- a/src/plugins/General/rgscan/rgscanfactory.cpp +++ b/src/plugins/General/rgscan/rgscanfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2013-2016 by Ilya Kotov * + * Copyright (C) 2013 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "rgscanhelper.h" #include "rgscanfactory.h" @@ -66,5 +65,3 @@ QTranslator *RGScanFactory::createTranslator(QObject *parent) translator->load(QString(":/rgscan_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(rgscan, RGScanFactory) diff --git a/src/plugins/General/rgscan/rgscanfactory.h b/src/plugins/General/rgscan/rgscanfactory.h index 13e66d474..ecd75a49a 100644 --- a/src/plugins/General/rgscan/rgscanfactory.h +++ b/src/plugins/General/rgscan/rgscanfactory.h @@ -32,6 +32,7 @@ class RGScanFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_bg.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_bg.ts index a7ee1b520..d35a060db 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_bg.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_bg.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_cs.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_cs.ts index 953d0777b..eb6806f41 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_cs.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_cs.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Chyba</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_de.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_de.ts index 68c106424..9f4b01b96 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_de.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_de.ts @@ -64,16 +64,16 @@ <translation>Albumverstärkung/-spitzenwert schreiben</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Wiedergabeverstärkungsscanner-Modul</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Über Wiedergabeverstärkungsscanner-Modul</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Wiedergabeverstärkungsscanner-Modul für Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Dieses Modul scannt Audiodateien und gibt Informationen zur Lautstärkenormalisierung</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Basiert auf Quellcode von:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_el.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_el.ts index f1723996b..840f8074c 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_el.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_el.ts @@ -64,16 +64,16 @@ <translation>Εγγραφή ενίσχυσης/κορυφής άλμπουμ</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Σφάλμα</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Πρόσθετο σάρωσης ενίσχυσης αναπαραγωγής</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Σχετικά με το πρόσθετο σάρωσης ενίσχυσης αναπαραγωγής</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Qmmp πρόσθετο σάρωσης ενίσχυσης αναπαραγωγής</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Αυτό το πρόσθετο σαρώνει τα αρχεία ήχου και δίνει πληροφορίες για την κανονικοποίηση της έντασης</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Βασισμένο στον πηγαίο κώδικα των:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_en.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_en.ts index 564ea0eed..a00d3e0cc 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_en.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_en.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_es.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_es.ts index ac725232a..1de1ab68a 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_es.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_es.ts @@ -64,16 +64,16 @@ <translation>Escribir ganancia/pico de álbum </translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Módulo de Escáner de Ganancia de Repetición</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Acerca del Módulo de Escáner de Ganancia de Repetición</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Módulo de Escáner de Ganancia de Repetición de Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Este módulo escanea archivos de audio y proporciona información para la normalización del volumen</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Basado sobre código fuente por:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_fi.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_fi.ts index c1f0a7d2b..57b1198f2 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_fi.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_fi.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Virhe</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_fr.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_fr.ts index f4af4feeb..45f5ba615 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_fr.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_fr.ts @@ -64,16 +64,16 @@ <translation>Écrire gain et pic et l'album</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Erreur</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Greffon analyseur ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>À propos du greffon analyseur ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Greffon analyseur ReplayGain pour Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Ce greffon analyse les fichiers audio pour obtenir des information de normalisation du volume</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Basé sur le code source par :</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_gl_ES.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_gl_ES.ts index 0b35591a0..8798187a5 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_gl_ES.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_gl_ES.ts @@ -64,16 +64,16 @@ <translation>Escribir ganancia/pico do álbum</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Plugin ReplayGain Scanner</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Acerca do plugin ReplayGain Scanner</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Plugin ReplayGain Scanner para Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Este plugin escanea os arquivos de audio e proporciona información sobre a normalización do volume</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Basado no código fonte por:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_he.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_he.ts index e03ce5f79..62c7988d6 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_he.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_he.ts @@ -64,16 +64,16 @@ <translation>רשום הישג/שיא אלבום</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>שגיאה</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 דציבלים</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>תוסף סורק ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>אודות תוסף סורק ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>תוסף סורק ReplayGain עבור Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>תוסף זה סורק קבצי שמע ונותן מידע עבור נורמליזציה של עוצמת שמע</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>מבוסס על קוד מקור מאת:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_hu.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_hu.ts index 1d37f61ae..f623bedd2 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_hu.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_hu.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_id.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_id.ts index ddf72a1d5..f9ea6d21c 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_id.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_id.ts @@ -64,16 +64,16 @@ <translation>Tulis gain/puncak album</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Galat</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Plugin Scanner ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Tentang Plugin Scanner ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Plugin Scanner ReplayGain untuk Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Plugin ini men-scan file audio dan memberikan informasi untuk normalisasi volume</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Berdasarkan pada kode sumber oleh:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_it.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_it.ts index ca6f94bbc..4f713c15a 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_it.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_it.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_ja.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_ja.ts index 942ac3b3e..84bb85df4 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_ja.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_ja.ts @@ -64,16 +64,16 @@ <translation>アルバム全体利得とアルバムピーク値を書き込む</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>エラー</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>リプレイゲイン スキャナー プラグイン</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>リプレイゲイン スキャナー プラグインについて</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>QMMP リプレイゲイン スキャナー プラグイン</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>このプラグインは音声ファイルの音量を計測し適正音量レベルに直すための情報を提供します</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>元になったコードの作者:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_kk.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_kk.ts index 3faf55c12..0c7795799 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_kk.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_kk.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_lt.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_lt.ts index 95fc7673f..da05d05fd 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_lt.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_lt.ts @@ -64,16 +64,16 @@ <translation type="unfinished">Įrašyti albumo didėjimą/piką </translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Klaida</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>ReplayGain Skanerio Įskiepis</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Apie ReplayGain Skanerio Įskiepį</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>ReplayGain Skanerio Įskiepis Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Šis įskiepis skenuja audio bylas ir parodo informaciją apie garso normalizavimą</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru> </translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished">Sukurta iš šaltinio pagal:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_nl.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_nl.ts index d3bddca6d..935573751 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_nl.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_nl.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_pl_PL.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_pl_PL.ts index f70fd30a0..32ad26023 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_pl_PL.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_pl_PL.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Błąd</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Wtyczka Skaner ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>O wtyczce Skaner ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Wtyczka ReplayGain dla Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Wtyczka skanuje pliki dźwiękowe i podaje informacje na temat normalizacji dźwięku</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Oparte na kodzie stworzonym przez:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_pt.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_pt.ts index 57da952cd..f3d94cab2 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_pt.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_pt.ts @@ -64,16 +64,16 @@ <translation>Gravar ganho/picos do álbum</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Suplemento ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Sobre o suplemento ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Suplemento Qmmp ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Este suplemento analisa os ficheiros áudio e as informações para normalização de volume</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Baseado no código fonte de:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_pt_BR.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_pt_BR.ts index 67cc19e8b..2757cb280 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_pt_BR.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_pt_BR.ts @@ -64,16 +64,16 @@ <translation>Salvar ganho/picos do álbum</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Plugin ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Sobre o plugin ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Plugin Qmmp ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Este plugin analisa os arquivos de áudio e as informações para normalização de volume</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Baseado no código fonte de:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_ru.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_ru.ts index 7e3dded4f..9ad6ecad5 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_ru.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_ru.ts @@ -64,16 +64,16 @@ <translation>Записывать пик/усиление для альбома</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 дБ</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Модуль сканир. ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>О модуле сканирования ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Модуль сканирования ReplayGain для Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Данный модуль сканирует аудио-файлы и выдаёт информацию для нормализации громкости</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Основан на исходном коде следующих разработчиков:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_sk.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_sk.ts index c5cbca2ac..2b38719c0 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_sk.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_sk.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_sr_BA.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_sr_BA.ts index 1a487bac8..8a3f20d19 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_sr_BA.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_sr_BA.ts @@ -64,16 +64,16 @@ <translation>Упиши ниво/врх албума</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Грешка</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Скенер нивелације</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>О прикључку за скенирање нивелације</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Кумп прикључак за скенирање нивелације</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Скенира фајлове звука и даје податке за нормализацију звука</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Заснован на кôду од:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_sr_RS.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_sr_RS.ts index 6671bf0f0..a2e2e5b40 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_sr_RS.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_sr_RS.ts @@ -64,16 +64,16 @@ <translation>Упиши ниво/врх албума</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Грешка</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 dB</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Скенер нивелације</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>О прикључку за скенирање нивелације</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Кумп прикључак за скенирање нивелације</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Скенира фајлове звука и даје податке за нормализацију звука</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Заснован на кôду од:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>David Robinson <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>Glen Sawyer <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>Frank Klemm</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_tr.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_tr.ts index 77c489489..9014d22d0 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_tr.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_tr.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_uk_UA.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_uk_UA.ts index a242eaf4f..96573ad94 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_uk_UA.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_uk_UA.ts @@ -64,16 +64,16 @@ <translation>Записувати пік/підсилення для альбому</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>Помилка</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1 дБ</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>Модуль сканування ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>Про модуль сканування ReplayGain</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>Модуль сканування ReplayGain для Qmmp</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>Цей модуль сканує аудіо файли і видає інформацію для нормалізації гучності</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>Заснований на вихідному коді наступних розробників:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation></translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_zh_CN.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_zh_CN.ts index 00218a37c..ecc2e14ef 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_zh_CN.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_zh_CN.ts @@ -64,16 +64,16 @@ <translation>写专辑的增益/峰值</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>错误</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation>%1分贝</translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation>回放增益扫描器插件</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation>关于回放增益扫描器插件</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation>用于Qmmp播放器的回放增益扫描器插件</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation>本插件扫描音频文件并提供音量正常化的相关信息</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation>基于以下作者的源代码:</translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation>戴维.罗宾逊 <David@Robinson.org></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation>格林.索耶尔 <mp3gain@hotmail.com></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation>弗兰克.克莱姆</translation> </message> diff --git a/src/plugins/General/rgscan/translations/rgscan_plugin_zh_TW.ts b/src/plugins/General/rgscan/translations/rgscan_plugin_zh_TW.ts index b5e042bae..c4c3138e4 100644 --- a/src/plugins/General/rgscan/translations/rgscan_plugin_zh_TW.ts +++ b/src/plugins/General/rgscan/translations/rgscan_plugin_zh_TW.ts @@ -64,16 +64,16 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscandialog.cpp" line="130"/> - <location filename="../rgscandialog.cpp" line="241"/> + <location filename="../rgscandialog.cpp" line="122"/> + <location filename="../rgscandialog.cpp" line="233"/> <source>Error</source> <translation>錯誤</translation> </message> <message> - <location filename="../rgscandialog.cpp" line="140"/> - <location filename="../rgscandialog.cpp" line="141"/> - <location filename="../rgscandialog.cpp" line="165"/> - <location filename="../rgscandialog.cpp" line="236"/> + <location filename="../rgscandialog.cpp" line="132"/> + <location filename="../rgscandialog.cpp" line="133"/> + <location filename="../rgscandialog.cpp" line="157"/> + <location filename="../rgscandialog.cpp" line="228"/> <source>%1 dB</source> <translation type="unfinished"></translation> </message> @@ -81,47 +81,47 @@ <context> <name>RGScanFactory</name> <message> - <location filename="../rgscanfactory.cpp" line="30"/> + <location filename="../rgscanfactory.cpp" line="29"/> <source>ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="51"/> + <location filename="../rgscanfactory.cpp" line="50"/> <source>About ReplayGain Scanner Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="52"/> + <location filename="../rgscanfactory.cpp" line="51"/> <source>ReplayGain Scanner Plugin for Qmmp</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="53"/> + <location filename="../rgscanfactory.cpp" line="52"/> <source>This plugin scans audio files and gives information for volume normalization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="54"/> + <location filename="../rgscanfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="55"/> + <location filename="../rgscanfactory.cpp" line="54"/> <source>Based on source code by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="56"/> + <location filename="../rgscanfactory.cpp" line="55"/> <source>David Robinson <David@Robinson.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="57"/> + <location filename="../rgscanfactory.cpp" line="56"/> <source>Glen Sawyer <mp3gain@hotmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../rgscanfactory.cpp" line="58"/> + <location filename="../rgscanfactory.cpp" line="57"/> <source>Frank Klemm</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/CMakeLists.txt b/src/plugins/General/scrobbler/CMakeLists.txt index 6a0b53bb9..d4fbdb2a2 100644 --- a/src/plugins/General/scrobbler/CMakeLists.txt +++ b/src/plugins/General/scrobbler/CMakeLists.txt @@ -1,20 +1,5 @@ project(libscrobbler) - - -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmpui @@ -38,7 +23,7 @@ SET(libscrobbler_HDRS SET(libscrobbler_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libscrobbler_RCC_SRCS ${libscrobbler_RCCS}) +QT5_ADD_RESOURCES(libscrobbler_RCC_SRCS ${libscrobbler_RCCS}) # user interface @@ -47,7 +32,7 @@ SET(libscrobbler_UIS settingsdialog.ui ) -QT4_WRAP_UI(libscrobbler_UIS_H ${libscrobbler_UIS}) +QT5_WRAP_UI(libscrobbler_UIS_H ${libscrobbler_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -55,5 +40,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(scrobbler MODULE ${libscrobbler_SRCS} ${libscrobbler_UIS_H} ${libscrobbler_RCC_SRCS} ${libscrobbler_HDRS}) add_dependencies(scrobbler qmmpui) -target_link_libraries(scrobbler ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(scrobbler Qt5::Widgets Qt5::Network -lqmmpui -lqmmp) install(TARGETS scrobbler DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/scrobbler/scrobbler.cpp b/src/plugins/General/scrobbler/scrobbler.cpp index c84cba99d..b4f10e634 100644 --- a/src/plugins/General/scrobbler/scrobbler.cpp +++ b/src/plugins/General/scrobbler/scrobbler.cpp @@ -26,6 +26,7 @@ #include <QCryptographicHash> #include <QXmlStreamReader> #include <QUrl> +#include <QUrlQuery> #include <QTime> #include <QTimer> #include <QDateTime> @@ -312,7 +313,7 @@ void Scrobbler::submit() QUrl url(m_scrobblerUrl); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - QUrl body(""); + QUrlQuery body(""); QByteArray data; foreach (QString key, params.keys()) { @@ -321,7 +322,7 @@ void Scrobbler::submit() } data.append(SECRET); body.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); - QByteArray bodyData = body.toEncoded().remove(0,1); + QByteArray bodyData = body.query(QUrl::FullyEncoded).toUtf8(); bodyData.replace("+", QUrl::toPercentEncoding("+")); QNetworkRequest request(url); @@ -361,7 +362,7 @@ void Scrobbler::sendNotification(const SongInfo &info) QUrl url(m_scrobblerUrl); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - QUrl body(""); + QUrlQuery body(""); QByteArray data; foreach (QString key, params.keys()) { @@ -370,7 +371,7 @@ void Scrobbler::sendNotification(const SongInfo &info) } data.append(SECRET); body.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); - QByteArray bodyData = body.toEncoded().remove(0,1); + QByteArray bodyData = body.query(QUrl::FullyEncoded).toUtf8(); bodyData.replace("+", QUrl::toPercentEncoding("+")); QNetworkRequest request(url); @@ -415,14 +416,16 @@ void ScrobblerAuth::getToken() m_session.clear(); QUrl url(m_scrobblerUrl + "?"); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - url.addQueryItem("method", "auth.getToken"); - url.addQueryItem("api_key", API_KEY); + QUrlQuery q; + q.addQueryItem("method", "auth.getToken"); + q.addQueryItem("api_key", API_KEY); QByteArray data; data.append("api_key" API_KEY); data.append("methodauth.getToken"); data.append(SECRET); - url.addQueryItem("api_sig", QCryptographicHash::hash(data,QCryptographicHash::Md5).toHex()); + q.addQueryItem("api_sig", QCryptographicHash::hash(data,QCryptographicHash::Md5).toHex()); + url.setQuery(q); QNetworkRequest request(url); request.setRawHeader("User-Agent", m_ua); @@ -436,16 +439,18 @@ void ScrobblerAuth::getSession() qDebug("ScrobblerAuth[%s]: new session request", qPrintable(m_name)); QUrl url(m_scrobblerUrl + "?"); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - url.addQueryItem("api_key", API_KEY); - url.addQueryItem("method", "auth.getSession"); - url.addQueryItem("token", m_token); + QUrlQuery q; + q.addQueryItem("api_key", API_KEY); + q.addQueryItem("method", "auth.getSession"); + q.addQueryItem("token", m_token); QByteArray data; data.append("api_key" API_KEY); data.append("methodauth.getSession"); data.append("token" + m_token.toUtf8()); data.append(SECRET); - url.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); + q.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); + url.setQuery(q); QNetworkRequest request(url); request.setRawHeader("User-Agent", m_ua); @@ -466,7 +471,7 @@ void ScrobblerAuth::checkSession(const QString &session) QUrl url(m_scrobblerUrl); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - QUrl body(""); + QUrlQuery body(""); QByteArray data; foreach (QString key, params.keys()) { @@ -475,7 +480,7 @@ void ScrobblerAuth::checkSession(const QString &session) } data.append(SECRET); body.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); - QByteArray bodyData = body.toEncoded().remove(0,1); + QByteArray bodyData = body.query(QUrl::FullyEncoded).toUtf8(); bodyData.replace("+", QUrl::toPercentEncoding("+")); QNetworkRequest request(url); diff --git a/src/plugins/General/scrobbler/scrobblercache.cpp b/src/plugins/General/scrobbler/scrobblercache.cpp index b6b1eec78..667079fdd 100644 --- a/src/plugins/General/scrobbler/scrobblercache.cpp +++ b/src/plugins/General/scrobbler/scrobblercache.cpp @@ -125,7 +125,7 @@ QList<SongInfo> ScrobblerCache::load() while (!file.atEnd()) { - line = QString::fromUtf8(file.readLine().constData()).trimmed(); + line = QString::fromUtf8(file.readLine()).trimmed(); if ((s = line.indexOf("=")) < 0) continue; diff --git a/src/plugins/General/scrobbler/scrobblerfactory.cpp b/src/plugins/General/scrobbler/scrobblerfactory.cpp index 331e258bb..4cfced38c 100644 --- a/src/plugins/General/scrobbler/scrobblerfactory.cpp +++ b/src/plugins/General/scrobbler/scrobblerfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "scrobblerhandler.h" #include "settingsdialog.h" @@ -61,5 +60,3 @@ QTranslator *ScrobblerFactory::createTranslator(QObject *parent) translator->load(QString(":/scrobbler_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(scrobbler, ScrobblerFactory) diff --git a/src/plugins/General/scrobbler/scrobblerfactory.h b/src/plugins/General/scrobbler/scrobblerfactory.h index 0d1ea8035..d41d674ca 100644 --- a/src/plugins/General/scrobbler/scrobblerfactory.h +++ b/src/plugins/General/scrobbler/scrobblerfactory.h @@ -32,6 +32,7 @@ class ScrobblerFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts index 643b43b04..4085244a2 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts index 301209963..07b039864 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Modul Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>O modulu Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Modul Qmmp Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts index 18af65d2b..812558220 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler-Modul</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Über Scrobbler-Modul</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp AudioScrobbler-Modul</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts index 5a3d57ef4..96bf5fa42 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Πρόσθετο Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Σχετικά με το πρόσθετο Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp πρόσθετο AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts index 8e2abb88c..974476db3 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts index 921b7d6b2..b601cf556 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Módulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Acerca del módulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Módulo AudioScrobbler para Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts index 01c112fee..24ff62c5b 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler-liitännäinen</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Tietoja - Scrobbler-liitännäinen</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp:n AudioScrobbler-liitännäinen</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts index a82a3444b..17c8e0350 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Greffon AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>À propos du greffon AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Greffon AudioScrobbler pour Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts index eb659460b..b9e66912f 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Engadido Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Sobre o engadido Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Engadio AudioScrobbler de Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts index 071125077..e73194500 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>תוסף Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>אודות תוסף Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>תוסף AudioScrobbler של Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts index 68a7080d9..8e2d89e64 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts index c1f25fdfb..a90c3d57f 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Tentang Plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Plugin AudioScrobbler Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts index 43ae94dec..115db2846 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Modulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Info sul modulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Modulo AudioScrobbler per Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts index 86037b088..aab9cd90c 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler プラグイン</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Scrobbler プラグインについて</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>QMMP Scrobbler プラグイン</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts index 665e5907d..a4785023d 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts index 68765f521..e858e2302 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler įskiepis</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Apie Scrobbler įskiepį</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp AudioScrobbler įskiepis</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts index f220b9b11..00b2cd118 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler Module</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Over de Scrobbler Module</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>AudioScrobbler Module voor Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts index 2a71657d4..40800818a 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Wtyczka Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>O wtyczce Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Wtyczka AudioScrobbler dla Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts index b144a330d..ed8a4543a 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Suplemento Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Sobre o suplemento Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Suplemento Qmmp AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts index 6d884a52b..806bee3a8 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Sobre o plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Plugin Qmmp AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts index 65743f423..e861f91b0 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Модуль scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>О модуле Scrobbler </translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Модуль AudioScrobbler для Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts index e8303e43a..300d6f8f6 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts index 2ea3892f0..3e5159efe 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Скроблер</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>О прикључку за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Кумп прикључак за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts index 5cc6c7239..1ac6f95cb 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Скроблер</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>О прикључку за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Кумп прикључак за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts index 1c1328aa7..ed25f4ebd 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler Eklentisi</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Scrobbler Eklentisi Hakkında</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp Scrobbler Eklentisi</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts index 4e7cbad2b..7df95b11a 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Модуль scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Про модуль Scrobbler </translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Модуль AudioScrobbler для Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts index 7771f7f9c..a9c9d4495 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler 插件</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>关于 Scrobbler 插件</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp Scrobbler 插件</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts index 9097809b6..b42dff169 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler 外掛</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>關於 Scrobbler 外掛</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp Scrobbler 外掛</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/statusicon/CMakeLists.txt b/src/plugins/General/statusicon/CMakeLists.txt index 64942b72a..70ac8981f 100644 --- a/src/plugins/General/statusicon/CMakeLists.txt +++ b/src/plugins/General/statusicon/CMakeLists.txt @@ -1,20 +1,7 @@ project(libstatusicon) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -33,7 +20,7 @@ SET(libstatusicon_RCCS translations/translations.qrc images/tray_images.qrc) -QT4_ADD_RESOURCES(libstatusicon_RCC_SRCS ${libstatusicon_RCCS}) +QT5_ADD_RESOURCES(libstatusicon_RCC_SRCS ${libstatusicon_RCCS}) # user interface @@ -42,12 +29,12 @@ SET(libstatusicon_UIS settingsdialog.ui ) -QT4_WRAP_UI(libstatusicon_UIS_H ${libstatusicon_UIS}) +QT5_WRAP_UI(libstatusicon_UIS_H ${libstatusicon_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(statusicon MODULE ${libstatusicon_SRCS} ${libstatusicon_UIS_H} ${libstatusicon_RCC_SRCS}) add_dependencies(statusicon qmmpui libqmmp) -target_link_libraries(statusicon ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(statusicon Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS statusicon DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/statusicon/qmmptrayicon.cpp b/src/plugins/General/statusicon/qmmptrayicon.cpp index 4113b53a4..5667d8637 100644 --- a/src/plugins/General/statusicon/qmmptrayicon.cpp +++ b/src/plugins/General/statusicon/qmmptrayicon.cpp @@ -21,11 +21,12 @@ #include <QEvent> #include <QWheelEvent> #include <QMouseEvent> -#include <QApplication> +#include <QGuiApplication> +#include <QWindow> #include <qmmp/soundcore.h> #include "qmmptrayicon.h" -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 #include "statusiconpopupwidget.h" #endif @@ -41,19 +42,24 @@ QmmpTrayIcon::~QmmpTrayIcon() void QmmpTrayIcon::setToolTip(const QString &tip) { -#ifdef Q_WS_X11 - m_message = tip; - if(m_popupWidget) - showToolTip(); +#ifdef QMMP_WS_X11 + if(hasToolTipEvent()) + { + m_message = tip; + if(m_popupWidget) + showToolTip(); + } + else + QSystemTrayIcon::setToolTip(tip); #else QSystemTrayIcon::setToolTip(tip); #endif } -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool QmmpTrayIcon::event(QEvent *e) { - if (e->type() == QEvent::Wheel) + if (e->type() == QEvent::Wheel ) { wheelEvent((QWheelEvent *) e); e->accept(); @@ -68,6 +74,18 @@ bool QmmpTrayIcon::event(QEvent *e) return QSystemTrayIcon::event(e); } +bool QmmpTrayIcon::hasToolTipEvent() +{ + //checking for XEmbed system tray implementation + //only this implementation is able to send QHelpEvent + foreach (QWindow *w, qApp->allWindows()) + { + if(w->objectName() == "QSystemTrayIconSysWindow") + return true; + } + return false; +} + void QmmpTrayIcon::wheelEvent(QWheelEvent *e) { SoundCore::instance()->changeVolume(e->delta()/20); diff --git a/src/plugins/General/statusicon/qmmptrayicon.h b/src/plugins/General/statusicon/qmmptrayicon.h index 1aac4736d..220b59929 100644 --- a/src/plugins/General/statusicon/qmmptrayicon.h +++ b/src/plugins/General/statusicon/qmmptrayicon.h @@ -25,7 +25,7 @@ class QEvent; class QWheelEvent; -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 class StatusIconPopupWidget; #endif @@ -41,11 +41,13 @@ public: void setToolTip(const QString &tip); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 private: bool event(QEvent *e); void wheelEvent(QWheelEvent *e); void showToolTip(); + + bool hasToolTipEvent(); QPointer<StatusIconPopupWidget> m_popupWidget; QString m_message; #endif diff --git a/src/plugins/General/statusicon/settingsdialog.cpp b/src/plugins/General/statusicon/settingsdialog.cpp index ceab6b0dc..7754abc83 100644 --- a/src/plugins/General/statusicon/settingsdialog.cpp +++ b/src/plugins/General/statusicon/settingsdialog.cpp @@ -34,7 +34,7 @@ SettingsDialog::SettingsDialog(QWidget *parent) m_ui.messageGroupBox->setChecked(settings.value("show_message",false).toBool()); m_ui.messageDelaySpinBox->setValue(settings.value("message_delay", 2000).toInt()); m_ui.niceTooltipGroupBox->setChecked(settings.value("show_tooltip", true).toBool()); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 m_ui.niceTooltipDelaySpinBox->setValue(settings.value("tooltip_delay",2000).toInt()); m_ui.transparencySlider->setValue(settings.value("tooltip_transparency",0).toInt()); m_ui.coverSizeSlider->setValue(settings.value("tooltip_cover_size", 100).toInt()); @@ -64,7 +64,7 @@ void SettingsDialog::accept() settings.setValue("use_standard_icons", m_ui.standardIconsCheckBox->isChecked()); settings.setValue("show_tooltip", m_ui.niceTooltipGroupBox->isChecked()); settings.setValue("split_file_name", m_ui.niceTooltipSplitCheckBox->isChecked()); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 settings.setValue("tooltip_delay", m_ui.niceTooltipDelaySpinBox->value()); settings.setValue("tooltip_transparency", m_ui.transparencySlider->value()); settings.setValue("tooltip_cover_size", m_ui.coverSizeSlider->value()); diff --git a/src/plugins/General/statusicon/statusicon.cpp b/src/plugins/General/statusicon/statusicon.cpp index a34fa133c..f33e395e8 100644 --- a/src/plugins/General/statusicon/statusicon.cpp +++ b/src/plugins/General/statusicon/statusicon.cpp @@ -48,7 +48,7 @@ StatusIcon::StatusIcon(QObject *parent) : QObject(parent) m_useStandardIcons = settings.value("use_standard_icons",false).toBool(); m_showToolTip = settings.value("show_tooltip",true).toBool(); m_splitFileName = settings.value("split_file_name",true).toBool(); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 m_toolTipTemplate = settings.value("tooltip_template", DEFAULT_TEMPLATE).toString(); #else m_toolTipTemplate = "%p%if(%p&%t, - ,)%t"; diff --git a/src/plugins/General/statusicon/statusiconfactory.cpp b/src/plugins/General/statusicon/statusiconfactory.cpp index 5c1f094fe..bdc5acb84 100644 --- a/src/plugins/General/statusicon/statusiconfactory.cpp +++ b/src/plugins/General/statusicon/statusiconfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "statusicon.h" #include "settingsdialog.h" #include "statusiconfactory.h" @@ -62,5 +61,3 @@ QTranslator *StatusIconFactory::createTranslator(QObject *parent) translator->load(QString(":/statusicon_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(statusicon, StatusIconFactory) diff --git a/src/plugins/General/statusicon/statusiconfactory.h b/src/plugins/General/statusicon/statusiconfactory.h index a310cfafe..af6f2ae92 100644 --- a/src/plugins/General/statusicon/statusiconfactory.h +++ b/src/plugins/General/statusicon/statusiconfactory.h @@ -33,6 +33,7 @@ class StatusIconFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/statusicon/statusiconpopupwidget.cpp b/src/plugins/General/statusicon/statusiconpopupwidget.cpp index e4442d742..11439ecd6 100644 --- a/src/plugins/General/statusicon/statusiconpopupwidget.cpp +++ b/src/plugins/General/statusicon/statusiconpopupwidget.cpp @@ -21,8 +21,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QtGlobal> -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 #include <QHBoxLayout> #include <QVBoxLayout> diff --git a/src/plugins/General/statusicon/statusiconpopupwidget.h b/src/plugins/General/statusicon/statusiconpopupwidget.h index a239ce162..7a9aaa7a4 100644 --- a/src/plugins/General/statusicon/statusiconpopupwidget.h +++ b/src/plugins/General/statusicon/statusiconpopupwidget.h @@ -24,8 +24,8 @@ #ifndef STATUSICONPOPUPWIDGET_H #define STATUSICONPOPUPWIDGET_H -#include <QtGlobal> -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 + #include <QFrame> #include <QWidget> #include <QProgressBar> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_bg.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_bg.ts index 9ee5bfcb6..e576209c8 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_bg.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_bg.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_cs.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_cs.ts index c9fe8efd5..afc2c683e 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_cs.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_cs.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Modul stavové ikony</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>O modulu stavové ikony</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Modul stavové ikony Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Autoři:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_de.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_de.ts index a01e35267..0fe8f8e85 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_de.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_de.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Statussymbolmodul</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Über Statussymbolmodul</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Qmmp Statussymbolmodul</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Autor:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_el.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_el.ts index 27a29808d..61e546063 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_el.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_el.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Πρόσθετου εικονιδίου κατάστασης</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Σχετικά με το πρόσθετο εικονιδίου κατάστασης</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Qmmp πρόσθετο εικονιδίου κατάστασης</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Γράφτηκε από:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_en.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_en.ts index c22bf1afb..5065f2bf4 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_en.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_en.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_es.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_es.ts index 3f728ed63..140207868 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_es.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_es.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Módulo de icono de estado</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Acerca del módulo de icono de estado</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Módulo de icono de estado para Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Escrito por:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_fi.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_fi.ts index 4fd5c17bb..24809a3de 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_fi.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_fi.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Toteutus:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_fr.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_fr.ts index b03304fbb..f72a4caac 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_fr.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_fr.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Greffon d'icône de statut</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>À propos du greffon d'icône de statut</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Greffon d'icône de statut pour Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Écrit par :</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_gl_ES.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_gl_ES.ts index 517f4cfc5..dc2de44d8 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_gl_ES.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_gl_ES.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Engadido icona de estado</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Sobre o engadido icona de estado</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Engadido icona de estado de Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Escrito por:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_he.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_he.ts index 732a5e3a9..34d7ecbb1 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_he.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_he.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>תוסף סמל מצב</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>אודות תוסף סמל מצב</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>תוסף סמל מצב של Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>חובר על ידי:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_hu.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_hu.ts index 7e84580b5..373d5ae25 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_hu.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_hu.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_id.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_id.ts index 976a861c0..b01db32b7 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_id.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_id.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Plugin Icon Status</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Tentang Plugin Icon Status</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Plugin Icon Status Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Ditulis oleh:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_it.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_it.ts index 19ed588c5..dc7359602 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_it.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_it.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Modulo icona di stato</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Modulo icona di stato per Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Autori:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Info sul modulo icona di stato</translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_ja.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_ja.ts index 0f326fb12..c9858a9d5 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_ja.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_ja.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>状況アイコンプラグイン</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>状況アイコンプラグインについて</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>QMMP 状況アイコンプラグイン</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>制作:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_kk.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_kk.ts index b3e63ad8a..69039ab74 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_kk.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_kk.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_lt.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_lt.ts index d152eb395..5977067a7 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_lt.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_lt.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Status Icon įskiepis</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Apie Status Icon įskiepį</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Qmmp Status Icon įskiepis</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Sukūrė:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_nl.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_nl.ts index 416d3e74d..1dbf43229 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_nl.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_nl.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Status Icoon Module</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Status Icoon Module voor Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Auteur:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Over de Status Icoon Module</translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_pl_PL.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_pl_PL.ts index 6350a8f0c..6b247993b 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_pl_PL.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_pl_PL.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Wtyczka Ikona Statusu</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>O Wtyczce Ikona Statusu</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Wtyczka Ikona Statusu dla Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Napisana przez:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_pt.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_pt.ts index 7e00dafbb..b51f16523 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_pt.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_pt.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Suplemento Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Sobre o suplemento Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Suplemento QMMP Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Desenvolvido por:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_pt_BR.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_pt_BR.ts index d172f9b70..0b3cd43c6 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_pt_BR.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_pt_BR.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Plugin Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Sobre o plugin Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Plugin QMMP Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Desenvolvido por:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_ru.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_ru.ts index f1d7d015d..3733bf591 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_ru.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_ru.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Модуль Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>О модуле Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Модуль Status Icon для Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Разработчики:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_sk.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_sk.ts index b76b875f5..83df8a0f6 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_sk.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_sk.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_sr_BA.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_sr_BA.ts index 25cedc9cb..9060d98cf 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_sr_BA.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_sr_BA.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Икона системске палете</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>О прикључку за икону системске палете</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Кумп икона системске палете</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Аутори:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_sr_RS.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_sr_RS.ts index 8b40d5c7c..0b98dd48c 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_sr_RS.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_sr_RS.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Икона системске палете</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>О прикључку за икону системске палете</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Кумп икона системске палете</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Аутори:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_tr.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_tr.ts index 359071d93..02069ec5d 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_tr.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_tr.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Durum Simgesi Eklentisi</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Durum Simgesi Eklentisi Hakkında</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Qmmp Durum Simgesi Eklentisi</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_uk_UA.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_uk_UA.ts index 06e63510d..2ad22b898 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_uk_UA.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_uk_UA.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>Модуль Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>Про модуль Status Icon</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Модуль Status Icon для Qmmp</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>Розробники:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation>Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_zh_CN.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_zh_CN.ts index 31fe6f16e..a70c2d9d3 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_zh_CN.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_zh_CN.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>状态图标插件</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>关于状态图标插件</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Qmmp 状态图标插件</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>作者:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation>Artur Guzik <a.guzik88@gmail.com></translation> </message> diff --git a/src/plugins/General/statusicon/translations/statusicon_plugin_zh_TW.ts b/src/plugins/General/statusicon/translations/statusicon_plugin_zh_TW.ts index 1e8245d58..644404cac 100644 --- a/src/plugins/General/statusicon/translations/statusicon_plugin_zh_TW.ts +++ b/src/plugins/General/statusicon/translations/statusicon_plugin_zh_TW.ts @@ -116,32 +116,32 @@ <context> <name>StatusIconFactory</name> <message> - <location filename="../statusiconfactory.cpp" line="31"/> + <location filename="../statusiconfactory.cpp" line="30"/> <source>Status Icon Plugin</source> <translation>狀態圖像插件</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="51"/> + <location filename="../statusiconfactory.cpp" line="50"/> <source>About Status Icon Plugin</source> <translation>關於狀態圖像插件</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="52"/> + <location filename="../statusiconfactory.cpp" line="51"/> <source>Qmmp Status Icon Plugin</source> <translation>Qmmp 狀態圖像插件</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="53"/> + <location filename="../statusiconfactory.cpp" line="52"/> <source>Written by:</source> <translation>作者:</translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="54"/> + <location filename="../statusiconfactory.cpp" line="53"/> <source>Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../statusiconfactory.cpp" line="55"/> + <location filename="../statusiconfactory.cpp" line="54"/> <source>Artur Guzik <a.guzik88@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/streambrowser/CMakeLists.txt b/src/plugins/General/streambrowser/CMakeLists.txt index a63b00e60..064525673 100644 --- a/src/plugins/General/streambrowser/CMakeLists.txt +++ b/src/plugins/General/streambrowser/CMakeLists.txt @@ -1,26 +1,7 @@ project(libstreambrowser) - -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -35,7 +16,7 @@ SET(libstreambrowser_SRCS SET(libstreambrowser_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libstreambrowser_RCC_SRCS ${libstreambrowser_RCCS}) +QT5_ADD_RESOURCES(libstreambrowser_RCC_SRCS ${libstreambrowser_RCCS}) # user interface @@ -43,12 +24,12 @@ SET(libstreambrowser_UIS streamwindow.ui ) -QT4_WRAP_UI(libstreambrowser_UIS_H ${libstreambrowser_UIS}) +QT5_WRAP_UI(libstreambrowser_UIS_H ${libstreambrowser_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(streambrowser MODULE ${libstreambrowser_SRCS} ${libstreambrowser_UIS_H} ${libstreambrowser_RCC_SRCS}) add_dependencies(streambrowser qmmpui) -target_link_libraries(streambrowser ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(streambrowser Qt5::Widgets Qt5::Network -lqmmpui -lqmmp) install(TARGETS streambrowser DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/streambrowser/streambrowserfactory.cpp b/src/plugins/General/streambrowser/streambrowserfactory.cpp index 182e3d414..8c4b53fbe 100644 --- a/src/plugins/General/streambrowser/streambrowserfactory.cpp +++ b/src/plugins/General/streambrowser/streambrowserfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2012-2016 by Ilya Kotov * + * Copyright (C) 2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "streambrowser.h" #include "streambrowserfactory.h" @@ -61,5 +60,3 @@ QTranslator *StreamBrowserFactory::createTranslator(QObject *parent) translator->load(QString(":/streambrowser_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(streambrowser, StreamBrowserFactory) diff --git a/src/plugins/General/streambrowser/streambrowserfactory.h b/src/plugins/General/streambrowser/streambrowserfactory.h index aac26dd09..fcaba574c 100644 --- a/src/plugins/General/streambrowser/streambrowserfactory.h +++ b/src/plugins/General/streambrowser/streambrowserfactory.h @@ -33,6 +33,7 @@ class StreamBrowserFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/streambrowser/streamwindow.cpp b/src/plugins/General/streambrowser/streamwindow.cpp index 7153abe48..c3132ed30 100644 --- a/src/plugins/General/streambrowser/streamwindow.cpp +++ b/src/plugins/General/streambrowser/streamwindow.cpp @@ -31,6 +31,7 @@ #include <QMenu> #include <QXmlStreamReader> #include <QXmlStreamWriter> +#include <algorithm> #include <qmmp/qmmpsettings.h> #include <qmmp/qmmp.h> #include <qmmpui/playlistmanager.h> @@ -59,7 +60,7 @@ StreamWindow::StreamWindow(QWidget *parent) : QWidget(parent) //icecast table ui.icecastTableView->setModel(m_iceCastFilterModel); ui.icecastTableView->verticalHeader()->setDefaultSectionSize(fontMetrics().height() + 3); - ui.icecastTableView->verticalHeader()->setResizeMode(QHeaderView::Fixed); + ui.icecastTableView->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); ui.icecastTableView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui.icecastTableView->setContextMenuPolicy(Qt::CustomContextMenu); connect(ui.icecastTableView, SIGNAL(customContextMenuRequested(QPoint)), @@ -77,7 +78,7 @@ StreamWindow::StreamWindow(QWidget *parent) : QWidget(parent) //favorites table ui.favoritesTableView->setModel(m_favoritesFilterModel); ui.favoritesTableView->verticalHeader()->setDefaultSectionSize(fontMetrics().height() + 3); - ui.favoritesTableView->verticalHeader()->setResizeMode(QHeaderView::Fixed); + ui.favoritesTableView->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed); ui.favoritesTableView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui.favoritesTableView->setContextMenuPolicy(Qt::CustomContextMenu); connect(ui.favoritesTableView, SIGNAL(customContextMenuRequested(QPoint)), @@ -231,7 +232,7 @@ void StreamWindow::removeFromFavorites() { rows_to_remove.append(m_favoritesFilterModel->mapToSource(index).row()); } - qStableSort(rows_to_remove); + std::stable_sort(rows_to_remove.begin(), rows_to_remove.end()); int prev_row = -1; for(int i = rows_to_remove.count() - 1; i >= 0; i -= 1 ) { diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts index e5c53d93b..4cc86218e 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_bg.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts index 7f0910d7f..e03567c12 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_cs.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Modul prohlížeče proudů</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>O modulu prohlížeče proudů</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Modul Qmmp na prohlížení proudů</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Tento modul umožňuje přidat proud z adresáře proudů IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>Aktualizovat</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Název</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Žánr</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Datový tok</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formát</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>Přidat k &oblíbeným</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>Přidat do &seznamu</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>Odst&ranit</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Hotovo</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Chyba</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Příjímám</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts index 846526a62..d5d3f4019 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_de.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Stream-Browser-Modul</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Über Stream-Browser-Modul</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Qmmp Stream-Browser-Modul</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Dieses Modul ermöglicht das Hinzufügen von Streams aus dem IceCast-Streamverzeichnis</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Aktualisieren</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Genre</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Format</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>Zu &den Favoriten hinzufügen</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>Zu&r Wiedergabeliste hinzufügen</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Entfernen</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Fertig</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Daten werden empfangen</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts index 564286b6f..d4bb33bba 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_el.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Πρόσθετο περιηγητή ροών</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Σχετικά με το πρόσθετο περιηγητή ροών</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Qmmp πρόσθετο περιηγητή ροών</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Αυτό το πρόσθετο επιτρέπει την προσθήκη μιας ροής από τον κατάλογο ροών του IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Ενημέρωση</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Όνομα</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Είδος</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Ρυθμός bit</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Μορφή</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Προσθήκη στα προτιμώμενα</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>Προσθήκη στη &λίστα αναπαραγωγής</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Αφαίρεση</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Έγινε</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Σφάλμα</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Γίνεται λήψη</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts index 63aaea510..597d77e9a 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_en.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts index eb8b3d229..fe64c5521 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_es.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Módulo Navegador de Flujos</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Acerca de el Módulo Navegador de Flujos de Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Módulo Navegador de Flujos de Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Este módulo permite a uno añadir flujos desde directorio de flujos de IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Actualizar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nombre</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Género</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Tasa de bits</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formato</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Añadir a favoritos</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Añadir a lista de reproducción</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>Quita&r</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Hecho</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Recibiendo</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts index d0450093c..cbda1558d 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fi.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Päivitä</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nimi</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Tyylilaji</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Bittinopeus</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Lisää suosikkeihin</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Lisää soittolistaan</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>Poi&sta</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Valmis</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Virhe</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Vastaanotetaan</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts index ae6ec52ca..5292fec47 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_fr.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Greffon de navigation de flux</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>À propos du greffon de navigation de flux</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Greffon de navigation de flux pour Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Ce greffon permet d'ajouter un flux depuis un annuaire de flux IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Mettre à jour</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nom</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Genre</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Débit binaire</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Format</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Ajouter aux favoris</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>Ajouter à la liste</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Enlever</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Fait</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Erreur</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Réception</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts index 4146f450c..033d6732b 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_gl_ES.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Engadido de buscador de fluxos</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Sobre o engadido buscador de fluxos</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Engadido buscador de fluxos de Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Este engadido permite engadir fluxos dende o directorio de fluxos de IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>Actualizar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nome</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Xénero</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Taxa de bits</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formato</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Engadir a favoritos</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Engadir á lista de reprodución</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Eliminar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Feito</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Recibindo</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts index b10cc7858..61bff4b74 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_he.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>תוסף Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>אודות תוסף Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>תוסף Stream Browser של Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>תוסף זה מתיר לך להוסיף זרם מתוך ספריית זרם IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>עדכן</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>שם</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>ז׳אנר</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>שיעור סיביות</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>פורמט</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>הוסף אל &מועדפים</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>הוסף אל &רשימת נגינה</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>הס&ר</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>סיום</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>שגיאה</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>קבלה</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts index 8ab7dcc29..0d80b659f 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_hu.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts index 25295cbf7..1b71aa323 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_id.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Plugin Browser Stream</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Tentang Browser Stream</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Plugin Browser Stream Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Plugin ini membolehkan untuk menambahkan stream dari direktori stream IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>Perbarui</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nama</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Genre</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Format</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Tambah ke favorit</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Tambah ke daftarmain</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Buang</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Kelar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Galat</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Menerima</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts index f0fa53004..61f7533f8 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_it.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished">Ricezione</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts index a543bcab9..5ef9726b1 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ja.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>ストリームブラウザープラグイン</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>ストリームブラウザープラグインについて</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>QMMP ストリームブラウザープラグイン</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>このプラグインで IceCast ストリームディレクトリーからストリームの取り込みが可能になります</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>更新</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>局名</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>ジャンル</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>ビットレート</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>形式</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>お気にいりに追加(&A)</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>プレイリストに追加(&P)</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>削除(&R)</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>完了</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>事故</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>取得中</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts index 7fd931b9f..1a3f72c0a 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_kk.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts index 200a88d5d..eb1062f5e 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_lt.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Srautų naršyklės įskiepis</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Apie srautų naršyklės įskiepį</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Qmmp srautų naršyklės įskiepis</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Šis įskiepis leidžia įdėti IceCast srautus į grojaraštį</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Atnaujinti</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Pavadinimas</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Žanras</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Kokybė</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formatas</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Įkelti į mėgstamus</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Įkelti į grojaraštį </translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Pašalinti</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Atlikta</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Klaida</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Gaunu</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts index 4310ffd34..62ad67421 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_nl.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Radio Navigator Module</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Over de Radio Navigator Module</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Radio Navigator Module voor Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Deze module faciliteert in het toevoegen van radiostations uit de IceCast verzameling</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Bijwerken</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Naam</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation></translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Bitsnelheid</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formaat</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Voeg toe aan favorieten</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Voeg toe aan afspeellijst</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Verwijder</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Klaar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Fout</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Bezig met ontvangen</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts index 28b580aec..8b7f74c82 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pl_PL.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Wtyczka Przeglądarka strumieni</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>O wtyczce Przeglądarka strumieni</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Wtyczka Qmmp Przeglądarka strumieni</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Ta wtyczka pozwala dodawać strumienie z katalogu strumieni IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>Aktualizuj</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nazwa</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Gatunek</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Przepływność</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Format</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Dodaj do ulubionych</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Dodaj do listy odtwarzania</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Usuń</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Gotowe</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Błąd</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Pobieranie</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts index 29a2fe263..04a186d2b 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Suplemento Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Sobre o suplemento Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Suplemento Qmmp Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Este suplemento permite a adição de emissões do diretório Icecast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Atualizar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nome</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Género</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formato</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Adicionar às favoritas</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>A&dicionar à lista de reprodução</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Remover</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Terminado</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Receção</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts index c7ff4bd4c..26b53599c 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_pt_BR.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Plugin Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Sobre o plugin Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Plugin Qmmp Stream Browser</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Este plugin permite a adição de transmissões do diretório Icecast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>Atualizar</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Nome</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Gênero</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Formato</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Adicionar às favoritas</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>A&dicionar à lista de reprodução</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Remover</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Terminado</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Erro</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Recebendo</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts index f2810c7d2..3ee46de9f 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_ru.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Модуль обзора потоков</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>О модуле обзора потоков</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Модуль обзора потоков для Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Этот модуль предназначен для добавления потоков из директории IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Обновить</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Имя</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Жанр</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Битовая частота</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Формат</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Добавить в избранное</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Добавить в список воспроизведения</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Удалить</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Готово</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Получение</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts index 154eaa945..36cbdcbbd 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sk.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts index a92e27eac..924cb4ea8 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_BA.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Прегледач токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>О прегледачу токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Кумп прегледач токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Функција додавања токова са АјсКаст директоријума токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Ажурирај</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>име</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>жанр</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>битски проток</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>формат</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>Додај у &омиљене</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>Додај у &листу нумера</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Уклони</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Завршено</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Грешка</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Примање</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts index 2ca3fee7f..cf25e7ee2 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_sr_RS.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Прегледач токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>О прегледачу токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Кумп прегледач токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Функција додавања токова са АјсКаст директоријума токова</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Ажурирај</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>име</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>жанр</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>битски проток</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>формат</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>Додај у &омиљене</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>Додај у &листу нумера</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Уклони</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Завршено</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Грешка</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Примање</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts index 4a403e653..1d27f5354 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_tr.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../streamwindow.cpp" line="52"/> <location filename="../streamwindow.cpp" line="70"/> - <source>Genre</source> + <source>Name</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="53"/> <location filename="../streamwindow.cpp" line="71"/> - <source>Bitrate</source> + <source>Genre</source> <translation type="unfinished"></translation> </message> <message> <location filename="../streamwindow.cpp" line="54"/> <location filename="../streamwindow.cpp" line="72"/> + <source>Bitrate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation type="unfinished">Alınıyor</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts index c768227dc..77e36a667 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_uk_UA.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>Модуль огляду потоків</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>Про модуль огляду потоків</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Модуль огляду потоків для Qmmp</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>Цей модуль дозволяє додавати потоки з каталогу IceCast</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation>Оновити</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>Ім'я</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>Жанр</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>Бітрейт</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>Формат</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>&Додати до вибраного</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>&Додати до списку</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>&Видалити</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>Готово</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>Помилка</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>Отримання</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts index b8509bbf7..93cde669d 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_CN.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation>媒体流浏览器插件</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation>关于媒体流浏览器插件</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation>Qmmp媒体流浏览器插件</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation>此插件允许从IceCast媒体流文件夹向Qmmp中添加媒体流</translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -75,57 +75,57 @@ <translation>更新</translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>名称</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>风格</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>格式</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation>添加到最爱清单(&A)</translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation>添加到播放列表中(&A)</translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation>移除(&R)</translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>完成</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>错误</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>接收中</translation> </message> diff --git a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts index fa942d7c8..15ca48b85 100644 --- a/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts +++ b/src/plugins/General/streambrowser/translations/streambrowser_plugin_zh_TW.ts @@ -17,27 +17,27 @@ <context> <name>StreamBrowserFactory</name> <message> - <location filename="../streambrowserfactory.cpp" line="30"/> + <location filename="../streambrowserfactory.cpp" line="29"/> <source>Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="51"/> + <location filename="../streambrowserfactory.cpp" line="50"/> <source>About Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="52"/> + <location filename="../streambrowserfactory.cpp" line="51"/> <source>Qmmp Stream Browser Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="53"/> + <location filename="../streambrowserfactory.cpp" line="52"/> <source>This plugin allows one to add stream from IceCast stream directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streambrowserfactory.cpp" line="54"/> + <location filename="../streambrowserfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -75,57 +75,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="51"/> - <location filename="../streamwindow.cpp" line="69"/> + <location filename="../streamwindow.cpp" line="52"/> + <location filename="../streamwindow.cpp" line="70"/> <source>Name</source> <translation>名稱</translation> </message> <message> - <location filename="../streamwindow.cpp" line="52"/> - <location filename="../streamwindow.cpp" line="70"/> + <location filename="../streamwindow.cpp" line="53"/> + <location filename="../streamwindow.cpp" line="71"/> <source>Genre</source> <translation>流派</translation> </message> <message> - <location filename="../streamwindow.cpp" line="53"/> - <location filename="../streamwindow.cpp" line="71"/> + <location filename="../streamwindow.cpp" line="54"/> + <location filename="../streamwindow.cpp" line="72"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../streamwindow.cpp" line="54"/> - <location filename="../streamwindow.cpp" line="72"/> + <location filename="../streamwindow.cpp" line="55"/> + <location filename="../streamwindow.cpp" line="73"/> <source>Format</source> <translation>格式</translation> </message> <message> - <location filename="../streamwindow.cpp" line="125"/> + <location filename="../streamwindow.cpp" line="126"/> <source>&Add to favorites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="126"/> + <location filename="../streamwindow.cpp" line="127"/> <source>&Add to playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="131"/> + <location filename="../streamwindow.cpp" line="132"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../streamwindow.cpp" line="141"/> + <location filename="../streamwindow.cpp" line="142"/> <source>Done</source> <translation>完成</translation> </message> <message> - <location filename="../streamwindow.cpp" line="144"/> <location filename="../streamwindow.cpp" line="145"/> + <location filename="../streamwindow.cpp" line="146"/> <source>Error</source> <translation>錯誤</translation> </message> <message> - <location filename="../streamwindow.cpp" line="164"/> + <location filename="../streamwindow.cpp" line="165"/> <source>Receiving</source> <translation>接受</translation> </message> diff --git a/src/plugins/General/trackchange/CMakeLists.txt b/src/plugins/General/trackchange/CMakeLists.txt index bf52689a7..d47034de3 100644 --- a/src/plugins/General/trackchange/CMakeLists.txt +++ b/src/plugins/General/trackchange/CMakeLists.txt @@ -1,22 +1,7 @@ project(libtrackchange) -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -31,19 +16,19 @@ SET(libtrackchange_SRCS SET(libtrackchange_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libtrackchange_RCC_SRCS ${libtrackchange_RCCS}) +QT5_ADD_RESOURCES(libtrackchange_RCC_SRCS ${libtrackchange_RCCS}) # user interface SET(libtrackchange_UIS settingsdialog.ui ) -QT4_WRAP_UI(libtrackchange_UIS_H ${libtrackchange_UIS}) +QT5_WRAP_UI(libtrackchange_UIS_H ${libtrackchange_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(trackchange MODULE ${libtrackchange_SRCS} ${libtrackchange_UIS_H} ${libtrackchange_RCC_SRCS}) add_dependencies(trackchange qmmpui) -target_link_libraries(trackchange ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(trackchange Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS trackchange DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/trackchange/trackchange.pro b/src/plugins/General/trackchange/trackchange.pro index 9dba6c5b9..f5b0264e1 100644 --- a/src/plugins/General/trackchange/trackchange.pro +++ b/src/plugins/General/trackchange/trackchange.pro @@ -1,22 +1,29 @@ include(../../plugins.pri) -TARGET = $$PLUGINS_PREFIX/General/trackchange +CONFIG += warn_on \ +plugin +TARGET =$$PLUGINS_PREFIX/General/trackchange +unix : QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libtrackchange.so + + +TEMPLATE = lib +unix : LIBS += -lqmmpui -lqmmp + +win32 : LIBS += -lqmmpui0 -lqmmp0 + +RESOURCES = translations/translations.qrc +unix { + target.path = $$LIB_DIR/qmmp/General + INSTALLS += target +} HEADERS += trackchangefactory.h \ trackchange.h \ settingsdialog.h +win32 : HEADERS += ../../../../src/qmmpui/general.h SOURCES += trackchangefactory.cpp \ trackchange.cpp \ settingsdialog.cpp FORMS += settingsdialog.ui - -RESOURCES = translations/translations.qrc - -LIBS += $$QMMPUI_LIB - -unix { - target.path = $$LIB_DIR/qmmp/General - INSTALLS += target -} diff --git a/src/plugins/General/trackchange/trackchangefactory.cpp b/src/plugins/General/trackchange/trackchangefactory.cpp index af8f125b7..dcbf6000b 100644 --- a/src/plugins/General/trackchange/trackchangefactory.cpp +++ b/src/plugins/General/trackchange/trackchangefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2013-2016 by Ilya Kotov * + * Copyright (C) 2013 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "trackchange.h" #include "settingsdialog.h" #include "trackchangefactory.h" @@ -61,5 +60,3 @@ QTranslator *TrackChangeFactory::createTranslator(QObject *parent) translator->load(QString(":/trackchange_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(trackchange, TrackChangeFactory) diff --git a/src/plugins/General/trackchange/trackchangefactory.h b/src/plugins/General/trackchange/trackchangefactory.h index d42371431..482d973b6 100644 --- a/src/plugins/General/trackchange/trackchangefactory.h +++ b/src/plugins/General/trackchange/trackchangefactory.h @@ -32,6 +32,7 @@ class TrackChangeFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_bg.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_bg.ts index 03ffd67ef..aa475db3d 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_bg.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_bg.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_cs.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_cs.ts index 64ac247e8..8ae1de127 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_cs.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_cs.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Modul změny stopy</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>O modulu změny stopy</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Modul změny stopy Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Tento modul při změně stopy spustí externí příkaz</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_de.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_de.ts index a878776f5..af2573465 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_de.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_de.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Titeländerungsmodul</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Über Titeländerungsmodul</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Qmmp Titeländerungsmodul</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Dieses Modul führt einen externen Befehl aus, wenn der aktuelle Titel geändert wird</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_el.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_el.ts index 50cc6ce03..3d45bd384 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_el.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_el.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Πρόσθετο αλλαγής κομματιού</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Σχετικά με το πρόσθετο αλλαγής κομματιού</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Qmmp πρόσθετο αλλαγής κομματιού</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Αυτό το πρόσθετο εκτελεί μια εξωτερική εντολή κατά την αλλαγή του τρέχοντος κομματιού</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_en.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_en.ts index 726b86ba6..d47c395b4 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_en.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_en.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_es.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_es.ts index cb8e1c517..360cbe778 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_es.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_es.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Módulo de Cambio de Pista</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Acerca del Módulo de Cambio de Pista</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Módulo de Cambio de Pista de Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Este módulo ejecuta programas externos de consola cuando la pista actual cambia</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_fi.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_fi.ts index 209e65c35..3a86905a8 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_fi.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_fi.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_fr.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_fr.ts index 64a1d9171..eb9bae4b4 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_fr.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_fr.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Greffon de suivi de changements</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>À propos du greffon de suivi de changements</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Greffon de suivi de changements pour Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Ce greffon exécute des commandes externes quand le morceau courant change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_gl_ES.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_gl_ES.ts index c23941169..0400b2750 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_gl_ES.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_gl_ES.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Engadido de Cambio de Pista</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Sobre o engadido Cambio de Pista</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Engadido Cambio de Pista de Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Este engadido executa comandos externos cando se cambia de pista</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_he.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_he.ts index 3314fbe4f..d7d491eb2 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_he.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_he.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>תוסף שינוי רצועה</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>אודות תוסף שינוי רצועה</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>תוסף שינוי רצועה של Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>תוסף זה מבצע פקודה חיצונית כאשר רצועה נוכחית משתנה</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_hu.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_hu.ts index a3fef3dac..08a0e2d42 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_hu.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_hu.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_id.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_id.ts index 7b3b3bed9..06910706f 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_id.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_id.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Plugin Perubahan Track</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Tentang Plugin Perubahan Track</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Plugin Perubahan Track Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Plugin ini mengeksekusi perintah eksternal ketika track saat ini telah diubah</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_it.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_it.ts index e2f50ec20..e423eaf7f 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_it.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_it.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_ja.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_ja.ts index 0e4d5cdf3..bab952c29 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_ja.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_ja.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>トラック変化プラグイン</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>トラック変化プラグインについて</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>QMMP トラック変化プラグイン</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>このプラグインはトラック (演目) が切り換わる際に外部コマンドを実行します。</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_kk.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_kk.ts index 1a86299e0..771a13910 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_kk.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_kk.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_lt.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_lt.ts index 748f8614d..22f763aa9 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_lt.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_lt.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Takelio Pasikeitimo Įskiepis</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Apie Takelio Pasikeitimo Įskiepį</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Qmmp Takelio Pasikeitimo Įskiepis</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Šis įskiepis įvykdo išorinę komandą kai pasikeičia dabartinis takelis</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė:Ilya Kotov <forkotov02@ya.ru> </translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_nl.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_nl.ts index 7f643440d..94c0cb3f0 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_nl.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_nl.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_pl_PL.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_pl_PL.ts index 0c92824eb..7f540a135 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_pl_PL.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_pl_PL.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Wtyczka Zmiany Utworu</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>O wtyczce Zmiany Utworu</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Wtyczka Zmiany Utworu dla Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Uruchamia zewnętrzne polecenia przy zmianie utworu</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_pt.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_pt.ts index 2193ad270..fe91b1c95 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_pt.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_pt.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Suplemento Track Change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Sobre o suplemento Track Change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Suplemento Qmmp Track Change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Este suplemento executa comandos externos se a faixa em reprodução for alterada</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_pt_BR.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_pt_BR.ts index 12419d42b..115707c42 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_pt_BR.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_pt_BR.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Plugin Track Change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Sobre o plugin Track Change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Plugin Qmmp Track Change</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Este plugin executa comandos externos se a faixa em reprodução for alterada</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_ru.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_ru.ts index 4e7411de2..f81fde9da 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_ru.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_ru.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Модуль смены трека</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>О модуле смены трека</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Модуль смены трека для Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Данный модуль предназначен для запуска внешней команды при смене текущего трека</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_sk.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_sk.ts index ae72d4185..107ab15a4 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_sk.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_sk.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_sr_BA.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_sr_BA.ts index 9f0948fae..629d7260c 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_sr_BA.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_sr_BA.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Измјена нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>О прикључку измјене нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Кумп прикључак измјене нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Извршава спољашњу наредбу при измјени нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_sr_RS.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_sr_RS.ts index 6c0341e2e..4a1ecb1b5 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_sr_RS.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_sr_RS.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Измена нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>О прикључку измене нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Кумп прикључак измене нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Извршава спољашњу наредбу при измени нумере</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_tr.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_tr.ts index e4e65e754..40c45febb 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_tr.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_tr.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_uk_UA.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_uk_UA.ts index 6a8864031..b094a22bf 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_uk_UA.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_uk_UA.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>Модуль зміни треку</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>Про модуль зміни треку</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Модуль зміни треку для Qmmp</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>Цей модуль призначено для запуску зовнішньої команди при зміні поточного треку</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_zh_CN.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_zh_CN.ts index 34851a9f0..8732eb16e 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_zh_CN.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_zh_CN.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation>曲目变更插件</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation>关于曲目变更插件</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation>Qmmp曲目变更插件</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation>该插件允许在当前曲目发生变化时执行外部命令</translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/trackchange/translations/trackchange_plugin_zh_TW.ts b/src/plugins/General/trackchange/translations/trackchange_plugin_zh_TW.ts index c6dec1c38..3f0b9e8ac 100644 --- a/src/plugins/General/trackchange/translations/trackchange_plugin_zh_TW.ts +++ b/src/plugins/General/trackchange/translations/trackchange_plugin_zh_TW.ts @@ -40,27 +40,27 @@ <context> <name>TrackChangeFactory</name> <message> - <location filename="../trackchangefactory.cpp" line="31"/> + <location filename="../trackchangefactory.cpp" line="30"/> <source>Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="51"/> + <location filename="../trackchangefactory.cpp" line="50"/> <source>About Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="52"/> + <location filename="../trackchangefactory.cpp" line="51"/> <source>Qmmp Track Change Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="53"/> + <location filename="../trackchangefactory.cpp" line="52"/> <source>This plugin executes external command when current track is changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../trackchangefactory.cpp" line="54"/> + <location filename="../trackchangefactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks/CMakeLists.txt b/src/plugins/General/udisks/CMakeLists.txt deleted file mode 100644 index d1538c184..000000000 --- a/src/plugins/General/udisks/CMakeLists.txt +++ /dev/null @@ -1,51 +0,0 @@ -project(libudisks) - - -SET (QT_USE_QTDBUS TRUE) - -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -# libqmmpui & libqmmp -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) -link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) -link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) - -SET(libudisks_SRCS - udisksfactory.cpp - udisksmanager.cpp - udisksplugin.cpp - udisksdevice.cpp - settingsdialog.cpp -) - -SET(libudisks_RCCS translations/translations.qrc) - -QT4_ADD_RESOURCES(libudisks_RCC_SRCS ${libudisks_RCCS}) - -# user interface - -SET(libudisks_UIS - settingsdialog.ui -) - -QT4_WRAP_UI(libudisks_UIS_H ${libudisks_UIS}) -# Don't forget to include output directory, otherwise -# the UI file won't be wrapped! -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -ADD_LIBRARY(udisks MODULE ${libudisks_SRCS} ${libudisks_UIS_H} ${libudisks_RCC_SRCS}) -add_dependencies(udisks qmmpui) -target_link_libraries(udisks ${QT_LIBRARIES} qmmpui libqmmp) -install(TARGETS udisks DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/udisks/settingsdialog.cpp b/src/plugins/General/udisks/settingsdialog.cpp deleted file mode 100644 index 1d9b792a8..000000000 --- a/src/plugins/General/udisks/settingsdialog.cpp +++ /dev/null @@ -1,58 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#include <QTextCodec> -#include <QSettings> - -#include <qmmp/qmmp.h> - -#include "settingsdialog.h" - -SettingsDialog::SettingsDialog(QWidget *parent) - : QDialog(parent) -{ - ui.setupUi(this); - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.beginGroup("UDisks"); - ui.cdGroupBox->setChecked(settings.value("cda", true).toBool()); - ui.addTracksCheckBox->setChecked(settings.value("add_tracks", false).toBool()); - ui.removeTracksCheckBox->setChecked(settings.value("remove_tracks", false).toBool()); - ui.removableGroupBox->setChecked(settings.value("removable", true).toBool()); - ui.addFilesCheckBox->setChecked(settings.value("add_files", false).toBool()); - ui.removeFilesCheckBox->setChecked(settings.value("remove_files", false).toBool()); - settings.endGroup(); -} - - -SettingsDialog::~SettingsDialog() -{} - -void SettingsDialog::accept() -{ - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.beginGroup("UDisks"); - settings.setValue("cda", ui.cdGroupBox->isChecked()); - settings.setValue("add_tracks", ui.addTracksCheckBox->isChecked()); - settings.setValue("remove_tracks", ui.removeTracksCheckBox->isChecked()); - settings.setValue("removable", ui.removableGroupBox->isChecked()); - settings.setValue("add_files", ui.addFilesCheckBox->isChecked()); - settings.setValue("remove_files", ui.removeFilesCheckBox->isChecked()); - settings.endGroup(); - QDialog::accept(); -} diff --git a/src/plugins/General/udisks/settingsdialog.h b/src/plugins/General/udisks/settingsdialog.h deleted file mode 100644 index 5e7aa64c2..000000000 --- a/src/plugins/General/udisks/settingsdialog.h +++ /dev/null @@ -1,46 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef SETTINGSDIALOG_H -#define SETTINGSDIALOG_H - -#include <QDialog> - -#include "ui_settingsdialog.h" - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -class SettingsDialog : public QDialog -{ -Q_OBJECT -public: - SettingsDialog(QWidget *parent = 0); - - ~SettingsDialog(); - - -public slots: - virtual void accept(); - -private: - Ui::SettingsDialog ui; -}; - -#endif diff --git a/src/plugins/General/udisks/settingsdialog.ui b/src/plugins/General/udisks/settingsdialog.ui deleted file mode 100644 index 5b039a88c..000000000 --- a/src/plugins/General/udisks/settingsdialog.ui +++ /dev/null @@ -1,122 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>SettingsDialog</class> - <widget class="QDialog" name="SettingsDialog"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>348</width> - <height>247</height> - </rect> - </property> - <property name="windowTitle"> - <string>UDisks Plugin Settings</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout_3"> - <property name="leftMargin"> - <number>6</number> - </property> - <property name="rightMargin"> - <number>6</number> - </property> - <property name="bottomMargin"> - <number>6</number> - </property> - <item> - <widget class="QGroupBox" name="cdGroupBox"> - <property name="title"> - <string>CD Audio Detection</string> - </property> - <property name="checkable"> - <bool>true</bool> - </property> - <layout class="QVBoxLayout" name="verticalLayout_2"> - <item> - <widget class="QCheckBox" name="addTracksCheckBox"> - <property name="text"> - <string>Add tracks to playlist automatically</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="removeTracksCheckBox"> - <property name="text"> - <string>Remove tracks from playlist automatically</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> - <widget class="QGroupBox" name="removableGroupBox"> - <property name="title"> - <string>Removable Device Detection</string> - </property> - <property name="checkable"> - <bool>true</bool> - </property> - <layout class="QVBoxLayout" name="verticalLayout"> - <item> - <widget class="QCheckBox" name="addFilesCheckBox"> - <property name="text"> - <string>Add files to playlist automatically</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="removeFilesCheckBox"> - <property name="text"> - <string>Remove files from playlist automatically</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> - <widget class="QDialogButtonBox" name="buttonBox"> - <property name="standardButtons"> - <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> - </property> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections> - <connection> - <sender>buttonBox</sender> - <signal>accepted()</signal> - <receiver>SettingsDialog</receiver> - <slot>accept()</slot> - <hints> - <hint type="sourcelabel"> - <x>199</x> - <y>221</y> - </hint> - <hint type="destinationlabel"> - <x>22</x> - <y>242</y> - </hint> - </hints> - </connection> - <connection> - <sender>buttonBox</sender> - <signal>rejected()</signal> - <receiver>SettingsDialog</receiver> - <slot>reject()</slot> - <hints> - <hint type="sourcelabel"> - <x>247</x> - <y>225</y> - </hint> - <hint type="destinationlabel"> - <x>273</x> - <y>229</y> - </hint> - </hints> - </connection> - </connections> -</ui> diff --git a/src/plugins/General/udisks/translations/translations.qrc b/src/plugins/General/udisks/translations/translations.qrc deleted file mode 100644 index 46e648a9a..000000000 --- a/src/plugins/General/udisks/translations/translations.qrc +++ /dev/null @@ -1,32 +0,0 @@ -<!DOCTYPE RCC> -<RCC version="1.0"> - <qresource> - <file>udisks_plugin_ru.qm</file> - <file>udisks_plugin_uk_UA.qm</file> - <file>udisks_plugin_zh_CN.qm</file> - <file>udisks_plugin_zh_TW.qm</file> - <file>udisks_plugin_tr.qm</file> - <file>udisks_plugin_cs.qm</file> - <file>udisks_plugin_pt_BR.qm</file> - <file>udisks_plugin_pt.qm</file> - <file>udisks_plugin_de.qm</file> - <file>udisks_plugin_pl_PL.qm</file> - <file>udisks_plugin_fr.qm</file> - <file>udisks_plugin_it.qm</file> - <file>udisks_plugin_kk.qm</file> - <file>udisks_plugin_lt.qm</file> - <file>udisks_plugin_hu.qm</file> - <file>udisks_plugin_nl.qm</file> - <file>udisks_plugin_ja.qm</file> - <file>udisks_plugin_sk.qm</file> - <file>udisks_plugin_es.qm</file> - <file>udisks_plugin_he.qm</file> - <file>udisks_plugin_gl_ES.qm</file> - <file>udisks_plugin_sr_BA.qm</file> - <file>udisks_plugin_sr_RS.qm</file> - <file>udisks_plugin_bg.qm</file> - <file>udisks_plugin_el.qm</file> - <file>udisks_plugin_id.qm</file> - <file>udisks_plugin_fi.qm</file> - </qresource> -</RCC> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_bg.ts b/src/plugins/General/udisks/translations/udisks_plugin_bg.ts deleted file mode 100644 index 8b2eea312..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_bg.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="bg"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_cs.ts b/src/plugins/General/udisks/translations/udisks_plugin_cs.ts deleted file mode 100644 index 1f96a2cb4..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_cs.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="cs"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Nastavení modulu UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Detekce zvukových CD</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Automaticky přidat stopy do seznamu skladeb</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Automaticky odebrat stopy ze seznamu skladeb</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Detekce odpojitelných zařízení</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Automaticky přidat soubory do seznamu skladeb</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Automaticky odebrat stopy ze seznamu skladeb</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Modul UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>O modulu UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Modul Qmmp UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Tento modul poskytuje detekci výměnných médií pomocí UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Přidat CD „%1“</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Přidat svazek „%1“</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_de.ts b/src/plugins/General/udisks/translations/udisks_plugin_de.ts deleted file mode 100644 index eb44b7a38..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_de.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="de"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Einstellungen UDisks-Modul</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>CD-Audio-Erkennung</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Titel automatisch zur Wiedergabeliste hinzufügen</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Titel automatisch von der Wiedergabeliste entfernen</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Wechsellaufwerkerkennung</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Dateien automatisch zur Wiedergabeliste hinzufügen</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Dateien automatisch von der Wiedergabeliste entfernen</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>UDisks-Modul</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Über UDisks-Modul</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Qmmp UDisks-Modul</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Dieses Modul bietet Wechsellaufwerkerkennung unter Verwendung von UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>CD „%1“ hinzufügen</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Datenträger „%1“ hinzufügen</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_el.ts b/src/plugins/General/udisks/translations/udisks_plugin_el.ts deleted file mode 100644 index 1572ba5b2..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_el.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="el"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Ρυθμίσεις πρόσθετου UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Ανίχνευση CD ήχου</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Προσθήκη των κομματιών αυτόματα στη λίστα αναπαραγωγής</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Αφαίρεση των κομματιών αυτόματα από τη λίστα αναπαραγωγής</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Ανίχνευση αφαιρούμενης συσκευής</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Προσθήκη αρχείων αυτόματα στη λίστα αναπαραγωγής</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Αφαίρεση των αρχείων από τη λίστα αναπαραγωγής αυτόματα</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Πρόσθετο UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Σχετικά με το πρόσθετο UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Qmmp πρόσθετο UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Αυτό το πρόσθετο παρέχει την ανίχνευση αφαιρούμενων συσκευών μέσω UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Προσθήκη CD «%1»</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Προσθήκη Έντασης «%1»</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_en.ts b/src/plugins/General/udisks/translations/udisks_plugin_en.ts deleted file mode 100644 index 49a76540e..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_en.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="en_US"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_es.ts b/src/plugins/General/udisks/translations/udisks_plugin_es.ts deleted file mode 100644 index f77c942b4..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_es.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="es"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Configuración del módulo UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Detección de audio CD</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Añadir pistas a la lista de reproducción automáticamente</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Eliminar pistas de la lista de reproducción automáticamente</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Detectar dispositivos extraibles</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Añadir archivos a la lista de reproducción automáticamente</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Eliminar archivos de la lista de reproducción automáticamente</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Módulo UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Acerca del módulo UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Módulo UDisks para Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Este módulo detecta los dispositivos extraibles utilizando UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Añadir CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Añadir volumen "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_fi.ts b/src/plugins/General/udisks/translations/udisks_plugin_fi.ts deleted file mode 100644 index 2ccace62b..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_fi.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="fi"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>UDisks-liitännäisen asetukset</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Lisää CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_fr.ts b/src/plugins/General/udisks/translations/udisks_plugin_fr.ts deleted file mode 100644 index ac958df24..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_fr.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="fr"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Configuration du greffon UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Détection de CD audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Ajouter automatiquement les pistes à la liste</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Enlever automatiquement les pistes de la liste</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Détection de périphérique amovible</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Ajouter automatiquement les fichiers à la liste</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Enlever automatiquement les fichiers à la liste</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Greffon UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>À propos du greffon UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Greffon UDisks pour Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Ce greffon fournit une détection de périphériques amovibles en utilisant UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Ajouter CD « %1 »</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Ajouter volume « %1 »</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_gl_ES.ts b/src/plugins/General/udisks/translations/udisks_plugin_gl_ES.ts deleted file mode 100644 index 1803d53cf..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_gl_ES.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="gl_ES"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Preferencias do engadido UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Detección de CD de audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Engadir pistas á lista de reprodución automaticamente</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Eliminar pistas da lista de reprodución automaticamente</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Detección de dispositivos extraíbles</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Engadir ficheiros á lista de reprodución automaticamente</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Eliminar ficheiros da lista de reprodución automaticamente</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Engadido UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Sobre o engadido UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Engadido UDisks de Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Este engadido provén detección de dispositivos extraíbles usando UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Engadir CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Engadir volume "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_he.ts b/src/plugins/General/udisks/translations/udisks_plugin_he.ts deleted file mode 100644 index b5b597e45..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_he.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="he"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>הגדרות תוסף UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>איתור אוטומטי של תקליטור שמע</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>הוסף רצועות אוטומטית לתוך רשימת נגינה</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>הסר רצועות אוטומטית מתוך רשימת נגינה</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>איתור התקנים נשלפים</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>הוסף קבצים אוטומטית לתוך רשימת נגינה</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>הסר קבצים אוטומטית מתוך רשימת נגינה</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>תוסף UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>אודות תוסף UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>תוסף UDisks של Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>תוסף זה מספק איתור של התקנים נשלפים באמצעות UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>הוסף תקליטור "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>הוסף כרך "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_hu.ts b/src/plugins/General/udisks/translations/udisks_plugin_hu.ts deleted file mode 100644 index 58d107042..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_hu.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="hu_HU"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_id.ts b/src/plugins/General/udisks/translations/udisks_plugin_id.ts deleted file mode 100644 index 097294b2f..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_id.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="id"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Setelan Plugin UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Deteksi Audio CD</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Tambah track ke daftarmain secara otomatis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Buang track dari daftarmain secara otomatis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Deteksi Perangkat Dapat-dilepas</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Tambah file ke daftarmain secara otomatis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Buang file dari daftarmain secara otomatis</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Plugin UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Tentang Plugin UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Plugin UDisks Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Plugin ini menyediakan deteksi perangkat dapat-dilepas menggunakan UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Tambah CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Tambah Volume %1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_it.ts b/src/plugins/General/udisks/translations/udisks_plugin_it.ts deleted file mode 100644 index 529fa0a93..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_it.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="it"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Rilevamento CD Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Aggiungi automaticamente i titoli alla lista dei brani</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Rimuovi automaticamente i titoli dalla lista dei brani</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Rilevamento dispositivi rimovibili</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Aggiungi brani automaticamente alla lista</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Rimuovi automaticamente i brani dalla lista</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished">Aggiungi CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished">Aggiungi libreria "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_ja.ts b/src/plugins/General/udisks/translations/udisks_plugin_ja.ts deleted file mode 100644 index 7f39f6d7c..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_ja.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="ja_JP"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>UDisks プラグイン設定</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>音楽 CD 検知</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>プレイリストにトラックを自動追加</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>プレイリストからトラックを自動除去</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>着脱可能なデバイスの検知</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>プレイリストにファイルを自動追加</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>プレイリストからファイルを自動除去</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>UDisks プラグイン</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>UDisks プラグインについて</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>QMMP UDisks プラグイン</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>このプラグインは着脱可能なデバイスの検知を UDisks により行ないます</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>CD "%1" を追加</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>量目 "%1" を追加</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_kk.ts b/src/plugins/General/udisks/translations/udisks_plugin_kk.ts deleted file mode 100644 index 406d1a997..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_kk.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="kk_KZ"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_lt.ts b/src/plugins/General/udisks/translations/udisks_plugin_lt.ts deleted file mode 100644 index 76611afeb..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_lt.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="lt"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Udisks įskiepio nustatymai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Audio CD aptikimas</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Įdėti takelius į grojaraštį automatiškai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Pašalinti takelius iš grojaraščio automatiškai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Išorinių įrenginių aptikimas</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Įdėti takelius į grojaratį automatiškai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Pašalinti takelius iš grojaraščio automatiškai</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>UDisks įskiepis</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Apie UDisks įskiepį</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Qmmp UDisks įskiepis</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Šis įskiepis suranda išorinius įrenginius</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Sukūrė: Ilya Kotov</translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Pridėti CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Pridėti tomą "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_nl.ts b/src/plugins/General/udisks/translations/udisks_plugin_nl.ts deleted file mode 100644 index 98f393eec..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_nl.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="nl"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>UDisks Module Instellingen</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>CD Audio Detectie</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Voeg nummers automatisch toe aan speellijst</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Verwijder nummers automatisch uit afspeellijst</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Detectie van Verwisselbare Stations</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Voeg bestanden automatisch toe aan afspeellijst</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Verwijder bestanden automatisch uit afspeellijst</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>UDisks Module</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Over de Udisks Module</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>UDisks Module voor Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Deze module faciliteert de automatische detectie van verwisselbare media gebruikmakend van UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Voeg CD "%1" toe</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Voeg Station "%1" toe</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_pl_PL.ts b/src/plugins/General/udisks/translations/udisks_plugin_pl_PL.ts deleted file mode 100644 index c0488228c..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_pl_PL.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pl_PL"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Ustawienia wtyczki UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Detekcja płyt CD Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Automatycznie dodaj utwory do listy</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Automatycznie usuń utwory z listy</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Detekcja urządzeń przenośnych</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Automatycznie dodaj pliki do listy</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Automatycznie usuń pliki z listy</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Wtyczka UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>O wtyczce UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Wtyczka UDisks dla Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Ta wtyczka umożliwia wykrywanie urządzeń przenośnych przy użyciu UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Dodaj CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Dodaj urządzenie "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_pt.ts b/src/plugins/General/udisks/translations/udisks_plugin_pt.ts deleted file mode 100644 index fc4569f79..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_pt.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pt"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Definições</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Deteção de CD áudio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Adicionar faixas à lista de reprodução</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Remover faixas da lista de reprodução</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Deteção de discos amovíveis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Adicionar ficheiros à lista de reprodução</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Remover ficheiros da lista de reprodução</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Suplemento UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Sobre o suplemento UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Suplemento Qmmp UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Este suplemento permite a deteção de discos amovíveis através do serviço UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Adicionar CD %1</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Adicionar volume %1</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_pt_BR.ts b/src/plugins/General/udisks/translations/udisks_plugin_pt_BR.ts deleted file mode 100644 index a2dc15d7f..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_pt_BR.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pt_BR"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Preferências do plugin UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Detecção de áudio de CD</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Adicionar faixas à lista de reprodução</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Remover faixas da lista de reprodução</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Detecção de dispositivos removíveis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Adicionar arquivos à lista de reprodução</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Remover arquivos da lista de reprodução</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Plugin UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Sobre o plugin UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Plugin Qmmp UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Este plugin permite a detecção de dispositivos removíveis através do serviço UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Adicionar CD %1</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Adicionar volume %1</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_ru.ts b/src/plugins/General/udisks/translations/udisks_plugin_ru.ts deleted file mode 100644 index 4dd0816e2..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_ru.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="ru"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Настройки модуля UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Автоопределение аудио-CD</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Автоматически добавлять треки в список</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Автоматически удалять треки из списка</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Автоопределение съёмных устройств</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Автоматически добавлять треки в список</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Автоматически удалять треки из списка </translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Модуль UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>О модуле UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Модуль UDisks для Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Этот модуль отслеживает съёмные устройства с помощью UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Добавить CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Добавить том "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_sk.ts b/src/plugins/General/udisks/translations/udisks_plugin_sk.ts deleted file mode 100644 index 2060957bd..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_sk.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sk_SK"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_sr_BA.ts b/src/plugins/General/udisks/translations/udisks_plugin_sr_BA.ts deleted file mode 100644 index eda86012b..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_sr_BA.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sr_BA"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Поставке за Удискс</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Откривање музичког диска</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Аутоматски додај нумере на листу</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Аутоматски уклони нумере са листе</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Откривање уклоњивих уређаја</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Аутоматски додај фајлове на листу</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Аутоматски уклони фајлове са листе</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Удискс</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>О прикључку за UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Кумп прикључак за UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Омогућује откривање уклоњивих уређаја користећи UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Додај диск „%1“</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Додај складишни простор „%1“</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_sr_RS.ts b/src/plugins/General/udisks/translations/udisks_plugin_sr_RS.ts deleted file mode 100644 index 2470efdc6..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_sr_RS.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sr_RS"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Поставке за Удискс</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Откривање музичког диска</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Аутоматски додај нумере на листу</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Аутоматски уклони нумере са листе</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Откривање уклоњивих уређаја</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Аутоматски додај фајлове на листу</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Аутоматски уклони фајлове са листе</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Удискс</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>О прикључку за UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Кумп прикључак за UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Омогућује откривање уклоњивих уређаја користећи UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Додај диск „%1“</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Додај складишни простор „%1“</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_tr.ts b/src/plugins/General/udisks/translations/udisks_plugin_tr.ts deleted file mode 100644 index 3ae7e71ce..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_tr.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="tr_TR"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>CD Ses Algılama</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Parçaları listeye otomatik olarka ekle</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Parçaları listeden otomatik olarak kaldır</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Çıkarılabilir Aygıt Algılama</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Dosyaları listeye otomatik olarak ekle</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Dosyaları listeden otomatik olarak kaldır</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation type="unfinished">CD "%1" Ekle</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation type="unfinished">"%1" Aygıtını Ekle</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_uk_UA.ts b/src/plugins/General/udisks/translations/udisks_plugin_uk_UA.ts deleted file mode 100644 index 6de558536..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_uk_UA.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="uk"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>Налаштування модуля UDisks</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>Автовизначення аудіо-CD</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>Автоматично додавати треки до списку</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>Автоматично видаляти треки зі списку</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>Виявлення змінних пристроїв</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>Автоматично додавати файли до списку</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>Автоматично видаляти файли зі списку</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>Модуль UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>Про модуль UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Модуль UDisks для Qmmp</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>Цей модуль забезпечує виявлення знімних пристроїв за допомогою UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>Додати CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>Додати том "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_zh_CN.ts b/src/plugins/General/udisks/translations/udisks_plugin_zh_CN.ts deleted file mode 100644 index ff3b12673..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_zh_CN.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="zh_CN"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>UDisks 插件设置</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>CD 音频检测</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>自动添加音轨到播放列表</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>自动从播放列表删除音轨</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>可移动设备检测</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>自动添加文件到播放列表</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>自动从播放列表删除文件</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>UDisks 插件</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>关于 UDisks 插件</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Qmmp UDisks 插件</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>此插件依据可移动检测使用 UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>添加 CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>添加卷 "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/translations/udisks_plugin_zh_TW.ts b/src/plugins/General/udisks/translations/udisks_plugin_zh_TW.ts deleted file mode 100644 index be5a34032..000000000 --- a/src/plugins/General/udisks/translations/udisks_plugin_zh_TW.ts +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="zh_TW"> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>UDisks Plugin Settings</source> - <translation>UDisks 插件設定</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="29"/> - <source>CD Audio Detection</source> - <translation>CD 音頻檢測</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="38"/> - <source>Add tracks to playlist automatically</source> - <translation>自動添加音軌到播放清單</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="45"/> - <source>Remove tracks from playlist automatically</source> - <translation>自動從播放清單刪除音軌</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Removable Device Detection</source> - <translation>可移動設備檢測</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="64"/> - <source>Add files to playlist automatically</source> - <translation>自動添加檔案到播放清單</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="71"/> - <source>Remove files from playlist automatically</source> - <translation>自動從播放清單刪除檔案</translation> - </message> -</context> -<context> - <name>UDisksFactory</name> - <message> - <location filename="../udisksfactory.cpp" line="32"/> - <source>UDisks Plugin</source> - <translation>UDisks 外掛</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="52"/> - <source>About UDisks Plugin</source> - <translation>關於 UDisks 外掛</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="53"/> - <source>Qmmp UDisks Plugin</source> - <translation>Qmmp UDisks 外掛</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="54"/> - <source>This plugin provides removable devices detection using UDisks</source> - <translation>此插件基於可移動設備檢測來使用 UDisks</translation> - </message> - <message> - <location filename="../udisksfactory.cpp" line="55"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>UDisksPlugin</name> - <message> - <location filename="../udisksplugin.cpp" line="154"/> - <source>Add CD "%1"</source> - <translation>添加 CD "%1"</translation> - </message> - <message> - <location filename="../udisksplugin.cpp" line="160"/> - <source>Add Volume "%1"</source> - <translation>添加卷 "%1"</translation> - </message> -</context> -</TS> diff --git a/src/plugins/General/udisks/udisks.pro b/src/plugins/General/udisks/udisks.pro deleted file mode 100644 index e45c95554..000000000 --- a/src/plugins/General/udisks/udisks.pro +++ /dev/null @@ -1,26 +0,0 @@ -include(../../plugins.pri) - -TARGET = $$PLUGINS_PREFIX/General/udisks - -QT += dbus - -HEADERS += udisksfactory.h \ - udisksplugin.h \ - udisksmanager.h \ - udisksdevice.h \ - settingsdialog.h - -SOURCES += udisksfactory.cpp \ - udisksplugin.cpp \ - udisksmanager.cpp \ - udisksdevice.cpp \ - settingsdialog.cpp - -FORMS += settingsdialog.ui - -RESOURCES = translations/translations.qrc - -LIBS += $$QMMPUI_LIB - -target.path = $$LIB_DIR/qmmp/General -INSTALLS += target diff --git a/src/plugins/General/udisks/udisksdevice.cpp b/src/plugins/General/udisks/udisksdevice.cpp deleted file mode 100644 index d6d824e37..000000000 --- a/src/plugins/General/udisks/udisksdevice.cpp +++ /dev/null @@ -1,50 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QDBusInterface> -#include <QDBusConnection> - -#include "udisksdevice.h" - - -UDisksDevice::UDisksDevice(QDBusObjectPath o, QObject *parent) - : QObject(parent) -{ - m_interface = new QDBusInterface("org.freedesktop.UDisks", o.path(), - "org.freedesktop.UDisks.Device", QDBusConnection::systemBus(), this); - m_interface->connection().connect("org.freedesktop.UDisks", o.path(), - "org.freedesktop.UDisks.Device","Changed", - this, SIGNAL(changed())); - m_path = o; -} - -QVariant UDisksDevice::property (const QString &key) -{ - return m_interface->property(key.toLatin1().data()); -} - -UDisksDevice::~UDisksDevice() -{ -} - -QDBusObjectPath UDisksDevice::objectPath() const -{ - return m_path; -} diff --git a/src/plugins/General/udisks/udisksdevice.h b/src/plugins/General/udisks/udisksdevice.h deleted file mode 100644 index f49b3bcc7..000000000 --- a/src/plugins/General/udisks/udisksdevice.h +++ /dev/null @@ -1,54 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef UDISKSDEVICE_H -#define UDISKSDEVICE_H - -#include <QObject> -#include <QDBusObjectPath> -#include <QDBusMetaType> -#include <QList> -#include <QVariant> - -class QDBusInterface; - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -class UDisksDevice : public QObject -{ - Q_OBJECT -public: - UDisksDevice(QDBusObjectPath o, QObject *parent = 0); - - ~UDisksDevice(); - - QVariant property (const QString &key); - QDBusObjectPath objectPath() const; - -signals: - void changed(); - - -private: - QDBusInterface *m_interface; - QDBusObjectPath m_path; -}; - -#endif diff --git a/src/plugins/General/udisks/udisksfactory.cpp b/src/plugins/General/udisks/udisksfactory.cpp deleted file mode 100644 index 17684b8dc..000000000 --- a/src/plugins/General/udisks/udisksfactory.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> -#include <qmmp/qmmp.h> -#include "settingsdialog.h" -#include "udisksplugin.h" -#include "udisksfactory.h" - -const GeneralProperties UDisksFactory::properties() const -{ - GeneralProperties properties; - properties.name = tr("UDisks Plugin"); - properties.shortName = "udisks"; - properties.hasAbout = true; - properties.hasSettings = true; - properties.visibilityControl = false; - return properties; -} - -QObject *UDisksFactory::create(QObject *parent) -{ - return new UDisksPlugin(parent); -} - -QDialog *UDisksFactory::createConfigDialog(QWidget *parent) -{ - return new SettingsDialog(parent); -} - -void UDisksFactory::showAbout(QWidget *parent) -{ - QMessageBox::about (parent, tr("About UDisks Plugin"), - tr("Qmmp UDisks Plugin") + "\n" + - tr("This plugin provides removable devices detection using UDisks") + "\n" + - tr("Written by: Ilya Kotov <forkotov02@ya.ru>")); -} - -QTranslator *UDisksFactory::createTranslator(QObject *parent) -{ - QTranslator *translator = new QTranslator(parent); - QString locale = Qmmp::systemLanguageID(); - translator->load(QString(":/udisks_plugin_") + locale); - return translator; -} - -Q_EXPORT_PLUGIN2(udisks, UDisksFactory) diff --git a/src/plugins/General/udisks/udisksfactory.h b/src/plugins/General/udisks/udisksfactory.h deleted file mode 100644 index 9a096f794..000000000 --- a/src/plugins/General/udisks/udisksfactory.h +++ /dev/null @@ -1,45 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef DEVDETECTFACTORY_H -#define DEVDETECTFACTORY_H - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -#include <QObject> -#include <QTranslator> - -#include <qmmpui/general.h> -#include <qmmpui/generalfactory.h> - -class UDisksFactory : public QObject, public GeneralFactory -{ -Q_OBJECT -Q_INTERFACES(GeneralFactory) -public: - const GeneralProperties properties() const; - QObject *create(QObject *parent); - QDialog *createConfigDialog(QWidget *parent); - void showAbout(QWidget *parent); - QTranslator *createTranslator(QObject *parent); - -}; - -#endif diff --git a/src/plugins/General/udisks/udisksmanager.cpp b/src/plugins/General/udisks/udisksmanager.cpp deleted file mode 100644 index 53025ed50..000000000 --- a/src/plugins/General/udisks/udisksmanager.cpp +++ /dev/null @@ -1,61 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QDBusInterface> -#include <QDBusConnection> -#include <QDBusReply> - -#include "udisksmanager.h" - -UDisksManager::UDisksManager(QObject *parent) - : QObject(parent) -{ - m_interface = new QDBusInterface("org.freedesktop.UDisks", "/org/freedesktop/UDisks", - "org.freedesktop.UDisks", QDBusConnection::systemBus(), this); - - m_interface->connection().connect("org.freedesktop.UDisks", "/org/freedesktop/UDisks", - "org.freedesktop.UDisks", "DeviceAdded", - this, SIGNAL(deviceAdded(QDBusObjectPath))); - - m_interface->connection().connect("org.freedesktop.UDisks", "/org/freedesktop/UDisks", - "org.freedesktop.UDisks", "DeviceRemoved", - this, SIGNAL(deviceRemoved(QDBusObjectPath))); - - m_interface->connection().connect("org.freedesktop.UDisks", "/org/freedesktop/UDisks", - "org.freedesktop.UDisks", "DeviceChanged", - this, SIGNAL(deviceChanged(QDBusObjectPath))); - -} - - -UDisksManager::~UDisksManager() -{ -} - -QList<QDBusObjectPath> UDisksManager::findAllDevices() -{ - QDBusReply <QList<QDBusObjectPath> > reply = m_interface->call("EnumerateDevices"); - if (!reply.isValid()) - { - qWarning("UDisksManager: error: %s", qPrintable(reply.error().name())); - return QList<QDBusObjectPath>(); - } - return reply.value(); -} diff --git a/src/plugins/General/udisks/udisksmanager.h b/src/plugins/General/udisks/udisksmanager.h deleted file mode 100644 index c109947a6..000000000 --- a/src/plugins/General/udisks/udisksmanager.h +++ /dev/null @@ -1,52 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef UDISKSMANAGER_H -#define UDISKSMANAGER_H - -#include <QObject> -#include <QList> -#include <QDBusObjectPath> - -class QDBusInterface; - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -class UDisksManager : public QObject -{ -Q_OBJECT -public: - UDisksManager(QObject *parent = 0); - - ~UDisksManager(); - - QList<QDBusObjectPath> findAllDevices(); - -signals: - void deviceAdded(QDBusObjectPath); - void deviceRemoved(QDBusObjectPath); - void deviceChanged(QDBusObjectPath); - -private: - QDBusInterface *m_interface; - -}; - -#endif diff --git a/src/plugins/General/udisks/udisksplugin.cpp b/src/plugins/General/udisks/udisksplugin.cpp deleted file mode 100644 index 22f5b1420..000000000 --- a/src/plugins/General/udisks/udisksplugin.cpp +++ /dev/null @@ -1,269 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010-2014 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QtDBus> -#include <QActionGroup> -#include <QApplication> -#include <QStyle> -#include <qmmpui/uihelper.h> -#include <qmmpui/mediaplayer.h> -#include <qmmpui/playlistmanager.h> -#include <qmmpui/playlistitem.h> -#include <qmmp/qmmp.h> -#include "udisksdevice.h" -#include "udisksmanager.h" -#include "udisksplugin.h" - -UDisksPlugin::UDisksPlugin(QObject *parent) : QObject(parent) -{ - m_manager = new UDisksManager(this); - m_actions = new QActionGroup(this); - connect(m_manager,SIGNAL(deviceAdded(QDBusObjectPath)), SLOT(addDevice(QDBusObjectPath))); - connect(m_manager,SIGNAL(deviceChanged(QDBusObjectPath)), SLOT(addDevice(QDBusObjectPath))); - connect(m_manager,SIGNAL(deviceRemoved(QDBusObjectPath)), SLOT(removeDevice(QDBusObjectPath))); - connect(m_actions,SIGNAL(triggered (QAction *)), SLOT(processAction(QAction *))); - //load settings - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.beginGroup("UDisks"); - m_detectCDA = settings.value("cda", true).toBool(); - m_detectRemovable = settings.value("removable", true).toBool(); - m_addTracks = false; //do not load tracks on startup - m_addFiles = false; - //find existing devices - QList<QDBusObjectPath> devs = m_manager->findAllDevices(); - foreach(QDBusObjectPath o, devs) - addDevice(o); - //load remaining settings - m_addTracks = settings.value("add_tracks", false).toBool(); - m_removeTracks = settings.value("remove_tracks", false).toBool(); - m_addFiles = settings.value("add_files", false).toBool(); - m_removeFiles = settings.value("remove_files", false).toBool(); - settings.endGroup(); -} - - -UDisksPlugin::~UDisksPlugin() -{ -} - -void UDisksPlugin::removeDevice(QDBusObjectPath o) -{ - foreach(UDisksDevice *device, m_devices) - { - if (device->objectPath() == o) - { - m_devices.removeAll(device); - delete device; - qDebug("UDisksPlugin: device \"%s\" removed", qPrintable(o.path())); - updateActions(); - break; - } - } -} - -void UDisksPlugin::addDevice(QDBusObjectPath o) -{ - foreach(UDisksDevice *device, m_devices) //is it already exists? - { - if (device->objectPath() == o) - return; - } - UDisksDevice *device = new UDisksDevice(o, this); - - //audio cd - if (device->property("DeviceIsOpticalDisc").toBool() && - device->property("OpticalDiscNumAudioTracks").toInt()) - { - if (m_detectCDA) - { - qDebug("UDisksPlugin: device \"%s\" added (cd audio)", qPrintable(o.path())); - m_devices << device; - connect(device, SIGNAL(changed()), SLOT(updateActions())); - updateActions(); - } - else - delete device; - return; - } - - // filter mounted partitions - if ((!device->property("DeviceIsPartition").toBool() || - device->property("DeviceIsSystemInternal").toBool()) && - !device->property("DeviceIsOpticalDisc").toBool()) - { - delete device; - return; - } - if (device->property("PartitionSize").toLongLong() < 40000000000LL && - (device->property("IdType").toString() == "vfat" || - device->property("IdType").toString() == "iso9660" || - device->property("IdType").toString() == "udf" || - device->property("IdType").toString() == "ext2")) - { - if (m_detectRemovable) - { - qDebug("UDisksPlugin: device \"%s\" added (removable)", qPrintable(o.path())); - m_devices << device; - updateActions(); - connect(device, SIGNAL(changed()), SLOT(updateActions())); - } - else - delete device; - return; - } - delete device; -} - -void UDisksPlugin::updateActions() -{ - // add action for cd audio or mounted volume - foreach(UDisksDevice *device, m_devices) - { - QString dev_path; - if (device->property("DeviceIsOpticalDisc").toBool() && - device->property("OpticalDiscNumAudioTracks").toInt()) //cd audio - dev_path = "cdda://" + device->property("DeviceFile").toString(); - else if (device->property("DeviceIsMounted").toBool()) //mounted volume - dev_path = device->property("DeviceMountPaths").toStringList()[0]; - else - continue; - - if (!findAction(dev_path)) - { - QAction *action = new QAction(this); - QString actionText; - if (device->property("DeviceIsOpticalDisc").toBool() - && device->property("OpticalDiscNumAudioTracks").toInt()) - actionText = QString(tr("Add CD \"%1\"")).arg(device->property("DeviceFile").toString()); - else - { - QString name = device->property("IdLabel").toString(); - if (name.isEmpty()) - name = dev_path; - actionText = QString(tr("Add Volume \"%1\"")).arg(name); - } - - if (device->property("DeviceIsOpticalDisc").toBool()) - { - if(device->property("IdType").toString() == "iso9660") - action->setIcon(qApp->style()->standardIcon(QStyle::SP_DriveDVDIcon)); - else - action->setIcon(qApp->style()->standardIcon(QStyle::SP_DriveCDIcon)); - } - else - action->setIcon(qApp->style()->standardIcon(QStyle::SP_DriveHDIcon)); - - action->setText(actionText); - action->setData(dev_path); - m_actions->addAction(action); - UiHelper::instance()->addAction(action, UiHelper::TOOLS_MENU); - addPath(dev_path); - } - } - // remove action if device is unmounted/removed - foreach(QAction *action, m_actions->actions ()) - { - if (!findDevice(action)) - { - m_actions->removeAction(action); - UiHelper::instance()->removeAction(action); - removePath(action->data().toString()); - action->deleteLater(); - } - } -} - -void UDisksPlugin::processAction(QAction *action) -{ - qDebug("UDisksPlugin: action triggered: %s", qPrintable(action->data().toString())); - QString path = action->data().toString(); - MediaPlayer::instance()->playListManager()->selectedPlayList()->add(path); -} - -QAction *UDisksPlugin::findAction(const QString &dev_path) -{ - foreach(QAction *action, m_actions->actions ()) - { - if (action->data().toString() == dev_path) - return action; - } - return 0; -} - -UDisksDevice *UDisksPlugin::findDevice(QAction *action) -{ - foreach(UDisksDevice *device, m_devices) - { - QString dev_path; - if (device->property("DeviceIsOpticalDisc").toBool() && - device->property("OpticalDiscNumAudioTracks").toInt()) - { - dev_path = "cdda://" + device->property("DeviceFile").toString(); - if (dev_path == action->data().toString()) - return device; - } - if (device->property("DeviceIsMounted").toBool()) - { - dev_path = device->property("DeviceMountPaths").toStringList()[0]; - if (dev_path == action->data().toString()) - return device; - } - } - return 0; -} - -void UDisksPlugin::addPath(const QString &path) -{ - PlayListModel *model = PlayListManager::instance()->selectedPlayList(); - - foreach(PlayListItem *item, model->items()) // Is it already exist? - { - if(item->isGroup()) - continue; - if (dynamic_cast<PlayListTrack *>(item)->url().startsWith(path)) - return; - } - - if (path.startsWith("cdda://") && m_addTracks) - { - PlayListManager::instance()->selectedPlayList()->add(path); - return; - } - else if (!path.startsWith("cdda://") && m_addFiles) - PlayListManager::instance()->selectedPlayList()->add(path); -} - -void UDisksPlugin::removePath(const QString &path) -{ - if ((path.startsWith("cdda://") && !m_removeTracks) || - (!path.startsWith("cdda://") && !m_removeFiles)) //process settings - return; - - PlayListModel *model = PlayListManager::instance()->selectedPlayList(); - - int i = 0; - while (model->count() > 0 && i < model->count()) - { - if (model->isTrack(i) && model->track(i)->url().startsWith(path)) - model->removeTrack(i); - else - ++i; - } -} diff --git a/src/plugins/General/udisks/udisksplugin.h b/src/plugins/General/udisks/udisksplugin.h deleted file mode 100644 index c463b33fe..000000000 --- a/src/plugins/General/udisks/udisksplugin.h +++ /dev/null @@ -1,65 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef UDISKSPLUGIN_H -#define UDISKSPLUGIN_H - -#include <QDBusObjectPath> -#include <qmmpui/general.h> - -class UDisksManager; -class UDisksDevice; -class QActionGroup; -class QAction; - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ - -class UDisksPlugin : public QObject -{ -Q_OBJECT -public: - UDisksPlugin(QObject *parent = 0); - - ~UDisksPlugin(); - -private slots: - void removeDevice(QDBusObjectPath); - void addDevice(QDBusObjectPath); - void processAction(QAction *action); - void updateActions(); - -private: - QAction *findAction(const QString &dev_path); - UDisksDevice *findDevice(QAction *action); - void addPath(const QString &path); - void removePath(const QString &path); - UDisksManager *m_manager; - QList <UDisksDevice *> m_devices; - QActionGroup *m_actions; - bool m_detectCDA; - bool m_addTracks; - bool m_removeTracks; - bool m_detectRemovable; - bool m_addFiles; - bool m_removeFiles; -}; - -#endif diff --git a/src/plugins/General/udisks2/CMakeLists.txt b/src/plugins/General/udisks2/CMakeLists.txt index bb12e48b2..a24c94e5f 100644 --- a/src/plugins/General/udisks2/CMakeLists.txt +++ b/src/plugins/General/udisks2/CMakeLists.txt @@ -1,19 +1,5 @@ project(libudisks2) -SET (QT_USE_QTDBUS TRUE) - -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmpui & libqmmp @@ -31,7 +17,7 @@ SET(libudisks2_SRCS SET(libudisks2_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libudisks2_RCC_SRCS ${libudisks2_RCCS}) +QT5_ADD_RESOURCES(libudisks2_RCC_SRCS ${libudisks2_RCCS}) # user interface @@ -39,12 +25,12 @@ SET(libudisks2_UIS settingsdialog.ui ) -QT4_WRAP_UI(libudisks2_UIS_H ${libudisks2_UIS}) +QT5_WRAP_UI(libudisks2_UIS_H ${libudisks2_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(udisks2 MODULE ${libudisks2_SRCS} ${libudisks2_UIS_H} ${libudisks2_RCC_SRCS}) add_dependencies(udisks2 qmmpui) -target_link_libraries(udisks2 ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(udisks2 Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp) install(TARGETS udisks2 DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_bg.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_bg.ts index a8c9d09c3..765d15a72 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_bg.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_bg.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_cs.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_cs.ts index 44536607b..5654b8831 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_cs.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_cs.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Modul UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>O modulu UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Modul Qmmp UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Tento modul poskytuje detekci výměnných médií pomocí UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_de.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_de.ts index cd32c9d11..5e81135a4 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_de.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_de.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>UDisks2-Modul</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Über UDisks2-Modul</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Qmmp UDisks2-Modul</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Dieses Modul bietet Wechsellaufwerkerkennung unter Verwendung von UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_el.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_el.ts index 0d51aee7b..1ae0e648c 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_el.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_el.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Πρόσθετο UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Σχετικά με το πρόσθετο UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Qmmp πρόσθετο UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Αυτό το πρόσθετο παρέχει την ανίχνευση αφαιρούμενων συσκευών μέσω UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_en.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_en.ts index 9561978a9..4a74ace97 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_en.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_en.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_es.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_es.ts index c815dbe06..de68e2ff3 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_es.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_es.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Módulo UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Acerca del Módulo UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Módulo UDisks2 de Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Este módulo proporciona detección de dispositivos extraíbles mediante UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_fi.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_fi.ts index c74ffd367..c26a2075b 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_fi.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_fi.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>UDisks2-liitännäinen</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Qmmp:n UDisks2-liitännäinen</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_fr.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_fr.ts index 77477d25f..67da21e68 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_fr.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_fr.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Greffon UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>À propos du greffon UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Greffon UDisks2 pour Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Ce greffon fournit une détection de périphériques amovibles en utilisant UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_gl_ES.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_gl_ES.ts index cd506c367..2f1043041 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_gl_ES.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_gl_ES.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Engadido UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Sobre o engadido UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Engadido UDisks2 de Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Este engadido provén detección de dispositivos extraíbles usando UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_he.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_he.ts index df0d33f43..177175889 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_he.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_he.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>תוסף UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>אודות תוסף UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>תוסף UDisks2 של Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>תוסף זה מספק איתור התקנים ברי הזזה באמצעות UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_hu.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_hu.ts index 6d30fbe49..e705d5801 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_hu.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_hu.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_id.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_id.ts index 988e79fec..d0b6ea52d 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_id.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_id.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Plugin UDisks</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Tentang Plugin UDisks</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Plugin UDisks Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Plugin ini menyediakan deteksi perangkat dapat-dilepas menggunakan UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_it.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_it.ts index 7b5b2e7a0..36193fb68 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_it.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_it.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_ja.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_ja.ts index 73598b9ad..46dc98772 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_ja.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_ja.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>UDisks2 プラグイン</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>UDisks2 プラグインについて</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>QMMP UDisks2 プラグイン</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>このプラグインは着脱可能なデバイスの検知を UDisks2 により行ないます</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_kk.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_kk.ts index ec49c5bb4..e4a2d48cc 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_kk.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_kk.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_lt.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_lt.ts index a5e2415a3..8faf69ee3 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_lt.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_lt.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>UDisks2 Įskiepis</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Apie UDisks2 Įskiepį </translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Qmmp UDisks2 Įskiepis </translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished">Šis įskiepis aptinka prijungiamus įrenginius naudodamas UDisks2 </translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov</translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_nl.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_nl.ts index f0bbc2e10..65727b53c 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_nl.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_nl.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_pl_PL.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_pl_PL.ts index 443fa10ee..b70384545 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_pl_PL.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_pl_PL.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Wtyczka UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>O wtyczce UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Wtyczka UDisks2 dla Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Ta wtyczka pozwala na wykrywanie urządzeń przy użyciu UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_pt.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_pt.ts index 86a790e8a..8b621b9b9 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_pt.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_pt.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Suplemento UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Sobre o suplemento UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Suplemento Qmmp UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Este suplemento permite a deteção de discos amovíveis através do serviço UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_pt_BR.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_pt_BR.ts index a6e07070b..59b82be01 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_pt_BR.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_pt_BR.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Plugin UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Sobre o plugin UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Plugin Qmmp UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Este plugin permite a detecção de dispositivos removíveis através do serviço UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_ru.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_ru.ts index 101935a00..fb63634ac 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_ru.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_ru.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Модуль UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>О модуле UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Модуль UDisks2 для Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Это модуль отслеживает съёмные устройства с помощью UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_sk.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_sk.ts index 735bd1324..7bb01457c 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_sk.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_sk.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_sr_BA.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_sr_BA.ts index b191e85e6..469b250ec 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_sr_BA.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_sr_BA.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Удискс2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>О прикључку за UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Кумп прикључак за UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Омогућује откривање уклоњивих уређаја користећи UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_sr_RS.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_sr_RS.ts index 9db721bca..d27eb3dcf 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_sr_RS.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_sr_RS.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Удискс2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>О прикључку за UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Кумп прикључак за UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Омогућује откривање уклоњивих уређаја користећи UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_tr.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_tr.ts index b6b699647..b484068b6 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_tr.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_tr.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_uk_UA.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_uk_UA.ts index 017c0c0c6..e31253340 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_uk_UA.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_uk_UA.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>Модуль UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>Про модуль UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Модуль UDisks2 для Qmmp</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>Цей модуль відстежує з'ємні пристрої за допомогою UDisks2</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_zh_CN.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_zh_CN.ts index 4770b4df4..39651091c 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_zh_CN.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_zh_CN.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation>UDisk2插件</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation>关于UDisk2插件</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation>Qmmp播放器UDisk2插件</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation>本插件使用UDisk2提供对移动设备的探测功能</translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/udisks2/translations/udisks2_plugin_zh_TW.ts b/src/plugins/General/udisks2/translations/udisks2_plugin_zh_TW.ts index 900afb2e2..f434f8fc0 100644 --- a/src/plugins/General/udisks2/translations/udisks2_plugin_zh_TW.ts +++ b/src/plugins/General/udisks2/translations/udisks2_plugin_zh_TW.ts @@ -42,27 +42,27 @@ <context> <name>UDisks2Factory</name> <message> - <location filename="../udisks2factory.cpp" line="32"/> + <location filename="../udisks2factory.cpp" line="31"/> <source>UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="52"/> + <location filename="../udisks2factory.cpp" line="51"/> <source>About UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="53"/> + <location filename="../udisks2factory.cpp" line="52"/> <source>Qmmp UDisks2 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="54"/> + <location filename="../udisks2factory.cpp" line="53"/> <source>This plugin provides removable devices detection using UDisks2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../udisks2factory.cpp" line="55"/> + <location filename="../udisks2factory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/udisks2/udisks2device.cpp b/src/plugins/General/udisks2/udisks2device.cpp index a6f4499ce..db0e88f85 100644 --- a/src/plugins/General/udisks2/udisks2device.cpp +++ b/src/plugins/General/udisks2/udisks2device.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2013 by Ilya Kotov * + * Copyright (C) 2013-2016 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -93,7 +93,10 @@ QStringList UDisks2Device::mountPoints() const foreach (QVariant arg, args) { QByteArrayList list; - arg.value<QDBusVariant>().variant().value<QDBusArgument>() >> list; + QDBusArgument a = arg.value<QDBusVariant>().variant().value<QDBusArgument>(); + if(a.currentType() != QDBusArgument::ArrayType) + continue; + a >> list; foreach (QByteArray p, list) points.append(p); @@ -103,7 +106,7 @@ QStringList UDisks2Device::mountPoints() const QString UDisks2Device::deviceFile() const { - return QString::fromAscii(m_block_interface->property("Device").toByteArray().constData()); + return QString::fromLatin1(m_block_interface->property("Device").toByteArray()); } QDBusObjectPath UDisks2Device::objectPath() const diff --git a/src/plugins/General/udisks2/udisks2factory.cpp b/src/plugins/General/udisks2/udisks2factory.cpp index 3bd3d6d6d..0548b8932 100644 --- a/src/plugins/General/udisks2/udisks2factory.cpp +++ b/src/plugins/General/udisks2/udisks2factory.cpp @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "udisks2plugin.h" @@ -62,5 +61,3 @@ QTranslator *UDisks2Factory::createTranslator(QObject *parent) translator->load(QString(":/udisks2_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(udisks2, UDisks2Factory) diff --git a/src/plugins/General/udisks2/udisks2factory.h b/src/plugins/General/udisks2/udisks2factory.h index b12e4722c..e4d1f94ff 100644 --- a/src/plugins/General/udisks2/udisks2factory.h +++ b/src/plugins/General/udisks2/udisks2factory.h @@ -32,6 +32,7 @@ class UDisks2Factory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/Input/CMakeLists.txt b/src/plugins/Input/CMakeLists.txt index 98b8b27b5..9c9dbc64b 100644 --- a/src/plugins/Input/CMakeLists.txt +++ b/src/plugins/Input/CMakeLists.txt @@ -2,7 +2,6 @@ SET(USE_MAD TRUE CACHE BOOL "enable/disable mad plugin") SET(USE_FLAC TRUE CACHE BOOL "enable/disable flac plugin") SET(USE_VORBIS TRUE CACHE BOOL "enable/disable ogg vorbis plugin") SET(USE_FFMPEG TRUE CACHE BOOL "enable/disable ffmpeg plugin") -SET(USE_FFMPEG_LEGACY TRUE CACHE BOOL "enable/disable ffmpeg_legacy plugin") SET(USE_MPC TRUE CACHE BOOL "enable/disable mpc plugin") SET(USE_SNDFILE TRUE CACHE BOOL "enable/disable sndfile plugin") SET(USE_WAVPACK TRUE CACHE BOOL "enable/disable wavpack plugin") @@ -33,10 +32,6 @@ IF(USE_FFMPEG) add_subdirectory(ffmpeg) ENDIF(USE_FFMPEG) -IF(USE_FFMPEG_LEGACY) -add_subdirectory(ffmpeg_legacy) -ENDIF(USE_FFMPEG_LEGACY) - IF(USE_MPC AND TAGLIB_FOUND) add_subdirectory(mpc) ENDIF(USE_MPC AND TAGLIB_FOUND) diff --git a/src/plugins/Input/Input.pro b/src/plugins/Input/Input.pro index a36a0b2e4..eef480670 100644 --- a/src/plugins/Input/Input.pro +++ b/src/plugins/Input/Input.pro @@ -16,38 +16,34 @@ contains(CONFIG, MODPLUG_PLUGIN){ } contains(CONFIG, FFMPEG_PLUGIN){ - contains(CONFIG, FFMPEG_LEGACY){ - SUBDIRS += ffmpeg_legacy - }else{ - SUBDIRS += ffmpeg - } + SUBDIRS += ffmpeg } contains(CONFIG, GME_PLUGIN){ - SUBDIRS += gme + SUBDIRS += gme } contains(CONFIG, OPUS_PLUGIN){ - SUBDIRS += opus + SUBDIRS += opus } contains(CONFIG, CDAUDIO_PLUGIN){ - SUBDIRS += cdaudio + SUBDIRS += cdaudio } contains(CONFIG, SID_PLUGIN){ - SUBDIRS += sid + SUBDIRS += sid } unix{ contains(CONFIG, AAC_PLUGIN){ - SUBDIRS += aac + SUBDIRS += aac } contains(CONFIG, WILDMIDI_PLUGIN){ - SUBDIRS += wildmidi + SUBDIRS += wildmidi } contains(CONFIG, ARCHIVE_PLUGIN){ diff --git a/src/plugins/Input/aac/CMakeLists.txt b/src/plugins/Input/aac/CMakeLists.txt index 5e75c3604..c6f2fd063 100644 --- a/src/plugins/Input/aac/CMakeLists.txt +++ b/src/plugins/Input/aac/CMakeLists.txt @@ -3,21 +3,8 @@ project(libaac) INCLUDE(CheckCXXSourceCompiles) INCLUDE(CheckIncludeFileCXX) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -71,7 +58,7 @@ SET(libaac_HDRS SET(libaac_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libaac_RCC_SRCS ${libaac_RCCS}) +QT5_ADD_RESOURCES(libaac_RCC_SRCS ${libaac_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -80,6 +67,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(FAAD_FOUND) ADD_LIBRARY(aac MODULE ${libaac_SRCS} ${libaac_RCC_SRCS} ${libaac_HDRS}) add_dependencies(aac qmmp) -target_link_libraries(aac ${QT_LIBRARIES} libqmmp -lfaad ${TAGLIB_LDFLAGS}) +target_link_libraries(aac Qt5::Widgets -lqmmp -lfaad ${TAGLIB_LDFLAGS}) install(TARGETS aac DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(FAAD_FOUND) diff --git a/src/plugins/Input/aac/decoderaacfactory.cpp b/src/plugins/Input/aac/decoderaacfactory.cpp index b6fde8432..34afec646 100644 --- a/src/plugins/Input/aac/decoderaacfactory.cpp +++ b/src/plugins/Input/aac/decoderaacfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,10 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <QTranslator> #include <QFile> #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include "aacfile.h" #include "aacmetadatamodel.h" #include "decoder_aac.h" @@ -93,5 +92,3 @@ QTranslator *DecoderAACFactory::createTranslator(QObject *parent) translator->load(QString(":/aac_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(aac,DecoderAACFactory) diff --git a/src/plugins/Input/aac/decoderaacfactory.h b/src/plugins/Input/aac/decoderaacfactory.h index b0a2df3c9..54b2a9014 100644 --- a/src/plugins/Input/aac/decoderaacfactory.h +++ b/src/plugins/Input/aac/decoderaacfactory.h @@ -34,6 +34,7 @@ class DecoderAACFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/aac/translations/aac_plugin_bg.ts b/src/plugins/Input/aac/translations/aac_plugin_bg.ts index 7be3d7802..9c421ae96 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_bg.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_bg.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_cs.ts b/src/plugins/Input/aac/translations/aac_plugin_cs.ts index 810dcb47d..fb13ec5e6 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_cs.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_cs.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Modul AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Soubory AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>O modulu AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Vstupní modul Qmmp AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_de.ts b/src/plugins/Input/aac/translations/aac_plugin_de.ts index fe46d8c6a..54a68b589 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_de.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_de.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC-Modul</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC-Dateien</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Über AAC-Audiomodul</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Qmmp AAC-Audiomodul</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_el.ts b/src/plugins/Input/aac/translations/aac_plugin_el.ts index 4fb0ca744..525bd3a14 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_el.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_el.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Πρόσθετο AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Αρχεία AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Πρόσθετο ήχου AAC Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_en.ts b/src/plugins/Input/aac/translations/aac_plugin_en.ts index fc38a1d70..3aaf4170c 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_en.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_en.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_es.ts b/src/plugins/Input/aac/translations/aac_plugin_es.ts index 9d7767e1e..2321b7cc9 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_es.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_es.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Módulo AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Archivos AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Acerca del módulo de sonido AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Módulo de sonido AAC para Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_fi.ts b/src/plugins/Input/aac/translations/aac_plugin_fi.ts index 8ff7fdb52..7e2b69d92 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_fi.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_fi.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC-liitännäinen</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC-tiedostot</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Tietoja - AAC-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Qmmp:n AAC-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_fr.ts b/src/plugins/Input/aac/translations/aac_plugin_fr.ts index a6a8a9305..db76a843e 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_fr.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_fr.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Greffon AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Fichiers AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>À propos du greffon audio AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Greffon audio AAC pour Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_gl_ES.ts b/src/plugins/Input/aac/translations/aac_plugin_gl_ES.ts index 5e48fc082..f952baa4c 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_gl_ES.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_gl_ES.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Engadido AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Ficheiros AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Sobre o engadido Audio AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Engadido de audio AAC de Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_he.ts b/src/plugins/Input/aac/translations/aac_plugin_he.ts index cb9836409..ade71ddea 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_he.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_he.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>תוסף AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>קבצי AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>אודות תוסף שמע AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>תוסף שמע AAC של Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_hu.ts b/src/plugins/Input/aac/translations/aac_plugin_hu.ts index 5bd290a32..19a0a168e 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_hu.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_hu.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_id.ts b/src/plugins/Input/aac/translations/aac_plugin_id.ts index 0b144df1f..1a468609f 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_id.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_id.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Plugin AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>File AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Tentang Plugin Audio AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Plugin Audio AAC Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_it.ts b/src/plugins/Input/aac/translations/aac_plugin_it.ts index d73b8ec3f..111d54044 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_it.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_it.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Modulo AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Brani AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Informazioni sul modulo Audio AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Modulo Audio AAC per Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_ja.ts b/src/plugins/Input/aac/translations/aac_plugin_ja.ts index e09b4ff52..eff1ed0a3 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_ja.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_ja.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC プラグイン</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC ファイル</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>AAC 音響プラグインについて</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>QMMP AAC 音響プラグイン</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_kk.ts b/src/plugins/Input/aac/translations/aac_plugin_kk.ts index 82991637f..658f0d153 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_kk.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_kk.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_lt.ts b/src/plugins/Input/aac/translations/aac_plugin_lt.ts index 937dbff36..d71439fcd 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_lt.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_lt.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC įskiepis</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC bylos</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Apie AAC išvesties įrenginį</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Qmmp AAC įskiepis</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_nl.ts b/src/plugins/Input/aac/translations/aac_plugin_nl.ts index f16527dd9..e737c2a99 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_nl.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_nl.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC Module</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC Bestanden</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Over de AAC Audio Module</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>AAC Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_pl_PL.ts b/src/plugins/Input/aac/translations/aac_plugin_pl_PL.ts index a080c2d4f..f401ca138 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_pl_PL.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_pl_PL.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Wtyczka AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Pliki AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>O wtyczce dźwiękowej AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Wtyczka AAC dla Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_pt.ts b/src/plugins/Input/aac/translations/aac_plugin_pt.ts index 72cc819db..388ebda6f 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_pt.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_pt.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Suplemento AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Ficheiros AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Sobre o suplemento AAC Audio</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Suplemento Qmmp AAC Audio</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_pt_BR.ts b/src/plugins/Input/aac/translations/aac_plugin_pt_BR.ts index 40f58e460..7df295758 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_pt_BR.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_pt_BR.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Plugin AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Arquivos AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Sobre o plugin de áudio AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Plugin Qmmp AAC Audio</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_ru.ts b/src/plugins/Input/aac/translations/aac_plugin_ru.ts index d13ff2e00..c24f03023 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_ru.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_ru.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Модуль AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Файлы AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Об аудио-модуле AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Модуль AAC для Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_sk.ts b/src/plugins/Input/aac/translations/aac_plugin_sk.ts index b809fa8a1..cf8942e9b 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_sk.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_sk.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_sr_BA.ts b/src/plugins/Input/aac/translations/aac_plugin_sr_BA.ts index 805745df9..1cca81377 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_sr_BA.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_sr_BA.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>ААЦ прикључак</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>ААЦ фајлови</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>О ААЦ прикључку</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Кумп ААЦ прикључак</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_sr_RS.ts b/src/plugins/Input/aac/translations/aac_plugin_sr_RS.ts index 526aca97f..8f6c7297a 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_sr_RS.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_sr_RS.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>ААЦ прикључак</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>ААЦ фајлови</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>О ААЦ прикључку</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Кумп ААЦ прикључак</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_tr.ts b/src/plugins/Input/aac/translations/aac_plugin_tr.ts index b61156603..c925e7fec 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_tr.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_tr.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC Eklentisi</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC Dosyaları</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>AAC Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Qmmp AAC Ses Eklentisi</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_uk_UA.ts b/src/plugins/Input/aac/translations/aac_plugin_uk_UA.ts index 6c81427d3..f8f34c542 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_uk_UA.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_uk_UA.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>Модуль AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>Файли AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>Про аудіо-модуль AAC</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Модуль AAC для Qmmp</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_zh_CN.ts b/src/plugins/Input/aac/translations/aac_plugin_zh_CN.ts index a9bf2e8f3..cde1817d7 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_zh_CN.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_zh_CN.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC 插件</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC 文件</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>关于 AAC 音频插件</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Qmmp AAC 音频插件</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/aac/translations/aac_plugin_zh_TW.ts b/src/plugins/Input/aac/translations/aac_plugin_zh_TW.ts index 319d7c6d9..68f9d76ef 100644 --- a/src/plugins/Input/aac/translations/aac_plugin_zh_TW.ts +++ b/src/plugins/Input/aac/translations/aac_plugin_zh_TW.ts @@ -42,27 +42,27 @@ <context> <name>DecoderAACFactory</name> <message> - <location filename="../decoderaacfactory.cpp" line="42"/> + <location filename="../decoderaacfactory.cpp" line="41"/> <source>AAC Plugin</source> <translation>AAC 外掛</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="44"/> + <location filename="../decoderaacfactory.cpp" line="43"/> <source>AAC Files</source> <translation>AAC 檔案</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="84"/> + <location filename="../decoderaacfactory.cpp" line="83"/> <source>About AAC Audio Plugin</source> <translation>關於 AAC 聲訊插件</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="85"/> + <location filename="../decoderaacfactory.cpp" line="84"/> <source>Qmmp AAC Audio Plugin</source> <translation>Qmmp AAC 聲訊插件</translation> </message> <message> - <location filename="../decoderaacfactory.cpp" line="86"/> + <location filename="../decoderaacfactory.cpp" line="85"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/CMakeLists.txt b/src/plugins/Input/archive/CMakeLists.txt index 07c320cd3..bacc8de2f 100644 --- a/src/plugins/Input/archive/CMakeLists.txt +++ b/src/plugins/Input/archive/CMakeLists.txt @@ -1,20 +1,7 @@ project(libarchive) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -41,13 +28,13 @@ SET(libarchive_HDRS SET(libarchive_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libarchive_RCC_SRCS ${libarchive_RCCS}) +QT5_ADD_RESOURCES(libarchive_RCC_SRCS ${libarchive_RCCS}) include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(LIBARCHIVE_FOUND) ADD_LIBRARY(archive MODULE ${libarchive_SRCS} ${libarchive_RCC_SRCS} ${libarchive_HDRS}) add_dependencies(archive qmmp) -target_link_libraries(archive ${QT_LIBRARIES} libqmmp ${LIBARCHIVE_LDFLAGS} ${TAGLIB_LDFLAGS}) +target_link_libraries(archive Qt5::Widgets libqmmp ${LIBARCHIVE_LDFLAGS} ${TAGLIB_LDFLAGS}) install(TARGETS archive DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(LIBARCHIVE_FOUND) diff --git a/src/plugins/Input/archive/decoderarchivefactory.cpp b/src/plugins/Input/archive/decoderarchivefactory.cpp index 779026dfe..0badf82f3 100644 --- a/src/plugins/Input/archive/decoderarchivefactory.cpp +++ b/src/plugins/Input/archive/decoderarchivefactory.cpp @@ -21,7 +21,6 @@ #include <QRegExp> #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include <archive.h> #include <archive_entry.h> #include "decoder_archive.h" @@ -151,5 +150,3 @@ QTranslator *DecoderArchiveFactory::createTranslator(QObject *parent) translator->load(QString(":/archive_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(archive, DecoderArchiveFactory) diff --git a/src/plugins/Input/archive/decoderarchivefactory.h b/src/plugins/Input/archive/decoderarchivefactory.h index b2591bb69..8306a38d9 100644 --- a/src/plugins/Input/archive/decoderarchivefactory.h +++ b/src/plugins/Input/archive/decoderarchivefactory.h @@ -35,6 +35,7 @@ class DecoderArchiveFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/archive/translations/archive_plugin_bg.ts b/src/plugins/Input/archive/translations/archive_plugin_bg.ts index 00106a243..a4a95e92c 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_bg.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_bg.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_cs.ts b/src/plugins/Input/archive/translations/archive_plugin_cs.ts index c9e1c8344..2c1e657cf 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_cs.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_cs.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_de.ts b/src/plugins/Input/archive/translations/archive_plugin_de.ts index 54a50df5e..9201c01c9 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_de.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_de.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Archiv-Modul</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Archive</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Über Archiv-Lesermodul</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Qmmp Archiv-Lesermodul</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Kompiliert gegen %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_el.ts b/src/plugins/Input/archive/translations/archive_plugin_el.ts index 6747dddaf..5a5f465b1 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_el.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_el.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Πρόσθετο αρχειοθηκών</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Αρχειοθήκες</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Σχετικά με το πρόσθετο ανάγνωσης αρχειοθηκών</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Πρόσθετο ανάγνωσης αρχειοθηκών Qmmp</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Μεταγλωττίστηκε χρησιμοποιώντας %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_en.ts b/src/plugins/Input/archive/translations/archive_plugin_en.ts index 007ad862f..ee41e754e 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_en.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_en.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_es.ts b/src/plugins/Input/archive/translations/archive_plugin_es.ts index 6f664a7d3..5a2232b32 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_es.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_es.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Módulo de archivo</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Archivos</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Acerca del Módulo Lector de Archivo</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Módulo Lector de Archivo de Qmmp</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Compilado contra %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_fi.ts b/src/plugins/Input/archive/translations/archive_plugin_fi.ts index 0eb4ec67e..3b8978366 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_fi.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_fi.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_fr.ts b/src/plugins/Input/archive/translations/archive_plugin_fr.ts index c951eb66c..98baece29 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_fr.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_fr.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Plugin d'archive</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Archives</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>À propos du plugin de lecture des archives</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Plugin Qmmp de lecture des archives</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Compilé avec la mauvaise version %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_gl_ES.ts b/src/plugins/Input/archive/translations/archive_plugin_gl_ES.ts index eeb6b0293..873b1d1b5 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_gl_ES.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_gl_ES.ts @@ -47,34 +47,34 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Arquivo Plugin</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Arquivos</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Acerca do engadido de lector de arquivos</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Qmmp Archive Reader Plugin Engadido lector arquivos Qmmp</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Compilado con %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_he.ts b/src/plugins/Input/archive/translations/archive_plugin_he.ts index c960e3c29..e5c10affa 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_he.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_he.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_hu.ts b/src/plugins/Input/archive/translations/archive_plugin_hu.ts index a83581d5b..20dd39c80 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_hu.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_hu.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_id.ts b/src/plugins/Input/archive/translations/archive_plugin_id.ts index 13ad545e3..c5199ccd9 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_id.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_id.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Plugin Archive</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Archives</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Tentang Plugin Archive Reader</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Plugin Archive Reader Qmmp</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Dikompilasi terhadap: %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_it.ts b/src/plugins/Input/archive/translations/archive_plugin_it.ts index 24198b680..44a8e5611 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_it.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_it.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_ja.ts b/src/plugins/Input/archive/translations/archive_plugin_ja.ts index b45720bf6..08af70ab8 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_ja.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_ja.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>書庫プラグイン</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>書庫形式</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>書庫プラグインについて</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>QMMP 書庫プラグイン</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>%1 を使用してコンパイル</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_kk.ts b/src/plugins/Input/archive/translations/archive_plugin_kk.ts index 4261e5f4b..b1ac1c937 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_kk.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_kk.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_lt.ts b/src/plugins/Input/archive/translations/archive_plugin_lt.ts index d0f5d35a2..9b54f1edd 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_lt.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_lt.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_nl.ts b/src/plugins/Input/archive/translations/archive_plugin_nl.ts index 4a32848e7..099b3fdcb 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_nl.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_nl.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_pl_PL.ts b/src/plugins/Input/archive/translations/archive_plugin_pl_PL.ts index c863e7656..a047afe3c 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_pl_PL.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_pl_PL.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_pt.ts b/src/plugins/Input/archive/translations/archive_plugin_pt.ts index dabb7533e..81c9db33a 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_pt.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_pt.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Suplemento Archive</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Arquivos</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Sobre o suplemento Archive Reader</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Suplemento Qmmp Archive Reader</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Compilado com %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_pt_BR.ts b/src/plugins/Input/archive/translations/archive_plugin_pt_BR.ts index 264aa9a06..2bab60abc 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_pt_BR.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_pt_BR.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Plugin Archive</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Arquivos</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Sobre o plugin Archive Reader</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Plugin Qmmp Archive Reader</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Compilado com %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_ru.ts b/src/plugins/Input/archive/translations/archive_plugin_ru.ts index a1b14505b..2fe30fce3 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_ru.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_ru.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Модуль архивов</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Архивы</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>О модуле чтения архивов</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Модуль чтения архивов для Qmmp</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Собран с %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_sk.ts b/src/plugins/Input/archive/translations/archive_plugin_sk.ts index ca95dd41e..bc37fcf74 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_sk.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_sk.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_sr_BA.ts b/src/plugins/Input/archive/translations/archive_plugin_sr_BA.ts index c7ecb32fe..8b137adfc 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_sr_BA.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_sr_BA.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_sr_RS.ts b/src/plugins/Input/archive/translations/archive_plugin_sr_RS.ts index 1004d76de..5df9dd6e2 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_sr_RS.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_sr_RS.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_tr.ts b/src/plugins/Input/archive/translations/archive_plugin_tr.ts index 9707c486e..60479e84e 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_tr.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_tr.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_uk_UA.ts b/src/plugins/Input/archive/translations/archive_plugin_uk_UA.ts index 7e4f8a90e..50f592633 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_uk_UA.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_uk_UA.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>Мордуль архівів</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>Архіви</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>Про модуль читання архівів</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Модуль читання архівів для Qmmp</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>Зібрано з %1</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_zh_CN.ts b/src/plugins/Input/archive/translations/archive_plugin_zh_CN.ts index 9f32d95f9..f12b21376 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_zh_CN.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_zh_CN.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation>归档插件</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation>归档</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation>关于归档读取器插件</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation>Qmmp 归档读取器插件</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation>使用 %1 编译</translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/archive/translations/archive_plugin_zh_TW.ts b/src/plugins/Input/archive/translations/archive_plugin_zh_TW.ts index 8ea260d3b..365febd2c 100644 --- a/src/plugins/Input/archive/translations/archive_plugin_zh_TW.ts +++ b/src/plugins/Input/archive/translations/archive_plugin_zh_TW.ts @@ -47,32 +47,32 @@ <context> <name>DecoderArchiveFactory</name> <message> - <location filename="../decoderarchivefactory.cpp" line="42"/> + <location filename="../decoderarchivefactory.cpp" line="41"/> <source>Archive Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="44"/> + <location filename="../decoderarchivefactory.cpp" line="43"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="141"/> + <location filename="../decoderarchivefactory.cpp" line="140"/> <source>About Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="142"/> + <location filename="../decoderarchivefactory.cpp" line="141"/> <source>Qmmp Archive Reader Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="143"/> + <location filename="../decoderarchivefactory.cpp" line="142"/> <source>Compiled against %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderarchivefactory.cpp" line="144"/> + <location filename="../decoderarchivefactory.cpp" line="143"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/CMakeLists.txt b/src/plugins/Input/cdaudio/CMakeLists.txt index 6c16db534..d63edffbe 100644 --- a/src/plugins/Input/cdaudio/CMakeLists.txt +++ b/src/plugins/Input/cdaudio/CMakeLists.txt @@ -1,13 +1,5 @@ project(libcdaudio) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) # libqmmp @@ -33,7 +25,7 @@ SET(libcdaudio_HDRS SET(libcdaudio_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libcdaudio_RCC_SRCS ${libcdaudio_RCCS}) +QT5_ADD_RESOURCES(libcdaudio_RCC_SRCS ${libcdaudio_RCCS}) # user interface @@ -41,7 +33,7 @@ SET(libcdaudio_UIS settingsdialog.ui ) -QT4_WRAP_UI(libcdaudio_UIS_H ${libcdaudio_UIS}) +QT5_WRAP_UI(libcdaudio_UIS_H ${libcdaudio_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -50,6 +42,6 @@ IF(CDIO_FOUND) ADD_LIBRARY(cdaudio MODULE ${libcdaudio_SRCS} ${libcdaudio_UIS_H} ${libcdaudio_RCC_SRCS} ${libcdaudio_HDRS}) add_dependencies(cdaudio qmmp) -target_link_libraries(cdaudio ${QT_LIBRARIES} libqmmp ${CDIO_LDFLAGS}) +target_link_libraries(cdaudio Qt5::Widgets -lqmmp ${CDIO_LDFLAGS}) install(TARGETS cdaudio DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(CDIO_FOUND) diff --git a/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp b/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp index 28878690c..cf83733a6 100644 --- a/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp +++ b/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <QRegExp> #include <cdio/version.h> #include <cddb/version.h> @@ -99,5 +98,3 @@ QTranslator *DecoderCDAudioFactory::createTranslator(QObject *parent) translator->load(QString(":/cdaudio_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(cdaudio, DecoderCDAudioFactory) diff --git a/src/plugins/Input/cdaudio/decodercdaudiofactory.h b/src/plugins/Input/cdaudio/decodercdaudiofactory.h index db9ff94b9..04a7f2b16 100644 --- a/src/plugins/Input/cdaudio/decodercdaudiofactory.h +++ b/src/plugins/Input/cdaudio/decodercdaudiofactory.h @@ -32,6 +32,7 @@ class DecoderCDAudioFactory : public QObject, DecoderFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: bool canDecode(QIODevice *input) const; diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_bg.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_bg.ts index 12b5dd88b..3cd50fcf9 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_bg.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_cs.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_cs.ts index 2a905b273..f63633e4b 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_cs.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Modul pro zvuková CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>O modulu pro zvuková CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Modul Qmmp pro zvuková CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Zkompilováno s libcdio-%1 a libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Použití: otevřete cdda:/// v dialogu Přidat URL nebo z příkazové řádky</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_de.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_de.ts index 7e75c2e9f..8128586a2 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_de.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>CD-Audio-Modul</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Über CD-Audio-Modul</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Qmmp CD-Audio-Modul</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Kompiliert mit libcdio-%1 und libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Verwendung: Geben Sie cdda:/// in den „URL hinzufügen“-Dialog oder in die Befehlszeile ein</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_el.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_el.ts index 8bbd010d2..3c1dbbafa 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_el.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Πρόσθετο CD ήχου</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Σχετικά με το πρόσθετο CD ήχου</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Qmmp πρόσθετο CD ήχου</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Μεταγλωττίστηκε χρησιμοποιώντας τις βιβλιοθήκες libcdio-%1 και libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Χρήση: ανοίξτε το cdda:/// χρησιμοποιώντας το διάλογο προσθήκης URL ή τη γραμμή εντολών</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_en.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_en.ts index 0c484eb8a..6f2c3c91c 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_en.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_es.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_es.ts index 7566a71e8..4a8b9e781 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_es.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Módulo de audio CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Acerca del módulo de audio CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Módulo de audio CD para Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Compilado con libcdio-%1 y libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Uso: abrir cdda:// con el diálogo Añadir URL o la línea de comandos</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fi.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fi.ts index b586014f9..eec266510 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fi.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fr.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fr.ts index c6bb8bbae..f98883d92 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fr.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Greffon CD audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>À propos du greffon CD audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Greffon CD audio pour Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Compilé contre libcdio-%1 et libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Utilisation : ouvrir cdda:/// avec le dialogue « Ajouter URL » ou en ligne de commande</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_gl_ES.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_gl_ES.ts index 0299b9646..930314de5 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_gl_ES.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Engadido de CD de audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Sobre o engadido de CD de audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Engadido de CD de audio de Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Compilado usando libcdio-%1 e libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Uso: open cdda:/// usando diálogo de engadir URL ou liña de comandos</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_he.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_he.ts index 7aeae7651..46603f6c2 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_he.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>תוסף תקליטור שמע</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>אודות תוסף תקליטור שמע</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>תוסף תקליטור שמע של Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>הודר כנגד libcdio-%1 וגם libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>שימוש: פתח cdda:/// באמצעות דו שיח הוסף URL או שורת פקודה</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_hu.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_hu.ts index 7c390eead..1393e8ce7 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_hu.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_id.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_id.ts index 435ede131..6c53bd11f 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_id.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Plugin Audio CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Tentang Plugin Audio CD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Plugin Audio CD Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Dikompilasi terhadap libcdio-%1 dan libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Penggunaan: buka cdda:// menggunakan dialog Tambah URL atau baris perintah</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_it.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_it.ts index b7feb1cf9..681c092a8 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_it.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Modulo CD-Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Informazioni sul modulo CD-Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Modulo CD-Audio per Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Compilazione basata su libcdio-%1 e libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Uso: aprire cdda:// nella finestra di dialgo degli URL, o via linea di comando</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ja.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ja.ts index 61f1730b2..07be7a35b 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ja.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>CD 音響プラグイン</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>CD 音響プラグインについて</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>QMMP CD 音響プラグイン</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>libcdio-%1 と libcddb-%2 を使用してコンパイル</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>使い方: コマンド入力行もしくは「URL を追加」ダイアログで cdda:/// を開く</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_kk.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_kk.ts index b9f612266..1d1dfc232 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_kk.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_lt.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_lt.ts index e799853ad..d1bd38bca 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_lt.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>CD Audio Įskiepis</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Apie CD Audio įskiepį</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Apie CD Audio Qmmp įskiepį</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Sukompiliuota su libcdio-%1 ir libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Naudojimas: atverti cdda:/// naudojant Prideti interneto adresą arba komandinė eilutę</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_nl.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_nl.ts index 30710ab1b..e3a4c638f 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_nl.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Audio CD Module</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Over de Audio CD Module</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Audio CD Module voor Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Gecompileerd tegen libcdio-%1 en libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Gebruik: Voeg cdda:/// in het "Voeg URL toe" dialoog of als argument op de command prompt</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pl_PL.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pl_PL.ts index 72960d6a0..214141a8c 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pl_PL.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Wtyczka CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>O wtyczce CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Wtyczka CD Audio dla Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Skompilowane przy użyciu libcdio-%1 oraz libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Instrukcja: otwórz cdda:/// używając Dodaj URL lib z linii poleceń</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt.ts index 04feeeba8..c307742aa 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Suplemento CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Sobre o suplemento CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Suplemento Qmmp CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Compilado com libcdio-%1 e libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Utilização: abrir cdda:/// através de Adicionar URL ou com a linha de comandos</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt_BR.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt_BR.ts index dab84407d..058e6ede4 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt_BR.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Plugin CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Sobre o plugin CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Plugin Qmmp CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Compilado com libcdio-%1 e libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Utilização: abrir cdda:/// através de Adicionar URL ou com a linha de comandos</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ru.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ru.ts index ea891f451..ac09ad179 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ru.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Модуль CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>О Модуле CD Audio</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Модуль CD Audio для Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Собрано с libcdio-%1 и libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Использование: откройте cdda:/// с помощью диалога добавления URL или командной строки</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sk.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sk.ts index c0625798a..68cec4148 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sk.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_BA.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_BA.ts index 60bd035c4..6060a3547 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_BA.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Музички диск</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>О прикључку за музички диск</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Кумп прикључак за музички диск</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Компилован на libcdio-%1 и libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Употреба: отворите cdda:/// користећи дијалог за додавање УРЛ-а или командну линију</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_RS.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_RS.ts index 8b2203663..327d91ae7 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_RS.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Музички диск</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>О прикључку за музички диск</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Кумп прикључак за музички диск</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Компилован на libcdio-%1 и libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Употреба: отворите cdda:/// користећи дијалог за додавање УРЛ-а или командну линију</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_tr.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_tr.ts index 8fe6a416e..305d2a19b 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_tr.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>CD Ses Eklentisi</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>CD Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Qmmp CD Ses Eklentisi</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Kullanımı: komut satırından veya URL Ekle diyaloğundan open cdda:/// şeklindedir</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_uk_UA.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_uk_UA.ts index f258a4967..6b1fde95b 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_uk_UA.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>Модуль AudioCD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>Про модуль AudioCD</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Модуль AudioCD для Qmmp</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>Зібрано з libcdio-%1 та libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>Використання: відкрийте cdda:/// використовуючи діалог "Додати адресу" чи командний рядок</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_CN.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_CN.ts index 1af1193c3..8e802d424 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_CN.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>CD 音频插件</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>关于 CD 音频插件</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Qmmp CD 音频插件</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>编译依赖 libcdio-%1 和 libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>用法:open cdda:/// 使用添加 URL 对话或命令行</translation> </message> diff --git a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_TW.ts b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_TW.ts index ac3c07011..0cb830de3 100644 --- a/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_TW.ts +++ b/src/plugins/Input/cdaudio/translations/cdaudio_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderCDAudioFactory</name> <message> - <location filename="../decodercdaudiofactory.cpp" line="42"/> + <location filename="../decodercdaudiofactory.cpp" line="41"/> <source>CD Audio Plugin</source> <translation>CD 聲訊插件</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="87"/> + <location filename="../decodercdaudiofactory.cpp" line="86"/> <source>About CD Audio Plugin</source> <translation>關於 CD 聲訊插件</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="88"/> + <location filename="../decodercdaudiofactory.cpp" line="87"/> <source>Qmmp CD Audio Plugin</source> <translation>Qmmp CD 聲訊插件</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="89"/> + <location filename="../decodercdaudiofactory.cpp" line="88"/> <source>Compiled against libcdio-%1 and libcddb-%2</source> <translation>編譯依賴 libcdio-%1 and libcddb-%2</translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="91"/> + <location filename="../decodercdaudiofactory.cpp" line="90"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodercdaudiofactory.cpp" line="92"/> + <location filename="../decodercdaudiofactory.cpp" line="91"/> <source>Usage: open cdda:/// using Add URL dialog or command line</source> <translation>用法:open cdda:/// 使用添加 URL會話或命令行</translation> </message> diff --git a/src/plugins/Input/cue/CMakeLists.txt b/src/plugins/Input/cue/CMakeLists.txt index 2929e006e..cebcbc18b 100644 --- a/src/plugins/Input/cue/CMakeLists.txt +++ b/src/plugins/Input/cue/CMakeLists.txt @@ -1,20 +1,7 @@ project(libcue) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_BINARY_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -41,7 +28,7 @@ SET(libcue_HDRS SET(libcue_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libcue_RCC_SRCS ${libcue_RCCS}) +QT5_ADD_RESOURCES(libcue_RCC_SRCS ${libcue_RCCS}) # user interface @@ -50,7 +37,7 @@ SET(libcue_UIS settingsdialog.ui ) -QT4_WRAP_UI(libcue_UIS_H ${libcue_UIS}) +QT5_WRAP_UI(libcue_UIS_H ${libcue_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -58,8 +45,8 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(cue MODULE ${libcue_SRCS} ${libcue_RCC_SRCS} ${libcue_UIS_H} ${libcue_HDRS}) add_dependencies(cue qmmp) IF(USE_ENCA AND ENCA_FOUND) -target_link_libraries(cue ${QT_LIBRARIES} libqmmp ${ENCA_LDFLAGS}) +target_link_libraries(cue Qt5::Widgets -lqmmp ${ENCA_LDFLAGS}) ELSE(USE_ENCA AND ENCA_FOUND) -target_link_libraries(cue ${QT_LIBRARIES} libqmmp) +target_link_libraries(cue Qt5::Widgets -lqmmp) ENDIF(USE_ENCA AND ENCA_FOUND) install(TARGETS cue DESTINATION ${LIB_DIR}/qmmp/Input) diff --git a/src/plugins/Input/cue/decodercuefactory.cpp b/src/plugins/Input/cue/decodercuefactory.cpp index 0e92264b5..f200cf95e 100644 --- a/src/plugins/Input/cue/decodercuefactory.cpp +++ b/src/plugins/Input/cue/decodercuefactory.cpp @@ -20,14 +20,12 @@ #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include "decoder_cue.h" #include "cuemetadatamodel.h" #include "cueparser.h" #include "settingsdialog.h" #include "decodercuefactory.h" - // DecoderCUEFactory bool DecoderCUEFactory::canDecode(QIODevice *) const @@ -102,5 +100,3 @@ QTranslator *DecoderCUEFactory::createTranslator(QObject *parent) translator->load(QString(":/cue_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(cue,DecoderCUEFactory) diff --git a/src/plugins/Input/cue/decodercuefactory.h b/src/plugins/Input/cue/decodercuefactory.h index 60c33c042..54cd712c5 100644 --- a/src/plugins/Input/cue/decodercuefactory.h +++ b/src/plugins/Input/cue/decodercuefactory.h @@ -34,6 +34,7 @@ class DecoderCUEFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/cue/translations/cue_plugin_bg.ts b/src/plugins/Input/cue/translations/cue_plugin_bg.ts index fe2a250f0..de56b853d 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_bg.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_cs.ts b/src/plugins/Input/cue/translations/cue_plugin_cs.ts index 9b966c654..5501dd2c7 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_cs.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Modul CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Soubory CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>O modulu CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Modul Qmmp CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_de.ts b/src/plugins/Input/cue/translations/cue_plugin_de.ts index d5e642f08..3a9eff4d6 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_de.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE-Modul</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE-Dateien</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Über CUE-Audiomodul</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp CUE-Audiomodul</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_el.ts b/src/plugins/Input/cue/translations/cue_plugin_el.ts index d190610bd..4b3ada7af 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_el.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Πρόσθετο CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Αρχεία CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_en.ts b/src/plugins/Input/cue/translations/cue_plugin_en.ts index ddcd7cabf..717462816 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_en.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_es.ts b/src/plugins/Input/cue/translations/cue_plugin_es.ts index 2c5c2b85f..e8a529508 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_es.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Módulo CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Archivos CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Acerca del módulo de audio CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Módulo de audio CUE para Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_fi.ts b/src/plugins/Input/cue/translations/cue_plugin_fi.ts index 35cca9091..760af9907 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_fi.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE-liitännäinen</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE-tiedostot</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Tietoja - CUE-ääniliitännäinen</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp:n CUE-ääniliitännäinen</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_fr.ts b/src/plugins/Input/cue/translations/cue_plugin_fr.ts index eba1bbcdb..1846659fa 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_fr.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Greffon de fichiers .cue</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Fichiers .cue</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>À propos du greffon de fichiers .cue</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Greffon de fichiers .cue pour Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_gl_ES.ts b/src/plugins/Input/cue/translations/cue_plugin_gl_ES.ts index 23fffdba6..532913331 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_gl_ES.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Engadido CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Ficheiros CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Sobre o engadido de audio CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Engadido de audio CUE de Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_he.ts b/src/plugins/Input/cue/translations/cue_plugin_he.ts index ee12c8bf6..0b5be0f2b 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_he.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>תוסף CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>קבצי CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>אודות תוסף CUE שמע</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>תוסף CUE שמע של Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_hu.ts b/src/plugins/Input/cue/translations/cue_plugin_hu.ts index 154d69a86..8a37dd7fc 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_hu.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_id.ts b/src/plugins/Input/cue/translations/cue_plugin_id.ts index cd71d131d..47a58fbe3 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_id.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Plugin CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>File CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Tentang Plugin Audio CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Plugin Audio CUE Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_it.ts b/src/plugins/Input/cue/translations/cue_plugin_it.ts index 684f5e7c0..2d5168ea9 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_it.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Modulo CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Brani CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Informazioni sul Modulo audio CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Modulo audio CUE per Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_ja.ts b/src/plugins/Input/cue/translations/cue_plugin_ja.ts index 6bfaa1995..7f51fbf26 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_ja.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE プラグイン</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE ファイル</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>CUE 音響プラグインについて</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>QMMP CUE 音響プラグイン</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_kk.ts b/src/plugins/Input/cue/translations/cue_plugin_kk.ts index fab44077f..8f3a51205 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_kk.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_lt.ts b/src/plugins/Input/cue/translations/cue_plugin_lt.ts index 5cad727ca..6fb360029 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_lt.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE įskiepis</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE bylos</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Apie CUE audio įskiepį</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp CUE audio įskiepis</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė:Ilya Kotov </translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_nl.ts b/src/plugins/Input/cue/translations/cue_plugin_nl.ts index f88f72cea..620af1270 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_nl.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE Module</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE Bestanden</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Over de CUE Audio Module</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>CUE Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_pl_PL.ts b/src/plugins/Input/cue/translations/cue_plugin_pl_PL.ts index 899dadcee..2e16eab11 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_pl_PL.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Wtyczka CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Pliki CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>O wtyczce CUE Audio</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>O wtyczce CUE dla Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_pt.ts b/src/plugins/Input/cue/translations/cue_plugin_pt.ts index 11a85fda1..825d6d625 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_pt.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Suplemento CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Ficheiros CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Sobre o suplemento CUE Audio</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Suplemento Qmmp CUE Audio</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_pt_BR.ts b/src/plugins/Input/cue/translations/cue_plugin_pt_BR.ts index 77d1838b9..1c290ed17 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_pt_BR.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Plugin CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Arquivos CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Sobre o pugin CUE Audio</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Plugin Qmmp CUE Audio</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_ru.ts b/src/plugins/Input/cue/translations/cue_plugin_ru.ts index 409750851..08a22b959 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_ru.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Модуль CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Файлы CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Об аудио-модуле CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Аудио-модуль CUE для Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_sk.ts b/src/plugins/Input/cue/translations/cue_plugin_sk.ts index fc5d9cf0d..5768bc4a7 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_sk.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_sr_BA.ts b/src/plugins/Input/cue/translations/cue_plugin_sr_BA.ts index e72daf4b8..ba7b35d38 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_sr_BA.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>ЦУЕ прикључак</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>ЦУЕ фајлови</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>О ЦУЕ прикључку</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Кумп ЦУЕ прикључак</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_sr_RS.ts b/src/plugins/Input/cue/translations/cue_plugin_sr_RS.ts index e51fbeb52..f78a0c2fc 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_sr_RS.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>ЦУЕ прикључак</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>ЦУЕ фајлови</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>О ЦУЕ прикључку</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Кумп ЦУЕ прикључак</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_tr.ts b/src/plugins/Input/cue/translations/cue_plugin_tr.ts index f27af91b3..a1dcb5cac 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_tr.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE Eklentisi</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE Dosyaları</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>CUE Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp CUE Ses Eklentisi</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_uk_UA.ts b/src/plugins/Input/cue/translations/cue_plugin_uk_UA.ts index ab03328dd..0827161c5 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_uk_UA.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>Модуль CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>Файли CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>Про аудіо-модуль CUE</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Аудіо-модуль CUE для Qmmp</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_zh_CN.ts b/src/plugins/Input/cue/translations/cue_plugin_zh_CN.ts index d655f8e92..3e9e5fa2d 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_zh_CN.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE 插件</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE 文件</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>关于 CUE 音频插件</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp CUE 音频插件</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/cue/translations/cue_plugin_zh_TW.ts b/src/plugins/Input/cue/translations/cue_plugin_zh_TW.ts index 06c046964..b8e016b2c 100644 --- a/src/plugins/Input/cue/translations/cue_plugin_zh_TW.ts +++ b/src/plugins/Input/cue/translations/cue_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>DecoderCUEFactory</name> <message> - <location filename="../decodercuefactory.cpp" line="41"/> + <location filename="../decodercuefactory.cpp" line="39"/> <source>CUE Plugin</source> <translation>CUE 外掛</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="44"/> + <location filename="../decodercuefactory.cpp" line="42"/> <source>CUE Files</source> <translation>CUE 檔案</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="93"/> + <location filename="../decodercuefactory.cpp" line="91"/> <source>About CUE Audio Plugin</source> <translation>關於 CUE 聲訊插件</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="94"/> + <location filename="../decodercuefactory.cpp" line="92"/> <source>Qmmp CUE Audio Plugin</source> <translation>Qmmp CUE 聲訊插件</translation> </message> <message> - <location filename="../decodercuefactory.cpp" line="95"/> + <location filename="../decodercuefactory.cpp" line="93"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/CMakeLists.txt b/src/plugins/Input/ffmpeg/CMakeLists.txt index 0a28fe8e2..39ca86075 100644 --- a/src/plugins/Input/ffmpeg/CMakeLists.txt +++ b/src/plugins/Input/ffmpeg/CMakeLists.txt @@ -1,30 +1,18 @@ project(libffmpeg) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) # fixes ffmpeg defines ADD_DEFINITIONS(-D__STDC_CONSTANT_MACROS) include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_BINARY_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) # minimal supported versions -# libav-0.8: libavcodec-53.34.0, libavformat-53.20.0, libavutil-51.21.0 -# ffmpeg-0.9: libavcodec-53.42.0, libavformat-53.24.0, libavutil-51.32.0 -pkg_check_modules(FFMPEG libavcodec>=53.34.0 libavformat>=53.20.0 libavutil>=51.21.0) +# libav-0.9: libavcodec-54.35.0, libavformat-54.20.3, libavutil-52.3.0 +# ffmpeg-2.0: libavcodec-55.18.102, libavformat-55.12.100, libavutil-52.38.100 +pkg_check_modules(FFMPEG libavcodec>=54.35.0 libavformat>=54.20.0 libavutil>=52.3.0) include_directories(${FFMPEG_INCLUDE_DIRS}) link_directories(${FFMPEG_LIBRARY_DIRS}) @@ -45,16 +33,15 @@ SET(libffmpeg_HDRS SET(libffmpeg_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libffmpeg_RCC_SRCS ${libffmpeg_RCCS}) +QT5_ADD_RESOURCES(libffmpeg_RCC_SRCS ${libffmpeg_RCCS}) # user interface - SET(libffmpeg_UIS settingsdialog.ui ) -QT4_WRAP_UI(libffmpeg_UIS_H ${libffmpeg_UIS}) +QT5_WRAP_UI(libffmpeg_UIS_H ${libffmpeg_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -63,6 +50,6 @@ IF(FFMPEG_FOUND) ADD_LIBRARY(ffmpeg MODULE ${libffmpeg_SRCS} ${libffmpeg_UIS_H} ${libffmpeg_RCC_SRCS} ${libffmpeg_HDRS}) add_dependencies(ffmpeg qmmp) -target_link_libraries(ffmpeg ${QT_LIBRARIES} libqmmp ${FFMPEG_LDFLAGS}) +target_link_libraries(ffmpeg Qt5::Widgets -lqmmp ${FFMPEG_LDFLAGS}) install(TARGETS ffmpeg DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(FFMPEG_FOUND) diff --git a/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp b/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp index 9a3f088ad..524273d23 100644 --- a/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp +++ b/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp @@ -270,13 +270,8 @@ bool DecoderFFmpeg::initialize() m_totalTime = input()->isSequential() ? 0 : ic->duration * 1000 / AV_TIME_BASE; -#if (LIBAVCODEC_VERSION_INT >= ((55<<16)+(34<<8)+0)) //libav 10 if(c->codec_id == AV_CODEC_ID_SHORTEN) //ffmpeg bug workaround m_totalTime = 0; -#else - if(c->codec_id == CODEC_ID_SHORTEN) //ffmpeg bug workaround - m_totalTime = 0; -#endif Qmmp::AudioFormat format = Qmmp::PCM_UNKNOWM; @@ -467,11 +462,8 @@ void DecoderFFmpeg::fillBuffer() m_temp_pkt.size = 0; continue; } -#if (LIBAVCODEC_VERSION_INT >= ((55<<16)+(34<<8)+0)) //libav 10 + if(m_seekTime && c->codec_id == AV_CODEC_ID_APE) -#else - if(m_seekTime && c->codec_id == CODEC_ID_APE) -#endif { int64_t rescaledPts = av_rescale(m_pkt.pts, AV_TIME_BASE * (int64_t) @@ -481,11 +473,8 @@ void DecoderFFmpeg::fillBuffer() } m_seekTime = 0; } -#if (LIBAVCODEC_VERSION_INT >= ((55<<16)+(34<<8)+0)) //libav 10 + if(m_skipBytes > 0 && c->codec_id == AV_CODEC_ID_APE) -#else - if(m_skipBytes > 0 && c->codec_id == CODEC_ID_APE) -#endif { while (m_skipBytes > 0) { @@ -524,11 +513,7 @@ void DecoderFFmpeg::fillBuffer() m_output_at = 0; m_temp_pkt.size = 0; -#if (LIBAVCODEC_VERSION_INT >= ((55<<16)+(34<<8)+0)) //libav 10 if(c->codec_id == AV_CODEC_ID_SHORTEN || c->codec_id == AV_CODEC_ID_TWINVQ) -#else - if(c->codec_id == CODEC_ID_SHORTEN || c->codec_id == CODEC_ID_TWINVQ) -#endif { if(m_pkt.data) #if (LIBAVCODEC_VERSION_INT >= ((57<<16)+(24<<8)+102)) //ffmpeg-3.0 diff --git a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp index 10bb08a2c..4728a8f7f 100644 --- a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp +++ b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp @@ -18,11 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <QTranslator> #include <QSettings> #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> - extern "C"{ #include <libavformat/avformat.h> #include <libavcodec/avcodec.h> @@ -92,8 +90,6 @@ const DecoderProperties DecoderFFmpegFactory::properties() const filters << "*.wma" << "*.ape" << "*.tta" << "*.m4a" << "*.aac" << "*.ra" << "*.shn" << "*.vqf" << "*.ac3"; filters = settings.value("FFMPEG/filters", filters).toStringList(); - //remove unsupported filters -#if (LIBAVCODEC_VERSION_INT >= ((54<<16) + (51<<8) + 100)) //libav 10 if(!avcodec_find_decoder(AV_CODEC_ID_WMAV1)) filters.removeAll("*.wma"); if(!avcodec_find_decoder(AV_CODEC_ID_APE)) @@ -118,33 +114,6 @@ const DecoderProperties DecoderFFmpegFactory::properties() const filters.removeAll("*.mka"); if(!avcodec_find_decoder(AV_CODEC_ID_TWINVQ)) filters.removeAll("*.vqf"); -#else - if(!avcodec_find_decoder(CODEC_ID_WMAV1)) - filters.removeAll("*.wma"); - if(!avcodec_find_decoder(CODEC_ID_APE)) - filters.removeAll("*.ape"); - if(!avcodec_find_decoder(CODEC_ID_TTA)) - filters.removeAll("*.tta"); - if(!avcodec_find_decoder(CODEC_ID_AAC)) - filters.removeAll("*.aac"); - if(!avcodec_find_decoder(CODEC_ID_MP3)) - filters.removeAll("*.mp3"); - if(!avcodec_find_decoder(CODEC_ID_AAC) && !avcodec_find_decoder(CODEC_ID_ALAC)) - filters.removeAll("*.m4a"); - if(!avcodec_find_decoder(CODEC_ID_RA_288)) - filters.removeAll("*.ra"); - if(!avcodec_find_decoder(CODEC_ID_SHORTEN)) - filters.removeAll("*.shn"); - if(!avcodec_find_decoder(CODEC_ID_EAC3)) - filters.removeAll("*.ac3"); - if(!avcodec_find_decoder(CODEC_ID_DTS)) - filters.removeAll("*.dts"); - if(!avcodec_find_decoder(CODEC_ID_TRUEHD)) - filters.removeAll("*.mka"); - if(!avcodec_find_decoder(CODEC_ID_TWINVQ)) - filters.removeAll("*.vqf"); -#endif - DecoderProperties properties; properties.name = tr("FFmpeg Plugin"); @@ -281,5 +250,3 @@ QTranslator *DecoderFFmpegFactory::createTranslator(QObject *parent) translator->load(QString(":/ffmpeg_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(ffmpeg,DecoderFFmpegFactory) diff --git a/src/plugins/Input/ffmpeg/decoderffmpegfactory.h b/src/plugins/Input/ffmpeg/decoderffmpegfactory.h index 75eef41b5..74b68fb52 100644 --- a/src/plugins/Input/ffmpeg/decoderffmpegfactory.h +++ b/src/plugins/Input/ffmpeg/decoderffmpegfactory.h @@ -34,6 +34,7 @@ class DecoderFFmpegFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/ffmpeg/ffmpegmetadatamodel.cpp b/src/plugins/Input/ffmpeg/ffmpegmetadatamodel.cpp index 2e4dfbd80..488dd08a5 100644 --- a/src/plugins/Input/ffmpeg/ffmpegmetadatamodel.cpp +++ b/src/plugins/Input/ffmpeg/ffmpegmetadatamodel.cpp @@ -83,12 +83,7 @@ QPixmap FFmpegMetaDataModel::cover() #else c = m_in->streams[idx]->codec; #endif - -#if (LIBAVCODEC_VERSION_INT >= ((55<<16)+(34<<8)+0)) //libav 10 if (c->codec_type == AVMEDIA_TYPE_VIDEO && c->codec_id == AV_CODEC_ID_MJPEG) -#else - if (c->codec_type == AVMEDIA_TYPE_VIDEO && c->codec_id == CODEC_ID_MJPEG) -#endif break; } if (c) diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_bg.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_bg.ts index 177c1f1cf..a7efaf19d 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_bg.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_cs.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_cs.ts index a089c3fae..197d765c5 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_cs.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Modul FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formáty FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>O modulu FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Vstupní modul Qmmp FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Kompilováno s:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_de.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_de.ts index 83a11c890..a669be247 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_de.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg-Modul</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg-Formate</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Über FFmpeg-Audiomodul</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Qmmp FFmpeg-Audiomodul</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Kompiliert gegen:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_el.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_el.ts index f662f57ce..797c7767a 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_el.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Πρόσθετο FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Μορφές FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Μεταγλωττίστηκε χρησιμοποιώντας:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_en.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_en.ts index c11ba21dc..e538ab120 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_en.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_es.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_es.ts index f7d554bdf..224c56804 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_es.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Módulo FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formatos FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Acerca del módulo de audio FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Módulo de audio FFmpeg para Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Compilado contra:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fi.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fi.ts index db3b61ac3..58d991c8d 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fi.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg-liitännäinen</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fr.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fr.ts index 0e8599fb8..76eba9eea 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fr.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Greffon FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formats FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>À propos du greffon audio FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Greffon audio FFmpeg pour Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Compilé contre :</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_gl_ES.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_gl_ES.ts index 3aa03e8ae..be293c15a 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_gl_ES.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Engadido FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formatos ffmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Sobre o engadido ffmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Engadido de audio ffmpeg de Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Compilado usando:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_he.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_he.ts index d9f75f52f..f941e07d5 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_he.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>תוסף FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>פורמטים של FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>אודות תוסף שמע FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>תוסף שמע FFmpeg של Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>הודר כנגד:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_hu.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_hu.ts index 1ac7dc59b..424c43a32 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_hu.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_id.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_id.ts index 1897d8e00..45c15daac 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_id.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Plugin FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Format FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Tentang Plugin Audio FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Plugin Audio FFmpeg Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Dikompilasi terhadap:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_it.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_it.ts index 99aa0f35a..1b8f57e1a 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_it.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Info sul modulo audi FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Modulo audio FFmpeg per Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Modulo FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formati FFmpeg</translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ja.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ja.ts index dd1d7cde2..fb82daed4 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ja.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg プラグイン</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg 用の形式</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>FFmpeg 音響プラグインについて</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>QMMP FFmpeg 音響プラグイン</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>コンパイルに使用したライブラリ:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_kk.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_kk.ts index 2c5db12c4..6d37ccac1 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_kk.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_lt.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_lt.ts index 7c596ee1d..46ffe6da2 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_lt.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Apie FFmpeg įskiepį</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>FFmpeg Qmmp audio įskiepis</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Sukompiliuota su:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg įskiepis</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg bylų tipai</translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_nl.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_nl.ts index 9d1278c4a..76732654f 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_nl.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Over de FFmpeg Audio Module</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>FFmpeg Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg Module</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg Formaat</translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pl_PL.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pl_PL.ts index 8f1dcae6f..08b8932e2 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pl_PL.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Wtyczka FFMPEG</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formaty FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>O wtyczce FFmpeg Audio</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Wtyczka FFmpeg Audio dla Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Skompilowana z biblioteką:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt.ts index 812779a6f..2448c53a2 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Suplemento FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formatos FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Sobre o suplemento FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Suplemento Qmmp FFmpeg Audio</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Compilado com:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt_BR.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt_BR.ts index 0e6370439..2f477e7b0 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt_BR.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Plugin FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Formatos FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Sobre o plugin FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Plugin Qmmp FFmpeg Audio</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Compilado com:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ru.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ru.ts index 6534c34b5..bfabe3582 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ru.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Модуль FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Форматы FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Об аудио-модуле FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Аудио-модуль FFmpeg для Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Собрано с библиотеками:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sk.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sk.ts index 2a7c42717..9ae7a69f1 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sk.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_BA.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_BA.ts index a8f2368fc..cb6eceea4 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_BA.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>ФФмпег прикључак</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>ФФмпег формати</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>О ФФмпег прикључку</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Кумп ФФмпег прикључак</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Компилован на:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_RS.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_RS.ts index a943def15..ae25fcdd0 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_RS.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>ФФмпег прикључак</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>ФФмпег формати</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>О ФФмпег прикључку</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Кумп ФФмпег прикључак</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Компилован на:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_tr.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_tr.ts index 800738586..22003e11c 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_tr.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg Eklentisi</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg Biçimleri</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>FFmpeg Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Qmmp FFmpeg Ses Eklentisi</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_uk_UA.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_uk_UA.ts index 55883a886..0fc204bf9 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_uk_UA.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>Про аудіо-модуль FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Аудіо-модуль FFmpeg для Qmmp</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>Зібрано з бібліотеками:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>Модуль FFmpeg</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>Формати FFmpeg</translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_CN.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_CN.ts index d6c6c4b5b..31a08c2c7 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_CN.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg 插件</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg 格式</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>关于 FFmpeg 音频插件</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Qmmp FFmpeg 音频插件</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation>在以下文件的基础上进行的编译:</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_TW.ts b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_TW.ts index c06b2d01a..4388fdd1a 100644 --- a/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_TW.ts +++ b/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderFFmpegFactory</name> <message> - <location filename="../decoderffmpegfactory.cpp" line="150"/> + <location filename="../decoderffmpegfactory.cpp" line="119"/> <source>FFmpeg Plugin</source> <translation>FFmpeg 外掛</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="152"/> + <location filename="../decoderffmpegfactory.cpp" line="121"/> <source>FFmpeg Formats</source> <translation>FFmpeg 格式</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="259"/> + <location filename="../decoderffmpegfactory.cpp" line="228"/> <source>About FFmpeg Audio Plugin</source> <translation>關於 FFmpeg 聲訊插件</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="260"/> + <location filename="../decoderffmpegfactory.cpp" line="229"/> <source>Qmmp FFmpeg Audio Plugin</source> <translation>Qmmp FFmpeg 聲訊插件</translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="261"/> + <location filename="../decoderffmpegfactory.cpp" line="230"/> <source>Compiled against:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderffmpegfactory.cpp" line="274"/> + <location filename="../decoderffmpegfactory.cpp" line="243"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/ffmpeg_legacy/CMakeLists.txt b/src/plugins/Input/ffmpeg_legacy/CMakeLists.txt deleted file mode 100644 index 8f2a43d6d..000000000 --- a/src/plugins/Input/ffmpeg_legacy/CMakeLists.txt +++ /dev/null @@ -1,72 +0,0 @@ -project(libffmpeg_legacy) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) -# fixes ffmpeg defines -ADD_DEFINITIONS(-D__STDC_CONSTANT_MACROS) - -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_BINARY_DIR}/../../../ -) - -# libqmmp -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) -link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) - -# minimal supported versions -# ffmpeg-0.6: libavcodec-52.72.2, libavformat-52.64.2, libavutil-50.15.1 -pkg_check_modules(FFMPEG_MIN libavcodec>=52.72.2 libavformat>=52.64.2 libavutil>=50.15.1) - -# maximal supported versions -# libav-0.8: libavcodec-53.34.0, libavformat-53.20.0, libavutil-51.21.0 -# ffmpeg-0.9: libavcodec-53.42.0, libavformat-53.24.0, libavutil-51.32.0 -IF(FFMPEG_MIN_FOUND) -pkg_check_modules(FFMPEG_LEGACY libavcodec<=53.33.0 libavformat<=53.19.0 libavutil<=51.20.0) -ENDIF(FFMPEG_MIN_FOUND) - -include_directories(${FFMPEG_LEGACY_INCLUDE_DIRS}) -link_directories(${FFMPEG_LEGACY_LIBRARY_DIRS}) -ADD_DEFINITIONS(${FFMPEG_LEGACY_CFLAGS}) - -SET(libffmpeg_SRCS - decoder_ffmpeg.cpp - decoderffmpegfactory.cpp - ffmpegmetadatamodel.cpp - settingsdialog.cpp -) - -SET(libffmpeg_HDRS - decoder_ffmpeg.h -) - -SET(libffmpeg_RCCS translations/translations.qrc) - -QT4_ADD_RESOURCES(libffmpeg_RCC_SRCS ${libffmpeg_RCCS}) - -# user interface - - -SET(libffmpeg_UIS - settingsdialog.ui -) - -QT4_WRAP_UI(libffmpeg_UIS_H ${libffmpeg_UIS}) -# Don't forget to include output directory, otherwise -# the UI file won't be wrapped! -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -IF(FFMPEG_LEGACY_FOUND) -ADD_LIBRARY(ffmpeg_legacy MODULE ${libffmpeg_SRCS} ${libffmpeg_UIS_H} - ${libffmpeg_RCC_SRCS} ${libffmpeg_HDRS}) -add_dependencies(ffmpeg_legacy qmmp) -target_link_libraries(ffmpeg_legacy ${QT_LIBRARIES} libqmmp ${FFMPEG_LEGACY_LDFLAGS}) -install(TARGETS ffmpeg_legacy DESTINATION ${LIB_DIR}/qmmp/Input) -ENDIF(FFMPEG_LEGACY_FOUND) diff --git a/src/plugins/Input/ffmpeg_legacy/decoder_ffmpeg.cpp b/src/plugins/Input/ffmpeg_legacy/decoder_ffmpeg.cpp deleted file mode 100644 index 52655d9ce..000000000 --- a/src/plugins/Input/ffmpeg_legacy/decoder_ffmpeg.cpp +++ /dev/null @@ -1,404 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2006-2017 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QObject> -#include <QFile> -#include "decoder_ffmpeg.h" - -// callbacks - -static int ffmpeg_read(void *data, uint8_t *buf, int size) -{ - DecoderFFmpeg *d = (DecoderFFmpeg*)data; - return (int)d->input()->read((char*)buf, size); -} - -static int64_t ffmpeg_seek(void *data, int64_t offset, int whence) -{ - DecoderFFmpeg *d = (DecoderFFmpeg*)data; - int64_t absolute_pos = 0; - /*if(d->input()->isSequential()) - return -1;*/ - switch( whence ) - { - case AVSEEK_SIZE: - return d->input()->size(); - case SEEK_SET: - absolute_pos = offset; - break; - case SEEK_CUR: - absolute_pos = d->input()->pos() + offset; - break; - case SEEK_END: - absolute_pos = d->input()->size() - offset; - break; - default: - return -1; - } - if(absolute_pos < 0 || absolute_pos > d->input()->size()) - return -1; - return d->input()->seek(absolute_pos); -} - -// Decoder class -//legacy ffmpeg support -DecoderFFmpeg::DecoderFFmpeg(const QString &path, QIODevice *i) - : Decoder(i) -{ - m_bitrate = 0; - m_skip = false; - m_totalTime = 0; - ic = 0; - m_path = path; - m_temp_pkt.size = 0; - m_pkt.size = 0; - m_pkt.data = 0; - m_output_buf = 0; - m_output_at = 0; - m_skipBytes = 0; - m_stream = 0; - c = 0; - wma_idx = 0; - av_init_packet(&m_pkt); - av_init_packet(&m_temp_pkt); -} - - -DecoderFFmpeg::~DecoderFFmpeg() -{ - m_bitrate = 0; - m_temp_pkt.size = 0; - if (ic) - av_close_input_stream(ic); - if(m_pkt.data) - av_free_packet(&m_pkt); - if(m_output_buf) - av_free(m_output_buf); - if(m_stream) - av_free(m_stream); -} - -bool DecoderFFmpeg::initialize() -{ - m_bitrate = 0; - m_skip = false; - m_totalTime = 0; - m_seekTime = -1; - av_register_all(); - - AVProbeData pd; - uint8_t buf[PROBE_BUFFER_SIZE + AVPROBE_PADDING_SIZE]; - pd.filename = m_path.toLocal8Bit().constData(); - pd.buf_size = input()->peek((char*)buf, sizeof(buf) - AVPROBE_PADDING_SIZE); - pd.buf = buf; - if(pd.buf_size < PROBE_BUFFER_SIZE) - { - qWarning("DecoderFFmpeg: too small buffer size: %d bytes", pd.buf_size); - return false; - } - AVInputFormat *fmt = av_probe_input_format(&pd, 1); - if(!fmt) - { - qWarning("DecoderFFmpeg: usupported format"); - return false; - } - qDebug("DecoderFFmpeg: detected format: %s", fmt->long_name); - qDebug("=%s=", fmt->name); - -#if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(105<<8)+0)) - m_stream = avio_alloc_context(m_input_buf, INPUT_BUFFER_SIZE, 0, this, ffmpeg_read, NULL, ffmpeg_seek); - if(!m_stream) - { - qWarning("DecoderFFmpeg: unable to initialize I/O callbacks"); - return false; - } - m_stream->seekable = !input()->isSequential(); -#else - m_stream = (ByteIOContext *)av_malloc(sizeof(ByteIOContext)); - init_put_byte(m_stream, m_input_buf, INPUT_BUFFER_SIZE, 0, this, ffmpeg_read, NULL, ffmpeg_seek); - m_stream->is_streamed = input()->isSequential(); -#endif - m_stream->max_packet_size = INPUT_BUFFER_SIZE; - - AVFormatParameters ap; - memset(&ap, 0, sizeof(ap)); - - if(av_open_input_stream(&ic, m_stream, m_path.toLocal8Bit(), fmt, &ap) != 0) - { - qDebug("DecoderFFmpeg: av_open_input_stream() failed"); - return false; - } - av_find_stream_info(ic); - if(ic->pb) - ic->pb->eof_reached = 0; - - if (input()->isSequential()) - { - QMap<Qmmp::MetaData, QString> metaData; - AVMetadataTag *album = av_metadata_get(ic->metadata,"album",0,0); - if(!album) - album = av_metadata_get(ic->metadata,"WM/AlbumTitle",0,0); - AVMetadataTag *artist = av_metadata_get(ic->metadata,"artist",0,0); - if(!artist) - artist = av_metadata_get(ic->metadata,"author",0,0); - AVMetadataTag *comment = av_metadata_get(ic->metadata,"comment",0,0); - AVMetadataTag *genre = av_metadata_get(ic->metadata,"genre",0,0); - AVMetadataTag *title = av_metadata_get(ic->metadata,"title",0,0); - AVMetadataTag *year = av_metadata_get(ic->metadata,"WM/Year",0,0); - if(!year) - year = av_metadata_get(ic->metadata,"year",0,0); - if(!year) - year = av_metadata_get(ic->metadata,"date",0,0); - AVMetadataTag *track = av_metadata_get(ic->metadata,"track",0,0); - if(!track) - track = av_metadata_get(ic->metadata,"WM/Track",0,0); - if(!track) - track = av_metadata_get(ic->metadata,"WM/TrackNumber",0,0); - - if(album) - metaData.insert(Qmmp::ALBUM, QString::fromUtf8(album->value).trimmed()); - if(artist) - metaData.insert(Qmmp::ARTIST, QString::fromUtf8(artist->value).trimmed()); - if(comment) - metaData.insert(Qmmp::COMMENT, QString::fromUtf8(comment->value).trimmed()); - if(genre) - metaData.insert(Qmmp::GENRE, QString::fromUtf8(genre->value).trimmed()); - if(title) - metaData.insert(Qmmp::TITLE, QString::fromUtf8(title->value).trimmed()); - if(year) - metaData.insert(Qmmp::YEAR, year->value); - if(track) - metaData.insert(Qmmp::TRACK, track->value); - metaData.insert(Qmmp::URL, m_path); - addMetaData(metaData); - } - - ic->flags |= AVFMT_FLAG_GENPTS; - av_read_play(ic); - for (wma_idx = 0; wma_idx < (int)ic->nb_streams; wma_idx++) - { - c = ic->streams[wma_idx]->codec; -#if LIBAVCODEC_VERSION_MAJOR < 53 - if (c->codec_type == CODEC_TYPE_AUDIO) -#else - if (c->codec_type == AVMEDIA_TYPE_AUDIO) -#endif - break; - } - - if (c->channels > 0) - c->request_channels = qMin(2, c->channels); - else - c->request_channels = 2; - -#if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(101<<8)+0)) - av_dump_format(ic,0,0,0); -#else - dump_format(ic,0,0,0); -#endif - AVCodec *codec = avcodec_find_decoder(c->codec_id); - - if (!codec) - { - qWarning("DecoderFFmpeg: unsupported codec for output stream"); - return false; - } - - if (avcodec_open(c, codec) < 0) - { - qWarning("DecoderFFmpeg: error while opening codec for output stream"); - return false; - } - - m_totalTime = input()->isSequential() ? 0 : ic->duration * 1000 / AV_TIME_BASE; - m_output_buf = (uint8_t *)av_malloc(AVCODEC_MAX_AUDIO_FRAME_SIZE*2); - -#if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(20<<8)+0)) - if(c->codec_id == CODEC_ID_SHORTEN) //ffmpeg bug workaround - m_totalTime = 0; -#endif - -#if (LIBAVUTIL_VERSION_INT >= ((50<<16)+(38<<8)+0)) - if(c->sample_fmt == AV_SAMPLE_FMT_S32) - configure(c->sample_rate, c->request_channels, Qmmp::PCM_S32LE); - else - configure(c->sample_rate, c->request_channels, Qmmp::PCM_S16LE); -#else - if(c->sample_fmt == SAMPLE_FMT_S32) - configure(c->sample_rate, c->request_channels, Qmmp::PCM_S32LE); - else - configure(c->sample_rate, c->request_channels, Qmmp::PCM_S16LE); -#endif - if(ic->bit_rate) - m_bitrate = ic->bit_rate/1000; - if(c->bit_rate) - m_bitrate = c->bit_rate/1000; - qDebug("DecoderFFmpeg: initialize succes"); - return true; -} - - -qint64 DecoderFFmpeg::totalTime() const -{ - return m_totalTime; -} - -int DecoderFFmpeg::bitrate() const -{ - return m_bitrate; -} - -qint64 DecoderFFmpeg::read(unsigned char *audio, qint64 maxSize) -{ - m_skipBytes = 0; - if (m_skip) - { - while(m_temp_pkt.size) - ffmpeg_decode(m_output_buf); - m_output_at = 0; - m_skip = false; - } - if(!m_output_at) - fillBuffer(); - if(!m_output_at) - return 0; - qint64 len = qMin(m_output_at, maxSize); - memcpy(audio, m_output_buf, len); - m_output_at -= len; - memmove(m_output_buf, m_output_buf + len, m_output_at); - return len; -} - -qint64 DecoderFFmpeg::ffmpeg_decode(uint8_t *audio) -{ - int out_size = AVCODEC_MAX_AUDIO_FRAME_SIZE * 2; - if((m_pkt.stream_index == wma_idx)) - { -#if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(23<<8)+0)) - int l = avcodec_decode_audio3(c, (int16_t *)(audio), &out_size, &m_temp_pkt); -#else - int l = avcodec_decode_audio2(c, (int16_t *)(audio), &out_size, m_temp_pkt.data, m_temp_pkt.size); -#endif - if(c->bit_rate) - m_bitrate = c->bit_rate/1000; - if(l < 0) - return l; - m_temp_pkt.data += l; - m_temp_pkt.size -= l; - } - if (!m_temp_pkt.size && m_pkt.data) - av_free_packet(&m_pkt); - - return out_size; -} - -void DecoderFFmpeg::seek(qint64 pos) -{ - int64_t timestamp = int64_t(pos)*AV_TIME_BASE/1000; - if (ic->start_time != (qint64)AV_NOPTS_VALUE) - timestamp += ic->start_time; - m_seekTime = timestamp; - av_seek_frame(ic, -1, timestamp, AVSEEK_FLAG_BACKWARD); - if(m_pkt.size) - m_skip = true; -} - -void DecoderFFmpeg::fillBuffer() -{ - while(!m_output_at) - { - if(!m_temp_pkt.size) - { - if (av_read_frame(ic, &m_pkt) < 0) - { - m_temp_pkt.size = 0; - break; - } - m_temp_pkt.size = m_pkt.size; - m_temp_pkt.data = m_pkt.data; - - if(m_pkt.stream_index != wma_idx) - { - if(m_pkt.data) - av_free_packet(&m_pkt); - m_temp_pkt.size = 0; - continue; - } - if(m_seekTime && c->codec_id == CODEC_ID_APE) - { - int64_t rescaledPts = av_rescale(m_pkt.pts, - AV_TIME_BASE * (int64_t) - ic->streams[m_pkt.stream_index]->time_base.num, - ic->streams[m_pkt.stream_index]->time_base.den); - m_skipBytes = (m_seekTime - rescaledPts) * c->sample_rate * 4 / AV_TIME_BASE; - } - else - m_skipBytes = 0; - m_seekTime = 0; - } - - if(m_skipBytes > 0 && c->codec_id == CODEC_ID_APE) - { - while (m_skipBytes > 0) - { - m_output_at = ffmpeg_decode(m_output_buf); - if(m_output_at < 0) - break; - m_skipBytes -= m_output_at; - } - - if(m_skipBytes < 0) - { - qint64 size = m_output_at; - m_output_at = - m_skipBytes; - m_output_at = m_output_at/4*4; - memmove(m_output_buf, (m_output_buf + size - m_output_at), m_output_at); - m_skipBytes = 0; - } - } - else - m_output_at = ffmpeg_decode(m_output_buf); - - if(m_output_at < 0) - { - m_output_at = 0; - m_temp_pkt.size = 0; - - if(c->codec_id == CODEC_ID_SHORTEN) - { - if(m_pkt.data) - av_free_packet(&m_pkt); - m_pkt.data = 0; - break; - } - continue; - } - else if(m_output_at == 0) - { - if(c->codec_id == CODEC_ID_SHORTEN) - continue; - - if(m_pkt.data) - av_free_packet(&m_pkt); - m_pkt.data = 0; - break; - } - } -} diff --git a/src/plugins/Input/ffmpeg_legacy/decoder_ffmpeg.h b/src/plugins/Input/ffmpeg_legacy/decoder_ffmpeg.h deleted file mode 100644 index 79d0bed53..000000000 --- a/src/plugins/Input/ffmpeg_legacy/decoder_ffmpeg.h +++ /dev/null @@ -1,84 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2006-2016 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef __decoder_ffmeg_h -#define __decoder_ffmeg_h - -extern "C"{ -#include <libavformat/avformat.h> -#include <libavcodec/avcodec.h> -#include <libavutil/mathematics.h> -#if (LIBAVUTIL_VERSION_INT >= ((51<<16)+(32<<8)+0)) -#include <libavutil/dict.h> -#endif -} - - -#include <qmmp/decoder.h> - -#define PROBE_BUFFER_SIZE 8192 -#define INPUT_BUFFER_SIZE 16384 - -class DecoderFFmpeg : public Decoder -{ -public: - DecoderFFmpeg(const QString &, QIODevice *i); - virtual ~DecoderFFmpeg(); - - // Standard Decoder API - bool initialize(); - qint64 totalTime() const; - int bitrate() const; - qint64 read(unsigned char *audio, qint64 maxSize); - void seek(qint64 time); - -private: - //helper functions - void fillBuffer(); - - AVFormatContext *ic; - AVCodecContext *c; - - uint wma_st_buff, wma_idx2; - int m_bitrate, wma_idx; - - QString m_path; - qint64 m_totalTime; - AVPacket m_pkt; - AVPacket m_temp_pkt; - qint64 m_output_at; - uchar m_input_buf[INPUT_BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE]; - int64_t m_seekTime; - qint64 m_skipBytes; - - qint64 ffmpeg_decode(uint8_t *audio); - bool m_skip; - -#if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(102<<8)+0)) - AVIOContext *m_stream; -#else - ByteIOContext *m_stream; -#endif - - uint8_t *m_output_buf; -}; - - -#endif // __decoder_ffmpeg_h diff --git a/src/plugins/Input/ffmpeg_legacy/decoderffmpegfactory.cpp b/src/plugins/Input/ffmpeg_legacy/decoderffmpegfactory.cpp deleted file mode 100644 index f7b7f3efa..000000000 --- a/src/plugins/Input/ffmpeg_legacy/decoderffmpegfactory.cpp +++ /dev/null @@ -1,224 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QSettings> -#include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> - -extern "C"{ -#include <libavformat/avformat.h> -#include <libavcodec/avcodec.h> -#if (LIBAVUTIL_VERSION_INT >= ((51<<16)+(32<<8)+0)) -#include <libavutil/dict.h> -#endif -} - -#include "ffmpegmetadatamodel.h" -#include "settingsdialog.h" -#include "decoder_ffmpeg.h" -#include "decoderffmpegfactory.h" - - -// DecoderFFmpegFactory - -bool DecoderFFmpegFactory::canDecode(QIODevice *i) const -{ - av_register_all(); - QStringList filters = properties().filters; - - AVProbeData pd; - uint8_t buf[PROBE_BUFFER_SIZE + AVPROBE_PADDING_SIZE]; - pd.filename = 0; - pd.buf_size = i->peek((char*)buf, sizeof(buf) - AVPROBE_PADDING_SIZE); - pd.buf = buf; - if(pd.buf_size < PROBE_BUFFER_SIZE) - return false; - AVInputFormat *fmt = av_probe_input_format(&pd, 1); - if(!fmt) - { - return false; - } - if(filters.contains("*.wma") && !memcmp(fmt->name, "asf", 3)) - return true; - else if(filters.contains("*.mp3") && !memcmp(fmt->name, "mp3", 3)) - return true; - else if(filters.contains("*.aac") && !memcmp(fmt->name, "aac", 3)) - return true; - else if(filters.contains("*.ac3") && !memcmp(fmt->name, "eac3", 4)) - return true; - else if(filters.contains("*.dts") && !memcmp(fmt->name, "dts", 3)) - return true; - else if(filters.contains("*.mka") && !memcmp(fmt->name, "mka", 3)) - return true; - else if(filters.contains("*.vqf") && !memcmp(fmt->name, "vqf", 3)) - return true; - else if(filters.contains("*.ape") && !memcmp(fmt->name, "ape", 3)) - return true; - else if(filters.contains("*.tta") && !memcmp(fmt->name, "tta", 3)) - return true; - return false; -} - -const DecoderProperties DecoderFFmpegFactory::properties() const -{ - av_register_all(); - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - QStringList filters; - filters << "*.wma" << "*.ape"; - filters = settings.value("FFMPEG_legacy/filters", filters).toStringList(); - - if(!avcodec_find_decoder(CODEC_ID_AAC)) - { - filters.removeAll("*.aac"); - filters.removeAll("*.m4a"); - } - DecoderProperties properties; - properties.name = tr("FFmpeg Plugin"); - properties.filters = filters; - properties.description = tr("FFmpeg Formats"); - if(filters.contains("*.wma")) - properties.contentTypes << "audio/x-ms-wma"; - if(filters.contains("*.mp3")) - properties.contentTypes << "audio/mpeg"; - if(filters.contains("*.aac")) - properties.contentTypes << "audio/aac" << "audio/aacp"; - if(filters.contains("*.shn")) - properties.contentTypes << "audio/x-ffmpeg-shorten"; - if(filters.contains("*.m4a")) - { - properties.contentTypes << "audio/3gpp" << "audio/3gpp2" << "audio/mp4"; - properties.contentTypes << "audio/MP4A-LATM" << "audio/mpeg4-generic"; - properties.contentTypes << "audio/m4a"; - } - if(filters.contains("*.ac3")) - properties.contentTypes << "audio/ac3" << "audio/eac3"; - if(filters.contains("*.dts")) - properties.contentTypes << "audio/dts"; - if(filters.contains("*.mka")) - properties.contentTypes << "audio/true-hd" << "audio/x-matroska"; - properties.shortName = "ffmpeg_legacy"; - properties.hasAbout = true; - properties.hasSettings = true; - properties.noInput = false; - properties.priority = 10; - return properties; -} - -Decoder *DecoderFFmpegFactory::create(const QString &path, QIODevice *input) -{ - return new DecoderFFmpeg(path, input); -} - -QList<FileInfo *> DecoderFFmpegFactory::createPlayList(const QString &fileName, bool useMetaData, QStringList *) -{ - - QList <FileInfo*> list; - avcodec_init(); - avcodec_register_all(); - av_register_all(); - AVFormatContext *in = 0; - - if (av_open_input_file(&in, fileName.toLocal8Bit(), 0, 0, 0) < 0) - { - qDebug("DecoderFFmpegFactory: unable to open file"); - return list; - } - FileInfo *info = new FileInfo(fileName); - av_find_stream_info(in); - - if (useMetaData) - { - AVMetadataTag *album = av_metadata_get(in->metadata,"album",0,0); - if(!album) - album = av_metadata_get(in->metadata,"WM/AlbumTitle",0,0); - AVMetadataTag *artist = av_metadata_get(in->metadata,"artist",0,0); - if(!artist) - artist = av_metadata_get(in->metadata,"author",0,0); - AVMetadataTag *comment = av_metadata_get(in->metadata,"comment",0,0); - AVMetadataTag *genre = av_metadata_get(in->metadata,"genre",0,0); - AVMetadataTag *title = av_metadata_get(in->metadata,"title",0,0); - AVMetadataTag *year = av_metadata_get(in->metadata,"WM/Year",0,0); - if(!year) - year = av_metadata_get(in->metadata,"year",0,0); - if(!year) - year = av_metadata_get(in->metadata,"date",0,0); - AVMetadataTag *track = av_metadata_get(in->metadata,"track",0,0); - if(!track) - track = av_metadata_get(in->metadata,"WM/Track",0,0); - if(!track) - track = av_metadata_get(in->metadata,"WM/TrackNumber",0,0); - - if(album) - info->setMetaData(Qmmp::ALBUM, QString::fromUtf8(album->value).trimmed()); - if(artist) - info->setMetaData(Qmmp::ARTIST, QString::fromUtf8(artist->value).trimmed()); - if(comment) - info->setMetaData(Qmmp::COMMENT, QString::fromUtf8(comment->value).trimmed()); - if(genre) - info->setMetaData(Qmmp::GENRE, QString::fromUtf8(genre->value).trimmed()); - if(title) - info->setMetaData(Qmmp::TITLE, QString::fromUtf8(title->value).trimmed()); - if(year) - info->setMetaData(Qmmp::YEAR, year->value); - if(track) - info->setMetaData(Qmmp::TRACK, track->value); - } - info->setLength(in->duration/AV_TIME_BASE); - av_close_input_file(in); - list << info; - return list; -} - -MetaDataModel* DecoderFFmpegFactory::createMetaDataModel(const QString &path, QObject *parent) -{ - return new FFmpegMetaDataModel(path,parent); -} - -void DecoderFFmpegFactory::showSettings(QWidget *parent) -{ - SettingsDialog *s = new SettingsDialog(parent); - s->show(); -} - -void DecoderFFmpegFactory::showAbout(QWidget *parent) -{ - QMessageBox::about (parent, tr("About FFmpeg Audio Plugin"), - - tr("Qmmp FFmpeg Audio Plugin")+"\n"+ - QString(tr("Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6")) - .arg(LIBAVFORMAT_VERSION_MAJOR) - .arg(LIBAVFORMAT_VERSION_MINOR) - .arg(LIBAVFORMAT_VERSION_MICRO) - .arg(LIBAVCODEC_VERSION_MAJOR) - .arg(LIBAVCODEC_VERSION_MINOR) - .arg(LIBAVCODEC_VERSION_MICRO)+"\n"+ - tr("Written by: Ilya Kotov <forkotov02@ya.ru>")); -} - -QTranslator *DecoderFFmpegFactory::createTranslator(QObject *parent) -{ - QTranslator *translator = new QTranslator(parent); - QString locale = Qmmp::systemLanguageID(); - translator->load(QString(":/ffmpeg_legacy_plugin_") + locale); - return translator; -} - -Q_EXPORT_PLUGIN2(ffmpeg_legacy,DecoderFFmpegFactory) diff --git a/src/plugins/Input/ffmpeg_legacy/decoderffmpegfactory.h b/src/plugins/Input/ffmpeg_legacy/decoderffmpegfactory.h deleted file mode 100644 index 11dc5d816..000000000 --- a/src/plugins/Input/ffmpeg_legacy/decoderffmpegfactory.h +++ /dev/null @@ -1,50 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2006-2016 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef DECODERFFMPEGFACTORY_H -#define DECODERFFMPEGFACTORY_H - -#include <QObject> -#include <QString> -#include <QIODevice> -#include <QWidget> - -#include <qmmp/decoder.h> -#include <qmmp/output.h> -#include <qmmp/decoderfactory.h> -#include <qmmp/fileinfo.h> - -class DecoderFFmpegFactory : public QObject, - DecoderFactory -{ -Q_OBJECT -Q_INTERFACES(DecoderFactory) - -public: - bool canDecode(QIODevice *input) const; - const DecoderProperties properties() const; - Decoder *create(const QString &, QIODevice *); - QList<FileInfo *> createPlayList(const QString &fileName, bool useMetaData, QStringList *); - MetaDataModel* createMetaDataModel(const QString &path, QObject *parent = 0); - void showSettings(QWidget *parent); - void showAbout(QWidget *parent); - QTranslator *createTranslator(QObject *parent); -}; - -#endif diff --git a/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro b/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro deleted file mode 100644 index 280dd1246..000000000 --- a/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro +++ /dev/null @@ -1,29 +0,0 @@ -include(../../plugins.pri) - -TARGET = $$PLUGINS_PREFIX/Input/ffmpeg_legacy - -HEADERS += decoderffmpegfactory.h \ - decoder_ffmpeg.h \ - settingsdialog.h \ - ffmpegmetadatamodel.h - -SOURCES += decoder_ffmpeg.cpp \ - decoderffmpegfactory.cpp \ - settingsdialog.cpp \ - ffmpegmetadatamodel.cpp - -FORMS += settingsdialog.ui - -RESOURCES = translations/translations.qrc - -DEFINES += __STDC_CONSTANT_MACROS - -unix { - target.path = $$LIB_DIR/qmmp/Input - INSTALLS += target - PKGCONFIG += libavcodec libavformat libavutil -} - -win32 { - LIBS +=-lavcodec.dll -lavformat.dll -lavutil.dll -} diff --git a/src/plugins/Input/ffmpeg_legacy/ffmpegmetadatamodel.cpp b/src/plugins/Input/ffmpeg_legacy/ffmpegmetadatamodel.cpp deleted file mode 100644 index 93f4acde4..000000000 --- a/src/plugins/Input/ffmpeg_legacy/ffmpegmetadatamodel.cpp +++ /dev/null @@ -1,70 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2009-2017 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include "ffmpegmetadatamodel.h" - -FFmpegMetaDataModel::FFmpegMetaDataModel(const QString &path, QObject *parent) : MetaDataModel(parent) -{ - m_in = 0; - avcodec_init(); - avcodec_register_all(); - av_register_all(); - if (av_open_input_file(&m_in, path.toLocal8Bit(), NULL,0, NULL) < 0) - return; - av_find_stream_info(m_in); - av_read_play(m_in); -} - -FFmpegMetaDataModel::~FFmpegMetaDataModel() -{ - if(m_in) - av_close_input_file(m_in); -} - -QHash<QString, QString> FFmpegMetaDataModel::audioProperties() -{ - QHash<QString, QString> ap; - if(!m_in) - return ap; - QString text = QString("%1").arg(int(m_in->duration/AV_TIME_BASE)/60); - text +=":"+QString("%1").arg(int(m_in->duration/AV_TIME_BASE)%60,2,10,QChar('0')); - ap.insert(tr("Length"), text); - ap.insert(tr("File size"), QString("%1 ").arg(m_in->file_size/1000)+" "+tr("KB")); - ap.insert(tr("Bitrate"), QString("%1 "+tr("kbps")).arg(m_in->bit_rate/1000)); - - AVCodecContext *c = 0; - uint wma_idx; - for (wma_idx = 0; wma_idx < m_in->nb_streams; wma_idx++) - { - c = m_in->streams[wma_idx]->codec; -#if LIBAVCODEC_VERSION_MAJOR < 53 - if (c->codec_type == CODEC_TYPE_AUDIO) -#else - if (c->codec_type == AVMEDIA_TYPE_AUDIO) -#endif - break; - } - if (c) - { - ap.insert(tr("Sample rate"), QString("%1 " + tr("Hz")).arg(c->sample_rate)); - ap.insert(tr("Channels"), QString("%1").arg(c->channels)); - } - return ap; -} diff --git a/src/plugins/Input/ffmpeg_legacy/ffmpegmetadatamodel.h b/src/plugins/Input/ffmpeg_legacy/ffmpegmetadatamodel.h deleted file mode 100644 index 78d6a3cd1..000000000 --- a/src/plugins/Input/ffmpeg_legacy/ffmpegmetadatamodel.h +++ /dev/null @@ -1,46 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2009-2013 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef FFMPEGMETADATAMODEL_H -#define FFMPEGMETADATAMODEL_H - -extern "C"{ -#include <libavformat/avformat.h> -#include <libavcodec/avcodec.h> -#if (LIBAVUTIL_VERSION_INT >= ((51<<16)+(32<<8)+0)) -#include <libavutil/dict.h> -#endif -} - -#include <qmmp/metadatamodel.h> - -class FFmpegMetaDataModel : public MetaDataModel -{ -Q_OBJECT -public: - FFmpegMetaDataModel(const QString &path, QObject *parent); - ~FFmpegMetaDataModel(); - QHash<QString, QString> audioProperties(); - -private: - AVFormatContext *m_in; -}; - -#endif // FFMPEGMETADATAMODEL_H diff --git a/src/plugins/Input/ffmpeg_legacy/settingsdialog.cpp b/src/plugins/Input/ffmpeg_legacy/settingsdialog.cpp deleted file mode 100644 index 6032fd092..000000000 --- a/src/plugins/Input/ffmpeg_legacy/settingsdialog.cpp +++ /dev/null @@ -1,112 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2008-2013 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QSettings> -#include <QStringList> - -#include <qmmp/qmmp.h> - -extern "C"{ -#include <libavformat/avformat.h> -#include <libavcodec/avcodec.h> -#if (LIBAVUTIL_VERSION_INT >= ((51<<16)+(32<<8)+0)) -#include <libavutil/dict.h> -#endif -} -#include "settingsdialog.h" - -SettingsDialog::SettingsDialog(QWidget *parent) - : QDialog(parent) -{ - ui.setupUi(this); - setAttribute(Qt::WA_DeleteOnClose); - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - QStringList filters; - filters << "*.wma"; - filters << "*.ape"; - filters = settings.value("FFMPEG_legacy/filters", filters).toStringList(); - avcodec_register_all(); - av_register_all(); - ui.wmaCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_WMAV1)); - ui.wmaCheckBox->setChecked(filters.contains("*.wma") && avcodec_find_decoder(CODEC_ID_WMAV1)); - ui.apeCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_APE)); - ui.apeCheckBox->setChecked(filters.contains("*.ape") && avcodec_find_decoder(CODEC_ID_APE)); - ui.ttaCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_TTA)); - ui.ttaCheckBox->setChecked(filters.contains("*.tta") && avcodec_find_decoder(CODEC_ID_TTA)); - ui.aacCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_AAC)); - ui.aacCheckBox->setChecked(filters.contains("*.aac") && avcodec_find_decoder(CODEC_ID_AAC)); - ui.mp3CheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_MP3)); - ui.mp3CheckBox->setChecked(filters.contains("*.mp3") && avcodec_find_decoder(CODEC_ID_MP3)); - ui.mp4CheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_AAC)); - ui.mp4CheckBox->setChecked(filters.contains("*.m4a") && (avcodec_find_decoder(CODEC_ID_AAC) - || avcodec_find_decoder(CODEC_ID_ALAC))); - ui.raCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_RA_288)); - ui.raCheckBox->setChecked(filters.contains("*.ra") && avcodec_find_decoder(CODEC_ID_RA_288)); - ui.shCheckBox->setChecked(filters.contains("*.shn") && avcodec_find_decoder(CODEC_ID_SHORTEN)); - ui.ac3CheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_EAC3)); - ui.ac3CheckBox->setChecked(filters.contains("*.ac3") && avcodec_find_decoder(CODEC_ID_EAC3)); - ui.dtsCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_DTS)); - ui.dtsCheckBox->setChecked(filters.contains("*.dts") && avcodec_find_decoder(CODEC_ID_DTS)); -#if (LIBAVCODEC_VERSION_INT >= ((53<<16)+(42<<8)+4)) - ui.mkaCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_TRUEHD)); - ui.mkaCheckBox->setChecked(filters.contains("*.mka") && avcodec_find_decoder(CODEC_ID_TRUEHD)); - ui.vqfCheckBox->setEnabled(avcodec_find_decoder(CODEC_ID_TWINVQ)); - ui.vqfCheckBox->setChecked(filters.contains("*.vqf") && avcodec_find_decoder(CODEC_ID_TWINVQ)); -#else - ui.mkaCheckBox->hide(); - ui.vqfCheckBox->hide(); -#endif -} - -SettingsDialog::~SettingsDialog() -{ -} - -void SettingsDialog::accept() -{ - QStringList filters; - if (ui.mp3CheckBox->isChecked()) - filters << "*.mp3"; - if (ui.wmaCheckBox->isChecked()) - filters << "*.wma"; - if (ui.apeCheckBox->isChecked()) - filters << "*.ape"; - if (ui.ttaCheckBox->isChecked()) - filters << "*.tta"; - if (ui.aacCheckBox->isChecked()) - filters << "*.aac"; - if (ui.mp4CheckBox->isChecked()) - filters << "*.m4a"; - if (ui.raCheckBox->isChecked()) - filters << "*.ra"; - if (ui.shCheckBox->isChecked()) - filters << "*.shn"; - if (ui.ac3CheckBox->isChecked()) - filters << "*.ac3"; - if (ui.dtsCheckBox->isChecked()) - filters << "*.dts"; - if (ui.mkaCheckBox->isChecked()) - filters << "*.mka"; - if (ui.vqfCheckBox->isChecked()) - filters << "*.vqf"; - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.setValue("FFMPEG_legacy/filters", filters); - QDialog::accept(); -} diff --git a/src/plugins/Input/ffmpeg_legacy/settingsdialog.h b/src/plugins/Input/ffmpeg_legacy/settingsdialog.h deleted file mode 100644 index db63260ed..000000000 --- a/src/plugins/Input/ffmpeg_legacy/settingsdialog.h +++ /dev/null @@ -1,46 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2008-2013 by Ilya Kotov * - * forkotov02@ya.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef SETTINGSDIALOG_H -#define SETTINGSDIALOG_H - -#include <QDialog> - -#include "ui_settingsdialog.h" - -/** - @author Ilya Kotov <forkotov02@ya.ru> -*/ -class SettingsDialog : public QDialog -{ - Q_OBJECT -public: - SettingsDialog(QWidget *parent = 0); - - ~SettingsDialog(); - -public slots: - virtual void accept(); - -private: - Ui::SettingsDialog ui; - -}; - -#endif diff --git a/src/plugins/Input/ffmpeg_legacy/settingsdialog.ui b/src/plugins/Input/ffmpeg_legacy/settingsdialog.ui deleted file mode 100644 index cdeac3529..000000000 --- a/src/plugins/Input/ffmpeg_legacy/settingsdialog.ui +++ /dev/null @@ -1,182 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>SettingsDialog</class> - <widget class="QDialog" name="SettingsDialog"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>308</width> - <height>328</height> - </rect> - </property> - <property name="windowTitle"> - <string>FFmpeg Plugin Settings</string> - </property> - <layout class="QGridLayout" name="gridLayout"> - <property name="leftMargin"> - <number>6</number> - </property> - <property name="rightMargin"> - <number>6</number> - </property> - <property name="bottomMargin"> - <number>6</number> - </property> - <item row="1" column="0"> - <spacer name="horizontalSpacer"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>178</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - <item row="1" column="1"> - <widget class="QDialogButtonBox" name="buttonBox"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Maximum" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="standardButtons"> - <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> - </property> - </widget> - </item> - <item row="0" column="0" colspan="2"> - <widget class="QGroupBox" name="groupBox"> - <property name="title"> - <string>Formats</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout"> - <item> - <widget class="QCheckBox" name="wmaCheckBox"> - <property name="text"> - <string>Windows Media Audio</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="apeCheckBox"> - <property name="text"> - <string>Monkey's Audio (APE)</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="ttaCheckBox"> - <property name="text"> - <string>True Audio</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="aacCheckBox"> - <property name="text"> - <string>ADTS AAC</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="mp3CheckBox"> - <property name="text"> - <string>MP3 (MPEG audio layer 3)</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="mp4CheckBox"> - <property name="text"> - <string>MPEG-4 AAC/ALAC</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="raCheckBox"> - <property name="text"> - <string>RealAudio 1.0/2.0</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="shCheckBox"> - <property name="text"> - <string>Shorten</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="ac3CheckBox"> - <property name="text"> - <string>AC3/EAC</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="dtsCheckBox"> - <property name="text"> - <string>DTS/DTS-Core</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="mkaCheckBox"> - <property name="text"> - <string>Matroska Audio (Dolby TrueHD Lossless)</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="vqfCheckBox"> - <property name="text"> - <string>VQF</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections> - <connection> - <sender>buttonBox</sender> - <signal>accepted()</signal> - <receiver>SettingsDialog</receiver> - <slot>accept()</slot> - <hints> - <hint type="sourcelabel"> - <x>214</x> - <y>167</y> - </hint> - <hint type="destinationlabel"> - <x>103</x> - <y>160</y> - </hint> - </hints> - </connection> - <connection> - <sender>buttonBox</sender> - <signal>rejected()</signal> - <receiver>SettingsDialog</receiver> - <slot>reject()</slot> - <hints> - <hint type="sourcelabel"> - <x>269</x> - <y>174</y> - </hint> - <hint type="destinationlabel"> - <x>148</x> - <y>169</y> - </hint> - </hints> - </connection> - </connections> -</ui> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_bg.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_bg.ts deleted file mode 100644 index c5741886a..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_bg.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="bg"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_cs.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_cs.ts deleted file mode 100644 index 7ad707f10..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_cs.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="cs"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Modul FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formáty FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>O modulu FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Vstupní modul Qmmp FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Přeloženo s libavformat-%1.%2.%3 a libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Délka</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Velikost souboru</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KiB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Datový tok</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Vzorkovací frekvence</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Počet kanálů</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Nastavení modulu FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formáty</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_de.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_de.ts deleted file mode 100644 index 84e858a1b..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_de.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="de"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg-Modul</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg-Formate</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Über FFmpeg-Audiomodul</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Qmmp FFmpeg-Audiomodul</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Kompiliert gegen libavformat-%1.%2.%3 und libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Länge</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Dateigröße</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Bitrate</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>KBit/s</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Abtastrate</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Kanäle</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Einstellungen FFmpeg-Modul</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formate</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey’s Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG Audio Layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Kern</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD, verlustfrei)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_el.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_el.ts deleted file mode 100644 index 8b95aa8d2..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_el.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="el"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Πρόσθετο FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Μορφές FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Σχετικά με το πρόσθετο ήχου FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Qmmp πρόσθετο ήχου FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Μεταγλωττίστηκε χρησιμοποιώντας τις βιβλιοθήκες libavformat-%1.%2.%3 και libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Διάρκεια</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Μέγεθος αρχείου</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Ρυθμός bit</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Ρυθμός δειγματοληψίας</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Κανάλια</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Ρυθμίσεις πρόσθετου FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Μορφές</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Μη απωλεστικό)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_en.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_en.ts deleted file mode 100644 index c5f01b352..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_en.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="en_US"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_es.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_es.ts deleted file mode 100644 index c31b7ab00..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_es.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="es"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Módulo FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formatos FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Acerca del módulo de audio FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Módulo de audio FFmpeg para Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Compilado con libavformat-%1.%2.%3 y libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Duración</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Tamaño del archivo</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Tasa de bits</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Frecuencia</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Canales</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Configuración del módulo FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formatos</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG Audio Layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD sin pérdida)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_fi.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_fi.ts deleted file mode 100644 index f23e3aed2..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_fi.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="fi"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg-liitännäinen</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Kesto</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Tiedostokoko</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>kt</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Bittinopeus</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Näytteenottotaajuus</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Kanavat</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg-liitännäisen asetukset</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_fr.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_fr.ts deleted file mode 100644 index 30934a46b..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_fr.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="fr"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Greffon FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formats FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>À propos du greffon audio FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Greffon audio FFmpeg pour Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Compilé contre libavformat-%1.%2.%3 et libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Longueur</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Taille du fichier</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>Ko</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Débit binaire</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Taux d'échantillonage</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Canaux</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Configuration du greffon FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formats</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_gl_ES.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_gl_ES.ts deleted file mode 100644 index 77c031f5e..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_gl_ES.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="gl_ES"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Engadido ffmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formatos ffmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Sobre o engadido ffmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Engadido ffmpeg de Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Compilado con libavformat-%1.%2.%3 e libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Lonxitude</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Tamaño de ficheiro</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Taxa de bits</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Frecuencia de mostra</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Canais</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Preferencias do engadido ffmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formatos</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_he.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_he.ts deleted file mode 100644 index 076e2502e..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_he.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="he"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>תוסף FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>פורמטים של FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>אודות תוסף שמע FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>תוסף שמע FFmpeg של Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>הודר כנגד libavformat-%1.%2.%3 וגם libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>אריכות</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>גודל קובץ</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>ק״ב</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>שיעור סיביות</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>שיעור דגימה</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>הרץ</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>ערוצים</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>הגדרות תוסף FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>פורמטים</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>שמע אמיתי</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>מקוצר</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>ליבת DTS/DTS</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>שמע Matroska (Dolby TrueHD נטול אובדן)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_hu.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_hu.ts deleted file mode 100644 index dbb3becf0..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_hu.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="hu_HU"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_id.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_id.ts deleted file mode 100644 index 2e46dbfea..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_id.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="id"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Plugin FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Format FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Tentang Plugin Audio FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Plugin Audio FFmpeg Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Dikompilasi terhadap libavformat-%1.%2.%3 dan libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Pabjang</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Ukuran file</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Bitrate</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Sample rate</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Saluran</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Setelan Plugin FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Format</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>Audio True</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_it.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_it.ts deleted file mode 100644 index e530fb5a2..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_it.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="it"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Info sul modulo audi FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Modulo audio FFmpeg per Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Modulo FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formati FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Compilato con libavformat-%1.%2.%3 e libavcodec-%4.%5.%6</translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Durata</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Dimensione file</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Bit/secondo</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Campionamento</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Canali</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formati</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Impostazioni del modulo FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG Audio Layer 3)</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_ja.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_ja.ts deleted file mode 100644 index feb2055a0..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_ja.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="ja_JP"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg プラグイン</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg 用の形式</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>FFmpeg 音響プラグインについて</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>QMMP FFmpeg 音響プラグイン</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>libavformat-%1.%2.%3 と libavcodec-%4.%5.%6 を使用してコンパイル</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>長さ</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>ファイルの大きさ</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KiB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>ビットレート</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>キロビット毎秒</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>サンプルレート</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>チャンネル</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg プラグイン設定</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>形式</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG オーディオ レイヤー3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>短縮</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_kk.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_kk.ts deleted file mode 100644 index 3113c4d9a..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_kk.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="kk_KZ"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_lt.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_lt.ts deleted file mode 100644 index accf1ff93..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_lt.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="lt"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Apie FFmpeg įskiepį</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>FFmpeg Qmmp audio įskiepis</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg įskiepis</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg bylų tipai</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Surinkta iš libavformat-%1.%2.%3 ir libavcodec-%4.%5.%6</translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Trukmė</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Bylos dydis</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>КB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Kokybė</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Dažnis</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Kanalai</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Tipai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg įskiepio nustatymai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_nl.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_nl.ts deleted file mode 100644 index 99ee8af08..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_nl.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="nl"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Over de FFmpeg Audio Module</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>FFmpeg Audio Module voor Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg Module</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg Formaat</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Gecompileerd tegen libavformat-%1.%2.%3 en libavcodec-%4.%5.%6</translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Duur</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Bestandsgrootte</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Bitsnelheid</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Sample frequentie</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Kanalen</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formaten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg Module Instellingen</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pl_PL.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pl_PL.ts deleted file mode 100644 index 3698dec07..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pl_PL.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pl_PL"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Wtyczka FFMPEG</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formaty FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>O wtyczce FFmpeg Audio</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Wtyczka FFmpeg Audio dla Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Skompilowane przy użyciu libavformat-%1.%2.%3 i libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Długość</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Wielkość pliku</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Szybkość transmisji</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Próbkowanie</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Kanały</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Ustawienia wtyczki FFMPEG</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formaty</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten (SHN)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Bezstratny)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pt.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pt.ts deleted file mode 100644 index 7fefb7030..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pt.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pt"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Suplemento FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formatos FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Sobre o suplemento FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Suplemento Qmmp FFmpeg Audio</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Compilado com libavformat-%1.%2.%3 e libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Duração</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Tamanho do ficheiro</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Taxa de dados</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Frequência</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Canais</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Definições</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formatos</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pt_BR.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pt_BR.ts deleted file mode 100644 index 27867f7ef..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_pt_BR.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pt_BR"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Plugin FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Formatos FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Sobre o plugin FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Plugin Qmmp FFmpeg Audio</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Compilado com libavformat-%1.%2.%3 e libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Duração</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Tamanho do arquivo</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Taxa de dados</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Frequência</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Canais</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Preferências do plugin FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Formatos</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_ru.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_ru.ts deleted file mode 100644 index 4f57f6556..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_ru.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="ru"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Модуль FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Форматы FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Об аудио-модуле FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Аудио-модуль FFmpeg для Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Собрано с libavformat-%1.%2.%3 и libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Длительность</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Размер файла</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>КБ</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Битовая частота</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>кбит/с</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Дискретизация</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Гц</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Каналов</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Настройки модуля FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Форматы</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey's Audio (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Matroska Audio (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sk.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sk.ts deleted file mode 100644 index 730a72e49..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sk.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sk_SK"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sr_BA.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sr_BA.ts deleted file mode 100644 index 24120e0f8..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sr_BA.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sr_BA"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>ФФмпег прикључак</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>ФФмпег формати</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>О ФФмпег прикључку</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Кумп ФФмпег прикључак</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Компилован на libavformat-%1.%2.%3 и libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Дужина</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Величина</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Битски проток</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kb/s</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Узорковање</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Канала</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Поставке ФФмпег прикључка</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Формати</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Виндоуз Медија Аудио</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Манки Аудио (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>Тру Аудио</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (МПЕГ аудио лејер 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>Реал Аудио 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Шортен</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Матрошка Аудио (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sr_RS.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sr_RS.ts deleted file mode 100644 index 8ee1e299a..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_sr_RS.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sr_RS"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>ФФмпег прикључак</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>ФФмпег формати</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>О ФФмпег прикључку</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Кумп ФФмпег прикључак</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Компилован на libavformat-%1.%2.%3 и libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Дужина</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Величина</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Битски проток</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kb/s</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Узорковање</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Канала</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Поставке ФФмпег прикључка</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Формати</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Виндоуз Медија Аудио</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Манки Аудио (APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>Тру Аудио</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (МПЕГ аудио лејер 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>Реал Аудио 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Шортен</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Матрошка Аудио (Dolby TrueHD Lossless)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_tr.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_tr.ts deleted file mode 100644 index c3c74c6a1..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_tr.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="tr_TR"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg Eklentisi</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg Biçimleri</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>FFmpeg Ses Eklentisi Hakkında</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Qmmp FFmpeg Ses Eklentisi</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>libavformat-%1.%2.%3 ve libavcodec-%4.%5.%6 ile derlenmiştir</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation type="unfinished">KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation type="unfinished">kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation type="unfinished">Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg Eklenti Ayarları</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Biçimler</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows Media Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True Audio</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3 (MPEG audio layer 3)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>RealAudio 1.0/2.0</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_uk_UA.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_uk_UA.ts deleted file mode 100644 index 35f1b3a61..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_uk_UA.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="uk"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>Про аудіо-модуль FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Аудіо-модуль FFmpeg для Qmmp</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>Модуль FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>Формати FFmpeg</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>Зібрано з libavformat-%1.%2.%3 та libavcodec-%4.%5.%6</translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>Тривалість</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>Розмір файлу</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>Кб</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>Бітрейт</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>Кб/с</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>Частота</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Гц</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>Канали</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>Формати</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>Налаштування модуля FFmpeg</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_zh_CN.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_zh_CN.ts deleted file mode 100644 index 4c112b387..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_zh_CN.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="zh_CN"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg 插件</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg 格式</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>关于 FFmpeg 音频插件</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Qmmp FFmpeg 音频插件</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>编译依赖 libavformat-%1.%2.%3 和 libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>长度</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>文件大小</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>千字节</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>比特率</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>千比特每秒</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>取样率</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>赫兹</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>声音通道</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg 插件设置</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>格式</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation>Windows媒体音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation>Monkey‘s 音频文件(APE)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation>True音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation>ADTS AAC音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation>MP3(MPEG音频层3)音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation>MPEG-4 AAC/ALAC音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation>Real1.0/2.0音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation>Shorten音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation>AC3/EAC音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation>DTS/DTS-Core音频文件</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation>Mastroska音频文件(杜比真高清无损)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation>VQF音频文件</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_zh_TW.ts b/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_zh_TW.ts deleted file mode 100644 index 4d3687c48..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/ffmpeg_legacy_plugin_zh_TW.ts +++ /dev/null @@ -1,153 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="zh_TW"> -<context> - <name>DecoderFFmpegFactory</name> - <message> - <location filename="../decoderffmpegfactory.cpp" line="94"/> - <source>FFmpeg Plugin</source> - <translation>FFmpeg 外掛</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="96"/> - <source>FFmpeg Formats</source> - <translation>FFmpeg 格式</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="203"/> - <source>About FFmpeg Audio Plugin</source> - <translation>關於 FFmpeg 聲訊插件</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="205"/> - <source>Qmmp FFmpeg Audio Plugin</source> - <translation>Qmmp FFmpeg 聲訊插件</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="206"/> - <source>Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6</source> - <translation>編譯依賴 libavformat-%1.%2.%3 與 libavcodec-%4.%5.%6</translation> - </message> - <message> - <location filename="../decoderffmpegfactory.cpp" line="213"/> - <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> - <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> - </message> -</context> -<context> - <name>FFmpegMetaDataModel</name> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="48"/> - <source>Length</source> - <translation>長度</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>File size</source> - <translation>文件大小</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="49"/> - <source>KB</source> - <translation>KB</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>Bitrate</source> - <translation>比特率</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="50"/> - <source>kbps</source> - <translation>kbps</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Sample rate</source> - <translation>取樣率</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="66"/> - <source>Hz</source> - <translation>Hz</translation> - </message> - <message> - <location filename="../ffmpegmetadatamodel.cpp" line="67"/> - <source>Channels</source> - <translation>聲音通道</translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="14"/> - <source>FFmpeg Plugin Settings</source> - <translation>FFmpeg 插件設置</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="55"/> - <source>Formats</source> - <translation>格式</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="61"/> - <source>Windows Media Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="68"/> - <source>Monkey's Audio (APE)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="75"/> - <source>True Audio</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="82"/> - <source>ADTS AAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="89"/> - <source>MP3 (MPEG audio layer 3)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="96"/> - <source>MPEG-4 AAC/ALAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="103"/> - <source>RealAudio 1.0/2.0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="110"/> - <source>Shorten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="117"/> - <source>AC3/EAC</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="124"/> - <source>DTS/DTS-Core</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="131"/> - <source>Matroska Audio (Dolby TrueHD Lossless)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="138"/> - <source>VQF</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Input/ffmpeg_legacy/translations/translations.qrc b/src/plugins/Input/ffmpeg_legacy/translations/translations.qrc deleted file mode 100644 index 340b8acc4..000000000 --- a/src/plugins/Input/ffmpeg_legacy/translations/translations.qrc +++ /dev/null @@ -1,32 +0,0 @@ -<!DOCTYPE RCC> -<RCC version="1.0"> - <qresource> - <file>ffmpeg_legacy_plugin_ru.qm</file> - <file>ffmpeg_legacy_plugin_uk_UA.qm</file> - <file>ffmpeg_legacy_plugin_zh_CN.qm</file> - <file>ffmpeg_legacy_plugin_zh_TW.qm</file> - <file>ffmpeg_legacy_plugin_tr.qm</file> - <file>ffmpeg_legacy_plugin_cs.qm</file> - <file>ffmpeg_legacy_plugin_pt_BR.qm</file> - <file>ffmpeg_legacy_plugin_pt.qm</file> - <file>ffmpeg_legacy_plugin_de.qm</file> - <file>ffmpeg_legacy_plugin_pl_PL.qm</file> - <file>ffmpeg_legacy_plugin_fr.qm</file> - <file>ffmpeg_legacy_plugin_it.qm</file> - <file>ffmpeg_legacy_plugin_kk.qm</file> - <file>ffmpeg_legacy_plugin_lt.qm</file> - <file>ffmpeg_legacy_plugin_hu.qm</file> - <file>ffmpeg_legacy_plugin_nl.qm</file> - <file>ffmpeg_legacy_plugin_ja.qm</file> - <file>ffmpeg_legacy_plugin_sk.qm</file> - <file>ffmpeg_legacy_plugin_es.qm</file> - <file>ffmpeg_legacy_plugin_he.qm</file> - <file>ffmpeg_legacy_plugin_gl_ES.qm</file> - <file>ffmpeg_legacy_plugin_sr_BA.qm</file> - <file>ffmpeg_legacy_plugin_sr_RS.qm</file> - <file>ffmpeg_legacy_plugin_bg.qm</file> - <file>ffmpeg_legacy_plugin_el.qm</file> - <file>ffmpeg_legacy_plugin_id.qm</file> - <file>ffmpeg_legacy_plugin_fi.qm</file> - </qresource> -</RCC> diff --git a/src/plugins/Input/flac/CMakeLists.txt b/src/plugins/Input/flac/CMakeLists.txt index 72fe56422..0d799af15 100644 --- a/src/plugins/Input/flac/CMakeLists.txt +++ b/src/plugins/Input/flac/CMakeLists.txt @@ -1,20 +1,7 @@ project(libflac) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -47,7 +34,7 @@ SET(libflac_HDRS SET(libflac_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libflac_RCC_SRCS ${libflac_RCCS}) +QT5_ADD_RESOURCES(libflac_RCC_SRCS ${libflac_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -56,6 +43,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(FLAC_FOUND) ADD_LIBRARY(flac MODULE ${libflac_SRCS} ${libflac_RCC_SRCS} ${libflac_HDRS}) add_dependencies(flac qmmp) -target_link_libraries(flac ${QT_LIBRARIES} libqmmp ${FLAC_LDFLAGS} ${TAGLIB_LDFLAGS}) +target_link_libraries(flac Qt5::Widgets -lqmmp ${FLAC_LDFLAGS} ${TAGLIB_LDFLAGS}) install(TARGETS flac DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(FLAC_FOUND) diff --git a/src/plugins/Input/flac/decoderflacfactory.cpp b/src/plugins/Input/flac/decoderflacfactory.cpp index d55623ef2..82332d83c 100644 --- a/src/plugins/Input/flac/decoderflacfactory.cpp +++ b/src/plugins/Input/flac/decoderflacfactory.cpp @@ -18,19 +18,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <taglib/tag.h> #include <taglib/fileref.h> #include <taglib/flacfile.h> #include <taglib/oggflacfile.h> #include <taglib/xiphcomment.h> #include <taglib/tmap.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> #include <taglib/id3v2framefactory.h> -#endif #include "cueparser.h" #include "decoder_flac.h" #include "flacmetadatamodel.h" @@ -97,27 +94,17 @@ QList<FileInfo *> DecoderFLACFactory::createPlayList(const QString &fileName, bo return QList<FileInfo *>() << info; } -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(fileName), true); -#endif if(fileName.endsWith(".flac", Qt::CaseInsensitive)) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) flacFile = new TagLib::FLAC::File(&stream, TagLib::ID3v2::FrameFactory::instance()); -#else - flacFile = new TagLib::FLAC::File(QStringToFileName(fileName)); -#endif tag = useMetaData ? flacFile->xiphComment() : 0; ap = flacFile->audioProperties(); } else if(fileName.endsWith(".oga", Qt::CaseInsensitive)) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) oggFlacFile = new TagLib::Ogg::FLAC::File(&stream); -#else - oggFlacFile = new TagLib::Ogg::FLAC::File(QStringToFileName(fileName)); -#endif tag = useMetaData ? oggFlacFile->tag() : 0; ap = oggFlacFile->audioProperties(); } @@ -208,5 +195,3 @@ QTranslator *DecoderFLACFactory::createTranslator(QObject *parent) translator->load(QString(":/flac_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(flac,DecoderFLACFactory) diff --git a/src/plugins/Input/flac/decoderflacfactory.h b/src/plugins/Input/flac/decoderflacfactory.h index fa2693d7a..9e16e7027 100644 --- a/src/plugins/Input/flac/decoderflacfactory.h +++ b/src/plugins/Input/flac/decoderflacfactory.h @@ -33,6 +33,7 @@ class DecoderFLACFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/flac/flacmetadatamodel.cpp b/src/plugins/Input/flac/flacmetadatamodel.cpp index 6abb8b9c4..33a37bdfa 100644 --- a/src/plugins/Input/flac/flacmetadatamodel.cpp +++ b/src/plugins/Input/flac/flacmetadatamodel.cpp @@ -26,9 +26,6 @@ #include <qmmp/metadatamanager.h> #include "flacmetadatamodel.h" -#define QStringToTString_qt4(s) TagLib::String(s.toUtf8().constData(), TagLib::String::UTF8) -#define TStringToQString_qt4(s) QString::fromUtf8(s.toCString(true)).trimmed() - FLACMetaDataModel::FLACMetaDataModel(const QString &path, QObject *parent) : MetaDataModel(parent) { m_file = 0; @@ -147,25 +144,25 @@ const QString VorbisCommentModel::value(Qmmp::MetaData key) switch((int) key) { case Qmmp::TITLE: - return TStringToQString_qt4(m_tag->title()); + return TStringToQString(m_tag->title()); case Qmmp::ARTIST: - return TStringToQString_qt4(m_tag->artist()); + return TStringToQString(m_tag->artist()); case Qmmp::ALBUMARTIST: if(m_tag->fieldListMap()["ALBUMARTIST"].isEmpty()) return QString(); else - return TStringToQString_qt4(m_tag->fieldListMap()["ALBUMARTIST"].front()); + return TStringToQString(m_tag->fieldListMap()["ALBUMARTIST"].front()); case Qmmp::ALBUM: - return TStringToQString_qt4(m_tag->album()); + return TStringToQString(m_tag->album()); case Qmmp::COMMENT: - return TStringToQString_qt4(m_tag->comment()); + return TStringToQString(m_tag->comment()); case Qmmp::GENRE: - return TStringToQString_qt4(m_tag->genre()); + return TStringToQString(m_tag->genre()); case Qmmp::COMPOSER: if(m_tag->fieldListMap()["COMPOSER"].isEmpty()) return QString(); else - return TStringToQString_qt4(m_tag->fieldListMap()["COMPOSER"].front()); + return TStringToQString(m_tag->fieldListMap()["COMPOSER"].front()); case Qmmp::YEAR: return QString::number(m_tag->year()); case Qmmp::TRACK: @@ -174,7 +171,7 @@ const QString VorbisCommentModel::value(Qmmp::MetaData key) if(m_tag->fieldListMap()["DISCNUMBER"].isEmpty()) return QString(); else - return TStringToQString_qt4(m_tag->fieldListMap()["DISCNUMBER"].front()); + return TStringToQString(m_tag->fieldListMap()["DISCNUMBER"].front()); } return QString(); } @@ -184,7 +181,7 @@ void VorbisCommentModel::setValue(Qmmp::MetaData key, const QString &value) if(!m_tag) return; - TagLib::String str = QStringToTString_qt4(value); + TagLib::String str = QStringToTString(value); switch((int) key) { diff --git a/src/plugins/Input/flac/replaygainreader.cpp b/src/plugins/Input/flac/replaygainreader.cpp index 023eaf12e..88d57cd13 100644 --- a/src/plugins/Input/flac/replaygainreader.cpp +++ b/src/plugins/Input/flac/replaygainreader.cpp @@ -23,34 +23,22 @@ #include <taglib/fileref.h> #include <taglib/flacfile.h> #include <taglib/oggflacfile.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> #include <taglib/id3v2framefactory.h> -#endif #include "replaygainreader.h" ReplayGainReader::ReplayGainReader(const QString &path) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(path), true); -#endif if(path.endsWith(".flac", Qt::CaseInsensitive)) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FLAC::File fileRef(&stream, TagLib::ID3v2::FrameFactory::instance()); -#else - TagLib::FLAC::File fileRef(QStringToFileName(path)); -#endif if(fileRef.xiphComment()) readVorbisComment(fileRef.xiphComment()); } else if(path.endsWith(".oga", Qt::CaseInsensitive)) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::Ogg::FLAC::File fileRef(&stream); -#else - TagLib::Ogg::FLAC::File fileRef(QStringToFileName(path)); -#endif if(fileRef.tag()) readVorbisComment(fileRef.tag()); } diff --git a/src/plugins/Input/flac/translations/flac_plugin_bg.ts b/src/plugins/Input/flac/translations/flac_plugin_bg.ts index 40541d52b..9b8edf292 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_bg.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_cs.ts b/src/plugins/Input/flac/translations/flac_plugin_cs.ts index 90c04a45b..a91fad91b 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_cs.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Modul FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Soubory FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>O modulu FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Vstupní modul Qmmp FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Délka</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Vzorkovací frekvence</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Počet kanálů</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Datový tok</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Velikost souboru</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KiB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_de.ts b/src/plugins/Input/flac/translations/flac_plugin_de.ts index cebc831fe..ebc5e0318 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_de.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC-Modul</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC-Dateien</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Über FLAC-Audiomodul</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp FLAC-Audiomodul</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Länge</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Abtastrate</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Kanäle</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>KBit/s</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Dateigröße</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_el.ts b/src/plugins/Input/flac/translations/flac_plugin_el.ts index 4dd647b00..70cb93d2c 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_el.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Πρόσθετο FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Αρχεία FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Διάρκεια</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Ρυθμός δειγματοληψίας</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Κανάλια</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Ρυθμός bit</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Μέγεθος αρχείου</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_en.ts b/src/plugins/Input/flac/translations/flac_plugin_en.ts index 7642ed71b..df04c0c14 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_en.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_es.ts b/src/plugins/Input/flac/translations/flac_plugin_es.ts index da5fee14e..743a4ee8c 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_es.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Módulo FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Archivos FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Acerca del módulo de audio FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Módulo de audio FLAC para Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Duración</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Frecuencia</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Canales</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Tasa de bits</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Tamaño del archivo</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_fi.ts b/src/plugins/Input/flac/translations/flac_plugin_fi.ts index 6ca4765f8..3d9cab792 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_fi.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC-liitännäinen</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC-tiedostot</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Tietoja - FLAC-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp:n FLAC-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Kesto</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Näytteenottotaajuus</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Kanavat</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Bittinopeus</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Tiedostokoko</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>kt</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_fr.ts b/src/plugins/Input/flac/translations/flac_plugin_fr.ts index 2871a1b2a..cfd761ad8 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_fr.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Greffon FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Fichiers FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>À propos du greffon audio FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Greffon audio FLAC pour Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Longueur</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Taux d'échantillonage</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Canaux</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Débit binaire</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Taille du fichier</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>Ko</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_gl_ES.ts b/src/plugins/Input/flac/translations/flac_plugin_gl_ES.ts index a2d57ab05..73894aeea 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_gl_ES.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Engadido FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Ficheiros FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Sobre o engadido FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Engadido FLAC de Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Lonxitude</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Frecuencia de mostra</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Taxa de bits</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Tamaño de ficheiro</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_he.ts b/src/plugins/Input/flac/translations/flac_plugin_he.ts index 83fdf99c1..bb7e34805 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_he.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>תוסף FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>קבצי FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>אודות תוסף שמע FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>תוסף שמע FLAC של Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>אריכות</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>שיעור דגימה</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>הרץ</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>ערוצים</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>שיעור סיביות</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>גודל קובץ</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>ק״ב</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_hu.ts b/src/plugins/Input/flac/translations/flac_plugin_hu.ts index 1bf0bc95c..3585d905b 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_hu.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_id.ts b/src/plugins/Input/flac/translations/flac_plugin_id.ts index e39eb7bc9..7eb7aa5c5 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_id.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Plugin FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>File FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Tentang Plugin Audio FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Plugin Audio FLAC Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Panjang</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Sample rate</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Saluran</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Ukuran file</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_it.ts b/src/plugins/Input/flac/translations/flac_plugin_it.ts index 4b4d1f34c..239f28f82 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_it.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Modulo FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Brani FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Info sul modulo audio FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Modulo Audio FLAC per Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilja Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Durata</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Campionamento</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Canali</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>bit al secondo</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Dimensione file</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_ja.ts b/src/plugins/Input/flac/translations/flac_plugin_ja.ts index 8af046254..74a8d3a29 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_ja.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC プラグイン</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC ファイル</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>FLAC 音響プラグインについて</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>QMMP FLAC 音響プラグイン</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>長さ</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>サンプルレート</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>チャンネル</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>ビットレート</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>キロビット毎秒</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>ファイルの大きさ</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KiB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_kk.ts b/src/plugins/Input/flac/translations/flac_plugin_kk.ts index 6ee5f4647..42d88c19b 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_kk.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_lt.ts b/src/plugins/Input/flac/translations/flac_plugin_lt.ts index a69cb26b7..b7b463b9b 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_lt.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC įskiepis</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC bylos</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Apie FLAC audio įskiepį</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp FLAC audio įskiepis</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Trukmė</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Dažnis</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Kanalai</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Kokybė</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Bylos dydis</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_nl.ts b/src/plugins/Input/flac/translations/flac_plugin_nl.ts index 33bd6fdca..865df5ed8 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_nl.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC Module</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC Bestanden</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Over de FLAC Audio Module</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>FLAC Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Duur</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Sample frequentie</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Kanalen</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Bitsnelheid</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Bestandsgrootte</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation></translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_pl_PL.ts b/src/plugins/Input/flac/translations/flac_plugin_pl_PL.ts index 1175aa025..1fb0e8a21 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_pl_PL.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Wtyczka FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Pliki FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>O wtyczce FLAC Audio</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Wtyczka FLAC Audio dla Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Długość</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Próbkowanie</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Kanały</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Szybkość transmisji</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Wielkość pliku</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_pt.ts b/src/plugins/Input/flac/translations/flac_plugin_pt.ts index 6680edd69..2c2f09f15 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_pt.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Suplemento FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Ficheiros FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Sobre o suplemento FLAC Audio</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Suplemento Qmmp FLAC Audio</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Duração</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Frequência</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Tamanho do ficheiro</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_pt_BR.ts b/src/plugins/Input/flac/translations/flac_plugin_pt_BR.ts index 911836f5c..b8e27e506 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_pt_BR.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Plugin FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Arquivos FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Sobre o plugin FLAC Audio</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Plugin Qmmp FLAC Audio</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Duração</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Frequência</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Tamanho do arquivo</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_ru.ts b/src/plugins/Input/flac/translations/flac_plugin_ru.ts index 03e076f15..9fedc74cb 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_ru.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Модуль FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Файлы FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Об аудио-модуле FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Аудио-модуль FLAC для Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Длительность</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Дискретизация</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Гц</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Каналов</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Битовая частота</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>кбит/с</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Размер файла</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>КБ</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_sk.ts b/src/plugins/Input/flac/translations/flac_plugin_sk.ts index 2c5c89c48..d2f5ed089 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_sk.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_sr_BA.ts b/src/plugins/Input/flac/translations/flac_plugin_sr_BA.ts index 90e4dd442..ec3b43d6e 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_sr_BA.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>ФЛАЦ прикључак</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>ФЛАЦ фајлови</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>О ФЛАЦ прикључку</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Кумп ФЛАЦ прикључак</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Дужина</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Узорковање</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Канала</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Битски проток</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kb/s</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Величина</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_sr_RS.ts b/src/plugins/Input/flac/translations/flac_plugin_sr_RS.ts index d6ab1a9b0..bac8d9087 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_sr_RS.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>ФЛАЦ прикључак</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>ФЛАЦ фајлови</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>О ФЛАЦ прикључку</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Кумп ФЛАЦ прикључак</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Дужина</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Узорковање</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Канала</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Битски проток</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kb/s</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Величина</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_tr.ts b/src/plugins/Input/flac/translations/flac_plugin_tr.ts index 2ceab6ad6..a06f9c317 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_tr.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC Eklentisi</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC Dosyaları</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>FLAC Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp FLAC Ses Eklentisi</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation type="unfinished">Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation type="unfinished">kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation type="unfinished">KB</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_uk_UA.ts b/src/plugins/Input/flac/translations/flac_plugin_uk_UA.ts index 36e16ffc1..72ac332fd 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_uk_UA.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>Модуль FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>Файли FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>Про аудіо-модуль FLAC</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Аудіо-модуль FLAC для Qmmp</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>Тривалість</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>Частота</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Гц</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>Канали</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>Бітрейт</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>Кб/с</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>Розмір файлу</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>Кб</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_zh_CN.ts b/src/plugins/Input/flac/translations/flac_plugin_zh_CN.ts index 4a17d94b6..82b7b1257 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_zh_CN.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC 插件</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC 文件</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>关于 FLAC 音频插件</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp FLAC 音频插件</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>长度</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>取样率</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>赫兹</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>声音通道</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>千比特每秒</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>文件大小</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>千字节</translation> </message> diff --git a/src/plugins/Input/flac/translations/flac_plugin_zh_TW.ts b/src/plugins/Input/flac/translations/flac_plugin_zh_TW.ts index 3eb11398b..5b60850d7 100644 --- a/src/plugins/Input/flac/translations/flac_plugin_zh_TW.ts +++ b/src/plugins/Input/flac/translations/flac_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>DecoderFLACFactory</name> <message> - <location filename="../decoderflacfactory.cpp" line="56"/> + <location filename="../decoderflacfactory.cpp" line="53"/> <source>FLAC Plugin</source> <translation>FLAC 外掛</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="58"/> + <location filename="../decoderflacfactory.cpp" line="55"/> <source>FLAC Files</source> <translation>FLAC 檔案</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="199"/> + <location filename="../decoderflacfactory.cpp" line="186"/> <source>About FLAC Audio Plugin</source> <translation>關於 FLAC 聲訊插件</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="200"/> + <location filename="../decoderflacfactory.cpp" line="187"/> <source>Qmmp FLAC Audio Plugin</source> <translation>Qmmp FLAC 聲訊插件</translation> </message> <message> - <location filename="../decoderflacfactory.cpp" line="201"/> + <location filename="../decoderflacfactory.cpp" line="188"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> @@ -32,42 +32,42 @@ <context> <name>FLACMetaDataModel</name> <message> - <location filename="../flacmetadatamodel.cpp" line="92"/> + <location filename="../flacmetadatamodel.cpp" line="89"/> <source>Length</source> <translation>長度</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Sample rate</source> <translation>取樣率</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="93"/> + <location filename="../flacmetadatamodel.cpp" line="90"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="94"/> + <location filename="../flacmetadatamodel.cpp" line="91"/> <source>Channels</source> <translation>聲音通道</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="95"/> + <location filename="../flacmetadatamodel.cpp" line="92"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>File size</source> <translation>文件大小</translation> </message> <message> - <location filename="../flacmetadatamodel.cpp" line="96"/> + <location filename="../flacmetadatamodel.cpp" line="93"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/gme/CMakeLists.txt b/src/plugins/Input/gme/CMakeLists.txt index f164a28cf..655ee62c8 100644 --- a/src/plugins/Input/gme/CMakeLists.txt +++ b/src/plugins/Input/gme/CMakeLists.txt @@ -2,21 +2,8 @@ project(libgme) INCLUDE(CheckIncludeFileCXX) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -47,16 +34,15 @@ SET(libgme_HDRS SET(libgme_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libgme_RCC_SRCS ${libgme_RCCS}) +QT5_ADD_RESOURCES(libgme_RCC_SRCS ${libgme_RCCS}) # user interface - SET(libgme_UIS settingsdialog.ui ) -QT4_WRAP_UI(libgme_UIS_H ${libgme_UIS}) +QT5_WRAP_UI(libgme_UIS_H ${libgme_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -65,6 +51,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(GME_FOUND) ADD_LIBRARY(gme MODULE ${libgme_SRCS} ${libgme_RCC_SRCS} ${libgme_HDRS} ${libgme_UIS_H}) add_dependencies(gme qmmp) -target_link_libraries(gme ${QT_LIBRARIES} libqmmp ${GME_LIB}) +target_link_libraries(gme Qt5::Widgets -lqmmp ${GME_LIB}) install(TARGETS gme DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(GME_FOUND) diff --git a/src/plugins/Input/gme/decodergmefactory.cpp b/src/plugins/Input/gme/decodergmefactory.cpp index 5c5872632..4b9050dee 100644 --- a/src/plugins/Input/gme/decodergmefactory.cpp +++ b/src/plugins/Input/gme/decodergmefactory.cpp @@ -18,10 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QRegExp> -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> +#include <QRegExp> #include "settingsdialog.h" #include "gmehelper.h" #include "decoder_gme.h" @@ -117,4 +116,3 @@ QTranslator *DecoderGmeFactory::createTranslator(QObject *parent) translator->load(QString(":/gme_plugin_") + locale); return translator; } -Q_EXPORT_PLUGIN2(gme,DecoderGmeFactory) diff --git a/src/plugins/Input/gme/decodergmefactory.h b/src/plugins/Input/gme/decodergmefactory.h index b35fa7cfc..4da246e70 100644 --- a/src/plugins/Input/gme/decodergmefactory.h +++ b/src/plugins/Input/gme/decodergmefactory.h @@ -36,6 +36,7 @@ class DecoderGmeFactory : public QObject, DecoderFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/gme/translations/gme_plugin_bg.ts b/src/plugins/Input/gme/translations/gme_plugin_bg.ts index 7e640c613..348be8780 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_bg.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_cs.ts b/src/plugins/Input/gme/translations/gme_plugin_cs.ts index af63043a6..c328867bc 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_cs.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Modul GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Soubory s hudbou z her</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>O modulu GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Modul Qmmp GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Tento modul využívá knihovnu Game_Music_Emu pro přehrávání souborů s hudbou z her</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_de.ts b/src/plugins/Input/gme/translations/gme_plugin_de.ts index 25da4b044..1e5fb2c71 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_de.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME-Modul</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Musikdateien aus Spielen (Game Music)</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Über GME-Audiomodul</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Qmmp GME-Audiomodul</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Dieses Modul verwendet die Bibliothek „Game_Music_Emu“, um Musikdateien aus Spielen abzuspielen</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_el.ts b/src/plugins/Input/gme/translations/gme_plugin_el.ts index d0ed78215..ebada90c8 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_el.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Πρόσθετο GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Αρχεία μουσικής παιγνιδιών</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Αυτό το πρόσθετο χρησιμοποιεί τη βιβλιοθήκη Game_Music_Emu για την αναπαραγωγή αρχείων μουσικής παιγνιδιών</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_en.ts b/src/plugins/Input/gme/translations/gme_plugin_en.ts index ece6a11e2..a5840aa96 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_en.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_es.ts b/src/plugins/Input/gme/translations/gme_plugin_es.ts index 6725a69fc..221a6a59d 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_es.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Módulo GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Archivos de Game Music</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Acerca del Módulo de Audio GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Módulo de Audio GME de Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Este módulo usa la biblioteca Game_Music_Emu para reproducir archivos de música</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_fi.ts b/src/plugins/Input/gme/translations/gme_plugin_fi.ts index acee38825..1af78f27a 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_fi.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME-liitännäinen</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_fr.ts b/src/plugins/Input/gme/translations/gme_plugin_fr.ts index b045f7ce6..be2790e14 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_fr.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Greffon GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Fichiers de musiques de jeux</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>À propos du greffon audio GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Greffon audio GME pour Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Ce greffon utilise la bibliothèque Game_Music_Emu pour jouer les fichiers de musiques de jeux</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_gl_ES.ts b/src/plugins/Input/gme/translations/gme_plugin_gl_ES.ts index f7da931b2..4797d9821 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_gl_ES.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Engadido GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Game Music Files</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Sobre o engadido GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Engadido GME de Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Este engadido usa a librería Game_Music_Emu para reproducir ficheiros de xogo de música</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_he.ts b/src/plugins/Input/gme/translations/gme_plugin_he.ts index 8fa398cee..f6e4dc994 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_he.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>תוסף GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>קבצי מוזיקה של משחק</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>אודות תוסף שמע GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>תוסף שמע GME של Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>תוסף זה משתמש בספריית Game_Music_Emu לצורך ניגון קבצי מוזיקה של משחק וידאו</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_hu.ts b/src/plugins/Input/gme/translations/gme_plugin_hu.ts index 369174eba..fe7d19596 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_hu.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_id.ts b/src/plugins/Input/gme/translations/gme_plugin_id.ts index d5a37fbd7..c9cb4b770 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_id.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Plugin GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>File Musik Game</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Tentang Plugin Audio GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Plugin Audio GME Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Plugin ini menggunakan pustaka Game_Music_Emu untuk memainkan file musik game</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_it.ts b/src/plugins/Input/gme/translations/gme_plugin_it.ts index 1d6472d9b..2540ecd89 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_it.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_ja.ts b/src/plugins/Input/gme/translations/gme_plugin_ja.ts index e740f4266..ff0d37f78 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_ja.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME プラグイン</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>ゲーム音楽ファイル</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>GME 音響プラグインについて</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>QMMP 用 GME 音響プラグイン</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>このプラグインは Game_Music_Emu ライブラリを用いてゲーム音楽ファイルを再生します。</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_kk.ts b/src/plugins/Input/gme/translations/gme_plugin_kk.ts index 6c2859cbc..c65e391a3 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_kk.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_lt.ts b/src/plugins/Input/gme/translations/gme_plugin_lt.ts index 3fbe877c6..26a6bc1ef 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_lt.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME įskiepis</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Žaidimų muzikos bylos</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Apie GME Audio įskiepį</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Qmmp GME Audio įskiepis</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Šis įskiepis naudoja Game_Music_Emu biblioteką žaidimų muzikos bylų grojimui</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_nl.ts b/src/plugins/Input/gme/translations/gme_plugin_nl.ts index da7e8bc63..5c98a7fcd 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_nl.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME Module</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Spel Muziek Bestanden</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Over de GME Audio Module</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>GME Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Deze module faciliteert in het afspelen van spelmuziek door gebruik van de Game_Music_Emu bibliotheek</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_pl_PL.ts b/src/plugins/Input/gme/translations/gme_plugin_pl_PL.ts index f50118d8d..0f39401e9 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_pl_PL.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Wtyczka GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Game Music Files</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>O wtyczce dźwiękowej GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Wtyczka dźwiękowa GME dla Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Ta wtyczka używa biblioteki Game_Music_Emu do odtwarzania plików muzycznych z gier</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_pt.ts b/src/plugins/Input/gme/translations/gme_plugin_pt.ts index c560da307..bd4111fe8 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_pt.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Suplemento GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Ficheiros Game Music</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Sobre o suplemento GME Audio</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Suplemento Qmmp GME Audio</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Este suplemento utiliza a biblioteca Game_Music_Emu para a reprodução</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_pt_BR.ts b/src/plugins/Input/gme/translations/gme_plugin_pt_BR.ts index db3c0c0c7..b9c924836 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_pt_BR.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Plugin GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Arquivos Game Music</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Sobre o plugin GME Audio</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Plugin Qmmp GME Audio</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Este plugin utiliza a biblioteca Game_Music_Emu para a reprodução</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_ru.ts b/src/plugins/Input/gme/translations/gme_plugin_ru.ts index 16320d1ae..5ade1e0b9 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_ru.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Модуль GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Программы звукогенераторов</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Об аудио-модуле GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Аудио-модуль GME для Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Для воспроизведения используется библиотека Game_Music_Emu </translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_sk.ts b/src/plugins/Input/gme/translations/gme_plugin_sk.ts index 1f2f693b1..e867e34bd 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_sk.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_sr_BA.ts b/src/plugins/Input/gme/translations/gme_plugin_sr_BA.ts index 1bcb2058b..30e6672db 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_sr_BA.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>ГМЕ прикључак</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Музички фајлови за игре</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>О ГМЕ прикључку</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Кумп ГМЕ прикључак</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Користи „Game_Music_Emu“ библиотеку за пуштање музичких фајлова за игре</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_sr_RS.ts b/src/plugins/Input/gme/translations/gme_plugin_sr_RS.ts index eead24668..0472e8b24 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_sr_RS.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>ГМЕ прикључак</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Музички фајлови за игре</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>О ГМЕ прикључку</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Кумп ГМЕ прикључак</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Користи „Game_Music_Emu“ библиотеку за пуштање музичких фајлова за игре</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_tr.ts b/src/plugins/Input/gme/translations/gme_plugin_tr.ts index 0a112111f..905c0ce36 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_tr.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_uk_UA.ts b/src/plugins/Input/gme/translations/gme_plugin_uk_UA.ts index 8b868b170..d905a3c5b 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_uk_UA.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>Модуль GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Програми звукогенераторів</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>Про аудіо-модуль GME</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Аудіо-модуль GME для Qmmp</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>Для відтворення використовується бібліотека Game_Music_Emu</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_zh_CN.ts b/src/plugins/Input/gme/translations/gme_plugin_zh_CN.ts index 2a38145f6..b12ff942e 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_zh_CN.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME 插件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Game 音乐文件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>关于 GME 音频插件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Qmmp GME 音频插件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>此插件使用 Game_Music_Emu 库来播放 game 音乐文件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/gme/translations/gme_plugin_zh_TW.ts b/src/plugins/Input/gme/translations/gme_plugin_zh_TW.ts index 76980d05f..d59c3cbec 100644 --- a/src/plugins/Input/gme/translations/gme_plugin_zh_TW.ts +++ b/src/plugins/Input/gme/translations/gme_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderGmeFactory</name> <message> - <location filename="../decodergmefactory.cpp" line="40"/> + <location filename="../decodergmefactory.cpp" line="39"/> <source>GME Plugin</source> <translation>GME 外掛</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="43"/> + <location filename="../decodergmefactory.cpp" line="42"/> <source>Game Music Files</source> <translation>Game 音頻文件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="107"/> + <location filename="../decodergmefactory.cpp" line="106"/> <source>About GME Audio Plugin</source> <translation>關於 Game 音頻文件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="108"/> + <location filename="../decodergmefactory.cpp" line="107"/> <source>Qmmp GME Audio Plugin</source> <translation>Qmmp Game 音頻文件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="109"/> + <location filename="../decodergmefactory.cpp" line="108"/> <source>This plugin uses Game_Music_Emu library to play game music files</source> <translation>此插件使用 Game_Music_Emu 庫播放 Game 音頻文件</translation> </message> <message> - <location filename="../decodergmefactory.cpp" line="110"/> + <location filename="../decodergmefactory.cpp" line="109"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mad/CMakeLists.txt b/src/plugins/Input/mad/CMakeLists.txt index 65c04ae49..34f13bfb9 100644 --- a/src/plugins/Input/mad/CMakeLists.txt +++ b/src/plugins/Input/mad/CMakeLists.txt @@ -1,20 +1,7 @@ project(libmad) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -43,7 +30,7 @@ SET(libmad_HDRS SET(libmad_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libmad_RCC_SRCS ${libmad_RCCS}) +QT5_ADD_RESOURCES(libmad_RCC_SRCS ${libmad_RCCS}) # user interface @@ -52,7 +39,7 @@ SET(libmad_UIS settingsdialog.ui ) -QT4_WRAP_UI(libmad_UIS_H ${libmad_UIS}) +QT5_WRAP_UI(libmad_UIS_H ${libmad_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -60,6 +47,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(MAD_FOUND) ADD_LIBRARY(mad MODULE ${libmad_SRCS} ${libmad_UIS_H} ${libmad_RCC_SRCS} ${libmad_HDRS}) add_dependencies(mad qmmp) -target_link_libraries(mad ${QT_LIBRARIES} libqmmp ${MAD_LDFLAGS} ${TAGLIB_LDFLAGS}) +target_link_libraries(mad Qt5::Widgets -lqmmp ${MAD_LDFLAGS} ${TAGLIB_LDFLAGS}) install(TARGETS mad DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(MAD_FOUND) diff --git a/src/plugins/Input/mad/decodermadfactory.cpp b/src/plugins/Input/mad/decodermadfactory.cpp index b003eb9b9..96227bd2f 100644 --- a/src/plugins/Input/mad/decodermadfactory.cpp +++ b/src/plugins/Input/mad/decodermadfactory.cpp @@ -20,11 +20,10 @@ #include <QDialog> #include <QMessageBox> -#include <QFile> -#include <QTextCodec> #include <QSettings> #include <QTranslator> -#include <QtPlugin> +#include <QFile> +#include <QTextCodec> #include <mad.h> #include <taglib/tag.h> #include <taglib/fileref.h> @@ -33,9 +32,7 @@ #include <taglib/apetag.h> #include <taglib/tfile.h> #include <taglib/mpegfile.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> -#endif #include "mpegmetadatamodel.h" #include "replaygainreader.h" #include "settingsdialog.h" @@ -142,12 +139,8 @@ QList<FileInfo *> DecoderMADFactory::createPlayList(const QString &fileName, boo FileInfo *info = new FileInfo(fileName); TagLib::Tag *tag = 0; -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(fileName), true); TagLib::MPEG::File fileRef(&stream, TagLib::ID3v2::FrameFactory::instance()); -#else - TagLib::MPEG::File fileRef(QStringToFileName(fileName)); -#endif if (useMetaData) { @@ -293,5 +286,3 @@ QTranslator *DecoderMADFactory::createTranslator(QObject *parent) translator->load(QString(":/mad_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(mad, DecoderMADFactory) diff --git a/src/plugins/Input/mad/decodermadfactory.h b/src/plugins/Input/mad/decodermadfactory.h index 25820d2f0..a3f0139ac 100644 --- a/src/plugins/Input/mad/decodermadfactory.h +++ b/src/plugins/Input/mad/decodermadfactory.h @@ -34,6 +34,7 @@ class DecoderMADFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/mad/replaygainreader.cpp b/src/plugins/Input/mad/replaygainreader.cpp index d90822b75..e4bb4f56c 100644 --- a/src/plugins/Input/mad/replaygainreader.cpp +++ b/src/plugins/Input/mad/replaygainreader.cpp @@ -25,20 +25,14 @@ #include <taglib/id3v1tag.h> #include <taglib/id3v2header.h> #include <taglib/textidentificationframe.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> #include <taglib/id3v2framefactory.h> -#endif #include "replaygainreader.h" ReplayGainReader::ReplayGainReader(const QString &path) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(path), true); TagLib::MPEG::File fileRef(&stream, TagLib::ID3v2::FrameFactory::instance()); -#else - TagLib::MPEG::File fileRef(QStringToFileName(path)); -#endif if(fileRef.ID3v2Tag()) readID3v2(fileRef.ID3v2Tag()); if(m_values.isEmpty() && fileRef.APETag()) diff --git a/src/plugins/Input/mad/translations/mad_plugin_bg.ts b/src/plugins/Input/mad/translations/mad_plugin_bg.ts index 328499f5e..3425ba5a6 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_bg.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_bg.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_cs.ts b/src/plugins/Input/mad/translations/mad_plugin_cs.ts index 732d24f4a..a8cab007b 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_cs.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_cs.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Modul MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Soubory MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>O modulu MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Vstupní modul Qmmp MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Zkompilováno s libmad verze:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Zdrojový kód je založen na projektech mq3 a madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_de.ts b/src/plugins/Input/mad/translations/mad_plugin_de.ts index e929565d7..bbbc0f671 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_de.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_de.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG-Modul</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG-Dateien</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Über MPEG-Audiomodul</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp MPEG-Audiomodul</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Kompiliert gegen libmad-Version:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Basiert auf Code von den mq3- und madplay-Projekten</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_el.ts b/src/plugins/Input/mad/translations/mad_plugin_el.ts index 2fc875a1a..162999bb5 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_el.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_el.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Πρόσθετο MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Αρχεία MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Μεταγλωττίστηκε χρησιμοποιώντας την έκδοση της βιβλιοθήκης libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Ο πηγαίος κώδικας έχει βασιστεί στα έργα mq3 και madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_en.ts b/src/plugins/Input/mad/translations/mad_plugin_en.ts index 926489c14..9614b9bfe 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_en.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_en.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_es.ts b/src/plugins/Input/mad/translations/mad_plugin_es.ts index 0d86dd4f8..bd8d4b0eb 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_es.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_es.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Módulo MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Archivos MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Acerca del módulo de audio MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Módulo de audio MPEG para Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Compilado con libmad version:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Código fuente basado sobre proyectos mq3 y madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_fi.ts b/src/plugins/Input/mad/translations/mad_plugin_fi.ts index bd561c491..650ff7c2c 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_fi.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_fi.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG-liitännäinen</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG-tiedostot</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Tietoja - MPEG-ääniliitännäinen</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp:n MPEG-ääniliitännäinen</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Koostettu vasten libmadin versiota:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_fr.ts b/src/plugins/Input/mad/translations/mad_plugin_fr.ts index afe03196a..75b564ce6 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_fr.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_fr.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Greffon MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Fichiers MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>À propos du greffon audio MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Greffon audio MPEG pour Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Compilé contre libmad version :</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Code source basé sur les projets mq3 et madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_gl_ES.ts b/src/plugins/Input/mad/translations/mad_plugin_gl_ES.ts index d188424ab..ac07a4377 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_gl_ES.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_gl_ES.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Engadido MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Ficheiros MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Sobre o engadido MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Engadido audio MPEG de Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Compilado coa versión libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Código fonte baseado nos proxectos mq3 e madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_he.ts b/src/plugins/Input/mad/translations/mad_plugin_he.ts index 93347b923..5b238f1d1 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_he.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_he.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>תוסף MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>קבצי MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>אודות תוסף שמע MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>תוסף שמע MPEG של Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>הודר כנגדlibmad גירסה:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>קוד מקור מבוסס על המיזמים mq3 וגם madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_hu.ts b/src/plugins/Input/mad/translations/mad_plugin_hu.ts index 28e8f79a3..2ab90a740 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_hu.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_hu.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_id.ts b/src/plugins/Input/mad/translations/mad_plugin_id.ts index 34b33e649..0f25c2ade 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_id.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_id.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Plugin MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>File MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Tentang Plugin Audio MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Plugin Audio MPEG Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Dikompilasi terhadap versi libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Kode sumber berdasarkan pada mq3 dan proyek madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_it.ts b/src/plugins/Input/mad/translations/mad_plugin_it.ts index 5e0a44134..be82bfb0a 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_it.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_it.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Modulo MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Brani MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Info sul modulo audio MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Modulo audio MPEG per Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Compilato con libmad-Version:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_ja.ts b/src/plugins/Input/mad/translations/mad_plugin_ja.ts index f03748ea4..d860a0c4c 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_ja.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_ja.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG プラグイン</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG ファイル</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>MPEG 音響プラグインについて</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>QMMP MPEG 音響プラグイン</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>コンパイル時に使われた libmad の版はつぎのとおり:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>ソースコードは mq3 と madplay の両プロジェクトから流用</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_kk.ts b/src/plugins/Input/mad/translations/mad_plugin_kk.ts index 0c4fc46b6..8a702981c 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_kk.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_kk.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_lt.ts b/src/plugins/Input/mad/translations/mad_plugin_lt.ts index de1c0b562..749d83767 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_lt.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_lt.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG įskiepis</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG bylos</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Apie MPEG audio įskiepį</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp MPEG įskiepis</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Sukurta libmad pagrindu:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Kodas sukurtas mq3 ir madplay projektų kodais </translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_nl.ts b/src/plugins/Input/mad/translations/mad_plugin_nl.ts index 4fa8578b9..0f1408d9f 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_nl.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_nl.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG Module</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG Bestanden</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Over de MPEG Audio Module</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>MPEG Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Gecompileerd tegen libmad met versie:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Broncode gebasseerd op 'mq3' en 'madplay' projecten</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_pl_PL.ts b/src/plugins/Input/mad/translations/mad_plugin_pl_PL.ts index 51f17314e..223bd6102 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_pl_PL.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_pl_PL.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Wtyczka MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Pliki MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>O wtyczce Audio MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Wtyczka MPEG Audio dla Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Skompilowane przy użyciu biblioteki libmad w wersji:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Kod źródłowy oparty na projektach mq3 oraz madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_pt.ts b/src/plugins/Input/mad/translations/mad_plugin_pt.ts index 675daa421..0aa2c048d 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_pt.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_pt.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Suplemento MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Ficheiros MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Sobre o suplemento MPEG Audio</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Suplemento Qmmp MPEG Audio</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Compilado com a versão libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Baseado no código fonte dos projetos mq3 e madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_pt_BR.ts b/src/plugins/Input/mad/translations/mad_plugin_pt_BR.ts index 16488f2a2..58e4cf0d3 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_pt_BR.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_pt_BR.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Plugin MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Arquivos MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Sobre o plugin MPEG Audio</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Plugin Qmmp MPEG Audio</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Compilado com a versão libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Baseado no código fonte dos projetos mq3 e madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_ru.ts b/src/plugins/Input/mad/translations/mad_plugin_ru.ts index 49b4a5d4c..0173fbdee 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_ru.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_ru.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Модуль MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Файлы MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Об аудио-модуле MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Аудио-модуль MPEG для Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Собрано с версией libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Исходный код снован на проектах mq3 и madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_sk.ts b/src/plugins/Input/mad/translations/mad_plugin_sk.ts index efbce9004..496c5c812 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_sk.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_sk.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_sr_BA.ts b/src/plugins/Input/mad/translations/mad_plugin_sr_BA.ts index 55686229a..9d6f7751a 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_sr_BA.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_sr_BA.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>МПЕГ прикључак</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>МПЕГ фајлови</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>О МПЕГ прикључку</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Кумп МПЕГ прикључак</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Компилован на libmad издању:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Заснован на пројектима mq3 и madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_sr_RS.ts b/src/plugins/Input/mad/translations/mad_plugin_sr_RS.ts index dd8cdf402..1f2a2b712 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_sr_RS.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_sr_RS.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>МПЕГ прикључак</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>МПЕГ фајлови</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>О МПЕГ прикључку</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Кумп МПЕГ прикључак</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Компилован на libmad издању:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Заснован на пројектима mq3 и madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_tr.ts b/src/plugins/Input/mad/translations/mad_plugin_tr.ts index 6da3f51dd..beff9ad80 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_tr.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_tr.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG Eklentisi</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG Dosyaları</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>MPEG Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp MPEG Ses Eklentisi</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Derlendiği libmad sürümü:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_uk_UA.ts b/src/plugins/Input/mad/translations/mad_plugin_uk_UA.ts index bca23cb57..b533d0630 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_uk_UA.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_uk_UA.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>Модуль MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>Файли MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>Про аудіо-модуль MPEG</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Аудіо-модуль MPEG для Qmmp</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>Зібрано з версією libmad:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>Вихідні коди базуються на проектах mq3 та madplay</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_zh_CN.ts b/src/plugins/Input/mad/translations/mad_plugin_zh_CN.ts index c531ae832..40ffa5f37 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_zh_CN.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_zh_CN.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG 插件</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG 文件</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>关于 MPEG 音频插件</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp MPEG 音频插件</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>编译基于 libmad 版本:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation>源代码基于mq3及madplay项目</translation> </message> diff --git a/src/plugins/Input/mad/translations/mad_plugin_zh_TW.ts b/src/plugins/Input/mad/translations/mad_plugin_zh_TW.ts index cf7f68e9c..e6546e0c3 100644 --- a/src/plugins/Input/mad/translations/mad_plugin_zh_TW.ts +++ b/src/plugins/Input/mad/translations/mad_plugin_zh_TW.ts @@ -4,37 +4,37 @@ <context> <name>DecoderMADFactory</name> <message> - <location filename="../decodermadfactory.cpp" line="119"/> + <location filename="../decodermadfactory.cpp" line="116"/> <source>MPEG Plugin</source> <translation>MPEG 外掛</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="122"/> + <location filename="../decodermadfactory.cpp" line="119"/> <source>MPEG Files</source> <translation>MPEG 檔案</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="278"/> + <location filename="../decodermadfactory.cpp" line="271"/> <source>About MPEG Audio Plugin</source> <translation>關於 MPEG 聲訊插件</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="279"/> + <location filename="../decodermadfactory.cpp" line="272"/> <source>Qmmp MPEG Audio Plugin</source> <translation>Qmmp MPEG 聲訊插件</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="280"/> + <location filename="../decodermadfactory.cpp" line="273"/> <source>Compiled against libmad version:</source> <translation>編譯基於 libmad 的版本:</translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="284"/> + <location filename="../decodermadfactory.cpp" line="277"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermadfactory.cpp" line="285"/> + <location filename="../decodermadfactory.cpp" line="278"/> <source>Source code based on mq3 and madplay projects</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/CMakeLists.txt b/src/plugins/Input/modplug/CMakeLists.txt index 8ee06b906..716a0c8aa 100644 --- a/src/plugins/Input/modplug/CMakeLists.txt +++ b/src/plugins/Input/modplug/CMakeLists.txt @@ -2,21 +2,8 @@ project(libmodplug) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -54,7 +41,7 @@ SET(libmodplug_HDRS SET(libmodplug_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libmodplug_RCC_SRCS ${libmodplug_RCCS}) +QT5_ADD_RESOURCES(libmodplug_RCC_SRCS ${libmodplug_RCCS}) # user interface @@ -62,7 +49,7 @@ SET(libmodplug_UIS settingsdialog.ui ) -QT4_WRAP_UI(libmodplug_UIS_H ${libmodplug_UIS}) +QT5_WRAP_UI(libmodplug_UIS_H ${libmodplug_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -71,7 +58,7 @@ IF(MODPLUG_FOUND) ADD_LIBRARY(modplug MODULE ${libmodplug_SRCS} ${libmodplug_UIS_H} ${libmodplug_RCC_SRCS} ${libmodplug_HDRS}) add_dependencies(modplug qmmp) -target_link_libraries(modplug ${QT_LIBRARIES} libqmmp ${MODPLUG_LDFLAGS}) +target_link_libraries(modplug Qt5::Widgets -lqmmp ${MODPLUG_LDFLAGS}) install(TARGETS modplug DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(MODPLUG_FOUND) diff --git a/src/plugins/Input/modplug/decodermodplugfactory.cpp b/src/plugins/Input/modplug/decodermodplugfactory.cpp index 400a7334d..d52718133 100644 --- a/src/plugins/Input/modplug/decodermodplugfactory.cpp +++ b/src/plugins/Input/modplug/decodermodplugfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,13 +18,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QStringList> -#include <QRegExp> -#include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <QSettings> #include <QFile> +#include <QTranslator> +#include <QMessageBox> +#include <QStringList> +#include <QRegExp> #include <libmodplug/stdafx.h> #include <libmodplug/it_defs.h> #include <libmodplug/sndfile.h> @@ -134,5 +133,3 @@ QTranslator *DecoderModPlugFactory::createTranslator(QObject *parent) translator->load(QString(":/modplug_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(modplug,DecoderModPlugFactory) diff --git a/src/plugins/Input/modplug/decodermodplugfactory.h b/src/plugins/Input/modplug/decodermodplugfactory.h index f49c2a1d3..6cb255903 100644 --- a/src/plugins/Input/modplug/decodermodplugfactory.h +++ b/src/plugins/Input/modplug/decodermodplugfactory.h @@ -35,6 +35,7 @@ class DecoderModPlugFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_bg.ts b/src/plugins/Input/modplug/translations/modplug_plugin_bg.ts index 1fc8a8976..05f38e807 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_bg.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_bg.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_cs.ts b/src/plugins/Input/modplug/translations/modplug_plugin_cs.ts index b07b312f8..73d6c438d 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_cs.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_cs.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Modul ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Soubory ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>O modulu ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Vstupní modul Qmmp ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Založeno na modulu Modplug pro XMMS</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Vývojáři modulu ModPlug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_de.ts b/src/plugins/Input/modplug/translations/modplug_plugin_de.ts index ddeadd0f4..81dcdc813 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_de.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_de.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug-Modul</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug-Dateien</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Über ModPlug-Audiomodul</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Qmmp ModPlug-Audiomodul</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Basiert auf dem Modplug-Modul für Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Entwickler des Modplug-Moduls:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_el.ts b/src/plugins/Input/modplug/translations/modplug_plugin_el.ts index 7e4724599..5f911bc05 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_el.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_el.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Πρόσθετο ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Αρχεία ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Βασισμένο στο πρόσθετο Modplug για το Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Οι προγραμματιστές του Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_en.ts b/src/plugins/Input/modplug/translations/modplug_plugin_en.ts index 762df04d4..2a36edbe2 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_en.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_en.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_es.ts b/src/plugins/Input/modplug/translations/modplug_plugin_es.ts index 179bea0b9..f041afd30 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_es.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_es.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Módulo ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Archivos ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Acerca del módulo de audio ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Módulo de audio ModPlug para Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Basado en el módulo Modplug para Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Desarrolladores del módulo Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_fi.ts b/src/plugins/Input/modplug/translations/modplug_plugin_fi.ts index 4aa6bb961..258ba8ea3 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_fi.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_fi.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug-liitännäinen</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug-tiedostot</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Modplug-liitännäisen kehittäjät:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_fr.ts b/src/plugins/Input/modplug/translations/modplug_plugin_fr.ts index df444935a..00b8eb18d 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_fr.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_fr.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Plugin ModPLug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Fichiers ModPLug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>A propos du plugin audio ModPLug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Plugin audio ModPlug Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Basé sur le plugin ModPlug pour Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Plugin modplug pour développeurs</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_gl_ES.ts b/src/plugins/Input/modplug/translations/modplug_plugin_gl_ES.ts index f774483b8..1cf6b21e4 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_gl_ES.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_gl_ES.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Engadido ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Ficheiros ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Sobre o engadido ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Engadido ModPlug de Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Baseado no engadido ModPlug para Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Desenvolvedores do engadido ModPlug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_he.ts b/src/plugins/Input/modplug/translations/modplug_plugin_he.ts index 30da736b4..79ab0a6ac 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_he.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_he.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>תוסף ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>קבצי ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>אודות תוסף שמע ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>תוסף שמע ModPlug של Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>מבוסס על התוסף Modplug עבור Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>מפתחי תוסף Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_hu.ts b/src/plugins/Input/modplug/translations/modplug_plugin_hu.ts index b10083b88..5f76abdd9 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_hu.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_hu.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_id.ts b/src/plugins/Input/modplug/translations/modplug_plugin_id.ts index 8f388aedf..13cdb5a54 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_id.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_id.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Plugin ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>File ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Tentang Plugin Audio ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Plugin Audio ModPlug Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Berdasarkan pada Plugin Modplug untuk Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Pengembang Plugin Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_it.ts b/src/plugins/Input/modplug/translations/modplug_plugin_it.ts index c7f7011d2..2557141ae 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_it.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_it.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Modulo ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Brani ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Info sul modulo audio ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Modulo audio ModPlug per Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Basato sul Modulo Modplug per Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Sviluppatori del modulo Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_ja.ts b/src/plugins/Input/modplug/translations/modplug_plugin_ja.ts index b894c6ff0..96e8f4bca 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_ja.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_ja.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug プラグイン</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug ファイル</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>ModPlug 音響プラグインについて</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>QMMP ModPlug 音響プラグイン</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>XMMS 用 ModPlug プラグインを基に作成</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>ModPlug プラグインの開発者:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_kk.ts b/src/plugins/Input/modplug/translations/modplug_plugin_kk.ts index 8c7156d9a..0f5e493cb 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_kk.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_kk.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_lt.ts b/src/plugins/Input/modplug/translations/modplug_plugin_lt.ts index 5901eb44c..5f2c1c2f6 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_lt.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_lt.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug Įskiepis</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug bylos</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Apie ModPlug audio įskiepį</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Qmmp ModPlug audio įskiepis</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Sukurta Xmms Modplug įskiepio pagrindu</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Modplug įskiepio kūrėjai:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_nl.ts b/src/plugins/Input/modplug/translations/modplug_plugin_nl.ts index 647a9a3a8..0ef8431a7 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_nl.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_nl.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug Module</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug Bestanden</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Over de ModPlug Audio Module</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Modplug Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Gebasseerd op de Modplug Module voor Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Modplug Module ontwikkelaars:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_pl_PL.ts b/src/plugins/Input/modplug/translations/modplug_plugin_pl_PL.ts index 5512673ef..64e8f4974 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_pl_PL.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_pl_PL.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Wtyczka ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Pliki ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>O wtyczce ModPlug Audio</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Wtyczka ModPlug Audio dla Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Oparty na wtyczce Modplug dla Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Twórcy wtyczki Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_pt.ts b/src/plugins/Input/modplug/translations/modplug_plugin_pt.ts index c12f49984..93256d1c1 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_pt.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_pt.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Suplemento ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Ficheiros ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Sobre o suplemento ModPlug Audio</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Suplemento Qmmp ModPlug Audio</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Baseado no Modplug Plugin for Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Programadores ModPlug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_pt_BR.ts b/src/plugins/Input/modplug/translations/modplug_plugin_pt_BR.ts index 2242a6e00..e13a0d853 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_pt_BR.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_pt_BR.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Plugin ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Arquivos ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Sobre o plugin ModPlug Audio</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Plugin Qmmp ModPlug Audio</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Baseado no Modplug Plugin for Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Programadores ModPlug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_ru.ts b/src/plugins/Input/modplug/translations/modplug_plugin_ru.ts index fda8d544a..199f92242 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_ru.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_ru.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Модуль ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Файлы ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Об аудио-модуле ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Аудио-модуль ModPlug для Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Основан на базе модуля Modplug для Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Разработчики модуля Modplug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_sk.ts b/src/plugins/Input/modplug/translations/modplug_plugin_sk.ts index d125a2d59..d0f1afead 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_sk.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_sk.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_sr_BA.ts b/src/plugins/Input/modplug/translations/modplug_plugin_sr_BA.ts index ec7688295..1b9c27b5e 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_sr_BA.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_sr_BA.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>МодПлуг прикључак</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>МодПлуг фајлови</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>О МодПлуг прикључку</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Кумп МодПлуг прикључак</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Заснован на МодПлуг прикључку за ИксММС</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Програмери МодПлуг прикључка:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_sr_RS.ts b/src/plugins/Input/modplug/translations/modplug_plugin_sr_RS.ts index ce82a41ab..efc11c484 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_sr_RS.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_sr_RS.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>МодПлуг прикључак</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>МодПлуг фајлови</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>О МодПлуг прикључку</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Кумп МодПлуг прикључак</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Заснован на МодПлуг прикључку за ИксММС</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Програмери МодПлуг прикључка:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_tr.ts b/src/plugins/Input/modplug/translations/modplug_plugin_tr.ts index be3a100e6..51adefe09 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_tr.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_tr.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug Eklentisi</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug Dosyaları</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>ModPlug Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Qmmp ModPlug Ses Eklentisi</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>Xmms için yazılan Modplug eklentisi temellidir</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_uk_UA.ts b/src/plugins/Input/modplug/translations/modplug_plugin_uk_UA.ts index cc533b6f8..e7679331d 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_uk_UA.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_uk_UA.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>Модуль ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>Файли ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>Про аудіо-модуль ModPlug</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Аудіо-модуль для Qmmp</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>На базі модуля Modplug для Xmms</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>Розробники модуля ModPlug:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_zh_CN.ts b/src/plugins/Input/modplug/translations/modplug_plugin_zh_CN.ts index bdcf3b1a2..bf10bdf24 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_zh_CN.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_zh_CN.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug 插件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug 文件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>关于 ModPlug 音频插件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Qmmp ModPlug 音频插件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>基于 Modplug 的 Xmms 插件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>ModPlug 插件开发者:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/modplug/translations/modplug_plugin_zh_TW.ts b/src/plugins/Input/modplug/translations/modplug_plugin_zh_TW.ts index abbcb2bc9..eada7a6ad 100644 --- a/src/plugins/Input/modplug/translations/modplug_plugin_zh_TW.ts +++ b/src/plugins/Input/modplug/translations/modplug_plugin_zh_TW.ts @@ -4,52 +4,52 @@ <context> <name>DecoderModPlugFactory</name> <message> - <location filename="../decodermodplugfactory.cpp" line="48"/> + <location filename="../decodermodplugfactory.cpp" line="47"/> <source>ModPlug Plugin</source> <translation>ModPlug 外掛</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="54"/> + <location filename="../decodermodplugfactory.cpp" line="53"/> <source>ModPlug Files</source> <translation>ModPlug 檔案</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="120"/> + <location filename="../decodermodplugfactory.cpp" line="119"/> <source>About ModPlug Audio Plugin</source> <translation>關於 ModPlug 聲訊插件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="121"/> + <location filename="../decodermodplugfactory.cpp" line="120"/> <source>Qmmp ModPlug Audio Plugin</source> <translation>Qmmp ModPlug 聲訊插件</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="122"/> + <location filename="../decodermodplugfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="123"/> + <location filename="../decodermodplugfactory.cpp" line="122"/> <source>Based on the Modplug Plugin for Xmms</source> <translation>基於 Modplug 的 Xmms 外掛</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="124"/> + <location filename="../decodermodplugfactory.cpp" line="123"/> <source>Modplug Plugin developers:</source> <translation>ModPlug 插件開發:</translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="125"/> + <location filename="../decodermodplugfactory.cpp" line="124"/> <source>Olivier Lapicque <olivierl@jps.net></source> <translation>Olivier Lapicque <olivierl@jps.net></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="126"/> + <location filename="../decodermodplugfactory.cpp" line="125"/> <source>Kenton Varda <temporal@gauge3d.org></source> <translation>Kenton Varda <temporal@gauge3d.org></translation> </message> <message> - <location filename="../decodermodplugfactory.cpp" line="127"/> + <location filename="../decodermodplugfactory.cpp" line="126"/> <source>Konstanty Bialkowski <konstanty@ieee.org></source> <translation>Konstanty Bialkowski <konstanty@ieee.org></translation> </message> diff --git a/src/plugins/Input/mpc/CMakeLists.txt b/src/plugins/Input/mpc/CMakeLists.txt index 73afe1b7f..3790a874b 100644 --- a/src/plugins/Input/mpc/CMakeLists.txt +++ b/src/plugins/Input/mpc/CMakeLists.txt @@ -2,21 +2,8 @@ project(libmpc) INCLUDE(CheckIncludeFileCXX) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -53,13 +40,13 @@ SET(libmpc_HDRS SET(libmpc_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libmpc_RCC_SRCS ${libmpc_RCCS}) +QT5_ADD_RESOURCES(libmpc_RCC_SRCS ${libmpc_RCCS}) include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(MPC_FOUND) ADD_LIBRARY(mpc MODULE ${libmpc_SRCS} ${libmpc_RCC_SRCS} ${libmpc_HDRS}) add_dependencies(mpc qmmp) -target_link_libraries(mpc ${QT_LIBRARIES} libqmmp ${MPC_LIB} ${TAGLIB_LDFLAGS}) +target_link_libraries(mpc Qt5::Widgets -lqmmp ${MPC_LIB} ${TAGLIB_LDFLAGS}) install(TARGETS mpc DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(MPC_FOUND) diff --git a/src/plugins/Input/mpc/decodermpcfactory.cpp b/src/plugins/Input/mpc/decodermpcfactory.cpp index f877e995c..56c83a2ff 100644 --- a/src/plugins/Input/mpc/decodermpcfactory.cpp +++ b/src/plugins/Input/mpc/decodermpcfactory.cpp @@ -18,16 +18,13 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <taglib/tag.h> #include <taglib/fileref.h> #include <taglib/mpcfile.h> #include <taglib/apetag.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> -#endif #include "mpcmetadatamodel.h" #include "decoder_mpc.h" #include "decodermpcfactory.h" @@ -72,13 +69,8 @@ QList<FileInfo *> DecoderMPCFactory::createPlayList(const QString &fileName, boo { FileInfo *info = new FileInfo(fileName); -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(fileName), true); TagLib::MPC::File fileRef(&stream); -#else - TagLib::MPC::File fileRef(QStringToFileName(fileName)); -#endif - TagLib::APE::Tag *tag = useMetaData ? fileRef.APETag() : 0; if (tag && !tag->isEmpty()) { @@ -136,5 +128,3 @@ QTranslator *DecoderMPCFactory::createTranslator(QObject *parent) translator->load(QString(":/mpc_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(mpc,DecoderMPCFactory) diff --git a/src/plugins/Input/mpc/decodermpcfactory.h b/src/plugins/Input/mpc/decodermpcfactory.h index bb66004e9..f2d86789d 100644 --- a/src/plugins/Input/mpc/decodermpcfactory.h +++ b/src/plugins/Input/mpc/decodermpcfactory.h @@ -37,6 +37,7 @@ class DecoderMPCFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_bg.ts b/src/plugins/Input/mpc/translations/mpc_plugin_bg.ts index 8c9bf2764..0f6182ba6 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_bg.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_cs.ts b/src/plugins/Input/mpc/translations/mpc_plugin_cs.ts index 2e2c4e6f8..e08b83ce5 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_cs.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Modul Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Soubory Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>O modulu Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Vstupní modul Qmmp Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_de.ts b/src/plugins/Input/mpc/translations/mpc_plugin_de.ts index 0a6599065..db95263e3 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_de.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack-Modul</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack-Dateien</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Über Musepack-Audiomodul</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp Musepack-Audiomodul</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_el.ts b/src/plugins/Input/mpc/translations/mpc_plugin_el.ts index 5d3548be8..4144df6fe 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_el.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Πρόσθετο Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Αρχεία Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_en.ts b/src/plugins/Input/mpc/translations/mpc_plugin_en.ts index a51ec5a8e..9e2fdbe21 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_en.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_es.ts b/src/plugins/Input/mpc/translations/mpc_plugin_es.ts index 97e3f5928..6deb12c8f 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_es.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Módulo Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Archivos Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Acerca del módulo de audio Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Módulo de audio Musepack para Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_fi.ts b/src/plugins/Input/mpc/translations/mpc_plugin_fi.ts index c7303181f..21153506a 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_fi.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack-liitännäinen</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack-tiedosto</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Tietoja - Musepack-ääniliitännäinen</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp:n Musepack-ääniliitännäinen</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_fr.ts b/src/plugins/Input/mpc/translations/mpc_plugin_fr.ts index e1c2a8180..77e3c0770 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_fr.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Greffon Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Fichiers Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>À propos du greffon audio Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Greffon audio Musepack pour Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_gl_ES.ts b/src/plugins/Input/mpc/translations/mpc_plugin_gl_ES.ts index bf33108a6..52ea2b8f5 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_gl_ES.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Engadido Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Ficheiros Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Sobre o engadido Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Engadido Musepack de Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_he.ts b/src/plugins/Input/mpc/translations/mpc_plugin_he.ts index 959f0b3aa..1230fcd8d 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_he.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>תוסף Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>קבצי Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>אודות תוסף שמע Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>תוסף שמע Musepack של Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_hu.ts b/src/plugins/Input/mpc/translations/mpc_plugin_hu.ts index 34cb1b938..4679e2f58 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_hu.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_id.ts b/src/plugins/Input/mpc/translations/mpc_plugin_id.ts index 29b4c6b1d..0e3f6e525 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_id.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Plugin Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>File Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Tentang Plugin Audio Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Plugin Audio Musepack Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_it.ts b/src/plugins/Input/mpc/translations/mpc_plugin_it.ts index b823a7893..524926675 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_it.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Modulo Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Brani Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Info sul modulo audio Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Modulo audio Musepack per Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_ja.ts b/src/plugins/Input/mpc/translations/mpc_plugin_ja.ts index 01e3e9181..cc86c15ac 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_ja.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack プラグイン</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack ファイル</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Musepack 音響プラグインについて</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>QMMP Musepack 音響プラグイン</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_kk.ts b/src/plugins/Input/mpc/translations/mpc_plugin_kk.ts index bae0f08e6..c578222e9 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_kk.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_lt.ts b/src/plugins/Input/mpc/translations/mpc_plugin_lt.ts index 27aeba082..675192cfc 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_lt.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack įskiepis</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack bylos</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Apie Qmmp Musepack įskiepį</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp Musepack įskiepis</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_nl.ts b/src/plugins/Input/mpc/translations/mpc_plugin_nl.ts index abb8a010f..a259fadb1 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_nl.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack Module</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack Bestanden</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Over de Musepack Audio Module</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Musepack Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_pl_PL.ts b/src/plugins/Input/mpc/translations/mpc_plugin_pl_PL.ts index 797836e40..3d5f94fe4 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_pl_PL.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Wtyczka Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Pliki Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>O wtyczce Musepack Audio</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Wtyczka Musepack Audio dla Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_pt.ts b/src/plugins/Input/mpc/translations/mpc_plugin_pt.ts index 425ba5fda..2579669b5 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_pt.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Suplemento Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Ficheiros Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Sobre o suplemento Musepack Audio</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Suplemento Qmmp Musepack Audio</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_pt_BR.ts b/src/plugins/Input/mpc/translations/mpc_plugin_pt_BR.ts index 0f3ce4ccf..88defd324 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_pt_BR.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Plugin Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Arquivos Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Sobre o plugin Musepack Audio</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Arquivo Qmmp Musepack Audio</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_ru.ts b/src/plugins/Input/mpc/translations/mpc_plugin_ru.ts index d874b3ccf..52dd6c849 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_ru.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Модуль Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Файлы Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Об аудио-модуле Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Аудио-модуль Musepack для Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_sk.ts b/src/plugins/Input/mpc/translations/mpc_plugin_sk.ts index 09e2279ef..c4c228c05 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_sk.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts b/src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts index 40dfd02b0..9beab2706 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Музпак прикључак</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Музпак фајлови</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>О Музпак прикључку</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Кумп Музпак прикључак</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_sr_RS.ts b/src/plugins/Input/mpc/translations/mpc_plugin_sr_RS.ts index fecfc5e85..6661db46a 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_sr_RS.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Музпак прикључак</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Музпак фајлови</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>О Музпак прикључку</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Кумп Музпак прикључак</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_tr.ts b/src/plugins/Input/mpc/translations/mpc_plugin_tr.ts index dc9fe6876..32a3c7bc1 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_tr.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack Eklentisi</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack Dosyaları</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Musepack Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp Musepack Ses Eklentisi</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_uk_UA.ts b/src/plugins/Input/mpc/translations/mpc_plugin_uk_UA.ts index aca9fb24e..530f27dc9 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_uk_UA.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Модуль Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Файли Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>Про аудіо-модуль Musepack</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Аудіо-модуль Musepack для Qmmp</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_zh_CN.ts b/src/plugins/Input/mpc/translations/mpc_plugin_zh_CN.ts index 642a0d928..07246c3f2 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_zh_CN.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack 插件</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack 文件</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>关于 Musepack 音频插件</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp Musepack 音频插件</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/mpc/translations/mpc_plugin_zh_TW.ts b/src/plugins/Input/mpc/translations/mpc_plugin_zh_TW.ts index 7a7301f0a..fb13a4755 100644 --- a/src/plugins/Input/mpc/translations/mpc_plugin_zh_TW.ts +++ b/src/plugins/Input/mpc/translations/mpc_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>DecoderMPCFactory</name> <message> - <location filename="../decodermpcfactory.cpp" line="56"/> + <location filename="../decodermpcfactory.cpp" line="53"/> <source>Musepack Plugin</source> <translation>Musepack 外掛</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="58"/> + <location filename="../decodermpcfactory.cpp" line="55"/> <source>Musepack Files</source> <translation>Musepack 檔案</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="127"/> + <location filename="../decodermpcfactory.cpp" line="119"/> <source>About Musepack Audio Plugin</source> <translation>關於 Musepack 聲訊插件</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="128"/> + <location filename="../decodermpcfactory.cpp" line="120"/> <source>Qmmp Musepack Audio Plugin</source> <translation>Qmmp Musepack 聲訊插件</translation> </message> <message> - <location filename="../decodermpcfactory.cpp" line="129"/> + <location filename="../decodermpcfactory.cpp" line="121"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/opus/CMakeLists.txt b/src/plugins/Input/opus/CMakeLists.txt index b6f5f1219..f443ef901 100644 --- a/src/plugins/Input/opus/CMakeLists.txt +++ b/src/plugins/Input/opus/CMakeLists.txt @@ -1,20 +1,7 @@ project(libopus) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -31,26 +18,20 @@ SET(libopus_SRCS decoderopusfactory.cpp opusmetadatamodel.cpp replaygainreader.cpp - opusfile.cpp - opusproperties.cpp - tdebug.cpp ) SET(libopus_HDRS decoder_opus.h replaygainreader.h - opusfile.h - opusproperties.h - tdebug.h ) SET(libopus_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libopus_RCC_SRCS ${libopus_RCCS}) +QT5_ADD_RESOURCES(libopus_RCC_SRCS ${libopus_RCCS}) # user interface -QT4_WRAP_UI(libopus_UIS_H ${libopus_UIS}) +QT5_WRAP_UI(libopus_UIS_H ${libopus_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -58,6 +39,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(OPUS_FOUND) ADD_LIBRARY(opus MODULE ${libopus_SRCS} ${libopus_RCC_SRCS} ${libopus_HDRS}) add_dependencies(opus qmmp) -target_link_libraries(opus ${QT_LIBRARIES} libqmmp ${OPUS_LDFLAGS} ${TAGLIB_LDFLAGS}) +target_link_libraries(opus Qt5::Widgets -lqmmp ${OPUS_LDFLAGS} ${TAGLIB_LDFLAGS}) install(TARGETS opus DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(OPUS_FOUND) diff --git a/src/plugins/Input/opus/decoderopusfactory.cpp b/src/plugins/Input/opus/decoderopusfactory.cpp index d52d76cec..6a0444751 100644 --- a/src/plugins/Input/opus/decoderopusfactory.cpp +++ b/src/plugins/Input/opus/decoderopusfactory.cpp @@ -20,10 +20,9 @@ #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include <taglib/tag.h> #include <taglib/fileref.h> -#include "opusfile.h" +#include <taglib/opusfile.h> #include "replaygainreader.h" #include "decoder_opus.h" #include "opusmetadatamodel.h" @@ -121,8 +120,7 @@ void DecoderOpusFactory::showAbout(QWidget *parent) { QMessageBox::about (parent, tr("About Opus Audio Plugin"), tr("Qmmp Opus Audio Plugin")+"\n"+ - tr("Written by: Ilya Kotov <forkotov02@ya.ru>")+"\n"+ - tr("This plugin includes code from TagLib library")); + tr("Written by: Ilya Kotov <forkotov02@ya.ru>")); } QTranslator *DecoderOpusFactory::createTranslator(QObject *parent) @@ -132,5 +130,3 @@ QTranslator *DecoderOpusFactory::createTranslator(QObject *parent) translator->load(QString(":/opus_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(opus,DecoderOpusFactory) diff --git a/src/plugins/Input/opus/decoderopusfactory.h b/src/plugins/Input/opus/decoderopusfactory.h index 17ff8e9d5..efee2f2dd 100644 --- a/src/plugins/Input/opus/decoderopusfactory.h +++ b/src/plugins/Input/opus/decoderopusfactory.h @@ -36,6 +36,7 @@ class DecoderOpusFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/opus/opus.pro b/src/plugins/Input/opus/opus.pro index f55764ca3..5cd5f321f 100644 --- a/src/plugins/Input/opus/opus.pro +++ b/src/plugins/Input/opus/opus.pro @@ -5,19 +5,12 @@ TARGET = $$PLUGINS_PREFIX/Input/opus HEADERS += decoderopusfactory.h \ decoder_opus.h \ opusmetadatamodel.h \ - replaygainreader.h \ - opusproperties.h \ - opusfile.h \ - tdebug.h + replaygainreader.h SOURCES += decoder_opus.cpp \ decoderopusfactory.cpp \ opusmetadatamodel.cpp \ - replaygainreader.cpp \ - opusproperties.cpp \ - opusfile.cpp \ - tdebug.cpp - + replaygainreader.cpp RESOURCES = translations/translations.qrc diff --git a/src/plugins/Input/opus/opusfile.cpp b/src/plugins/Input/opus/opusfile.cpp deleted file mode 100644 index eaf2d3afe..000000000 --- a/src/plugins/Input/opus/opusfile.cpp +++ /dev/null @@ -1,126 +0,0 @@ -/*************************************************************************** - copyright : (C) 2012 by Lukáš Lalinský - email : lalinsky@gmail.com - - copyright : (C) 2002 - 2008 by Scott Wheeler - email : wheeler@kde.org - (original Vorbis implementation) - ***************************************************************************/ - -/*************************************************************************** - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this library; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * - * 02110-1301 USA * - * * - * Alternatively, this file is available under the Mozilla Public * - * License Version 1.1. You may obtain a copy of the License at * - * http://www.mozilla.org/MPL/ * - ***************************************************************************/ - -/* - Changes against original code: - - removed constructor File(IOStream *stream, bool readProperties, Properties::ReadStyle propertiesStyle); - - removed function PropertyMap File::properties() const; - - removed function PropertyMap File::setProperties(const PropertyMap &properties). -*/ - -#include <bitset> - -#include <taglib/tstring.h> -#include "tdebug.h" - -#include "opusfile.h" - -using namespace TagLib; -using namespace TagLib::Ogg; - -class Opus::File::FilePrivate -{ -public: - FilePrivate() : - comment(0), - properties(0) {} - - ~FilePrivate() - { - delete comment; - delete properties; - } - - Ogg::XiphComment *comment; - Properties *properties; -}; - -//////////////////////////////////////////////////////////////////////////////// -// public members -//////////////////////////////////////////////////////////////////////////////// - -Opus::File::File(FileName file, bool readProperties, - Properties::ReadStyle propertiesStyle) : Ogg::File(file) -{ - d = new FilePrivate; - read(readProperties, propertiesStyle); -} - -Opus::File::~File() -{ - delete d; -} - -Ogg::XiphComment *Opus::File::tag() const -{ - return d->comment; -} - -Opus::Properties *Opus::File::audioProperties() const -{ - return d->properties; -} - -bool Opus::File::save() -{ - if(!d->comment) - d->comment = new Ogg::XiphComment; - - setPacket(1, ByteVector("OpusTags", 8) + d->comment->render(false)); - - return Ogg::File::save(); -} - -//////////////////////////////////////////////////////////////////////////////// -// private members -//////////////////////////////////////////////////////////////////////////////// - -void Opus::File::read(bool readProperties, Properties::ReadStyle propertiesStyle) -{ - ByteVector opusHeaderData = packet(0); - - if(!opusHeaderData.startsWith("OpusHead")) { - setValid(false); - debug("Opus::File::read() -- invalid Opus identification header"); - return; - } - - ByteVector commentHeaderData = packet(1); - - if(!commentHeaderData.startsWith("OpusTags")) { - setValid(false); - debug("Opus::File::read() -- invalid Opus tags header"); - return; - } - - d->comment = new Ogg::XiphComment(commentHeaderData.mid(8)); - - if(readProperties) - d->properties = new Properties(this, propertiesStyle); -} diff --git a/src/plugins/Input/opus/opusfile.h b/src/plugins/Input/opus/opusfile.h deleted file mode 100644 index dc80c4fdf..000000000 --- a/src/plugins/Input/opus/opusfile.h +++ /dev/null @@ -1,106 +0,0 @@ -/*************************************************************************** - copyright : (C) 2012 by Lukáš Lalinský - email : lalinsky@gmail.com - - copyright : (C) 2002 - 2008 by Scott Wheeler - email : wheeler@kde.org - (original Vorbis implementation) -***************************************************************************/ - -/*************************************************************************** - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this library; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * - * 02110-1301 USA * - * * - * Alternatively, this file is available under the Mozilla Public * - * License Version 1.1. You may obtain a copy of the License at * - * http://www.mozilla.org/MPL/ * - ***************************************************************************/ - -/* - Changes against original code: - - removed constructor File(IOStream *stream, bool readProperties, Properties::ReadStyle propertiesStyle); - - removed function PropertyMap File::properties() const; - - removed function PropertyMap File::setProperties(const PropertyMap &properties). -*/ - -#ifndef TAGLIB_OPUSFILE_H -#define TAGLIB_OPUSFILE_H - -#include <taglib/oggfile.h> -#include <taglib/xiphcomment.h> - -#include "opusproperties.h" - -namespace TagLib { - - namespace Ogg { - - //! A namespace containing classes for Opus metadata - - namespace Opus { - - //! An implementation of Ogg::File with Opus specific methods - - /*! - * This is the central class in the Ogg Opus metadata processing collection - * of classes. It's built upon Ogg::File which handles processing of the Ogg - * logical bitstream and breaking it down into pages which are handled by - * the codec implementations, in this case Opus specifically. - */ - - class File : public Ogg::File - { - public: - /*! - * Contructs a Opus file from \a file. If \a readProperties is true the - * file's audio properties will also be read using \a propertiesStyle. If - * false, \a propertiesStyle is ignored. - */ - File(FileName file, bool readProperties = true, - Properties::ReadStyle propertiesStyle = Properties::Average); - - /*! - * Destroys this instance of the File. - */ - virtual ~File(); - - /*! - * Returns the XiphComment for this file. XiphComment implements the tag - * interface, so this serves as the reimplementation of - * TagLib::File::tag(). - */ - virtual Ogg::XiphComment *tag() const; - - /*! - * Returns the Opus::Properties for this file. If no audio properties - * were read then this will return a null pointer. - */ - virtual Properties *audioProperties() const; - - virtual bool save(); - - private: - File(const File &); - File &operator=(const File &); - - void read(bool readProperties, Properties::ReadStyle propertiesStyle); - - class FilePrivate; - FilePrivate *d; - }; - } - } -} - -#endif diff --git a/src/plugins/Input/opus/opusmetadatamodel.cpp b/src/plugins/Input/opus/opusmetadatamodel.cpp index 2f79dfb6b..cd0f2be5f 100644 --- a/src/plugins/Input/opus/opusmetadatamodel.cpp +++ b/src/plugins/Input/opus/opusmetadatamodel.cpp @@ -18,13 +18,14 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <QtGlobal> #include <taglib/tag.h> +#include <taglib/fileref.h> +#include <taglib/opusfile.h> +#include <taglib/xiphcomment.h> #include <taglib/tmap.h> #include "opusmetadatamodel.h" -#define QStringToTString_qt4(s) TagLib::String(s.toUtf8().constData(), TagLib::String::UTF8) -#define TStringToQString_qt4(s) QString::fromUtf8(s.toCString(true)).trimmed() - OpusMetaDataModel::OpusMetaDataModel(const QString &path, QObject *parent) : MetaDataModel(parent) { m_path = path; @@ -79,7 +80,7 @@ QPixmap OpusMetaDataModel::cover() for(uint i = 0; i < list.size(); ++i) { TagLib::String value = list[i]; - QByteArray block = QByteArray::fromBase64(TStringToQString_qt4(value).toLatin1()); + QByteArray block = QByteArray::fromBase64(TStringToQString(value).toLatin1()); if(block.size() < 32) continue; qint64 pos = 0; @@ -135,25 +136,25 @@ const QString VorbisCommentModel::value(Qmmp::MetaData key) switch((int) key) { case Qmmp::TITLE: - return TStringToQString_qt4(m_tag->title()); + return TStringToQString(m_tag->title()); case Qmmp::ARTIST: - return TStringToQString_qt4(m_tag->artist()); + return TStringToQString(m_tag->artist()); case Qmmp::ALBUMARTIST: if(m_tag->fieldListMap()["ALBUMARTIST"].isEmpty()) return QString(); else - return TStringToQString_qt4(m_tag->fieldListMap()["ALBUMARTIST"].front()); + return TStringToQString(m_tag->fieldListMap()["ALBUMARTIST"].front()); case Qmmp::ALBUM: - return TStringToQString_qt4(m_tag->album()); + return TStringToQString(m_tag->album()); case Qmmp::COMMENT: - return TStringToQString_qt4(m_tag->comment()); + return TStringToQString(m_tag->comment()); case Qmmp::GENRE: - return TStringToQString_qt4(m_tag->genre()); + return TStringToQString(m_tag->genre()); case Qmmp::COMPOSER: if(m_tag->fieldListMap()["COMPOSER"].isEmpty()) return QString(); else - return TStringToQString_qt4(m_tag->fieldListMap()["COMPOSER"].front()); + return TStringToQString(m_tag->fieldListMap()["COMPOSER"].front()); case Qmmp::YEAR: return QString::number(m_tag->year()); case Qmmp::TRACK: @@ -162,7 +163,7 @@ const QString VorbisCommentModel::value(Qmmp::MetaData key) if(m_tag->fieldListMap()["DISCNUMBER"].isEmpty()) return QString(); else - return TStringToQString_qt4(m_tag->fieldListMap()["DISCNUMBER"].front()); + return TStringToQString(m_tag->fieldListMap()["DISCNUMBER"].front()); } return QString(); } @@ -172,7 +173,7 @@ void VorbisCommentModel::setValue(Qmmp::MetaData key, const QString &value) if(!m_tag) return; - TagLib::String str = QStringToTString_qt4(value); + TagLib::String str = QStringToTString(value); switch((int) key) { diff --git a/src/plugins/Input/opus/opusmetadatamodel.h b/src/plugins/Input/opus/opusmetadatamodel.h index a5d52490d..2d2a7a917 100644 --- a/src/plugins/Input/opus/opusmetadatamodel.h +++ b/src/plugins/Input/opus/opusmetadatamodel.h @@ -21,7 +21,7 @@ #ifndef OPUSMETADATAMODEL_H #define OPUSMETADATAMODEL_H -#include "opusfile.h" +#include <taglib/opusfile.h> #include <taglib/xiphcomment.h> #include <qmmp/metadatamodel.h> diff --git a/src/plugins/Input/opus/opusproperties.cpp b/src/plugins/Input/opus/opusproperties.cpp deleted file mode 100644 index 89ede973d..000000000 --- a/src/plugins/Input/opus/opusproperties.cpp +++ /dev/null @@ -1,161 +0,0 @@ -/*************************************************************************** - copyright : (C) 2012 by Lukáš Lalinský - email : lalinsky@gmail.com - - copyright : (C) 2002 - 2008 by Scott Wheeler - email : wheeler@kde.org - (original Vorbis implementation) - ***************************************************************************/ - -/*************************************************************************** - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this library; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * - * 02110-1301 USA * - * * - * Alternatively, this file is available under the Mozilla Public * - * License Version 1.1. You may obtain a copy of the License at * - * http://www.mozilla.org/MPL/ * - ***************************************************************************/ - -#include <taglib/tstring.h> -#include "tdebug.h" - -#include <taglib/oggpageheader.h> - -#include "opusproperties.h" -#include "opusfile.h" - -using namespace TagLib; -using namespace TagLib::Ogg; - -class Opus::Properties::PropertiesPrivate -{ -public: - PropertiesPrivate(File *f, ReadStyle s) : - file(f), - style(s), - length(0), - inputSampleRate(0), - channels(0), - opusVersion(0) {} - - File *file; - ReadStyle style; - int length; - int inputSampleRate; - int channels; - int opusVersion; -}; - -//////////////////////////////////////////////////////////////////////////////// -// public members -//////////////////////////////////////////////////////////////////////////////// - -Opus::Properties::Properties(File *file, ReadStyle style) : AudioProperties(style) -{ - d = new PropertiesPrivate(file, style); - read(); -} - -Opus::Properties::~Properties() -{ - delete d; -} - -int Opus::Properties::length() const -{ - return d->length; -} - -int Opus::Properties::bitrate() const -{ - return 0; -} - -int Opus::Properties::sampleRate() const -{ - // Opus can decode any stream at a sample rate of 8, 12, 16, 24, or 48 kHz, - // so there is no single sample rate. Let's assume it's the highest - // possible. - return 48000; -} - -int Opus::Properties::channels() const -{ - return d->channels; -} - -int Opus::Properties::inputSampleRate() const -{ - return d->inputSampleRate; -} - -int Opus::Properties::opusVersion() const -{ - return d->opusVersion; -} - -//////////////////////////////////////////////////////////////////////////////// -// private members -//////////////////////////////////////////////////////////////////////////////// - -void Opus::Properties::read() -{ - // Get the identification header from the Ogg implementation. - - // http://tools.ietf.org/html/draft-terriberry-oggopus-01#section-5.1 - - ByteVector data = d->file->packet(0); - - // *Magic Signature* - int pos = 8; - - // *Version* (8 bits, unsigned) - d->opusVersion = uchar(data.at(pos)); - pos += 1; - - // *Output Channel Count* 'C' (8 bits, unsigned) - d->channels = uchar(data.at(pos)); - pos += 1; - - // *Pre-skip* (16 bits, unsigned, little endian) - ushort preSkip = data.mid(pos, 2).toUShort(false); - pos += 2; - - // *Input Sample Rate* (32 bits, unsigned, little endian) - d->inputSampleRate = data.mid(pos, 4).toUInt(false); - pos += 4; - - // *Output Gain* (16 bits, signed, little endian) - pos += 2; - - // *Channel Mapping Family* (8 bits, unsigned) - pos += 1; - - const Ogg::PageHeader *first = d->file->firstPageHeader(); - const Ogg::PageHeader *last = d->file->lastPageHeader(); - - if(first && last) { - long long start = first->absoluteGranularPosition(); - long long end = last->absoluteGranularPosition(); - - if(start >= 0 && end >= 0) - d->length = (int) ((end - start - preSkip) / 48000); - else { - debug("Opus::Properties::read() -- The PCM values for the start or " - "end of this file was incorrect."); - } - } - else - debug("Opus::Properties::read() -- Could not find valid first and last Ogg pages."); -} diff --git a/src/plugins/Input/opus/opusproperties.h b/src/plugins/Input/opus/opusproperties.h deleted file mode 100644 index 013fd0bb4..000000000 --- a/src/plugins/Input/opus/opusproperties.h +++ /dev/null @@ -1,96 +0,0 @@ -/*************************************************************************** - copyright : (C) 2012 by Lukáš Lalinský - email : lalinsky@gmail.com - - copyright : (C) 2002 - 2008 by Scott Wheeler - email : wheeler@kde.org - (original Vorbis implementation) -***************************************************************************/ - -/*************************************************************************** - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this library; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * - * 02110-1301 USA * - * * - * Alternatively, this file is available under the Mozilla Public * - * License Version 1.1. You may obtain a copy of the License at * - * http://www.mozilla.org/MPL/ * - ***************************************************************************/ - -#ifndef TAGLIB_OPUSPROPERTIES_H -#define TAGLIB_OPUSPROPERTIES_H - -#include <taglib/audioproperties.h> - -namespace TagLib { - - namespace Ogg { - - namespace Opus { - - class File; - - //! An implementation of audio property reading for Ogg Opus - - /*! - * This reads the data from an Ogg Opus stream found in the AudioProperties - * API. - */ - - class Properties : public AudioProperties - { - public: - /*! - * Create an instance of Opus::Properties with the data read from the - * Opus::File \a file. - */ - Properties(File *file, ReadStyle style = Average); - - /*! - * Destroys this Opus::Properties instance. - */ - virtual ~Properties(); - - // Reimplementations. - - virtual int length() const; - virtual int bitrate() const; - virtual int sampleRate() const; - virtual int channels() const; - - /*! - * The Opus codec supports decoding at multiple sample rates, there is no - * single sample rate of the encoded stream. This returns the sample rate - * of the original audio stream. - */ - int inputSampleRate() const; - - /*! - * Returns the Opus version, currently "0" (as specified by the spec). - */ - int opusVersion() const; - - private: - Properties(const Properties &); - Properties &operator=(const Properties &); - - void read(); - - class PropertiesPrivate; - PropertiesPrivate *d; - }; - } - } -} - -#endif diff --git a/src/plugins/Input/opus/replaygainreader.cpp b/src/plugins/Input/opus/replaygainreader.cpp index 5a8d1d21d..e125764d7 100644 --- a/src/plugins/Input/opus/replaygainreader.cpp +++ b/src/plugins/Input/opus/replaygainreader.cpp @@ -21,12 +21,14 @@ #include <QtGlobal> #include <taglib/tag.h> #include <taglib/fileref.h> -#include "opusfile.h" +#include <taglib/opusfile.h> +#include <taglib/tfilestream.h> #include "replaygainreader.h" ReplayGainReader::ReplayGainReader(const QString &path) { - TagLib::Ogg::Opus::File fileRef(QStringToFileName(path)); + TagLib::FileStream stream(QStringToFileName(path), true); + TagLib::Ogg::Opus::File fileRef(&stream); if(fileRef.tag()) readVorbisComment(fileRef.tag()); } diff --git a/src/plugins/Input/opus/tdebug.cpp b/src/plugins/Input/opus/tdebug.cpp deleted file mode 100644 index 5a7be431d..000000000 --- a/src/plugins/Input/opus/tdebug.cpp +++ /dev/null @@ -1,55 +0,0 @@ -/*************************************************************************** - copyright : (C) 2002 - 2008 by Scott Wheeler - email : wheeler@kde.org - ***************************************************************************/ - -/*************************************************************************** - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this library; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * - * 02110-1301 USA * - * * - * Alternatively, this file is available under the Mozilla Public * - * License Version 1.1. You may obtain a copy of the License at * - * http://www.mozilla.org/MPL/ * - ***************************************************************************/ - -#ifndef NDEBUG -#include <iostream> -#include <bitset> - -#include "tdebug.h" -#include <taglib/tstring.h> - -using namespace TagLib; - -void TagLib::debug(const String &s) -{ - std::cerr << "TagLib: " << s << std::endl; -} - -void TagLib::debugData(const ByteVector &v) -{ - for(uint i = 0; i < v.size(); i++) { - - std::cout << "*** [" << i << "] - '" << char(v[i]) << "' - int " << int(v[i]) - << std::endl; - - std::bitset<8> b(v[i]); - - for(int j = 0; j < 8; j++) - std::cout << i << ":" << j << " " << b.test(j) << std::endl; - - std::cout << std::endl; - } -} -#endif diff --git a/src/plugins/Input/opus/tdebug.h b/src/plugins/Input/opus/tdebug.h deleted file mode 100644 index 5204fe707..000000000 --- a/src/plugins/Input/opus/tdebug.h +++ /dev/null @@ -1,71 +0,0 @@ -/*************************************************************************** - copyright : (C) 2002 - 2008 by Scott Wheeler - email : wheeler@kde.org - ***************************************************************************/ - -/*************************************************************************** - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this library; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * - * 02110-1301 USA * - * * - * Alternatively, this file is available under the Mozilla Public * - * License Version 1.1. You may obtain a copy of the License at * - * http://www.mozilla.org/MPL/ * - ***************************************************************************/ - -#ifndef TAGLIB_DEBUG_H -#define TAGLIB_DEBUG_H - -namespace TagLib { - - class String; - class ByteVector; - -#ifndef DO_NOT_DOCUMENT -#ifndef NDEBUG - - /*! - * A simple function that prints debugging output to cerr if debugging is - * not disabled. - * - * \warning Do not use this outside of TagLib, it could lead to undefined - * symbols in your build if TagLib is built with NDEBUG defined and your - * application is not. - * - * \internal - */ - void debug(const String &s); - - /*! - * For debugging binary data. - * - * \warning Do not use this outside of TagLib, it could lead to undefined - * symbols in your build if TagLib is built with NDEBUG defined and your - * application is not. - * - * \internal - */ - void debugData(const ByteVector &v); - -#else - - // Define these to an empty statement if debugging is disabled. - -#define debug(x) -#define debugData(x) - -#endif -#endif -} - -#endif diff --git a/src/plugins/Input/opus/translations/opus_plugin_bg.ts b/src/plugins/Input/opus/translations/opus_plugin_bg.ts index 3c6fe2d22..3112f9103 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_bg.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_bg.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_cs.ts b/src/plugins/Input/opus/translations/opus_plugin_cs.ts index 8c3f6517f..e7aeaa604 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_cs.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_cs.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Modul Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Soubory Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>O modulu Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Modul Qmmp Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Tento modul zahrnuje kód z knihovny TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Délka</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Vzorkovací frekvence</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Počet kanálů</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Datový tok</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Velikost souboru</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KiB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_de.ts b/src/plugins/Input/opus/translations/opus_plugin_de.ts index 86ded6035..6daba4c32 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_de.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_de.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Opus-Modul</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ogg-Opus-Dateien</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Über Opus-Audiomodul</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Qmmp Opus-Audiomodul</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Dieses Modul enthält Code aus der TagLib-Bibliothek</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Länge</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Abtastrate</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Kanäle</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>KBit/s</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Dateigröße</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_el.ts b/src/plugins/Input/opus/translations/opus_plugin_el.ts index cff76ae3e..ae55a7bea 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_el.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_el.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Πρόσθετο Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Αρχεία Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Αυτό το πρόσθετο περιέχει κώδικα από τη βιβλιοθήκη TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Διάρκεια</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Ρυθμός δειγματοληψίας</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Κανάλια</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Ρυθμός bit</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Μέγεθος αρχείου</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_en.ts b/src/plugins/Input/opus/translations/opus_plugin_en.ts index 7ed2df0c0..5a729a0a7 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_en.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_en.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_es.ts b/src/plugins/Input/opus/translations/opus_plugin_es.ts index 61a5f84b2..9e5d589d4 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_es.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_es.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Módulo Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Archivos Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Acerca del Módulo de Audio Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Módulo de Audio Opus de Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Este módulo incluye código proveniente de la biblioteca TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Duración</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Frecuencia</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Canales</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Tasa de bits</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Tamaño del archivo</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_fi.ts b/src/plugins/Input/opus/translations/opus_plugin_fi.ts index 91f916d2e..aa97a2e4a 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_fi.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_fi.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Opus-liitännäinen</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ogg Opus -tiedostot</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Tietoja - Opus-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Qmmp:n Opus-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Tämä liitännäinen sisältää koodia TagLib-kirjastosta</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Kesto</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Näytteenottotaajuus</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Kanavat</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Bittinopeus</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Tiedostokoko</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>kt</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_fr.ts b/src/plugins/Input/opus/translations/opus_plugin_fr.ts index 13489a5a3..90dca3c38 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_fr.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_fr.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Greffon Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Fichiers Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>À propos du greffon audio Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Greffon audio Opus pour Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Ce greffon comprend du code de la bibliothèque TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Longueur</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Taux d'échantillonage</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Canaux</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Débit binaire</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Taille du fichier</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>Ko</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_gl_ES.ts b/src/plugins/Input/opus/translations/opus_plugin_gl_ES.ts index 6d0a54153..ab1df61bd 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_gl_ES.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_gl_ES.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Engadido Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ficheiros Opus Ogg</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Sobre o endagido Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Engadido Opus de Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Este engadido inclúe código da libraría TagLig</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Lonxitude</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Taxa de mostra</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Taxa de bits</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Tamaño de ficheiro</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_he.ts b/src/plugins/Input/opus/translations/opus_plugin_he.ts index f215d22b9..4154aaa9a 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_he.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_he.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>תוסף Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>תוסף Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>אודות תוסף שמע Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>תוסף שמע Opus של Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>תוסף זו כולל קוד מתוך הספרייה TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>אריכות</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>שיעור דגימה</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>הרץ</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>ערוצים</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>שיעור סיביות</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>גודל קובץ</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>ק״ב</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_hu.ts b/src/plugins/Input/opus/translations/opus_plugin_hu.ts index 4bc700957..569af6df3 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_hu.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_hu.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_id.ts b/src/plugins/Input/opus/translations/opus_plugin_id.ts index ecc7d5f42..9bbe01695 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_id.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_id.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Plugin Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>File Opus Ogg</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Tentang Plugin Audio Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Plugin Audio Opus Qmmp </translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Plugin ini mencakup kode dari pustaka TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Panjang</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Sample rate</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Saluran</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Ukuran file</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_it.ts b/src/plugins/Input/opus/translations/opus_plugin_it.ts index 239720d73..3612b782c 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_it.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_it.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished">Durata</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished">Campionamento</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished">Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished">Canali</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished">bit al secondo</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished">kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished">Dimensione file</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished">KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_ja.ts b/src/plugins/Input/opus/translations/opus_plugin_ja.ts index 2f37b774a..6f9ceb54d 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_ja.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_ja.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Opus プラグイン</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ogg Opus ファイル</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Opus 音響プラグインについて</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>QMMP Opus 音響プラグイン</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>このプラグインは TagLib ライブラリーのコードを流用しています。</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>演奏時間</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>サンプルレート</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>チャンネル</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>ビットレート</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>キロビット毎秒</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>ファイルの大きさ</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KiB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_kk.ts b/src/plugins/Input/opus/translations/opus_plugin_kk.ts index 5ab14ec3f..a2b9b403d 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_kk.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_kk.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_lt.ts b/src/plugins/Input/opus/translations/opus_plugin_lt.ts index 2957ae20d..7f4329935 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_lt.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_lt.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Opus Įskiepis</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ogg Opus Bylos</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Apie Opus Audio Įskiepį</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Qmmp Opus Audio Įskiepis</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Įskiepyje yra kodo iš TagLib bibliotekos </translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Trukmė</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Dažnis</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Kanalai</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Kokybė</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Bylos dydis</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_nl.ts b/src/plugins/Input/opus/translations/opus_plugin_nl.ts index 9a85b7aee..2b8bb497e 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_nl.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_nl.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished">Duur</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished">Sample frequentie</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished">Kanalen</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished">Bitsnelheid</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished">Bestandsnaam</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_pl_PL.ts b/src/plugins/Input/opus/translations/opus_plugin_pl_PL.ts index 0571653e8..cace44dae 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_pl_PL.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_pl_PL.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Wtyczka Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Pliki Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>O wtyczce Opus Audio</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Wtyczka Opus Audio dla Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Ta wtyczka używa kodu z biblioteki TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Długość</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Próbkowanie</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Kanały</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Szybkość transmisji</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Wielkość pliku</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_pt.ts b/src/plugins/Input/opus/translations/opus_plugin_pt.ts index 037584d4c..d8c3e1010 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_pt.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_pt.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Suplemento Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ficheiros Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Sobre o suplemento Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Suplemento Qmmp Opus Audio</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Este suplemento possui código da biblioteca TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Duração</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Frequência</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Tamanho do ficheiro</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_pt_BR.ts b/src/plugins/Input/opus/translations/opus_plugin_pt_BR.ts index 703b71ba0..0b6cc9edd 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_pt_BR.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_pt_BR.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Plugin Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Arquivos Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Sobre o plugin Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Plugin Qmmp Opus Audio</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Este plugin inclui código da biblioteca TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Duração</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Frequência</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Tamanho do arquivo</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_ru.ts b/src/plugins/Input/opus/translations/opus_plugin_ru.ts index 3219de7e4..775780544 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_ru.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_ru.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Модуль Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Файлы Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Об аудио-модуле Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Модуль Opus для Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>В данном модуле задействован код из библиотеки TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Длительность</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Дискретизация</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Гц</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Каналов</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Битовая частота</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>кбит/с</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Размер файла</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>КБ</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_sk.ts b/src/plugins/Input/opus/translations/opus_plugin_sk.ts index 84424f7e4..277ecff2a 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_sk.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_sk.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_sr_BA.ts b/src/plugins/Input/opus/translations/opus_plugin_sr_BA.ts index 450e69802..c4448adb9 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_sr_BA.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_sr_BA.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Опус прикључак</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Огг Опус фајлови</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>О Опус прикључку</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Кумп Опус прикључак</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Овај прикључак користи кôд из TagLib библиотеке</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Дужина</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Узорковање</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Канала</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Битски проток</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kb/s</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Величина</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_sr_RS.ts b/src/plugins/Input/opus/translations/opus_plugin_sr_RS.ts index 025b447c4..6351cdbbb 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_sr_RS.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_sr_RS.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Опус прикључак</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Огг Опус фајлови</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>О Опус прикључку</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Кумп Опус прикључак</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>Овај прикључак користи кôд из TagLib библиотеке</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Дужина</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Узорковање</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Канала</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Битски проток</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kb/s</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Величина</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_tr.ts b/src/plugins/Input/opus/translations/opus_plugin_tr.ts index 6eedc2153..be5ed3709 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_tr.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_tr.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation type="unfinished">Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation type="unfinished">kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation type="unfinished">KB</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_uk_UA.ts b/src/plugins/Input/opus/translations/opus_plugin_uk_UA.ts index 3b89b25e2..f3d1b564e 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_uk_UA.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_uk_UA.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Модуль Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Файли Ogg Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>Про модуль аудіо Opus</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Модуль Opus для Qmmp</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>В даному модулі задіяно код з бібліотеки TagLib</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>Тривалість</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>Частота</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Гц</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>Канали</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>Бітрейт</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>Кб/с</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>Розмір файлу</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>Кб</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_zh_CN.ts b/src/plugins/Input/opus/translations/opus_plugin_zh_CN.ts index ad97b966f..528f19e79 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_zh_CN.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_zh_CN.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation>Opus插件</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation>Ogg Opus 文件</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation>关于Opus音频</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation>Qmmp Opus音频文件插件</translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation>此插件中含有TagLib文件库中的代码</translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>长度</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>采样率</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>赫兹</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>频道</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>千比特每秒</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>文件大小</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>千字节</translation> </message> diff --git a/src/plugins/Input/opus/translations/opus_plugin_zh_TW.ts b/src/plugins/Input/opus/translations/opus_plugin_zh_TW.ts index 400980a76..45baf07c6 100644 --- a/src/plugins/Input/opus/translations/opus_plugin_zh_TW.ts +++ b/src/plugins/Input/opus/translations/opus_plugin_zh_TW.ts @@ -4,75 +4,70 @@ <context> <name>DecoderOpusFactory</name> <message> - <location filename="../decoderopusfactory.cpp" line="45"/> + <location filename="../decoderopusfactory.cpp" line="44"/> <source>Opus Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="48"/> + <location filename="../decoderopusfactory.cpp" line="47"/> <source>Ogg Opus Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="122"/> + <location filename="../decoderopusfactory.cpp" line="121"/> <source>About Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="123"/> + <location filename="../decoderopusfactory.cpp" line="122"/> <source>Qmmp Opus Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderopusfactory.cpp" line="124"/> + <location filename="../decoderopusfactory.cpp" line="123"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> - <message> - <location filename="../decoderopusfactory.cpp" line="125"/> - <source>This plugin includes code from TagLib library</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>OpusMetaDataModel</name> <message> - <location filename="../opusmetadatamodel.cpp" line="54"/> + <location filename="../opusmetadatamodel.cpp" line="55"/> <source>Length</source> <translation>長度</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Sample rate</source> <translation>取樣率</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="55"/> + <location filename="../opusmetadatamodel.cpp" line="56"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="56"/> + <location filename="../opusmetadatamodel.cpp" line="57"/> <source>Channels</source> <translation>音頻通道</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="57"/> + <location filename="../opusmetadatamodel.cpp" line="58"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>File size</source> <translation>文件大小</translation> </message> <message> - <location filename="../opusmetadatamodel.cpp" line="58"/> + <location filename="../opusmetadatamodel.cpp" line="59"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/sid/CMakeLists.txt b/src/plugins/Input/sid/CMakeLists.txt index 82ed9ac3e..3f578b021 100644 --- a/src/plugins/Input/sid/CMakeLists.txt +++ b/src/plugins/Input/sid/CMakeLists.txt @@ -2,21 +2,8 @@ project(libsid) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -42,7 +29,7 @@ SET(libsid_HDRS SET(libsid_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libsid_RCC_SRCS ${libsid_RCCS}) +QT5_ADD_RESOURCES(libsid_RCC_SRCS ${libsid_RCCS}) # user interface @@ -50,7 +37,7 @@ SET(libsid_UIS settingsdialog.ui ) -QT4_WRAP_UI(libsid_UIS_H ${libsid_UIS}) +QT5_WRAP_UI(libsid_UIS_H ${libsid_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -59,6 +46,6 @@ IF(SIDPLAYFP_FOUND) ADD_LIBRARY(sid MODULE ${libsid_SRCS} ${libsid_UIS_H} ${libsid_RCC_SRCS} ${libsid_HDRS}) add_dependencies(sid qmmp) -target_link_libraries(sid ${QT_LIBRARIES} libqmmp ${SIDPLAYFP_LDFLAGS}) +target_link_libraries(sid Qt5::Widgets -lqmmp ${SIDPLAYFP_LDFLAGS}) install(TARGETS sid DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(SIDPLAYFP_FOUND) diff --git a/src/plugins/Input/sid/decodersidfactory.cpp b/src/plugins/Input/sid/decodersidfactory.cpp index a3364f328..bf1579669 100644 --- a/src/plugins/Input/sid/decodersidfactory.cpp +++ b/src/plugins/Input/sid/decodersidfactory.cpp @@ -18,11 +18,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> +#include <QSettings> #include <QTranslator> -#include <QtPlugin> #include <QRegExp> -#include <QSettings> +#include <QMessageBox> #include <QFile> #include <sidplayfp/SidTune.h> #include <sidplayfp/SidTuneInfo.h> @@ -126,4 +125,3 @@ QTranslator *DecoderSIDFactory::createTranslator(QObject *parent) translator->load(QString(":/sid_plugin_") + locale); return translator; } -Q_EXPORT_PLUGIN2(sid,DecoderSIDFactory) diff --git a/src/plugins/Input/sid/decodersidfactory.h b/src/plugins/Input/sid/decodersidfactory.h index f44e9270e..bf8b03ebe 100644 --- a/src/plugins/Input/sid/decodersidfactory.h +++ b/src/plugins/Input/sid/decodersidfactory.h @@ -36,6 +36,7 @@ class DecoderSIDFactory : public QObject, DecoderFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/sid/translations/sid_plugin_bg.ts b/src/plugins/Input/sid/translations/sid_plugin_bg.ts index d4e92c734..866e4bfa7 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_bg.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_cs.ts b/src/plugins/Input/sid/translations/sid_plugin_cs.ts index 628fd7fb5..b76b86371 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_cs.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Modul SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Qmmp modul SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_de.ts b/src/plugins/Input/sid/translations/sid_plugin_de.ts index 760511208..1828d1d1d 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_de.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>SID-Modul</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>SID-Dateien</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Über SID-Audiomodul</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Qmmp SID-Audiomodul</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Dieses Modul spielt Commodore-64-Musikdateien unter Verwendung der Bibliothek libsidplayfp ab</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_el.ts b/src/plugins/Input/sid/translations/sid_plugin_el.ts index bf0a27e58..2bf481881 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_el.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Πρόσθετο SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Αρχεία SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Αυτό το πρόσθετο εκτελεί αρχεία μουσικής Commodore 64 χρησιμοποιώντας τη βιβλιοθήκη libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_en.ts b/src/plugins/Input/sid/translations/sid_plugin_en.ts index 523f3d164..f5fafc885 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_en.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_es.ts b/src/plugins/Input/sid/translations/sid_plugin_es.ts index 613daf049..18fec7aa8 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_es.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Módulo SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Archivos SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Acerca del Módulo de Audio SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Módulo de Audio SID de Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Este módulo reproduce archivos de música Comodore 64 usando la biblioteca libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_fi.ts b/src/plugins/Input/sid/translations/sid_plugin_fi.ts index d8c8f663c..bd628cd71 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_fi.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>SID-liitännäinen</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>SID-tiedostot</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Tietoja - SID-ääniliitännäinen</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Qmmp:n SID-ääniliitännäinen</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Tämä liitännäinen toistaa Commodore 64 -musiikkitiedostoja libsidplayfp-kirjastoa käyttäen</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_fr.ts b/src/plugins/Input/sid/translations/sid_plugin_fr.ts index bdf9bcef0..33e10b778 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_fr.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Greffon SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Fichiers SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>À propos du greffon audio SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Greffon audio SID pour Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Ce greffon permet de jouer les fichiers de musiques Commodore 64 en utilisant la bibliothèque libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_gl_ES.ts b/src/plugins/Input/sid/translations/sid_plugin_gl_ES.ts index 7a2f9771a..dfea806ea 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_gl_ES.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Plugin SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Arquivos SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Acerca do plugin SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Plugin Qmmp SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Este plugin reproduce os arquivos de música da Commodore 64 usando a biblioteca libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_he.ts b/src/plugins/Input/sid/translations/sid_plugin_he.ts index 8a4db4749..7d69b061c 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_he.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>תוסף SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>קבצי SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>אודות תוסף שמע SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>אודות תוסף שמע SID של Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>תוסף זה מנגן קבצי מוזיקה של Commodore 64 באמצעות ספריית libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_hu.ts b/src/plugins/Input/sid/translations/sid_plugin_hu.ts index b911d5843..4f84d2819 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_hu.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_id.ts b/src/plugins/Input/sid/translations/sid_plugin_id.ts index be18b8b12..acc6f0b16 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_id.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Plugin SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>File SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Tentang Plugin Audio SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Plugin Audio SID Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Plugin ini memutar file-file musik Commodore 64 menggunakan pustaka libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_it.ts b/src/plugins/Input/sid/translations/sid_plugin_it.ts index 9dba93535..487e1c1de 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_it.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_ja.ts b/src/plugins/Input/sid/translations/sid_plugin_ja.ts index 07047c44b..e440c1129 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_ja.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>SID プラグイン</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>SID ファイル</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>SID 音響プラグインについて</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>QMMP SID 音響プラグイン</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>このプラグインは libsidplayfp ライブラリーを用いて Commodore 64 形式音楽ファイルを再生します</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_kk.ts b/src/plugins/Input/sid/translations/sid_plugin_kk.ts index 3427d7547..317ac23e4 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_kk.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_lt.ts b/src/plugins/Input/sid/translations/sid_plugin_lt.ts index d214108e2..68c2d66ff 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_lt.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>SID įskiepis</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>SID bylos</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Apie SID Audio įskiepį</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Qmmp SID audio įskiepis</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Šis įskiepis groja Commodore 64 muzikos bylas, naudojant libsidplayfp biblioteką. </translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_nl.ts b/src/plugins/Input/sid/translations/sid_plugin_nl.ts index 01a452736..d2309480c 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_nl.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_pl_PL.ts b/src/plugins/Input/sid/translations/sid_plugin_pl_PL.ts index eda6f6152..03a2275ac 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_pl_PL.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Wtyczka SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Pliki SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>O wtyczce SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Wtyczka SID Audio dla Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Ta wtyczka umożliwia odtwarzanie plików muzycznych z Commodore 64 poprzez bibliotekę libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_pt.ts b/src/plugins/Input/sid/translations/sid_plugin_pt.ts index ecac4ecdd..175ad2d9f 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_pt.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Suplemento SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Ficheiros SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Sobre o suplemento SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Suplemento Qmmp SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Este suplemento reproduz os ficheiros de som Commodore 64 com a biblioteca libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_pt_BR.ts b/src/plugins/Input/sid/translations/sid_plugin_pt_BR.ts index ed3d5ec5d..241a4d0e6 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_pt_BR.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Plugin SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Arquivos SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Sobre o plugin SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Plugin Qmmp SID Audio</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Este plugin reproduz os arquivos de som Commodore 64 com a biblioteca libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_ru.ts b/src/plugins/Input/sid/translations/sid_plugin_ru.ts index 36bcf65ee..f9b933534 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_ru.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Модуль SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Файлы SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Об аудио-модуле SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Аудио-модуль SID для Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Данный модуль проигрывает музыкальные файлы Commodore 64 с помощью библиотеки libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_sk.ts b/src/plugins/Input/sid/translations/sid_plugin_sk.ts index 99e5613b4..5e7f2b850 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_sk.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_sr_BA.ts b/src/plugins/Input/sid/translations/sid_plugin_sr_BA.ts index 8929ad050..68fc96f9a 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_sr_BA.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>СИД прикључак</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>СИД фајлови</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>О СИД прикључку</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Кумп СИД прикључак</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Користи libsidplayfp библиотеку за пуштање музичких фајлова за Комодоре 64</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_sr_RS.ts b/src/plugins/Input/sid/translations/sid_plugin_sr_RS.ts index 137b94e25..6f9e056e9 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_sr_RS.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>СИД прикључак</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>СИД фајлови</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>О СИД прикључку</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Кумп СИД прикључак</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Користи libsidplayfp библиотеку за пуштање музичких фајлова за Комодоре 64</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_tr.ts b/src/plugins/Input/sid/translations/sid_plugin_tr.ts index 9992a1946..76aad9741 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_tr.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_uk_UA.ts b/src/plugins/Input/sid/translations/sid_plugin_uk_UA.ts index 620abd9ed..f4919ab06 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_uk_UA.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>Модуль SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>Файли SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>Про модуль звуку SID</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Модуль звуку SID для Qmmp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>Цей модуль відтворює музичні файли Commodore 64 з використанням бібліотеки libsidplayfp</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_zh_CN.ts b/src/plugins/Input/sid/translations/sid_plugin_zh_CN.ts index 9a0693ac5..f9c165458 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_zh_CN.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation>SID插件</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation>SID文件</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation>关于SID音频插件</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation>Qmmp播放器SID音频插件</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation>本插件使用libsidplayfp文件库播放科莫多64音乐文件</translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/sid/translations/sid_plugin_zh_TW.ts b/src/plugins/Input/sid/translations/sid_plugin_zh_TW.ts index b82abe262..7cc96f803 100644 --- a/src/plugins/Input/sid/translations/sid_plugin_zh_TW.ts +++ b/src/plugins/Input/sid/translations/sid_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSIDFactory</name> <message> - <location filename="../decodersidfactory.cpp" line="60"/> + <location filename="../decodersidfactory.cpp" line="59"/> <source>SID Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="62"/> + <location filename="../decodersidfactory.cpp" line="61"/> <source>SID Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="116"/> + <location filename="../decodersidfactory.cpp" line="115"/> <source>About SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="117"/> + <location filename="../decodersidfactory.cpp" line="116"/> <source>Qmmp SID Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="118"/> + <location filename="../decodersidfactory.cpp" line="117"/> <source>This plugin plays Commodore 64 music files using libsidplayfp library</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodersidfactory.cpp" line="119"/> + <location filename="../decodersidfactory.cpp" line="118"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/CMakeLists.txt b/src/plugins/Input/sndfile/CMakeLists.txt index 9517d8d5b..c17dd02e9 100644 --- a/src/plugins/Input/sndfile/CMakeLists.txt +++ b/src/plugins/Input/sndfile/CMakeLists.txt @@ -1,26 +1,13 @@ project(libsndfile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) # libsndfile -pkg_search_module(SNDFILE sndfile) +pkg_search_module(SNDFILE sndfile >= 1.0.21) include_directories(${SNDFILE_INCLUDE_DIRS}) link_directories(${SNDFILE_LIBRARY_DIRS}) @@ -37,7 +24,7 @@ SET(libsndfile_HDRS SET(libsndfile_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libsndfile_RCC_SRCS ${libsndfile_RCCS}) +QT5_ADD_RESOURCES(libsndfile_RCC_SRCS ${libsndfile_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -47,7 +34,7 @@ IF(SNDFILE_FOUND) ADD_LIBRARY(sndfile MODULE ${libsndfile_SRCS} ${libsndfile_UIS_H} ${libsndfile_RCC_SRCS} ${libsndfile_HDRS}) add_dependencies(sndfile qmmp) -target_link_libraries(sndfile ${QT_LIBRARIES} libqmmp ${SNDFILE_LDFLAGS}) +target_link_libraries(sndfile Qt5::Widgets -lqmmp ${SNDFILE_LDFLAGS}) install(TARGETS sndfile DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(SNDFILE_FOUND) diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.cpp b/src/plugins/Input/sndfile/decodersndfilefactory.cpp index 59adeeede..c1235d068 100644 --- a/src/plugins/Input/sndfile/decodersndfilefactory.cpp +++ b/src/plugins/Input/sndfile/decodersndfilefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2016 by Ilya Kotov * + * Copyright (C) 2007-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -17,10 +17,10 @@ * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QRegExp> + #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QRegExp> #ifdef Q_OS_WIN #include <windows.h> #define ENABLE_SNDFILE_WINDOWS_PROTOTYPES 1 @@ -165,5 +165,3 @@ QTranslator *DecoderSndFileFactory::createTranslator(QObject *parent) translator->load(QString(":/sndfile_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(sndfile, DecoderSndFileFactory) diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.h b/src/plugins/Input/sndfile/decodersndfilefactory.h index 07e4ae28c..95931e428 100644 --- a/src/plugins/Input/sndfile/decodersndfilefactory.h +++ b/src/plugins/Input/sndfile/decodersndfilefactory.h @@ -34,6 +34,7 @@ class DecoderSndFileFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/vorbis/CMakeLists.txt b/src/plugins/Input/vorbis/CMakeLists.txt index 6aea0e3c1..f1088961d 100644 --- a/src/plugins/Input/vorbis/CMakeLists.txt +++ b/src/plugins/Input/vorbis/CMakeLists.txt @@ -1,20 +1,7 @@ project(libvorbis) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -40,11 +27,11 @@ SET(libvorbis_HDRS SET(libvorbis_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libvorbis_RCC_SRCS ${libvorbis_RCCS}) +QT5_ADD_RESOURCES(libvorbis_RCC_SRCS ${libvorbis_RCCS}) # user interface -QT4_WRAP_UI(libvorbis_UIS_H ${libvorbis_UIS}) +QT5_WRAP_UI(libvorbis_UIS_H ${libvorbis_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -52,6 +39,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(VORBIS_FOUND) ADD_LIBRARY(vorbis MODULE ${libvorbis_SRCS} ${libvorbis_RCC_SRCS} ${libvorbis_HDRS}) add_dependencies(vorbis qmmp) -target_link_libraries(vorbis ${QT_LIBRARIES} libqmmp ${VORBIS_LDFLAGS} ${TAGLIB_LDFLAGS}) +target_link_libraries(vorbis Qt5::Widgets -lqmmp ${VORBIS_LDFLAGS} ${TAGLIB_LDFLAGS}) install(TARGETS vorbis DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(VORBIS_FOUND) diff --git a/src/plugins/Input/vorbis/decodervorbisfactory.cpp b/src/plugins/Input/vorbis/decodervorbisfactory.cpp index f921c451e..717be4795 100644 --- a/src/plugins/Input/vorbis/decodervorbisfactory.cpp +++ b/src/plugins/Input/vorbis/decodervorbisfactory.cpp @@ -20,13 +20,10 @@ #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include <taglib/tag.h> #include <taglib/fileref.h> #include <taglib/vorbisfile.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> -#endif #include "replaygainreader.h" #include "decoder_vorbis.h" #include "vorbismetadatamodel.h" @@ -77,12 +74,8 @@ QList<FileInfo *> DecoderVorbisFactory::createPlayList(const QString &fileName, { FileInfo *info = new FileInfo(fileName); -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(fileName), true); TagLib::Ogg::Vorbis::File fileRef(&stream); -#else - TagLib::Ogg::Vorbis::File fileRef(QStringToFileName(fileName)); -#endif TagLib::Ogg::XiphComment *tag = useMetaData ? fileRef.tag() : 0; if (tag && !tag->isEmpty()) @@ -142,5 +135,3 @@ QTranslator *DecoderVorbisFactory::createTranslator(QObject *parent) translator->load(QString(":/vorbis_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(vorbis,DecoderVorbisFactory) diff --git a/src/plugins/Input/vorbis/decodervorbisfactory.h b/src/plugins/Input/vorbis/decodervorbisfactory.h index f574e9a9d..e79b0642d 100644 --- a/src/plugins/Input/vorbis/decodervorbisfactory.h +++ b/src/plugins/Input/vorbis/decodervorbisfactory.h @@ -38,6 +38,7 @@ class DecoderVorbisFactory : public QObject, DecoderFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/vorbis/replaygainreader.cpp b/src/plugins/Input/vorbis/replaygainreader.cpp index e0c509344..276848d80 100644 --- a/src/plugins/Input/vorbis/replaygainreader.cpp +++ b/src/plugins/Input/vorbis/replaygainreader.cpp @@ -22,20 +22,14 @@ #include <taglib/tag.h> #include <taglib/fileref.h> #include <taglib/vorbisfile.h> -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) #include <taglib/tfilestream.h> #include <taglib/id3v2framefactory.h> -#endif #include "replaygainreader.h" ReplayGainReader::ReplayGainReader(const QString &path) { -#if (TAGLIB_MAJOR_VERSION > 1) || ((TAGLIB_MAJOR_VERSION == 1) && (TAGLIB_MINOR_VERSION >= 8)) TagLib::FileStream stream(QStringToFileName(path), true); TagLib::Ogg::Vorbis::File fileRef(&stream); -#else - TagLib::Ogg::Vorbis::File fileRef(QStringToFileName(path)); -#endif if(fileRef.tag()) readVorbisComment(fileRef.tag()); diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_bg.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_bg.ts index fe2ebbcc5..a5ddb5aa8 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_bg.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation type="unfinished"></translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_cs.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_cs.ts index 88418154a..50772f92b 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_cs.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Modul Ogg-Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Soubory Ogg-Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>O modulu Ogg-Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Vstupní modul Qmmp Ogg-Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Zdrojový kód je založen na projektu mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Délka</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Vzorkovací frekvence</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Počet kanálů</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Datový tok</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Velikost souboru</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KiB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_de.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_de.ts index 0f8e28385..e0d266ec4 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_de.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg-Vorbis-Modul</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg-Vorbis-Dateien</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Über Ogg-Vorbis-Audiomodul</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp Ogg-Vorbis-Audiomodul</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Quellcode basiert auf dem mq3-Projekt</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Länge</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Abtastrate</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Kanäle</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>KBit/s</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Dateigröße</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_el.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_el.ts index 1f91eafb1..ba1b11868 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_el.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Πρόσθετο Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Αρχεία Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Ο πηγαίος κώδικας έχει βασιστεί στο έργο mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Διάρκεια</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Ρυθμός δειγματοληψίας</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Κανάλια</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Ρυθμός bit</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Μέγεθος αρχείου</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_en.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_en.ts index 6d3e939ea..98ee44e9b 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_en.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation type="unfinished"></translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_es.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_es.ts index 9745ec12f..a97e450cd 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_es.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Módulo Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Archivos Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Acerca del módulo de sonido Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Módulo de sonido Ogg Vorbis para Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Código basado en el proyecto mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Duración</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Frecuencia</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Canales</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Tasa de bits</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Tamaño del archivo</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_fi.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_fi.ts index 76daaa0b2..1ccf8adb3 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_fi.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis -liitännäinen</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis -tiedostot</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Tietoja - Ogg Vorbis -ääniliitännäinen</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp:n Ogg Vorbis -ääniliitännäinen</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Lähdekoodi perustuu mq3-projektiin</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Kesto</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Näytteenottotaajuus</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Kanavat</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Bittinopeus</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Tiedostokoko</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>kt</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_fr.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_fr.ts index d7838b409..af3d129c2 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_fr.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Greffon Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Fichiers Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>À propos du greffon audio Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Greffon audio Ogg Vorbis pour Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Code source basé sur le projet mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Longueur</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Taux d'échantillonage</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Canaux</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Débit binaire</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Taille du fichier</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>Ko</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_gl_ES.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_gl_ES.ts index af0c50bf4..5cb5f73da 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_gl_ES.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Engadido Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ficheiros Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Sobre o engadido Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Engadido Ogg Vorbis de Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Código fonte baseado no proxecto mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Lonxitude</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Taxa de mostra</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Taxa de bits</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Tamaño do ficheiro</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_he.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_he.ts index 2df620204..a7d99b8ec 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_he.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>תוסף Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>קבצי Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>אודות תוסף שמע Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>תוסף שמע Ogg Vorbis של Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>קוד מקוד מבוסס על פרויקט mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>אריכות</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>שיעור דגימה</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>הרץ</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>ערוצים</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>שיעור סיביות</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>גודל קובץ</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>ק״ב</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_hu.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_hu.ts index 51453db19..0b0820046 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_hu.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation type="unfinished"></translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_id.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_id.ts index e8e8c4e4d..334f1522f 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_id.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Plugin Vorbis Ogg</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>File Vorbis Ogg</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Tentang Plugin Audio Vorbis Ogg</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Plugin Audio Vorbis Ogg Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Kode sumber berdasarkan pada proyek mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Panjang</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Sample rate</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Saluran</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Bitrate</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Ukuran file</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_it.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_it.ts index 89e003116..f5d788238 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_it.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Modulo Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Brani Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Info sul modulo audio Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Modulo audio Ogg Vorbis per Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Codice sorgente basato sul Progetto mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Durata</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Campionamento</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Canali</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>bit al secondo</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Dimensione file</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_ja.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_ja.ts index e034561e1..c95fdb6cf 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_ja.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis プラグイン</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis ファイル</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Ogg Vorbis 音響プラグインについて</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>QMMP Ogg Vorbis 音響プラグイン</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>ソースコードは mq3 プロジェクトから流用</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>長さ</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>サンプルレート</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>チャンネル</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>ビットレート</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>キロビット毎秒</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>ファイルの大きさ</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KiB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_kk.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_kk.ts index 5ef43cc9d..1a26a2b63 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_kk.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation type="unfinished"></translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_lt.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_lt.ts index a0ec697d4..1df433db1 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_lt.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis įskiepis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis bylos</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Apie Ogg Vorbis audio įskiepį</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp Ogg Vorbis audio įskiepis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Išvesties kodas sukurtas mq3 pagrindu</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Trukmė</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Dažnis</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Kanalai</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Kokybė</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Bylos dydis</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_nl.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_nl.ts index 065c68831..62f839032 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_nl.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis Module</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis Bestanden</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Over de Ogg Vorbis Audio Module</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Ogg Vorbis Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Broncode gebasseerd op het 'mq3 project'</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Duur</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Sample frequentie</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Kanalen</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Bitsnelheid</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Bestandsnaam</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation></translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_pl_PL.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_pl_PL.ts index 9ded30dc2..469501ea7 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_pl_PL.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Wtyczka Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Pliki Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>O wtyczce Ogg Vorbis Audio</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Wtyczka Ogg Vorbis dla Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Kod źródłowy oparty jest na projekcie mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Długość</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Próbkowanie</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Kanały</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Szybkość transmisji</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Wielkość pliku</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_pt.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_pt.ts index c1d1e5b49..572bdeea1 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_pt.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Suplemento Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ficheiros Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Sobre o suplemento Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Suplemento Qmmp Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Baseado no código fonte do projeto mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Duração</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Frequência</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Tamanho do ficheiro</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_pt_BR.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_pt_BR.ts index 2d79d969d..e235cef46 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_pt_BR.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Plugin Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Arquivos Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Sobre o plugin Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Plugin Qmmp Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Baseado no código fonte do projeto mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Duração</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Frequência</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Canais</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Taxa de dados</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Tamanho do arquivo</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_ru.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_ru.ts index 81ceb118a..fc6589422 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_ru.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Модуль Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Файлы Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Об аудио-модуле Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Аудио-модуль Ogg Vorbis для Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Исходный код основан на проекте mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Длительность</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Дискретизация</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Гц</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Каналов</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Битовая частота</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>кбит/с</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Размер файла</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>КБ</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_sk.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_sk.ts index ca458e783..e1191a1f1 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_sk.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation type="unfinished"></translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_BA.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_BA.ts index 2ca985cef..db163d841 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_BA.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Огг Ворбис прикључак</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Огг Ворбис фајлови</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>О Огг Ворбис прикључку</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Кумп Огг Ворбис прикључак</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Заснован на mq3 пројекту</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Дужина</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Узорковање</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Канала</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Битски проток</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kb/s</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Величина</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_RS.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_RS.ts index 295c55447..6477c8179 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_RS.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Огг Ворбис прикључак</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Огг Ворбис фајлови</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>О Огг Ворбис прикључку</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Кумп Огг Ворбис прикључак</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Заснован на mq3 пројекту</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Дужина</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Узорковање</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Канала</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Битски проток</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kb/s</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Величина</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_tr.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_tr.ts index 96a015aff..78353b439 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_tr.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis Eklentisi</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis Dosyaları</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Ogg Vorbis Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp Ogg Vorbis Ses Eklentisi</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Kaynak kodu mq3 projesi temellidir</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation type="unfinished">Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation type="unfinished">kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation type="unfinished">KB</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_uk_UA.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_uk_UA.ts index 58ae297e3..f14b31081 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_uk_UA.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Модуль Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Файли Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>Про аудіо-модуль Ogg Vorbis</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Аудіо-модуль Ogg Vorbis для Qmmp</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>Вихідний код базується на проекті mq3</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>Тривалість</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>Частота</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Гц</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>Канали</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>Бітрейт</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>Кб/с</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>Розмір файлу</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>Кб</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_CN.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_CN.ts index 343d7027b..c22dc674c 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_CN.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis 插件</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis 文件</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>关于 Ogg Vorbis 音频插件</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp Ogg Vorbis 音频插件</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>源代码基于 mq3 项目</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>长度</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>取样率</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>赫兹</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>声音通道</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>千比特每秒</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>文件大小</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>千字节</translation> </message> diff --git a/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_TW.ts b/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_TW.ts index 1872f4ba5..bdd72656e 100644 --- a/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_TW.ts +++ b/src/plugins/Input/vorbis/translations/vorbis_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderVorbisFactory</name> <message> - <location filename="../decodervorbisfactory.cpp" line="49"/> + <location filename="../decodervorbisfactory.cpp" line="46"/> <source>Ogg Vorbis Plugin</source> <translation>Ogg Vorbis 外掛</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="52"/> + <location filename="../decodervorbisfactory.cpp" line="49"/> <source>Ogg Vorbis Files</source> <translation>Ogg Vorbis 檔案</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="131"/> + <location filename="../decodervorbisfactory.cpp" line="124"/> <source>About Ogg Vorbis Audio Plugin</source> <translation>關於 Ogg Vorbis 聲訊插件</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="132"/> + <location filename="../decodervorbisfactory.cpp" line="125"/> <source>Qmmp Ogg Vorbis Audio Plugin</source> <translation>Qmmp Ogg Vorbis 聲訊插件</translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="133"/> + <location filename="../decodervorbisfactory.cpp" line="126"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decodervorbisfactory.cpp" line="134"/> + <location filename="../decodervorbisfactory.cpp" line="127"/> <source>Source code based on mq3 project</source> <translation>源碼基於 mq3 項目</translation> </message> @@ -37,42 +37,42 @@ <context> <name>VorbisMetaDataModel</name> <message> - <location filename="../vorbismetadatamodel.cpp" line="58"/> + <location filename="../vorbismetadatamodel.cpp" line="56"/> <source>Length</source> <translation>長度</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Sample rate</source> <translation>取樣率</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="59"/> + <location filename="../vorbismetadatamodel.cpp" line="57"/> <source>Hz</source> <translation>Hz</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="60"/> + <location filename="../vorbismetadatamodel.cpp" line="58"/> <source>Channels</source> <translation>聲音通道</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>Bitrate</source> <translation>比特率</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="61"/> + <location filename="../vorbismetadatamodel.cpp" line="59"/> <source>kbps</source> <translation>kbps</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>File size</source> <translation>文件大小</translation> </message> <message> - <location filename="../vorbismetadatamodel.cpp" line="62"/> + <location filename="../vorbismetadatamodel.cpp" line="60"/> <source>KB</source> <translation>KB</translation> </message> diff --git a/src/plugins/Input/vorbis/vorbismetadatamodel.cpp b/src/plugins/Input/vorbis/vorbismetadatamodel.cpp index 8f95c8976..b00ad9bd7 100644 --- a/src/plugins/Input/vorbis/vorbismetadatamodel.cpp +++ b/src/plugins/Input/vorbis/vorbismetadatamodel.cpp @@ -18,6 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <QtGlobal> #include <taglib/tag.h> #include <taglib/fileref.h> #include <taglib/vorbisfile.h> @@ -25,9 +26,6 @@ #include <taglib/tmap.h> #include "vorbismetadatamodel.h" -#define QStringToTString_qt4(s) TagLib::String(s.toUtf8().constData(), TagLib::String::UTF8) -#define TStringToQString_qt4(s) QString::fromUtf8(s.toCString(true)).trimmed() - VorbisMetaDataModel::VorbisMetaDataModel(const QString &path, QObject *parent) : MetaDataModel(parent) { m_path = path; @@ -79,7 +77,7 @@ QPixmap VorbisMetaDataModel::cover() for(uint i = 0; i < list.size(); ++i) { TagLib::String value = list[i]; - QByteArray block = QByteArray::fromBase64(TStringToQString_qt4(value).toLatin1()); + QByteArray block = QByteArray::fromBase64(TStringToQString(value).toLatin1()); if(block.size() < 32) continue; qint64 pos = 0; @@ -136,25 +134,25 @@ const QString VorbisCommentModel::value(Qmmp::MetaData key) switch((int) key) { case Qmmp::TITLE: - return TStringToQString_qt4(tag->title()); + return TStringToQString(tag->title()); case Qmmp::ARTIST: - return TStringToQString_qt4(tag->artist()); + return TStringToQString(tag->artist()); case Qmmp::ALBUMARTIST: if(tag->fieldListMap()["ALBUMARTIST"].isEmpty()) return QString(); else - return TStringToQString_qt4(tag->fieldListMap()["ALBUMARTIST"].front()); + return TStringToQString(tag->fieldListMap()["ALBUMARTIST"].front()); case Qmmp::ALBUM: - return TStringToQString_qt4(tag->album()); + return TStringToQString(tag->album()); case Qmmp::COMMENT: - return TStringToQString_qt4(tag->comment()); + return TStringToQString(tag->comment()); case Qmmp::GENRE: - return TStringToQString_qt4(tag->genre()); + return TStringToQString(tag->genre()); case Qmmp::COMPOSER: if(tag->fieldListMap()["COMPOSER"].isEmpty()) return QString(); else - return TStringToQString_qt4(tag->fieldListMap()["COMPOSER"].front()); + return TStringToQString(tag->fieldListMap()["COMPOSER"].front()); case Qmmp::YEAR: return QString::number(tag->year()); case Qmmp::TRACK: @@ -163,7 +161,7 @@ const QString VorbisCommentModel::value(Qmmp::MetaData key) if(tag->fieldListMap()["DISCNUMBER"].isEmpty()) return QString(); else - return TStringToQString_qt4(tag->fieldListMap()["DISCNUMBER"].front()); + return TStringToQString(tag->fieldListMap()["DISCNUMBER"].front()); } return QString(); } @@ -175,7 +173,7 @@ void VorbisCommentModel::setValue(Qmmp::MetaData key, const QString &value) TagLib::Ogg::XiphComment *tag = m_model->m_tag; - TagLib::String str = QStringToTString_qt4(value); + TagLib::String str = QStringToTString(value); switch((int) key) { diff --git a/src/plugins/Input/vorbis/vorbismetadatamodel.h b/src/plugins/Input/vorbis/vorbismetadatamodel.h index 15f476908..a21d3d503 100644 --- a/src/plugins/Input/vorbis/vorbismetadatamodel.h +++ b/src/plugins/Input/vorbis/vorbismetadatamodel.h @@ -21,9 +21,9 @@ #ifndef VORBISMETADATAMODEL_H #define VORBISMETADATAMODEL_H +#include <qmmp/metadatamodel.h> #include <taglib/vorbisfile.h> #include <taglib/xiphcomment.h> -#include <qmmp/metadatamodel.h> class VorbisCommentModel; diff --git a/src/plugins/Input/wavpack/CMakeLists.txt b/src/plugins/Input/wavpack/CMakeLists.txt index ccc75313e..25c09832b 100644 --- a/src/plugins/Input/wavpack/CMakeLists.txt +++ b/src/plugins/Input/wavpack/CMakeLists.txt @@ -1,20 +1,7 @@ project(libwavpack) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -42,14 +29,14 @@ SET(libwavpack_HDRS SET(libwavpack_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libwavpack_RCC_SRCS ${libwavpack_RCCS}) +QT5_ADD_RESOURCES(libwavpack_RCC_SRCS ${libwavpack_RCCS}) include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(WAVPACK_FOUND) ADD_LIBRARY(wavpack MODULE ${libwavpack_SRCS} ${libwavpack_RCC_SRCS} ${libwavpack_HDRS}) add_dependencies(wavpack qmmp) -target_link_libraries(wavpack ${QT_LIBRARIES} libqmmp ${WAVPACK_LDFLAGS}) +target_link_libraries(wavpack Qt5::Widgets -lqmmp ${WAVPACK_LDFLAGS}) install(TARGETS wavpack DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(WAVPACK_FOUND) diff --git a/src/plugins/Input/wavpack/decoderwavpackfactory.cpp b/src/plugins/Input/wavpack/decoderwavpackfactory.cpp index b0b475095..4f730232f 100644 --- a/src/plugins/Input/wavpack/decoderwavpackfactory.cpp +++ b/src/plugins/Input/wavpack/decoderwavpackfactory.cpp @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include "wavpackmetadatamodel.h" #include "decoder_wavpack.h" #include "decoderwavpackfactory.h" @@ -165,5 +164,3 @@ QTranslator *DecoderWavPackFactory::createTranslator(QObject *parent) translator->load(QString(":/wavpack_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(wavpack,DecoderWavPackFactory) diff --git a/src/plugins/Input/wavpack/decoderwavpackfactory.h b/src/plugins/Input/wavpack/decoderwavpackfactory.h index 3b3fc546e..96974ee18 100644 --- a/src/plugins/Input/wavpack/decoderwavpackfactory.h +++ b/src/plugins/Input/wavpack/decoderwavpackfactory.h @@ -35,6 +35,7 @@ class DecoderWavPackFactory : public QObject, DecoderFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_bg.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_bg.ts index d89596935..e673d8476 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_bg.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_cs.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_cs.ts index b6ca55218..aa5a4b4e6 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_cs.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Modul WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Soubory WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>O modulu WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Vstupní modul Qmmp WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Verze knihovny WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_de.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_de.ts index 03531f117..2597b31df 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_de.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack-Modul</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack-Dateien</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Über WavPack-Audiomodul</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp WavPack-Audiomodul</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack-Bibliotheksversion:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_el.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_el.ts index e95f08bec..4a0e77d2b 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_el.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Πρόσθετο WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Αρχεία WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Έκδοση βιβλιοθήκης WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_en.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_en.ts index 5abd2d635..abbcda75d 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_en.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_es.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_es.ts index 15c35c807..0f11f9712 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_es.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Módulo WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Archivos WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Acerca del módulo de sonido WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Módulo de sonido WavPack para Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Versión de la librería WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_fi.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_fi.ts index ce9f39c28..adb165f36 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_fi.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack-liitännäinen</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack-tiedostot</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Tietoja - WavPack-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp:n WavPack-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack-kirjaston versio:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_fr.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_fr.ts index 7ab11125a..63710feb1 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_fr.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Greffon WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Fichiers WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>À propos du greffon audio WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Greffon audio WavPack pour Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Version de la bibliothèque WavPack :</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_gl_ES.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_gl_ES.ts index 7c5e2eca3..4c879e286 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_gl_ES.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Engadido WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Ficheiros WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Sobre o engadido WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Engadido WavPack do Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Versión da libraría WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_he.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_he.ts index 3687adad0..5e3e74cc6 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_he.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>תוסף WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>קבצי WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>אודות תוסף שמע WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>תוסף שמע WavPack של Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>גירסת ספריית WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_hu.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_hu.ts index 974843591..35de9b888 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_hu.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_id.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_id.ts index b10ff1859..e70882b0e 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_id.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Plugin WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>File WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Tentang Plugin Audio WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Plugin Audio WavPack Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Versi pustaka WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_it.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_it.ts index fcb8e76fb..85be67e0a 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_it.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Modulo WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Info sul modulo audio WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Modulo audio WavPack per Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Versione libreria per WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Brani WavPack</translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_ja.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_ja.ts index c3472a6c2..710201c27 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_ja.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack プラグイン</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack ファイル</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>WavPack 音響プラグインについて</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>QMMP WavPack 音響プラグイン</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack ライブラリのバージョン:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_kk.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_kk.ts index 15dcce3d6..3a092a473 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_kk.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_lt.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_lt.ts index 546306a1c..d519df26b 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_lt.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack įskiepis</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack bylos</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Apie WavPack audio įskiepį</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp WavPack audio įskiepis</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack bibliotekos versija:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukurta: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_nl.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_nl.ts index 70c3b23dc..0f177c69b 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_nl.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack Module</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Over de WavPack Audio Module</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>WavPack Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack bibliotheek versie:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack Bestanden</translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_pl_PL.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_pl_PL.ts index 5c01f6f51..2c5840375 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_pl_PL.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Wtyczka WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Pliki WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>O wtyczce WavPack Audio</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Wtyczka WavPack dla Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Wersja biblioteki WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_pt.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_pt.ts index 7d6301e2c..3d36b0d4a 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_pt.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Suplemento WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Ficheiros WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Sobre o suplemento WavPack Audio</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Suplemento Qmmp WavPack Audio</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Versão da biblioteca WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_pt_BR.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_pt_BR.ts index c880a8f0e..326cf5960 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_pt_BR.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Plugin WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Arquivos WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Sobre o plugin WavPack Audio</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Plugin Qmmp WavPack Audio</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Versão da biblioteca WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_ru.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_ru.ts index 28ea866eb..f48812322 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_ru.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Модуль WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Файлы WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Об аудио-модуле WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Аудио-модуль WavPack для Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Версия библиотеки WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_sk.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_sk.ts index 024a31892..39b412e47 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_sk.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_BA.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_BA.ts index b3d374050..460dc7d82 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_BA.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Вавпак прикључак</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Вавпак фајлови</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>О Вавпак прикључку</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Кумп Вавпак прикључак</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Издање Вавпак библиотеке:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_RS.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_RS.ts index 1cebfba4f..9a2c873ce 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_RS.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Вавпак прикључак</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Вавпак фајлови</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>О Вавпак прикључку</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Кумп Вавпак прикључак</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Издање Вавпак библиотеке:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_tr.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_tr.ts index ab8c9921e..866626fcf 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_tr.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack Eklentisi</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack Dosyaları</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>WavPack Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp WavPack Ses Eklentisi</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack kitaplık sürümü:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_uk_UA.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_uk_UA.ts index 0552a4a52..c4786aa78 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_uk_UA.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>Модуль WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>Файли WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>Про аудіо-модуль WavPack</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Аудіо-модуль WavPack для Qmmp</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>Версія бібліотеки WavPack:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_CN.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_CN.ts index 69c686ad3..ff3514844 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_CN.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack 插件</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack 文件</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>关于 WavPack 音频插件</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp WavPack 音频插件</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack 库版本:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_TW.ts b/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_TW.ts index eaed45f2a..ce2882afe 100644 --- a/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_TW.ts +++ b/src/plugins/Input/wavpack/translations/wavpack_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWavPackFactory</name> <message> - <location filename="../decoderwavpackfactory.cpp" line="39"/> + <location filename="../decoderwavpackfactory.cpp" line="38"/> <source>WavPack Plugin</source> <translation>WavPack 外掛</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="41"/> + <location filename="../decoderwavpackfactory.cpp" line="40"/> <source>WavPack Files</source> <translation>WavPack 檔案</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="154"/> + <location filename="../decoderwavpackfactory.cpp" line="153"/> <source>About WavPack Audio Plugin</source> <translation>關於 WavPack 聲訊插件</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="155"/> + <location filename="../decoderwavpackfactory.cpp" line="154"/> <source>Qmmp WavPack Audio Plugin</source> <translation>Qmmp WavPack 聲訊插件</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="156"/> + <location filename="../decoderwavpackfactory.cpp" line="155"/> <source>WavPack library version:</source> <translation>WavPack 程式庫版本:</translation> </message> <message> - <location filename="../decoderwavpackfactory.cpp" line="158"/> + <location filename="../decoderwavpackfactory.cpp" line="157"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/CMakeLists.txt b/src/plugins/Input/wildmidi/CMakeLists.txt index 7979334a7..1e4d010ee 100644 --- a/src/plugins/Input/wildmidi/CMakeLists.txt +++ b/src/plugins/Input/wildmidi/CMakeLists.txt @@ -2,21 +2,8 @@ project(libwildmidi) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -46,16 +33,14 @@ ENDIF(WILDMIDI_HEADER_FOUND AND (NOT WILDMIDI_LIB MATCHES "^.*-NOTFOUND")) SET(libwildmidi_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libwildmidi_RCC_SRCS ${libwildmidi_RCCS}) +QT5_ADD_RESOURCES(libwildmidi_RCC_SRCS ${libwildmidi_RCCS}) # user interface - - SET(libwildmidi_UIS settingsdialog.ui ) -QT4_WRAP_UI(libwildmidi_UIS_H ${libwildmidi_UIS}) +QT5_WRAP_UI(libwildmidi_UIS_H ${libwildmidi_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -64,6 +49,6 @@ IF(WILDMIDI_FOUND) ADD_LIBRARY(wildmidi MODULE ${libwildmidi_SRCS} ${libwildmidi_UIS_H} ${libwildmidi_RCC_SRCS} ${libwildmidi_HDRS}) add_dependencies(wildmidi qmmp) -target_link_libraries(wildmidi ${QT_LIBRARIES} libqmmp ${WILDMIDI_LIB}) +target_link_libraries(wildmidi Qt5::Widgets -lqmmp ${WILDMIDI_LIB}) install(TARGETS wildmidi DESTINATION ${LIB_DIR}/qmmp/Input) ENDIF(WILDMIDI_FOUND) diff --git a/src/plugins/Input/wildmidi/decoderwildmidifactory.cpp b/src/plugins/Input/wildmidi/decoderwildmidifactory.cpp index 42b2c0646..8be56bee6 100644 --- a/src/plugins/Input/wildmidi/decoderwildmidifactory.cpp +++ b/src/plugins/Input/wildmidi/decoderwildmidifactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include "wildmidihelper.h" #include "decoder_wildmidi.h" #include "settingsdialog.h" @@ -120,4 +119,3 @@ QTranslator *DecoderWildMidiFactory::createTranslator(QObject *parent) translator->load(QString(":/wildmidi_plugin_") + locale); return translator; } -Q_EXPORT_PLUGIN2(wildmidi,DecoderWildMidiFactory) diff --git a/src/plugins/Input/wildmidi/decoderwildmidifactory.h b/src/plugins/Input/wildmidi/decoderwildmidifactory.h index eebae7e16..3ddc0c401 100644 --- a/src/plugins/Input/wildmidi/decoderwildmidifactory.h +++ b/src/plugins/Input/wildmidi/decoderwildmidifactory.h @@ -32,6 +32,7 @@ class DecoderWildMidiFactory : public QObject, DecoderFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_bg.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_bg.ts index 6cdd9604e..1a1b26860 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_bg.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_bg.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_cs.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_cs.ts index c4cec5a58..b1b638982 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_cs.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Modul WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Soubory Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>O modulu WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Modul Qmmp WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Tento modul využívá knihovnu WildMidi pro přehrávání Midi souborů</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_de.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_de.ts index 06c4fdb68..e9b86621c 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_de.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi-Modul</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Midi-Dateien</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Über WildMidi-Audiomodul</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Qmmp WildMidi-Audiomodul</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Dieses Modul nutzt die WildMidi-Bibliothek, um Midi-Dateien abzuspielen</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_el.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_el.ts index b29588d25..3456272c5 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_el.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_el.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Πρόσθετο WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Αρχεία Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Σχετικά με το πρόσθετο ήχου WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Qmmp πρόσθετο ήχου WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Αυτό το πρόσθετο χρησιμοποιεί τη βιβλιοθήκη WildMidi για την αναπαραγωγή αρχείων midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_en.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_en.ts index e734d918b..34e469754 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_en.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_en.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_es.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_es.ts index 86d610908..4dc0771e6 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_es.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Módulo WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Archivos Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Acerca del módulo Audio de WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Módulo Audio de WildMidi de Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Este módulo usa la biblioteca WildMidi para reproducir archivos midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fi.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fi.ts index 6389670bd..bede9365e 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fi.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fi.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi-liitännäinen</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Midi-tiedostot</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Tietoja - WildMidi-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Qmmp:n WildMidi-ääniliitännäinen</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Tämä liitännäinen käyttää WildMidi-kirjastoa midi-tiedostojen toistamiseksi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fr.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fr.ts index 46ab6646b..7ceaf4678 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fr.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_fr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Greffon WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Fichiers Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>À propos du greffon audio WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Greffon audio WildMidi pour Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Ce greffon utilise WildMidi pour jouer les fichiers Midi.</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_gl_ES.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_gl_ES.ts index 371898e83..22e5a4752 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_gl_ES.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_gl_ES.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Engadido WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Ficheiros Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Sobre o engadido WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Engadido WildMidi do Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Este engadido usa a libraría WildMidi para reproducir ficheiros midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_he.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_he.ts index 776ccbbfd..95eae1840 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_he.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_he.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>תוסף WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>קבצי Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>אודות תוסף שמע WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>תוסף שמע WildMidi של Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>תוסף זה משתמש בספריית WildMidi לצורך ניגון קבצי midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_hu.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_hu.ts index f37b403c6..e9a20d9cd 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_hu.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_hu.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_id.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_id.ts index 251681f5b..35265d94a 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_id.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_id.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Plugin WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>File Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Tentang Plugin Audio WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Plugin Audio WildMidi Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Plugin ini menggunakan pustaka WildMidi untuk memainkan file midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_it.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_it.ts index 534a0d1c1..9bd121224 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_it.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ja.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ja.ts index 82f42023c..eadcfff02 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ja.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi プラグイン</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>MIDI ファイル</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>WildMidi 音響プラグインについて</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>QMMP WildMidi 音響プラグイン</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>このプラグインは MIDI ファイルの再生に WildMidi ライブラリを利用します</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_kk.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_kk.ts index e070a1807..ab2439847 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_kk.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_kk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_lt.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_lt.ts index c78e9592b..99d9344f9 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_lt.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi įskiepis</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Midi bylos</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Apie WildMidi Audio įskiepį</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Qmmp WildMidi Audio įskiepis</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Šis įskiepis naudoja WildMidi biblioteką midi bylų grojimui</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_nl.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_nl.ts index 87ad2d101..09d4dbd36 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_nl.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi Module</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Midi Bestanden</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Over de WildMidi Audio Module</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>WildMidi Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Deze plugin faciliteert in het afspelen van midi bestanden, gebruikmakend van de WildMidi bibliotheek</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pl_PL.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pl_PL.ts index 8f5a76eec..30ed81dbc 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pl_PL.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pl_PL.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Wtyczka WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Pliki Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>O wtyczce WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Wtyczka WildMidi dla Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Ta wtyczka używa biblioteki WildMidi do odtwarzania plików midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt.ts index e4eb63be9..75acfe147 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Suplemento WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Ficheiros Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Sobre o suplemento WildMidi Audio</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Suplemento Qmmp WildMidi Audio</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Este suplemento utiliza a biblioteca WildMidi para a reprodução</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt_BR.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt_BR.ts index c141858a1..a28707eab 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt_BR.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_pt_BR.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Plugin WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Arquivos Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Sobre o plugin WildMidi Audio</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Plugin Qmmp WildMidi Audio</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Este plugin utiliza a biblioteca WildMidi para a reprodução</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ru.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ru.ts index 356bc027c..c7e66d276 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ru.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Модуль WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Файлы midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Об аудио-модуле WildMdi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Модуль WildMidi для Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Для воспроизведения midi-файлов используется библиотека WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sk.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sk.ts index a79bb5d20..c563185b9 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sk.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sk.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_BA.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_BA.ts index 9c84a8a70..a16fdd626 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_BA.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_BA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>ВајлдМиди прикључак</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Миди фајлови</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>О ВајлдМиди прикључку</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Кумп ВајлдМиди прикључак</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Користи WildMidi библиотеку за пуштање миди фајлова</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_RS.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_RS.ts index e474eaca1..896bee771 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_RS.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_sr_RS.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>ВајлдМиди прикључак</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Миди фајлови</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>О ВајлдМиди прикључку</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Кумп ВајлдМиди прикључак</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Користи WildMidi библиотеку за пуштање миди фајлова</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_tr.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_tr.ts index 3f9a83320..4b5f47daa 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_tr.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_uk_UA.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_uk_UA.ts index 42ce78b7f..93c7a2b16 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_uk_UA.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>Модуль WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Файли Midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>Про аудіо модуль WildMidi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Аудіо-модуль WildMidi для Qmmp</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>Цей модуль використовує бібліотеку WildMidi для програвання файлів midi</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_CN.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_CN.ts index 7f921a311..b012b30d0 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_CN.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi 插件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Midi 文件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>关于 WildMidi 音频插件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Qmmp WildMidi 音频插件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>此插件使用 WildMidi 库来播放 midi 文件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_TW.ts b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_TW.ts index b88fff374..efac902be 100644 --- a/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_TW.ts +++ b/src/plugins/Input/wildmidi/translations/wildmidi_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderWildMidiFactory</name> <message> - <location filename="../decoderwildmidifactory.cpp" line="51"/> + <location filename="../decoderwildmidifactory.cpp" line="50"/> <source>WildMidi Plugin</source> <translation>WildMidi 外掛</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="56"/> + <location filename="../decoderwildmidifactory.cpp" line="55"/> <source>Midi Files</source> <translation>Midi 文件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="110"/> + <location filename="../decoderwildmidifactory.cpp" line="109"/> <source>About WildMidi Audio Plugin</source> <translation>關於 WildMidi 外掛</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="111"/> + <location filename="../decoderwildmidifactory.cpp" line="110"/> <source>Qmmp WildMidi Audio Plugin</source> <translation>Qmmp WildMidi 外掛</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="112"/> + <location filename="../decoderwildmidifactory.cpp" line="111"/> <source>This plugin uses WildMidi library to play midi files</source> <translation>此插件使用 WildMidi 庫來播放 Midi 文件</translation> </message> <message> - <location filename="../decoderwildmidifactory.cpp" line="113"/> + <location filename="../decoderwildmidifactory.cpp" line="112"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/CMakeLists.txt b/src/plugins/Output/CMakeLists.txt index 3793044e4..60c206692 100644 --- a/src/plugins/Output/CMakeLists.txt +++ b/src/plugins/Output/CMakeLists.txt @@ -42,9 +42,9 @@ IF(USE_DSOUND) add_subdirectory(directsound) ENDIF(USE_DSOUND) -IF(USE_QTMULTIMEDIA) +IF(USE_QTMULTIMEDIA AND Qt5Multimedia_FOUND) add_subdirectory(qtmultimedia) -ENDIF(USE_QTMULTIMEDIA) +ENDIF(USE_QTMULTIMEDIA AND Qt5Multimedia_FOUND) IF(USE_WASAPI) add_subdirectory(wasapi) diff --git a/src/plugins/Output/Output.pro b/src/plugins/Output/Output.pro index 3e9d8d3c0..1d745e442 100644 --- a/src/plugins/Output/Output.pro +++ b/src/plugins/Output/Output.pro @@ -35,7 +35,7 @@ contains(CONFIG, SHOUT_PLUGIN){ } #all platforms -contains(QT_CONFIG, multimedia){ +qtHaveModule(multimedia){ contains(CONFIG, QTMULTIMEDIA_PLUGIN){ SUBDIRS += qtmultimedia } diff --git a/src/plugins/Output/alsa/CMakeLists.txt b/src/plugins/Output/alsa/CMakeLists.txt index 761f5ca05..0076f9499 100644 --- a/src/plugins/Output/alsa/CMakeLists.txt +++ b/src/plugins/Output/alsa/CMakeLists.txt @@ -1,20 +1,7 @@ project(libalsa) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -33,7 +20,7 @@ SET(libalsa_SRCS SET(libalsa_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libalsa_RCC_SRCS ${libalsa_RCCS}) +QT5_ADD_RESOURCES(libalsa_RCC_SRCS ${libalsa_RCCS}) # user interface @@ -41,7 +28,7 @@ SET(libalsa_UIS settingsdialog.ui ) -QT4_WRAP_UI(libalsa_UIS_H ${libalsa_UIS}) +QT5_WRAP_UI(libalsa_UIS_H ${libalsa_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -49,7 +36,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(ALSA_FOUND) ADD_LIBRARY(alsa MODULE ${libalsa_SRCS} ${libalsa_UIS_H} ${libalsa_RCC_SRCS}) add_dependencies(alsa qmmp) -target_link_libraries(alsa ${QT_LIBRARIES} libqmmp ${ALSA_LDFLAGS}) +target_link_libraries(alsa Qt5::Widgets -lqmmp ${ALSA_LDFLAGS}) install(TARGETS alsa DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(ALSA_FOUND) diff --git a/src/plugins/Output/alsa/outputalsafactory.cpp b/src/plugins/Output/alsa/outputalsafactory.cpp index 508ca6299..784139055 100644 --- a/src/plugins/Output/alsa/outputalsafactory.cpp +++ b/src/plugins/Output/alsa/outputalsafactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2016 by Ilya Kotov * + * Copyright (C) 2007-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "outputalsa.h" @@ -67,5 +66,3 @@ QTranslator *OutputALSAFactory::createTranslator(QObject *parent) translator->load(QString(":/alsa_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(alsa,OutputALSAFactory) diff --git a/src/plugins/Output/alsa/outputalsafactory.h b/src/plugins/Output/alsa/outputalsafactory.h index 464894650..86fecd91a 100644 --- a/src/plugins/Output/alsa/outputalsafactory.h +++ b/src/plugins/Output/alsa/outputalsafactory.h @@ -20,7 +20,6 @@ #ifndef OUTPUTALSAFACTORY_H #define OUTPUTALSAFACTORY_H - #include <QObject> #include <QString> #include <QIODevice> @@ -34,6 +33,7 @@ class OutputALSAFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_bg.ts b/src/plugins/Output/alsa/translations/alsa_plugin_bg.ts index 2d8346a4f..08dc58e98 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_bg.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_cs.ts b/src/plugins/Output/alsa/translations/alsa_plugin_cs.ts index 2c808f2c9..b2b85e06c 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_cs.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Modul ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>O modulu ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Výstupní modul Qmmp ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_de.ts b/src/plugins/Output/alsa/translations/alsa_plugin_de.ts index a356109ae..0edcbe343 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_de.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA-Modul</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Über ALSA-Ausgabemodul</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Qmmp ALSA-Ausgabemodul</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_el.ts b/src/plugins/Output/alsa/translations/alsa_plugin_el.ts index 1bd86f47d..755238a4d 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_el.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Πρόσθετο ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Σχετικά με το πρόσθετο εξόδου ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Πρόσθετο εξόδου ALSA Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_en.ts b/src/plugins/Output/alsa/translations/alsa_plugin_en.ts index db05cce98..0ca0909ea 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_en.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_es.ts b/src/plugins/Output/alsa/translations/alsa_plugin_es.ts index 84717ef77..490b13303 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_es.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Módulo ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Acerca del módulo de salida ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Módulo de salida ALSA para Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_fi.ts b/src/plugins/Output/alsa/translations/alsa_plugin_fi.ts index c3acb6d1b..8f41ffb79 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_fi.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA-liitännäinen</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Tietoja - ALSA-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Qmmp:n ALSA-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_fr.ts b/src/plugins/Output/alsa/translations/alsa_plugin_fr.ts index b1fbdadd3..ef4034b44 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_fr.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Greffon ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>À propos du greffon de sortie ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Greffon de sortie ALSA pour Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_gl_ES.ts b/src/plugins/Output/alsa/translations/alsa_plugin_gl_ES.ts index b62c65ab3..b4dfacb06 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_gl_ES.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Engadido ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Sobre o engadido Alsa</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Engadido ALSA de Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_he.ts b/src/plugins/Output/alsa/translations/alsa_plugin_he.ts index 54e8bde24..1c5fda113 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_he.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>תוסף ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>אודות תוסף פלט ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>תוסף פלט ALSA של Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_hu.ts b/src/plugins/Output/alsa/translations/alsa_plugin_hu.ts index 4fde217ce..043fa2f99 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_hu.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_id.ts b/src/plugins/Output/alsa/translations/alsa_plugin_id.ts index 6552c0efd..51e44fab0 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_id.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Plugin ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Tentang Plugin Keluaran ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Plugin Keluaran ALSA Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_it.ts b/src/plugins/Output/alsa/translations/alsa_plugin_it.ts index 47baca1f0..fe6b8e25d 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_it.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Modulo ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Informazioni sul modulo d'uscita ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Modulo d'uscita ALSA per Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_ja.ts b/src/plugins/Output/alsa/translations/alsa_plugin_ja.ts index e5a64c63c..7c07a0e5f 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_ja.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA プラグイン</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>ALSA 出力プラグインについて</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>QMMP ALSA 出力プラグイン</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_kk.ts b/src/plugins/Output/alsa/translations/alsa_plugin_kk.ts index 2a377f5a2..576058d0b 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_kk.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_lt.ts b/src/plugins/Output/alsa/translations/alsa_plugin_lt.ts index 4fa3aabfc..843db56bd 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_lt.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA įskiepis</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Apie ALSA įskiepį</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Apie ALSA Qmmp įskiepį</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_nl.ts b/src/plugins/Output/alsa/translations/alsa_plugin_nl.ts index 8a1d0618f..f84553d87 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_nl.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA Module</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Over de ALSA Uitvoer Module</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>ALSA Uitvoer Module voor Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_pl_PL.ts b/src/plugins/Output/alsa/translations/alsa_plugin_pl_PL.ts index 242abfed8..3776f945f 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_pl_PL.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Wtyczka ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>O wtyczce dźwiękowej ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Wtyczka ALSA dla Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_pt.ts b/src/plugins/Output/alsa/translations/alsa_plugin_pt.ts index 41fa01a96..2e03ce9b4 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_pt.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Suplemento ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Sobre o suplemento ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Suplemento Qmmp ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_pt_BR.ts b/src/plugins/Output/alsa/translations/alsa_plugin_pt_BR.ts index ff5576244..8eba26bf7 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_pt_BR.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Plugin ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Sobre o puglin de saída ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Plugin de saída Qmmp ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_ru.ts b/src/plugins/Output/alsa/translations/alsa_plugin_ru.ts index 6192c6d44..7c61d6626 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_ru.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Модуль ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>О модуле вывода ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Модуль вывода ALSA для Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_sk.ts b/src/plugins/Output/alsa/translations/alsa_plugin_sk.ts index 3608e0480..371f59def 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_sk.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_sr_BA.ts b/src/plugins/Output/alsa/translations/alsa_plugin_sr_BA.ts index 8a252f1e0..cc199a53a 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_sr_BA.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Алса прикључак</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>О Алса прикључку излаза</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Кумп Алса прикључак излаза</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_sr_RS.ts b/src/plugins/Output/alsa/translations/alsa_plugin_sr_RS.ts index d56049ecc..911812069 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_sr_RS.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Алса прикључак</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>О Алса прикључку излаза</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Кумп Алса прикључак излаза</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_tr.ts b/src/plugins/Output/alsa/translations/alsa_plugin_tr.ts index fa2d612f9..91d61af6a 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_tr.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA Eklentisi</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>ALSA Çıktı Eklentisi Hakkında</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Qmmp ALSA Çıktı Eklentisi</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_uk_UA.ts b/src/plugins/Output/alsa/translations/alsa_plugin_uk_UA.ts index 3262eeda7..657c8a0e4 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_uk_UA.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>Модуль ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>Про модуль виводу ALSA</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Модуль виводу ALSA для Qmmp</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_zh_CN.ts b/src/plugins/Output/alsa/translations/alsa_plugin_zh_CN.ts index 86b0ad2c6..56925dd4b 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_zh_CN.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA 插件</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>关于 ALSA 输出插件</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Qmmp ALSA 输出插件</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/alsa/translations/alsa_plugin_zh_TW.ts b/src/plugins/Output/alsa/translations/alsa_plugin_zh_TW.ts index 53502ab7d..36a77d6da 100644 --- a/src/plugins/Output/alsa/translations/alsa_plugin_zh_TW.ts +++ b/src/plugins/Output/alsa/translations/alsa_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputALSAFactory</name> <message> - <location filename="../outputalsafactory.cpp" line="33"/> + <location filename="../outputalsafactory.cpp" line="32"/> <source>ALSA Plugin</source> <translation>ALSA 外掛</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="58"/> + <location filename="../outputalsafactory.cpp" line="57"/> <source>About ALSA Output Plugin</source> <translation>關於 ALSA 匯出插件</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="59"/> + <location filename="../outputalsafactory.cpp" line="58"/> <source>Qmmp ALSA Output Plugin</source> <translation>Qmmp ALSA 匯出插件</translation> </message> <message> - <location filename="../outputalsafactory.cpp" line="60"/> + <location filename="../outputalsafactory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/CMakeLists.txt b/src/plugins/Output/directsound/CMakeLists.txt index 5de46e9eb..639393332 100644 --- a/src/plugins/Output/directsound/CMakeLists.txt +++ b/src/plugins/Output/directsound/CMakeLists.txt @@ -2,21 +2,8 @@ project(libdirectsound) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -35,13 +22,13 @@ SET(libdirectsound_HDRS SET(libdirectsound_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libdirectsound_RCC_SRCS ${libdirectsound_RCCS}) +QT5_ADD_RESOURCES(libdirectsound_RCC_SRCS ${libdirectsound_RCCS}) IF(DSOUND_H_FOUND) ADD_LIBRARY(directsound MODULE ${libdirectsound_SRCS} ${libdirectsound_RCC_SRCS} ${libdirectsound_HDRS}) add_dependencies(directsound qmmp) -target_link_libraries(directsound ${QT_LIBRARIES} libqmmp -ldxguid -lstrmiids -ldmoguids -lmsdmo -lole32 -loleaut32 -luuid -lgdi32 -ldsound) +target_link_libraries(directsound Qt5::Widgets -lqmmp -ldxguid -lstrmiids -ldmoguids -lmsdmo -lole32 -loleaut32 -luuid -lgdi32 -ldsound) install(TARGETS directsound DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(DSOUND_H_FOUND) diff --git a/src/plugins/Output/directsound/outputdirectsoundfactory.cpp b/src/plugins/Output/directsound/outputdirectsoundfactory.cpp index 1eaaa8025..99f294cc7 100644 --- a/src/plugins/Output/directsound/outputdirectsoundfactory.cpp +++ b/src/plugins/Output/directsound/outputdirectsoundfactory.cpp @@ -18,9 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <QMessageBox>
-#include <QTranslator>
-#include <QtPlugin>
+
#include "outputdirectsound.h"
#include "outputdirectsoundfactory.h"
@@ -64,4 +62,4 @@ QTranslator *OutputDirectSoundFactory::createTranslator(QObject *parent) return translator;
}
-Q_EXPORT_PLUGIN2(directsound,OutputDirectSoundFactory)
+
diff --git a/src/plugins/Output/directsound/outputdirectsoundfactory.h b/src/plugins/Output/directsound/outputdirectsoundfactory.h index 7cf47434c..4e34d191c 100644 --- a/src/plugins/Output/directsound/outputdirectsoundfactory.h +++ b/src/plugins/Output/directsound/outputdirectsoundfactory.h @@ -30,6 +30,7 @@ class OutputDirectSoundFactory : public QObject, OutputFactory
{
Q_OBJECT
+Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0")
Q_INTERFACES(OutputFactory)
public:
diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_bg.ts b/src/plugins/Output/directsound/translations/directsound_plugin_bg.ts index 4a1d3170a..7c76c02a7 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_bg.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_cs.ts b/src/plugins/Output/directsound/translations/directsound_plugin_cs.ts index 2b1c098d8..d3c94fea0 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_cs.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Modul DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_de.ts b/src/plugins/Output/directsound/translations/directsound_plugin_de.ts index f79e11b83..e86fbc7d2 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_de.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>DirectSound-Modul</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Über DirectSound-Ausgabemodul</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Qmmp DirectSound-Ausgabemodul</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_el.ts b/src/plugins/Output/directsound/translations/directsound_plugin_el.ts index 8c6424f97..3d4e69fd3 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_el.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Πρόσθετο DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Σχετικά με το πρόσθετο DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Qmmp πρόσθετο εξόδου DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_en.ts b/src/plugins/Output/directsound/translations/directsound_plugin_en.ts index f54c72d93..7eccdd625 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_en.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_es.ts b/src/plugins/Output/directsound/translations/directsound_plugin_es.ts index 4abaa3b1d..bc5607254 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_es.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Módulo DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Acerca del Plugin de Salida DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Plugin de Salida DirectSound de Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_fi.ts b/src/plugins/Output/directsound/translations/directsound_plugin_fi.ts index 1d968b39a..40770b4a6 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_fi.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>DirectSound-liitännäinen</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Tietoja - DirectSound-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Qmmp:n DirectSound-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_fr.ts b/src/plugins/Output/directsound/translations/directsound_plugin_fr.ts index dddf39879..7095a5607 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_fr.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Greffon DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>À propos du greffon de sortie DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Greffon de sortie DirectSound pour Qmm</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_gl_ES.ts b/src/plugins/Output/directsound/translations/directsound_plugin_gl_ES.ts index e92665ace..0cddfd65b 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_gl_ES.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Engadido DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Acerca do engadido de saida DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Engadido de saida DirectSound Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_he.ts b/src/plugins/Output/directsound/translations/directsound_plugin_he.ts index 8a46064da..cf8722de3 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_he.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>תוסף DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>אודות תוסף פלט DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>אודות תוסף פלט DirectSound של Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_hu.ts b/src/plugins/Output/directsound/translations/directsound_plugin_hu.ts index 9cead9997..c86f72f00 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_hu.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_id.ts b/src/plugins/Output/directsound/translations/directsound_plugin_id.ts index 85407c589..64b95362b 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_id.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Plugin DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Tentang Plugin Keluaran DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Plugin Keluaran DirectSound Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_it.ts b/src/plugins/Output/directsound/translations/directsound_plugin_it.ts index 64abfe9a8..96569bdfb 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_it.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_ja.ts b/src/plugins/Output/directsound/translations/directsound_plugin_ja.ts index 947dd32f7..8222a56e1 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_ja.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>DirectSound プラグイン</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>DirectSound 出力プラグインについて</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>QMMP DirectSound 出力プラグイン</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_kk.ts b/src/plugins/Output/directsound/translations/directsound_plugin_kk.ts index 6352bbd4d..db983d408 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_kk.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_lt.ts b/src/plugins/Output/directsound/translations/directsound_plugin_lt.ts index c3be847e1..ed2ac0f4a 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_lt.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>DirectSound Įskiepis</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Apie DirectSound išvesties įskiepį </translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Qmmp DirectSound Išvesties Įskiepis </translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_nl.ts b/src/plugins/Output/directsound/translations/directsound_plugin_nl.ts index 1246b90af..01f99ed2c 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_nl.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_pl_PL.ts b/src/plugins/Output/directsound/translations/directsound_plugin_pl_PL.ts index cff37d745..26d837d45 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_pl_PL.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Wtyczka DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>O wtyczce DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Wtyczka DirectSound dla Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_pt.ts b/src/plugins/Output/directsound/translations/directsound_plugin_pt.ts index d9ec4d0e1..10b6e61e1 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_pt.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Suplemento DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Sobre o suplemento DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Suplemento Qmmp DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_pt_BR.ts b/src/plugins/Output/directsound/translations/directsound_plugin_pt_BR.ts index 65a4ab16d..25fa873d6 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_pt_BR.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Plugin DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Sobre o plugin DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Plugin Qmmp DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_ru.ts b/src/plugins/Output/directsound/translations/directsound_plugin_ru.ts index 6b5f0d59c..7f3dc3445 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_ru.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Модуль DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>О модуле вывода DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Модуль вывода DirectSound для Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_sk.ts b/src/plugins/Output/directsound/translations/directsound_plugin_sk.ts index b8ecc67ba..b6f97118b 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_sk.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_sr_BA.ts b/src/plugins/Output/directsound/translations/directsound_plugin_sr_BA.ts index 3a69729ae..ef0fdc084 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_sr_BA.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>ДиректСаунд прикључак</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>О ДиректСаунд прикључку излаза</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Кумп ДиректСаунд прикључак излаза</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_sr_RS.ts b/src/plugins/Output/directsound/translations/directsound_plugin_sr_RS.ts index 58dff934f..355fe7d03 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_sr_RS.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>ДиректСаунд прикључак</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>О ДиректСаунд прикључку излаза</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Кумп ДиректСаунд прикључак излаза</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_tr.ts b/src/plugins/Output/directsound/translations/directsound_plugin_tr.ts index 5cdf3aac4..d2609bec8 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_tr.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_uk_UA.ts b/src/plugins/Output/directsound/translations/directsound_plugin_uk_UA.ts index bd4e49ffa..965d47e32 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_uk_UA.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>Модуль DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>Про модуль виводу DirectSound</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Модуль виводу DirectSound для Qmmp</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_zh_CN.ts b/src/plugins/Output/directsound/translations/directsound_plugin_zh_CN.ts index c257e361f..9ae1618e7 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_zh_CN.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation>DirectSound插件</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation>关于DirectSound输出插件</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation>Qmmp DirectSound输出插件</translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/directsound/translations/directsound_plugin_zh_TW.ts b/src/plugins/Output/directsound/translations/directsound_plugin_zh_TW.ts index 60cf7a6a9..b59da2c66 100644 --- a/src/plugins/Output/directsound/translations/directsound_plugin_zh_TW.ts +++ b/src/plugins/Output/directsound/translations/directsound_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputDirectSoundFactory</name> <message> - <location filename="../outputdirectsoundfactory.cpp" line="30"/> + <location filename="../outputdirectsoundfactory.cpp" line="28"/> <source>DirectSound Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="54"/> + <location filename="../outputdirectsoundfactory.cpp" line="52"/> <source>About DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="55"/> + <location filename="../outputdirectsoundfactory.cpp" line="53"/> <source>Qmmp DirectSound Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputdirectsoundfactory.cpp" line="56"/> + <location filename="../outputdirectsoundfactory.cpp" line="54"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/jack/CMakeLists.txt b/src/plugins/Output/jack/CMakeLists.txt index 9bcdf310d..94927e638 100644 --- a/src/plugins/Output/jack/CMakeLists.txt +++ b/src/plugins/Output/jack/CMakeLists.txt @@ -2,53 +2,24 @@ project(libjack) INCLUDE (CheckCXXSourceCompiles) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) # libjack and libsoxr -pkg_check_modules(JACK jack soxr) +pkg_check_modules(JACK jack>=1.9.8 soxr) + +IF(NOT JACK_FOUND) +pkg_check_modules(JACK jack>=0.122.0 soxr) +ENDIF(NOT JACK_FOUND) include_directories(${JACK_INCLUDE_DIRS}) link_directories(${JACK_LIBRARY_DIRS}) ADD_DEFINITIONS(${JACK_CFLAGS}) -IF(JACK_FOUND) -CHECK_CXX_SOURCE_COMPILES(" -#include <unistd.h> -#include <stdio.h> -#include <stdlib.h> -#include <jack/jack.h> - -int main (int argc, char **argv) -{ - jack_latency_range_t range; - exit(0); -}" JACK_NEW_API) - -ENDIF(JACK_FOUND) - -IF(JACK_NEW_API) -ADD_DEFINITIONS(-DJACK_NEW_API) -ENDIF(JACK_NEW_API) - - SET(libjack_SRCS outputjackfactory.cpp outputjack.cpp @@ -62,7 +33,7 @@ SET(libjack_HDRS SET(libjack_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libjack_RCC_SRCS ${libjack_RCCS}) +QT5_ADD_RESOURCES(libjack_RCC_SRCS ${libjack_RCCS}) IF(JACK_FOUND) @@ -72,7 +43,7 @@ set_target_properties(jack PROPERTIES COMPILE_FLAGS -pthread LINK_FLAGS -pthread ) -target_link_libraries(jack ${QT_LIBRARIES} libqmmp ${JACK_LDFLAGS}) +target_link_libraries(jack Qt5::Widgets -lqmmp ${JACK_LDFLAGS}) install(TARGETS jack DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(JACK_FOUND) diff --git a/src/plugins/Output/jack/bio2jack.c b/src/plugins/Output/jack/bio2jack.c index a4b47d84a..4f88d0267 100644 --- a/src/plugins/Output/jack/bio2jack.c +++ b/src/plugins/Output/jack/bio2jack.c @@ -1662,13 +1662,9 @@ JACK_OpenEx(int *deviceID, unsigned int bits_per_channel, /* FIXME: maybe we should keep different latency values for input vs output? */ if(drv->num_output_channels > 0) { -#ifdef JACK_NEW_API jack_latency_range_t range; jack_port_get_latency_range(drv->output_port[0], JackPlaybackLatency, &range); periods = range.max / periodSize; -#else - periods = jack_port_get_total_latency(drv->client, drv->output_port[0]) / periodSize; -#endif drv->latencyMS = periodSize * periods * 1000 / (drv->jack_sample_rate * (drv->bits_per_channel / 8 * @@ -1676,13 +1672,10 @@ JACK_OpenEx(int *deviceID, unsigned int bits_per_channel, } else if(drv->num_input_channels > 0) { -#ifdef JACK_NEW_API jack_latency_range_t range; jack_port_get_latency_range(drv->output_port[0], JackPlaybackLatency, &range); periods = range.max / periodSize; -#else - periods = jack_port_get_total_latency(drv->client, drv->output_port[0]) / periodSize; -#endif + drv->latencyMS = periodSize * periods * 1000 / (drv->jack_sample_rate * (drv->bits_per_channel / 8 * @@ -2576,13 +2569,9 @@ JACK_GetJackOutputLatency(int deviceID) if(drv->client && drv->num_input_channels) { -#ifdef JACK_NEW_API jack_latency_range_t range; jack_port_get_latency_range(drv->output_port[0], JackCaptureLatency, &range); return_val = range.max; -#else - return_val = jack_port_get_total_latency(drv->client, drv->output_port[0]); -#endif } TRACE("got latency of %ld frames\n", return_val); @@ -2600,14 +2589,9 @@ JACK_GetJackInputLatency(int deviceID) if(drv->client && drv->num_input_channels) { -#ifdef JACK_NEW_API jack_latency_range_t range; jack_port_get_latency_range(drv->output_port[0], JackPlaybackLatency, &range); return_val = range.max; -#else - return_val = jack_port_get_total_latency(drv->client, drv->output_port[0]); -#endif - } TRACE("got latency of %ld frames\n", return_val); diff --git a/src/plugins/Output/jack/jack.pro b/src/plugins/Output/jack/jack.pro index 235b052b7..b5f5369e8 100644 --- a/src/plugins/Output/jack/jack.pro +++ b/src/plugins/Output/jack/jack.pro @@ -12,10 +12,6 @@ SOURCES += outputjackfactory.cpp \ RESOURCES = translations/translations.qrc -contains(CONFIG, WITH_NEW_JACK){ - DEFINES += JACK_NEW_API -} - PKGCONFIG += jack soxr target.path = $$LIB_DIR/qmmp/Output diff --git a/src/plugins/Output/jack/outputjackfactory.cpp b/src/plugins/Output/jack/outputjackfactory.cpp index e4d1b53b2..2f9e1c68f 100644 --- a/src/plugins/Output/jack/outputjackfactory.cpp +++ b/src/plugins/Output/jack/outputjackfactory.cpp @@ -18,10 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QSettings> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "outputjack.h" #include "outputjackfactory.h" @@ -65,5 +63,3 @@ QTranslator *OutputJACKFactory::createTranslator(QObject *parent) translator->load(QString(":/jack_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(jack,OutputJACKFactory) diff --git a/src/plugins/Output/jack/outputjackfactory.h b/src/plugins/Output/jack/outputjackfactory.h index 912bb90a2..3edc54ba2 100644 --- a/src/plugins/Output/jack/outputjackfactory.h +++ b/src/plugins/Output/jack/outputjackfactory.h @@ -33,6 +33,7 @@ class OutputJACKFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/jack/translations/jack_plugin_bg.ts b/src/plugins/Output/jack/translations/jack_plugin_bg.ts index 8651da81c..41f03ae9c 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_bg.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_cs.ts b/src/plugins/Output/jack/translations/jack_plugin_cs.ts index 67b175866..ac3548443 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_cs.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Modul JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>O modulu JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Výstupní modul Qmmp JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Autor: Jurij Žuravljov <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_de.ts b/src/plugins/Output/jack/translations/jack_plugin_de.ts index 5b06ad8ca..1f8feefff 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_de.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK-Modul</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Über JACK-Ausgabemodul</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp JACK-Ausgabemodul</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Geschrieben von: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_el.ts b/src/plugins/Output/jack/translations/jack_plugin_el.ts index b342115d3..8a870d1c9 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_el.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Πρόσθετο JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Σχετικά με το πρόσθετο εξόδου Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp πρόσθετο εξόδου Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Γράφτηκε από τον: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_en.ts b/src/plugins/Output/jack/translations/jack_plugin_en.ts index 95b01c025..1a05c42c7 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_en.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_es.ts b/src/plugins/Output/jack/translations/jack_plugin_es.ts index c77d0667e..f524b41aa 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_es.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Módulo JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Acerca del módulo de salida Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Módulo de salida Jack para Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Escrito por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_fi.ts b/src/plugins/Output/jack/translations/jack_plugin_fi.ts index aebfc0902..d9b2b7253 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_fi.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK-liitännäinen</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Tietoja - JACK-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp:n JACK-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Toteutus: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_fr.ts b/src/plugins/Output/jack/translations/jack_plugin_fr.ts index 4edcd2ca6..847915d86 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_fr.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Greffon JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>À propos du greffon de sortie JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Greffon de sortie JACK pour Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Écrit par : Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_gl_ES.ts b/src/plugins/Output/jack/translations/jack_plugin_gl_ES.ts index f6449fc1e..9458f65ce 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_gl_ES.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Engadido JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Sobre o engadido Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Engadido Jack de Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Escrito por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_he.ts b/src/plugins/Output/jack/translations/jack_plugin_he.ts index 1b6daf8c9..c8b7e30bf 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_he.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>תוסף JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>אודות תוסף פלט Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>תוסף פלט Jack של Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>חובר על ידי: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_hu.ts b/src/plugins/Output/jack/translations/jack_plugin_hu.ts index 49a37f35f..f4aac4511 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_hu.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_id.ts b/src/plugins/Output/jack/translations/jack_plugin_id.ts index c2b3f6af3..fdf844963 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_id.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Plugin JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Tentang Plugin Keluaran Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Plugin Keluaran Jack Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Ditulis oleh: Yuriy Zhuravlev <slalkerg@gmail.com> </translation> diff --git a/src/plugins/Output/jack/translations/jack_plugin_it.ts b/src/plugins/Output/jack/translations/jack_plugin_it.ts index 68a054920..fdca1dfb8 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_it.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Modulo JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Informazioni sul modulo JACK in nuscita</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Modulo JACK d'uscita Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Autore: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_ja.ts b/src/plugins/Output/jack/translations/jack_plugin_ja.ts index ab1a0cb6f..f90bc458a 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_ja.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK プラグイン</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>JACK 出力プラグインについて</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>QMMP JACK 出力プラグイン</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>制作: Юрий Журавлёв (Yuriy Zhuravlev) <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_kk.ts b/src/plugins/Output/jack/translations/jack_plugin_kk.ts index 637b23576..2fa179b38 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_kk.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_lt.ts b/src/plugins/Output/jack/translations/jack_plugin_lt.ts index 95013dcae..ae4ab9e7b 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_lt.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK Įskiepis</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Apie JACK išvesties įskiepį</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp Jack išvesties įskiepis</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Sukūrė: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_nl.ts b/src/plugins/Output/jack/translations/jack_plugin_nl.ts index b8d674708..0e5031dab 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_nl.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK Module</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Over de Jack Output Module</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>JACK Output Module voor Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Auteur: Yuriy Žuravljov <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_pl_PL.ts b/src/plugins/Output/jack/translations/jack_plugin_pl_PL.ts index 37d8d03b9..f5d5ba934 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_pl_PL.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Wtyczka JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>O wtyczce dźwiękowej Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Wtyczka Jack dla Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Autor: Jurij Žuravljov <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_pt.ts b/src/plugins/Output/jack/translations/jack_plugin_pt.ts index e97888d91..a3639533f 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_pt.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Suplemento JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Sobre o suplemento Jack Output</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Suplemento Qmmp Jack Output</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Desenvolvido por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_pt_BR.ts b/src/plugins/Output/jack/translations/jack_plugin_pt_BR.ts index 21649422a..23e653a7d 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_pt_BR.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Plugin JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Sobre o plugin Jack Output</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Plugin Qmmp Jack Output</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Desenvolvido por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_ru.ts b/src/plugins/Output/jack/translations/jack_plugin_ru.ts index e264ca531..ec549a989 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_ru.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Модуль JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>О модуле вывода Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Модуль вывода Jack для Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Разработчик: Юрий Журавлёв <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_sk.ts b/src/plugins/Output/jack/translations/jack_plugin_sk.ts index bc4817f2b..33e8d0d9d 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_sk.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_sr_BA.ts b/src/plugins/Output/jack/translations/jack_plugin_sr_BA.ts index 65ca891e1..4befd7858 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_sr_BA.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Џек прикључак</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>О Џек прикључку излаза</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Кумп Џек прикључак излаза</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Аутор: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_sr_RS.ts b/src/plugins/Output/jack/translations/jack_plugin_sr_RS.ts index 398f1bd1d..873cd220b 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_sr_RS.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Џек прикључак</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>О Џек прикључку излаза</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Кумп Џек прикључак излаза</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Аутор: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_tr.ts b/src/plugins/Output/jack/translations/jack_plugin_tr.ts index 6e2fff8c6..dd748db98 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_tr.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK Eklentisi</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Jack Çıkışı Eklentisi Hakkında</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp Jack Çıkışı Eklentisi</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Yazan: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_uk_UA.ts b/src/plugins/Output/jack/translations/jack_plugin_uk_UA.ts index 6f99aca9a..0c03d073a 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_uk_UA.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>Модуль JACK</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>Про модуль виводу Jack</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Модуль виводу Jack для Qmmp</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Розробник: Юрій Журавльов <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_zh_CN.ts b/src/plugins/Output/jack/translations/jack_plugin_zh_CN.ts index 4f3837299..06892c03f 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_zh_CN.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK 插件</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>关于 Jack 输出插件</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp Jack 输出插件</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>作者:Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/jack/translations/jack_plugin_zh_TW.ts b/src/plugins/Output/jack/translations/jack_plugin_zh_TW.ts index 07aa55088..6a73d3ef4 100644 --- a/src/plugins/Output/jack/translations/jack_plugin_zh_TW.ts +++ b/src/plugins/Output/jack/translations/jack_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputJACKFactory</name> <message> - <location filename="../outputjackfactory.cpp" line="33"/> + <location filename="../outputjackfactory.cpp" line="31"/> <source>JACK Plugin</source> <translation>JACK 外掛</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="56"/> + <location filename="../outputjackfactory.cpp" line="54"/> <source>About Jack Output Plugin</source> <translation>關於 Jack 匯出插件</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="57"/> + <location filename="../outputjackfactory.cpp" line="55"/> <source>Qmmp Jack Output Plugin</source> <translation>Qmmp Jack 匯出插件</translation> </message> <message> - <location filename="../outputjackfactory.cpp" line="58"/> + <location filename="../outputjackfactory.cpp" line="56"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>作者:Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> diff --git a/src/plugins/Output/null/CMakeLists.txt b/src/plugins/Output/null/CMakeLists.txt index ec4a48e31..85cb8f2ca 100644 --- a/src/plugins/Output/null/CMakeLists.txt +++ b/src/plugins/Output/null/CMakeLists.txt @@ -1,20 +1,7 @@ project(libnull) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -30,7 +17,7 @@ SET(libnull_HDRS SET(libnull_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libnull_RCC_SRCS ${libnull_RCCS}) +QT5_ADD_RESOURCES(libnull_RCC_SRCS ${libnull_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -39,5 +26,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(null MODULE ${libnull_SRCS} ${libnull_UIS_H} ${libnull_RCC_SRCS} ${libnull_HDRS}) add_dependencies(null qmmp) -target_link_libraries(null ${QT_LIBRARIES} libqmmp) +target_link_libraries(null Qt5::Widgets -lqmmp) install(TARGETS null DESTINATION ${LIB_DIR}/qmmp/Output) diff --git a/src/plugins/Output/null/outputnullfactory.cpp b/src/plugins/Output/null/outputnullfactory.cpp index a4ff961c7..2a7249165 100644 --- a/src/plugins/Output/null/outputnullfactory.cpp +++ b/src/plugins/Output/null/outputnullfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2016 by Ilya Kotov * + * Copyright (C) 2010-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "outputnull.h" #include "outputnullfactory.h" @@ -65,5 +64,3 @@ QTranslator *OutputNullFactory::createTranslator(QObject *parent) translator->load(QString(":/null_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(null, OutputNullFactory) diff --git a/src/plugins/Output/null/outputnullfactory.h b/src/plugins/Output/null/outputnullfactory.h index 4142ee7e9..645d37815 100644 --- a/src/plugins/Output/null/outputnullfactory.h +++ b/src/plugins/Output/null/outputnullfactory.h @@ -33,6 +33,7 @@ class OutputNullFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/null/translations/null_plugin_bg.ts b/src/plugins/Output/null/translations/null_plugin_bg.ts index d3ec3e805..2f36d88ad 100644 --- a/src/plugins/Output/null/translations/null_plugin_bg.ts +++ b/src/plugins/Output/null/translations/null_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_cs.ts b/src/plugins/Output/null/translations/null_plugin_cs.ts index 9dc9c1eef..f725e004e 100644 --- a/src/plugins/Output/null/translations/null_plugin_cs.ts +++ b/src/plugins/Output/null/translations/null_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Nulový modul</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>O modulu pro nulový výstup</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Modul Qmmp pro nulový výstup</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_de.ts b/src/plugins/Output/null/translations/null_plugin_de.ts index c1e42a166..2cad52126 100644 --- a/src/plugins/Output/null/translations/null_plugin_de.ts +++ b/src/plugins/Output/null/translations/null_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Null-Modul</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Über Null-Ausgabemodul</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Qmmp Null-Ausgabemodul</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_el.ts b/src/plugins/Output/null/translations/null_plugin_el.ts index 82416fcb2..e3df4f590 100644 --- a/src/plugins/Output/null/translations/null_plugin_el.ts +++ b/src/plugins/Output/null/translations/null_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Πρόσθετο Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Σχετικά με το πρόσθετο Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Qmmp σχετικά με το πρόσθετο Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_en.ts b/src/plugins/Output/null/translations/null_plugin_en.ts index 876d530af..0f6577ef7 100644 --- a/src/plugins/Output/null/translations/null_plugin_en.ts +++ b/src/plugins/Output/null/translations/null_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_es.ts b/src/plugins/Output/null/translations/null_plugin_es.ts index 912798a9f..5cd13e61e 100644 --- a/src/plugins/Output/null/translations/null_plugin_es.ts +++ b/src/plugins/Output/null/translations/null_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Módulo de salida nula</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Acerca del módulo de salida nula</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Módulo de salida nula para Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_fi.ts b/src/plugins/Output/null/translations/null_plugin_fi.ts index a93e06ac0..f10d40b56 100644 --- a/src/plugins/Output/null/translations/null_plugin_fi.ts +++ b/src/plugins/Output/null/translations/null_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Null-liitännäinen</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Tietoja - Null-ulostulosliitännäinen</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Qmmp:n Null-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_fr.ts b/src/plugins/Output/null/translations/null_plugin_fr.ts index c106286ad..a381ba20e 100644 --- a/src/plugins/Output/null/translations/null_plugin_fr.ts +++ b/src/plugins/Output/null/translations/null_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Greffon Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>À propos du greffon de sortie Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Greffon de sortie Null pour Qmm</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_gl_ES.ts b/src/plugins/Output/null/translations/null_plugin_gl_ES.ts index fdb1c314a..44290d04a 100644 --- a/src/plugins/Output/null/translations/null_plugin_gl_ES.ts +++ b/src/plugins/Output/null/translations/null_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Engadido Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Sobre o engadido Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Engadido Null de Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_he.ts b/src/plugins/Output/null/translations/null_plugin_he.ts index 26342af29..1b329d31a 100644 --- a/src/plugins/Output/null/translations/null_plugin_he.ts +++ b/src/plugins/Output/null/translations/null_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>תוסף אפסי</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>אודות תוסף אפסי</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>תוסף אפסי של Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_hu.ts b/src/plugins/Output/null/translations/null_plugin_hu.ts index 95b4cda4e..212c1055e 100644 --- a/src/plugins/Output/null/translations/null_plugin_hu.ts +++ b/src/plugins/Output/null/translations/null_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_id.ts b/src/plugins/Output/null/translations/null_plugin_id.ts index c087079b0..266e54386 100644 --- a/src/plugins/Output/null/translations/null_plugin_id.ts +++ b/src/plugins/Output/null/translations/null_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Plugin Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Tentang Plugin Keluaran Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Plugin Keluaran Null Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_it.ts b/src/plugins/Output/null/translations/null_plugin_it.ts index 86d331eb2..a47362dc5 100644 --- a/src/plugins/Output/null/translations/null_plugin_it.ts +++ b/src/plugins/Output/null/translations/null_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Modulo di uscita nullo</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Informazioni sul modulo di uscita nullo</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Modulo di uscita nullo per Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_ja.ts b/src/plugins/Output/null/translations/null_plugin_ja.ts index ff3196b7b..cd7a37542 100644 --- a/src/plugins/Output/null/translations/null_plugin_ja.ts +++ b/src/plugins/Output/null/translations/null_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>NULL プラグイン</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>NULL 出力プラグインについて</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>QMMP NULL 出力プラグイン</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_kk.ts b/src/plugins/Output/null/translations/null_plugin_kk.ts index 33bafef69..42b842cb0 100644 --- a/src/plugins/Output/null/translations/null_plugin_kk.ts +++ b/src/plugins/Output/null/translations/null_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_lt.ts b/src/plugins/Output/null/translations/null_plugin_lt.ts index 8bbf20ec9..4085c97e7 100644 --- a/src/plugins/Output/null/translations/null_plugin_lt.ts +++ b/src/plugins/Output/null/translations/null_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Null Įskiepis</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Apie Null išvesties įskiepį</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Qmmp Null išvesties įskiepis</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_nl.ts b/src/plugins/Output/null/translations/null_plugin_nl.ts index a422d6c7f..1904e702c 100644 --- a/src/plugins/Output/null/translations/null_plugin_nl.ts +++ b/src/plugins/Output/null/translations/null_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Null Module</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Over de Null Output Module</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Null Output Module voor Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_pl_PL.ts b/src/plugins/Output/null/translations/null_plugin_pl_PL.ts index 8102584e0..9a247aa5d 100644 --- a/src/plugins/Output/null/translations/null_plugin_pl_PL.ts +++ b/src/plugins/Output/null/translations/null_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Wtyczka Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>O wtyczce wyjściowej Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Wtyczka wyjściowa Null dla Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_pt.ts b/src/plugins/Output/null/translations/null_plugin_pt.ts index d28b5ca9d..7dfc249ad 100644 --- a/src/plugins/Output/null/translations/null_plugin_pt.ts +++ b/src/plugins/Output/null/translations/null_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Suplemento Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Sobre o suplemento Null Output</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Suplemento Qmmp Null Output</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_pt_BR.ts b/src/plugins/Output/null/translations/null_plugin_pt_BR.ts index 1b93a354b..d243b664b 100644 --- a/src/plugins/Output/null/translations/null_plugin_pt_BR.ts +++ b/src/plugins/Output/null/translations/null_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Plugin Null</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Sobre o plugin Null Output</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Plugin Qmmp Null Output</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_ru.ts b/src/plugins/Output/null/translations/null_plugin_ru.ts index 1cc18a0aa..d51abddfd 100644 --- a/src/plugins/Output/null/translations/null_plugin_ru.ts +++ b/src/plugins/Output/null/translations/null_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Модуль нулевого вывода</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>О модуле нулевого вывода</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Модуль нулевого вывода для Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_sk.ts b/src/plugins/Output/null/translations/null_plugin_sk.ts index d2bfff437..6c3bf4d8a 100644 --- a/src/plugins/Output/null/translations/null_plugin_sk.ts +++ b/src/plugins/Output/null/translations/null_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_sr_BA.ts b/src/plugins/Output/null/translations/null_plugin_sr_BA.ts index 0581c050b..b1bf2ff08 100644 --- a/src/plugins/Output/null/translations/null_plugin_sr_BA.ts +++ b/src/plugins/Output/null/translations/null_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Нул прикључак</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>О Нул прикључку излаза</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Кумп Нул прикључак излаза</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_sr_RS.ts b/src/plugins/Output/null/translations/null_plugin_sr_RS.ts index 1a34fc0b8..7fde253b8 100644 --- a/src/plugins/Output/null/translations/null_plugin_sr_RS.ts +++ b/src/plugins/Output/null/translations/null_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Нул прикључак</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>О Нул прикључку излаза</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Кумп Нул прикључак излаза</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_tr.ts b/src/plugins/Output/null/translations/null_plugin_tr.ts index 7b696dec5..6451da7e3 100644 --- a/src/plugins/Output/null/translations/null_plugin_tr.ts +++ b/src/plugins/Output/null/translations/null_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished">Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_uk_UA.ts b/src/plugins/Output/null/translations/null_plugin_uk_UA.ts index 38a01e7db..5b82ce535 100644 --- a/src/plugins/Output/null/translations/null_plugin_uk_UA.ts +++ b/src/plugins/Output/null/translations/null_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>Модуль нульового виведення</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>Про модуль нульового виведення</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Модуль нульового виведення для Qmmp</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_zh_CN.ts b/src/plugins/Output/null/translations/null_plugin_zh_CN.ts index 3a18b2ed3..0a81e7f5c 100644 --- a/src/plugins/Output/null/translations/null_plugin_zh_CN.ts +++ b/src/plugins/Output/null/translations/null_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation>无输出插件</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation>关于无输出插件</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation>Qmmp 无输出插件</translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/null/translations/null_plugin_zh_TW.ts b/src/plugins/Output/null/translations/null_plugin_zh_TW.ts index 889aeab2b..7f67a9f46 100644 --- a/src/plugins/Output/null/translations/null_plugin_zh_TW.ts +++ b/src/plugins/Output/null/translations/null_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputNullFactory</name> <message> - <location filename="../outputnullfactory.cpp" line="32"/> + <location filename="../outputnullfactory.cpp" line="31"/> <source>Null Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="56"/> + <location filename="../outputnullfactory.cpp" line="55"/> <source>About Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="57"/> + <location filename="../outputnullfactory.cpp" line="56"/> <source>Qmmp Null Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputnullfactory.cpp" line="58"/> + <location filename="../outputnullfactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss/CMakeLists.txt b/src/plugins/Output/oss/CMakeLists.txt index 48e48f4bf..8a74d65d1 100644 --- a/src/plugins/Output/oss/CMakeLists.txt +++ b/src/plugins/Output/oss/CMakeLists.txt @@ -2,20 +2,8 @@ project(liboss) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) #OSS CHECK_INCLUDE_FILE(sys/soundcard.h SYS_SOUNDCARD_H_FOUND) IF(SYS_SOUNDCARD_H_FOUND) @@ -39,17 +27,16 @@ SET(liboss_HDRS SET(liboss_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(liboss_RCC_SRCS ${liboss_RCCS}) +QT5_ADD_RESOURCES(liboss_RCC_SRCS ${liboss_RCCS}) SET(liboss_UIS settingsdialog.ui ) -QT4_WRAP_UI(liboss_UIS_H ${liboss_UIS}) +QT5_WRAP_UI(liboss_UIS_H ${liboss_UIS}) ADD_LIBRARY(oss MODULE ${liboss_SRCS} ${liboss_UIS_H} ${liboss_RCC_SRCS} ${liboss_HDRS}) add_dependencies(oss qmmp) -target_link_libraries(oss ${QT_LIBRARIES} libqmmp) +target_link_libraries(oss Qt5::Widgets -lqmmp) install(TARGETS oss DESTINATION ${LIB_DIR}/qmmp/Output) - diff --git a/src/plugins/Output/oss/outputossfactory.cpp b/src/plugins/Output/oss/outputossfactory.cpp index cc3cf3dde..f4ed82d9f 100644 --- a/src/plugins/Output/oss/outputossfactory.cpp +++ b/src/plugins/Output/oss/outputossfactory.cpp @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "outputoss.h" @@ -68,5 +67,3 @@ QTranslator *OutputOSSFactory::createTranslator(QObject *parent) translator->load(QString(":/oss_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(oss,OutputOSSFactory) diff --git a/src/plugins/Output/oss/outputossfactory.h b/src/plugins/Output/oss/outputossfactory.h index fc6982f09..23f0b1b49 100644 --- a/src/plugins/Output/oss/outputossfactory.h +++ b/src/plugins/Output/oss/outputossfactory.h @@ -33,6 +33,7 @@ class OutputOSSFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/oss/translations/oss_plugin_bg.ts b/src/plugins/Output/oss/translations/oss_plugin_bg.ts index 91584449d..82aa9a1ac 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_bg.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_cs.ts b/src/plugins/Output/oss/translations/oss_plugin_cs.ts index 234738e0b..58473573b 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_cs.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Modul OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>O modulu OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Výstupní modul Qmmp OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Autor: Jurij Žuravljov <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Založeno na kódu Brada Hughese <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_de.ts b/src/plugins/Output/oss/translations/oss_plugin_de.ts index 8cb9b6ec4..022704a3c 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_de.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS-Modul</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Über OSS-Ausgabemodul</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Qmmp OSS-Ausgabemodul</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Geschrieben von: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Basiert auf Code von: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_el.ts b/src/plugins/Output/oss/translations/oss_plugin_el.ts index 3bb1c4ca9..55e3fa49d 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_el.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Πρόσθετο OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Σχετικά με το πρόσθετο OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Qmmp σχετικά με το πρόσθετο OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Γράφτηκε από τον: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Βασισμένο στον κώδικα του: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_en.ts b/src/plugins/Output/oss/translations/oss_plugin_en.ts index ed278e8f8..fe2798828 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_en.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_es.ts b/src/plugins/Output/oss/translations/oss_plugin_es.ts index 0df9a1d00..dd0e75e51 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_es.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Módulo OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Acerca del módulo de salida OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Módulo de salida OSS para Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Escrito por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Basado en el código de: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_fi.ts b/src/plugins/Output/oss/translations/oss_plugin_fi.ts index 821585e4a..a68f5bb65 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_fi.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS-liitännäinen</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Tietoja - OSS-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Qmmp:n OSS-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Toteutus: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Pohjautuu koodiin, jonka tuotti: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_fr.ts b/src/plugins/Output/oss/translations/oss_plugin_fr.ts index f7071bc28..de413dfbd 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_fr.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Greffon OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>À propos du greffon de sortie OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Greffon de sortie OSS pour Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Écrit par : Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Basé sur du code par Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_gl_ES.ts b/src/plugins/Output/oss/translations/oss_plugin_gl_ES.ts index 15538be4f..e6ae20fb2 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_gl_ES.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Engadido OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Sobre o engadido OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Engadido OSS de Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Escrito por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Baseado no código por: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_he.ts b/src/plugins/Output/oss/translations/oss_plugin_he.ts index 6f83c5b7b..07bf9cb71 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_he.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>תוסף OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>אודות תוסף פלט OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>תוסף פלט OSS של Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>חובר על ידי: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>מבוססת על קוד מאת: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_hu.ts b/src/plugins/Output/oss/translations/oss_plugin_hu.ts index 55cc8b9c9..a6353c493 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_hu.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_id.ts b/src/plugins/Output/oss/translations/oss_plugin_id.ts index 898eded78..fa5d83ad3 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_id.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_id.ts @@ -4,28 +4,28 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Plugin OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Tentang Plugin Keluaran OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Plugin Keluaran OSS Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Ditulis oleh: Yuriy Zhuravlev <slalkerg@gmail.com> </translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Berdasarkan pada kode oleh: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_it.ts b/src/plugins/Output/oss/translations/oss_plugin_it.ts index c139f0ff8..abf4ef261 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_it.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Modulo OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Informazioni sul modulo d'uscita OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Modulo d'uscita OSS per Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Autore: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Basato sul codice scritto da: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_ja.ts b/src/plugins/Output/oss/translations/oss_plugin_ja.ts index 4853b50e1..8a169ccf3 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_ja.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS プラグイン</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>OSS 出力プラグインについて</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>QMMP OSS 出力プラグイン</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>制作: Юрий Журавлёв (Yuriy Zhuravlev) <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Brad Hughes <bhughes@trolltech.com> 氏のコードを基に作成</translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_kk.ts b/src/plugins/Output/oss/translations/oss_plugin_kk.ts index 24f7ff6d6..e788ceb97 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_kk.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_lt.ts b/src/plugins/Output/oss/translations/oss_plugin_lt.ts index 4bf28d6ea..c7b9a5e0d 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_lt.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS įskiepis</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Apie OSS išvesties įrenginį</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Apie Qmmp OSS išvesties įrenginį</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Sukūrė: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Sukurta Brad Hughes <bhughes@trolltech.com> kodo pagrindu</translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_nl.ts b/src/plugins/Output/oss/translations/oss_plugin_nl.ts index 97db43ecb..3db598a84 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_nl.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS Module</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Over de OSS Uitvoer Module</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>OSS Uitvoer Module voor Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Auteur: Yuriy Žuravljov <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Gebasseerd op code van: Brada Hughese <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_pl_PL.ts b/src/plugins/Output/oss/translations/oss_plugin_pl_PL.ts index 102e6c079..e7ee524d3 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_pl_PL.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Wtyczka OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>O wtyczce dźwiękowej OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Wtyczka OSS dla Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Autor: Jurij Žuravljov <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Oparty na kodzie stworzonym przez Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_pt.ts b/src/plugins/Output/oss/translations/oss_plugin_pt.ts index 448704601..c58a28452 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_pt.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Suplemento OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Sobre o suplemento OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Suplemento Qmmp OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Desenvolvido por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Baseado no código de: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_pt_BR.ts b/src/plugins/Output/oss/translations/oss_plugin_pt_BR.ts index d4c24daf7..96690e159 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_pt_BR.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Plugin OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Sobre o plugin OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Plugin Qmmp OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Desenvolvido por: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Baseado no código de: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_ru.ts b/src/plugins/Output/oss/translations/oss_plugin_ru.ts index b6ca5ac91..b5c88980f 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_ru.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Модуль OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>О модуле вывода OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Модуль вывода OSS для Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Разработчик: Юрий Журавлёв <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Основано на коде Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_sk.ts b/src/plugins/Output/oss/translations/oss_plugin_sk.ts index b717c99d9..8d0bd3b1e 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_sk.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_sr_BA.ts b/src/plugins/Output/oss/translations/oss_plugin_sr_BA.ts index 4cd997ba7..14989a1a0 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_sr_BA.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>ОСС прикључак</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>О ОСС прикључку излаза</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Кумп ОСС прикључак излаза</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Аутор: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Заснован на кôду Brad-а Hughes-а <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_sr_RS.ts b/src/plugins/Output/oss/translations/oss_plugin_sr_RS.ts index afd287e2d..5a69d5748 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_sr_RS.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>ОСС прикључак</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>О ОСС прикључку излаза</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Кумп ОСС прикључак излаза</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Аутор: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Заснован на кôду Brad-а Hughes-а <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_tr.ts b/src/plugins/Output/oss/translations/oss_plugin_tr.ts index 1e26d3194..7e78108a6 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_tr.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS Eklentisi</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>OSS Çıktı Eklentisi Hakkında</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Qmmp OSS Çıktı Eklentisi</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Yazan: Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>Brad Hughes <bhughes@trolltech.com> tarafından yazılan kod temellidir</translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_uk_UA.ts b/src/plugins/Output/oss/translations/oss_plugin_uk_UA.ts index 710a905b1..6cdb8628f 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_uk_UA.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>Модуль OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>Про модуль виведення OSS</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Модуль виведення OSS для Qmmp</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>Розробник: Юрій Журавльов <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>На базі коду: Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_zh_CN.ts b/src/plugins/Output/oss/translations/oss_plugin_zh_CN.ts index 0a92797af..bbdb1a09f 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_zh_CN.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS 插件</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>关于 OSS 输出插件</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Qmmp OSS 输出插件</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>作者:Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>源代码基于:Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss/translations/oss_plugin_zh_TW.ts b/src/plugins/Output/oss/translations/oss_plugin_zh_TW.ts index e33c86b56..910277c3e 100644 --- a/src/plugins/Output/oss/translations/oss_plugin_zh_TW.ts +++ b/src/plugins/Output/oss/translations/oss_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>OutputOSSFactory</name> <message> - <location filename="../outputossfactory.cpp" line="38"/> + <location filename="../outputossfactory.cpp" line="37"/> <source>OSS Plugin</source> <translation>OSS 外掛</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="58"/> + <location filename="../outputossfactory.cpp" line="57"/> <source>About OSS Output Plugin</source> <translation>關於 OSS 匯出插件</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="59"/> + <location filename="../outputossfactory.cpp" line="58"/> <source>Qmmp OSS Output Plugin</source> <translation>Qmmp OSS 匯出插件</translation> </message> <message> - <location filename="../outputossfactory.cpp" line="60"/> + <location filename="../outputossfactory.cpp" line="59"/> <source>Written by: Yuriy Zhuravlev <slalkerg@gmail.com></source> <translation>作者:Yuriy Zhuravlev <slalkerg@gmail.com></translation> </message> <message> - <location filename="../outputossfactory.cpp" line="61"/> + <location filename="../outputossfactory.cpp" line="60"/> <source>Based on code by: Brad Hughes <bhughes@trolltech.com></source> <translation>源碼基於:Brad Hughes <bhughes@trolltech.com></translation> </message> diff --git a/src/plugins/Output/oss4/CMakeLists.txt b/src/plugins/Output/oss4/CMakeLists.txt index 7c0d6391b..60b6f7208 100644 --- a/src/plugins/Output/oss4/CMakeLists.txt +++ b/src/plugins/Output/oss4/CMakeLists.txt @@ -3,20 +3,8 @@ project(liboss4) INCLUDE(CheckIncludeFile) INCLUDE(CheckCXXSourceCompiles) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) #oss4 include_directories(/usr/lib/oss/include /usr/local/lib/oss/include) CHECK_INCLUDE_FILE(sys/soundcard.h SYS_SOUNDCARD_H_FOUND) @@ -73,17 +61,17 @@ SET(liboss4_HDRS SET(liboss4_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(liboss4_RCC_SRCS ${liboss4_RCCS}) +QT5_ADD_RESOURCES(liboss4_RCC_SRCS ${liboss4_RCCS}) SET(liboss4_UIS settingsdialog.ui ) IF(OSS4_FOUND) -QT4_WRAP_UI(liboss4_UIS_H ${liboss4_UIS}) +QT5_WRAP_UI(liboss4_UIS_H ${liboss4_UIS}) ADD_LIBRARY(oss4 MODULE ${liboss4_SRCS} ${liboss4_UIS_H} ${liboss4_RCC_SRCS} ${liboss4_HDRS}) add_dependencies(oss4 qmmp) -target_link_libraries(oss4 ${QT_LIBRARIES} libqmmp) +target_link_libraries(oss4 Qt5::Widgets -lqmmp) install(TARGETS oss4 DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(OSS4_FOUND) diff --git a/src/plugins/Output/oss4/outputoss4.cpp b/src/plugins/Output/oss4/outputoss4.cpp index d63f31f4b..b353e16b5 100644 --- a/src/plugins/Output/oss4/outputoss4.cpp +++ b/src/plugins/Output/oss4/outputoss4.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2014 by Ilya Kotov * + * Copyright (C) 2010-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * diff --git a/src/plugins/Output/oss4/outputoss4factory.cpp b/src/plugins/Output/oss4/outputoss4factory.cpp index 13894a697..76787e1aa 100644 --- a/src/plugins/Output/oss4/outputoss4factory.cpp +++ b/src/plugins/Output/oss4/outputoss4factory.cpp @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "outputoss4.h" @@ -67,5 +66,3 @@ QTranslator *OutputOSS4Factory::createTranslator(QObject *parent) translator->load(QString(":/oss4_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(oss4,OutputOSS4Factory) diff --git a/src/plugins/Output/oss4/outputoss4factory.h b/src/plugins/Output/oss4/outputoss4factory.h index bddb44202..e8d8574f7 100644 --- a/src/plugins/Output/oss4/outputoss4factory.h +++ b/src/plugins/Output/oss4/outputoss4factory.h @@ -32,6 +32,7 @@ class OutputOSS4Factory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_bg.ts b/src/plugins/Output/oss4/translations/oss4_plugin_bg.ts index 4189eb305..f39f52839 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_bg.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_cs.ts b/src/plugins/Output/oss4/translations/oss4_plugin_cs.ts index 42bd17e96..b30c0464d 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_cs.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Modul OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>O modulu OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Výstupní modul Qmmp pro OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_de.ts b/src/plugins/Output/oss4/translations/oss4_plugin_de.ts index 2768a6895..40ca42a52 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_de.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4-Modul</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Über OSS4-Ausgabemodul</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Qmmp OSS4-Ausgabemodul</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_el.ts b/src/plugins/Output/oss4/translations/oss4_plugin_el.ts index 6d20bfb93..7fdb25a55 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_el.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Πρόσθετο OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Σχετικά με το πρόσθετο OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Qmmp σχετικά με το πρόσθετο OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_en.ts b/src/plugins/Output/oss4/translations/oss4_plugin_en.ts index 0929e337c..9bce1c815 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_en.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_es.ts b/src/plugins/Output/oss4/translations/oss4_plugin_es.ts index e74f6e8a0..0922c7072 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_es.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Módulo OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Acerca del módulo de salida OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Módulo de salida OSS4 para Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_fi.ts b/src/plugins/Output/oss4/translations/oss4_plugin_fi.ts index 8fa9306c3..4325406ed 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_fi.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4-liitännäinen</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Tietoja - OSS4-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Qmmp:n OSS4-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_fr.ts b/src/plugins/Output/oss4/translations/oss4_plugin_fr.ts index 53f4d9fb8..73794dff7 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_fr.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Greffon OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>À propos du greffon de sortie OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Greffon de sortie OSS4 pour Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_gl_ES.ts b/src/plugins/Output/oss4/translations/oss4_plugin_gl_ES.ts index d95f01669..30b17e3c2 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_gl_ES.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Engadido OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Sobre o engadido OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Engadido OSS4 de Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_he.ts b/src/plugins/Output/oss4/translations/oss4_plugin_he.ts index ea2b0115d..dbe7a6e1d 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_he.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>תוסף OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>אודות תוסף פלט OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>תוסף פלט OSS4 של Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_hu.ts b/src/plugins/Output/oss4/translations/oss4_plugin_hu.ts index 621876a57..7e1c72332 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_hu.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_id.ts b/src/plugins/Output/oss4/translations/oss4_plugin_id.ts index dfcfdc6c9..e630f32b3 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_id.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Plugin OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Tentang Plugin Keluaran OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Plugin Keluaran OSS4 Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_it.ts b/src/plugins/Output/oss4/translations/oss4_plugin_it.ts index 84c91da0c..6c9dad59b 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_it.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_ja.ts b/src/plugins/Output/oss4/translations/oss4_plugin_ja.ts index 5846f90af..1a81b1c49 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_ja.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4 プラグイン</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>OSS4 プラグインについて</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>QMMP OSS4 プラグイン</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_kk.ts b/src/plugins/Output/oss4/translations/oss4_plugin_kk.ts index bfbef0879..bd1dd8444 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_kk.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_lt.ts b/src/plugins/Output/oss4/translations/oss4_plugin_lt.ts index 01f0d45c1..24ebe2f08 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_lt.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4 Įskiepis</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Apie OSS4 išvesties įskiepį</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Qmmp OSS4 išvesties įskiepis</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_nl.ts b/src/plugins/Output/oss4/translations/oss4_plugin_nl.ts index 627ad8597..a6bafffe0 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_nl.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4 Module</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Over de OSS4 Uitvoer Module</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>OSS4 Uitvoer Module voor Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_pl_PL.ts b/src/plugins/Output/oss4/translations/oss4_plugin_pl_PL.ts index ed34a01db..2f8c0e628 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_pl_PL.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Wtyczka OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>O wtyczce wyjściowej OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Wtyczka OSS4 dla Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_pt.ts b/src/plugins/Output/oss4/translations/oss4_plugin_pt.ts index 312704593..d3b8f919f 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_pt.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Suplemento OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Sobre o suplemento OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Suplemento Qmmp OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_pt_BR.ts b/src/plugins/Output/oss4/translations/oss4_plugin_pt_BR.ts index e35978675..6e23be8c8 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_pt_BR.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Plugin OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Sobre o plugin OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Plugin Qmmp OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_ru.ts b/src/plugins/Output/oss4/translations/oss4_plugin_ru.ts index 5f83da321..1d9c04e00 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_ru.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Модуль OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Модуль поддержки OSS4 для Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Модуль OSS4 для Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_sk.ts b/src/plugins/Output/oss4/translations/oss4_plugin_sk.ts index addef2fb7..d82b6645d 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_sk.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_sr_BA.ts b/src/plugins/Output/oss4/translations/oss4_plugin_sr_BA.ts index 934b01fb4..e7286ef96 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_sr_BA.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>ОСС4 прикључак</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>О ОСС4 прикључку излаза</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Кумп ОСС4 прикључак излаза</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_sr_RS.ts b/src/plugins/Output/oss4/translations/oss4_plugin_sr_RS.ts index ae01e87e5..593ccb285 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_sr_RS.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>ОСС4 прикључак</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>О ОСС4 прикључку излаза</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Кумп ОСС4 прикључак излаза</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_tr.ts b/src/plugins/Output/oss4/translations/oss4_plugin_tr.ts index 1552659ba..8e3d7b468 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_tr.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_uk_UA.ts b/src/plugins/Output/oss4/translations/oss4_plugin_uk_UA.ts index 8e21ea2d4..7a2017f58 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_uk_UA.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>Модуль OSS4</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>Модуль підтримки OSS4 для Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Модуль OSS4 для Qmmp</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_zh_CN.ts b/src/plugins/Output/oss4/translations/oss4_plugin_zh_CN.ts index 84c5f0316..70eb0db4d 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_zh_CN.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4 插件</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>关于 OSS4 输出插件</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Qmmp OSS4 输出插件</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/oss4/translations/oss4_plugin_zh_TW.ts b/src/plugins/Output/oss4/translations/oss4_plugin_zh_TW.ts index bf2fc86a1..38194632d 100644 --- a/src/plugins/Output/oss4/translations/oss4_plugin_zh_TW.ts +++ b/src/plugins/Output/oss4/translations/oss4_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputOSS4Factory</name> <message> - <location filename="../outputoss4factory.cpp" line="38"/> + <location filename="../outputoss4factory.cpp" line="37"/> <source>OSS4 Plugin</source> <translation>OSS4 外掛</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="58"/> + <location filename="../outputoss4factory.cpp" line="57"/> <source>About OSS4 Output Plugin</source> <translation>關於 OSS4 輸出插件</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="59"/> + <location filename="../outputoss4factory.cpp" line="58"/> <source>Qmmp OSS4 Output Plugin</source> <translation>Qmmp OSS4 輸出插件</translation> </message> <message> - <location filename="../outputoss4factory.cpp" line="60"/> + <location filename="../outputoss4factory.cpp" line="59"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/CMakeLists.txt b/src/plugins/Output/pulseaudio/CMakeLists.txt index d482a3b8f..38ab57143 100644 --- a/src/plugins/Output/pulseaudio/CMakeLists.txt +++ b/src/plugins/Output/pulseaudio/CMakeLists.txt @@ -1,20 +1,7 @@ project(libpulseaudio) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -37,7 +24,7 @@ SET(libpulseaudio_HDRS SET(libpulseaudio_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libpulseaudio_RCC_SRCS ${libpulseaudio_RCCS}) +QT5_ADD_RESOURCES(libpulseaudio_RCC_SRCS ${libpulseaudio_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -47,7 +34,7 @@ IF(PULSE_FOUND) ADD_LIBRARY(pulseaudio MODULE ${libpulseaudio_SRCS} ${libpulseaudio_UIS_H} ${libpulseaudio_RCC_SRCS} ${libpulseaudio_HDRS}) add_dependencies(pulseaudio qmmp) -target_link_libraries(pulseaudio ${QT_LIBRARIES} libqmmp ${PULSE_LDFLAGS}) +target_link_libraries(pulseaudio Qt5::Widgets -lqmmp ${PULSE_LDFLAGS}) install(TARGETS pulseaudio DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(PULSE_FOUND) diff --git a/src/plugins/Output/pulseaudio/outputpulseaudiofactory.cpp b/src/plugins/Output/pulseaudio/outputpulseaudiofactory.cpp index 1b669c9a5..20e7af32c 100644 --- a/src/plugins/Output/pulseaudio/outputpulseaudiofactory.cpp +++ b/src/plugins/Output/pulseaudio/outputpulseaudiofactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2016 by Ilya Kotov * + * Copyright (C) 2007-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "outputpulseaudio.h" #include "outputpulseaudiofactory.h" @@ -65,5 +64,3 @@ QTranslator *OutputPulseAudioFactory::createTranslator(QObject *parent) translator->load(QString(":/pulseaudio_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(pulseaudio, OutputPulseAudioFactory) diff --git a/src/plugins/Output/pulseaudio/outputpulseaudiofactory.h b/src/plugins/Output/pulseaudio/outputpulseaudiofactory.h index 3a2232b8d..64eda4ae7 100644 --- a/src/plugins/Output/pulseaudio/outputpulseaudiofactory.h +++ b/src/plugins/Output/pulseaudio/outputpulseaudiofactory.h @@ -34,6 +34,7 @@ class OutputPulseAudioFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_bg.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_bg.ts index 8121f20a0..3fae42e24 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_bg.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_cs.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_cs.ts index 3fddc246b..86ec28f3d 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_cs.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Modul PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>O modulu PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Výstupní modul Qmmp PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_de.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_de.ts index 19690502f..bcbea5f1a 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_de.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio-Modul</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Über PulseAudio-Ausgabemodul</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Qmmp PulseAudio-Ausgabemodul</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_el.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_el.ts index 067b18288..013900996 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_el.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Πρόσθετο PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Σχετικά με το πρόσθετο εξόδου PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Qmmp πρόσθετο εξόδου PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_en.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_en.ts index c6da8ccfa..04d79dd3e 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_en.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_es.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_es.ts index 4d8c46391..c757f6725 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_es.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Módulo PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Acerca del módulo de salida PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Módulo de salida PulseAudio para Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fi.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fi.ts index 23e8df911..0fad87183 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fi.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio-liitännäinen</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Tietoja - PulseAudio-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Qmmp:n PulseAudio-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fr.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fr.ts index f5a7cc9b7..fcf843b36 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fr.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Greffon PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>À propos du greffon de sortie PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Greffon de sortie PulseAudio pour Qmm</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_gl_ES.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_gl_ES.ts index d970e88b7..c40bac8ab 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_gl_ES.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Engadido PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Sobre o engadido PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Engadido para PulseAudio de Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_he.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_he.ts index 6895b0808..b23bdfe4f 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_he.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>תוסף PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>אודות תוסף פלט PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>תוסף פלט PulseAudio של Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_hu.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_hu.ts index 2a9d0b881..096410ee0 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_hu.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_id.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_id.ts index c1a1993ee..5c54b40fd 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_id.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Plugin PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Tentang Plugin Keluaran PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Plugin Keluaran PulseAudio Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_it.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_it.ts index e4d4db8db..fe184ccb5 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_it.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>MOdulo PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Informazioni sul Modulo d'uscita PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Modulo d'uscita PulseAudio per Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ja.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ja.ts index f1f51a82d..ab47bdd01 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ja.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio プラグイン</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>PulseAudio 出力プラグインについて</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>QMMP PulseAudio 出力プラグイン</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_kk.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_kk.ts index 4c86f24c1..97d10f409 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_kk.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_lt.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_lt.ts index a3d7467db..66120e01c 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_lt.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio įskiepis</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Apie PulseAudio įskiepį</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>PulseAudio Qmmp įskiepis</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_nl.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_nl.ts index 47f984c6b..9bce5ac4d 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_nl.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio Module</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Over de PulseAudio Uitvoer Module</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>PulseAudio Audio Uitvoer Module voor Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pl_PL.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pl_PL.ts index e3454ea6c..d7060ee80 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pl_PL.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Wtyczka PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>O wtyczce PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Wtyczka PulseAudio dla Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt.ts index 092b7bf0f..b7f3836f2 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Suplemento PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Sobre o suplemento PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Suplemento Qmmp PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt_BR.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt_BR.ts index 409d77155..e2467c073 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt_BR.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Plugin PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Sobre o plugin PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Plugin Qmmp PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ru.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ru.ts index aa34e5760..bd3bfafa4 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ru.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Модуль PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>О модуле вывода PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Модуль вывода PulseAudio для Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sk.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sk.ts index 97ce52883..84e6d7a6b 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sk.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_BA.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_BA.ts index 76c13edb7..e1fa3f7c6 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_BA.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>ПулсАудио прикључак</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>О ПулсАудио прикључку излаза</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Кумп ПулсАудио прикључак излаза</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_RS.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_RS.ts index a3f40f879..ac61b5df9 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_RS.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>ПулсАудио прикључак</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>О ПулсАудио прикључку излаза</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Кумп ПулсАудио прикључак излаза</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_tr.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_tr.ts index 71fc15429..9f5799234 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_tr.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio Eklentisi</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>PulseAudio Çıkışı Eklentisi Hakkında</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Qmmp PulseAudio Çıkışı Eklentisi</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_uk_UA.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_uk_UA.ts index 9b6d4546f..e9497994b 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_uk_UA.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>Модуль PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>Про модуль виведення PulseAudio</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Модуль виведення PulseAudio для Qmmp</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_CN.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_CN.ts index c617b1870..a452577e6 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_CN.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio 插件</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>关于 PulseAudio 输出插件</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Qmmp PulseAudio 输出插件</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_TW.ts b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_TW.ts index 2e883e413..9cad8bac2 100644 --- a/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_TW.ts +++ b/src/plugins/Output/pulseaudio/translations/pulseaudio_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputPulseAudioFactory</name> <message> - <location filename="../outputpulseaudiofactory.cpp" line="32"/> + <location filename="../outputpulseaudiofactory.cpp" line="31"/> <source>PulseAudio Plugin</source> <translation>PulseAudio 外掛</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="56"/> + <location filename="../outputpulseaudiofactory.cpp" line="55"/> <source>About PulseAudio Output Plugin</source> <translation>關於 PulseAudio 匯出插件</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="57"/> + <location filename="../outputpulseaudiofactory.cpp" line="56"/> <source>Qmmp PulseAudio Output Plugin</source> <translation>Qmmp PulseAudio 匯出插件</translation> </message> <message> - <location filename="../outputpulseaudiofactory.cpp" line="58"/> + <location filename="../outputpulseaudiofactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/CMakeLists.txt b/src/plugins/Output/qtmultimedia/CMakeLists.txt index e5bb96915..0096f65e2 100644 --- a/src/plugins/Output/qtmultimedia/CMakeLists.txt +++ b/src/plugins/Output/qtmultimedia/CMakeLists.txt @@ -1,24 +1,7 @@ project(libqtmultimedia) -SET(QT_USE_QTMULTIMEDIA TRUE) -INCLUDE(FindQt4) -INCLUDE(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -29,26 +12,20 @@ SET(libqtmultimedia_SRCS settingsdialog.cpp ) -SET(libqtmultimedia_HDRS - outputqtmultimedia.h -) - SET(libqtmultimedia_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libqtmultimedia_RCC_SRCS ${libqtmultimedia_RCCS}) +QT5_ADD_RESOURCES(libqtmultimedia_RCC_SRCS ${libqtmultimedia_RCCS}) SET(libqtmultimedia_UIS settingsdialog.ui ) -QT4_WRAP_UI(libqtmultimedia_UIS_H ${libqtmultimedia_UIS}) +QT5_WRAP_UI(libqtmultimedia_UIS_H ${libqtmultimedia_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) -IF(${QT_QTMULTIMEDIA_FOUND}) - ADD_LIBRARY(qtmultimedia MODULE ${libqtmultimedia_SRCS} ${libqtmultimedia_UIS_H} ${libqtmultimedia_RCC_SRCS} ${libqtmultimedia_HDRS}) - add_dependencies(qtmultimedia qmmp) - target_link_libraries(qtmultimedia ${QT_LIBRARIES} libqmmp) - install(TARGETS qtmultimedia DESTINATION ${LIB_DIR}/qmmp/Output) -ENDIF(${QT_QTMULTIMEDIA_FOUND}) +ADD_LIBRARY(qtmultimedia MODULE ${libqtmultimedia_SRCS} ${libqtmultimedia_UIS_H} ${libqtmultimedia_RCC_SRCS}) +add_dependencies(qtmultimedia qmmp) +target_link_libraries(qtmultimedia Qt5::Widgets Qt5::Multimedia -lqmmp) +install(TARGETS qtmultimedia DESTINATION ${LIB_DIR}/qmmp/Output) diff --git a/src/plugins/Output/qtmultimedia/outputqtmultimedia.cpp b/src/plugins/Output/qtmultimedia/outputqtmultimedia.cpp index 1f39ecc60..7de68b081 100644 --- a/src/plugins/Output/qtmultimedia/outputqtmultimedia.cpp +++ b/src/plugins/Output/qtmultimedia/outputqtmultimedia.cpp @@ -19,7 +19,8 @@ ***************************************************************************/ #include "outputqtmultimedia.h" - +#include <qmmp/audioparameters.h> +#include <QMetaObject> #include <QAudioOutput> #include <QAudioFormat> #include <QAudioDeviceInfo> @@ -38,114 +39,125 @@ OutputQtMultimedia::~OutputQtMultimedia() bool OutputQtMultimedia::initialize(quint32 freq, ChannelMap map, Qmmp::AudioFormat format) { - QAudioFormat qformat; - qformat.setCodec("audio/pcm"); - qformat.setFrequency(freq); - qformat.setByteOrder(QAudioFormat::LittleEndian); - qformat.setChannels(map.size()); - qformat.setSampleType(QAudioFormat::SignedInt); - - //Size of sample representation in input data. For 24-bit is 4, high byte is ignored. - qint64 bytes_per_sample = 0; - - switch (format) - { - case Qmmp::PCM_S8: - qformat.setSampleSize(8); - bytes_per_sample = 1; - break; - case Qmmp::PCM_S16LE: - qformat.setSampleSize(16); - bytes_per_sample = 2; - break; - case Qmmp::PCM_S24LE: - qformat.setSampleSize(24); - bytes_per_sample = 4; - break; - case Qmmp::PCM_S32LE: - qformat.setSampleSize(32); - bytes_per_sample = 4; - break; - default: - break; - } - - if (!qformat.isValid()) - return false; - - m_bytes_per_second = bytes_per_sample * freq * qformat.channels(); - - const QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - const QString saved_device_name = settings.value("QTMULTIMEDIA/device").toString(); - - QAudioDeviceInfo device_info; - if (!saved_device_name.isEmpty()) - { - const QList<QAudioDeviceInfo> devices = QAudioDeviceInfo::availableDevices(QAudio::AudioOutput); - foreach (const QAudioDeviceInfo &info, devices) - { - if (info.deviceName()==saved_device_name) - { - if (info.isFormatSupported(qformat)) - { - device_info = info; - break; - } - else - qDebug() << "OutputQtMultimedia: Output device: " << saved_device_name << " is not supported"; - } - } - } - - if (device_info.isNull()) - { - device_info = QAudioDeviceInfo::defaultOutputDevice(); - if (!device_info.isFormatSupported(qformat)) - return false; - } - - qDebug() << "OutputQtMultimedia: Using output device: " << device_info.deviceName(); - - m_output.reset(new QAudioOutput(device_info, qformat)); - m_buffer = m_output->start(); - - configure(freq, map, format); - return true; + QAudioFormat qformat; + qformat.setCodec("audio/pcm"); + qformat.setSampleRate(freq); + qformat.setByteOrder(QAudioFormat::LittleEndian); + qformat.setChannelCount(map.size()); + qformat.setSampleType(QAudioFormat::SignedInt); + + //Size of sample representation in input data. For 24-bit is 4, high byte is ignored. + qint64 bytes_per_sample = AudioParameters::sampleSize(format); + + switch (format) + { + case Qmmp::PCM_S8: + qformat.setSampleSize(8); + break; + case Qmmp::PCM_S16LE: + qformat.setSampleSize(16); + break; + case Qmmp::PCM_S24LE: + qformat.setSampleSize(24); + break; + case Qmmp::PCM_S32LE: + qformat.setSampleSize(32); + break; + default: + break; + } + + if (!qformat.isValid()) + return false; + + const QSettings settings(Qmmp::configFile(), QSettings::IniFormat); + const QString saved_device_name = settings.value("QTMULTIMEDIA/device").toString(); + + m_bytes_per_second = bytes_per_sample * freq * qformat.channelCount(); + + QAudioDeviceInfo device_info; + if (!saved_device_name.isEmpty()) + { + const QList<QAudioDeviceInfo> devices = QAudioDeviceInfo::availableDevices(QAudio::AudioOutput); + foreach (const QAudioDeviceInfo &info, devices) + { + if (info.deviceName()==saved_device_name) + { + if (info.isFormatSupported(qformat)) + { + device_info = info; + break; + } + else + qDebug() << "OutputQtMultimedia: Output device: " << saved_device_name << " is not supported"; + } + } + } + + if (device_info.isNull()) + { + device_info = QAudioDeviceInfo::defaultOutputDevice(); + if (!device_info.isFormatSupported(qformat)) + return false; + } + + qDebug() << "OutputQtMultimedia: Using output device: " << device_info.deviceName(); + + m_output.reset(new QAudioOutput(device_info, qformat)); + m_buffer = m_output->start(); + m_control.reset(new OutputControl(m_output.data())); + + configure(freq, map, format); + return true; } qint64 OutputQtMultimedia::latency() { - return 0; + return 0; } qint64 OutputQtMultimedia::writeAudio(unsigned char *data, qint64 maxSize) { - if (!m_output->bytesFree()) { - //If the buffer is full, waiting for some bytes to be played: - //trying to play maxSize bytes, but not more than half of buffer. - usleep(qMin(maxSize, static_cast<qint64>(m_output->bufferSize() / 2)) * 1000000 / m_bytes_per_second); - } - return m_buffer->write((const char*)data, maxSize); + if (!m_output->bytesFree()) { + //If the buffer is full, waiting for some bytes to be played: + //trying to play maxSize bytes, but not more than half of buffer. + usleep(qMin(maxSize, static_cast<qint64>(m_output->bufferSize() / 2)) * 1000000 / m_bytes_per_second); + } + return m_buffer->write((const char*)data, maxSize); } void OutputQtMultimedia::drain() { - m_buffer->waitForBytesWritten(-1); + m_buffer->waitForBytesWritten(-1); } void OutputQtMultimedia::reset() { - m_buffer->reset(); - m_buffer = m_output->start(); + m_buffer->reset(); } void OutputQtMultimedia::suspend() { - m_output->suspend(); + QMetaObject::invokeMethod(m_control.data(), "suspend", Qt::QueuedConnection); } void OutputQtMultimedia::resume() { - m_output->resume(); + QMetaObject::invokeMethod(m_control.data(), "resume", Qt::QueuedConnection); +} + +OutputControl::OutputControl(QAudioOutput *o) +{ + m_output = o; +} + +void OutputControl::suspend() +{ + m_output->suspend(); +} + +void OutputControl::resume() +{ + m_output->resume(); } diff --git a/src/plugins/Output/qtmultimedia/outputqtmultimedia.h b/src/plugins/Output/qtmultimedia/outputqtmultimedia.h index ea69b9b3f..f09a4307b 100644 --- a/src/plugins/Output/qtmultimedia/outputqtmultimedia.h +++ b/src/plugins/Output/qtmultimedia/outputqtmultimedia.h @@ -23,12 +23,14 @@ #include <qmmp/output.h> #include <QScopedPointer> +#include <QObject> /** @author Ivan Ponomarev ivantrue@gmail.com */ class QAudioOutput; class QIODevice; +class OutputControl; class OutputQtMultimedia : public Output { @@ -46,9 +48,26 @@ public: private: QScopedPointer<QAudioOutput> m_output; + QScopedPointer<OutputControl> m_control; QIODevice *m_buffer; qint64 m_bytes_per_second; }; +class OutputControl : public QObject +{ + Q_OBJECT + +public: + OutputControl(QAudioOutput *o); + +public slots: + void suspend(); + void resume(); + +private: + QAudioOutput *m_output; + +}; + #endif // OUTPUTQTMULTIMEDIA_H diff --git a/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.cpp b/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.cpp index 3a2570f8c..402617f96 100644 --- a/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.cpp +++ b/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.cpp @@ -18,12 +18,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ - #include "outputqtmultimediafactory.h" #include "settingsdialog.h" + #include <QMessageBox> #include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "outputqtmultimedia.h" @@ -68,5 +67,3 @@ QTranslator *OutputQtMultimediaFactory::createTranslator(QObject *parent) translator->load(QString(":/qtmultimedia_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(qtmultimedia, OutputQtMultimediaFactory) diff --git a/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.h b/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.h index d8ccbf97c..6a0a86ea4 100644 --- a/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.h +++ b/src/plugins/Output/qtmultimedia/outputqtmultimediafactory.h @@ -33,6 +33,7 @@ class OutputQtMultimediaFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_bg.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_bg.ts index 4a1bf6cec..7cb7bf8df 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_bg.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_cs.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_cs.ts index 8185c96db..89e13d218 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_cs.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_de.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_de.ts index 17ab44710..81af2c2b3 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_de.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Qt-Multimedia-Modul</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Über Qt-Multimedia-Ausgabemodul</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Qmmp Qt-Multimedia-Ausgabemodul</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Geschrieben von: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_el.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_el.ts index b5dc898eb..a22bc7f1b 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_el.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Πρόσθετο πολυμέσων Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Περί του πρόσθετου πολυμέσων Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Πρόσθετο εξόδου πολυμέσων Qt Qmmp</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Γράφτηκε από τον: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_en.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_en.ts index 2f0efbaad..ef56cc519 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_en.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_es.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_es.ts index 392e609b2..12e595bd8 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_es.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Módulo multimedios Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Acerca del Módulo de Salida de Multimedios Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Módulo de Salida de Multimedios Qt de Qmmp</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Escrito por: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fi.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fi.ts index 0c2b57556..7bd6b708c 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fi.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Qt Multimedia -liitännäinen</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Tietoja - Qt Multimedia -ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Qmmp:n Qt Multimedia -ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Toteutus: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fr.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fr.ts index efdd46268..8dad7ba3f 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fr.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Plugin Multimédia Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>A propos du Plugin de sortie Multimédia Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Plugin de sortie Multimédia Qt de Qmmp</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Ecrit par: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_gl_ES.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_gl_ES.ts index e2c4f7282..70d6bf94e 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_gl_ES.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Plugin Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Acerca da saida do plugin Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Qmmp Qt Multimedia plugin de saida</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Escrito por: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_he.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_he.ts index 0295c5691..2c3d9d35e 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_he.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>תוסף מולטימדיה Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>אודות תוסף פלט מולטימדיה Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_hu.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_hu.ts index fb07093bb..4424592cb 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_hu.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_id.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_id.ts index c569d2a63..43a7b1886 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_id.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Plugin Multimedia Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Tentang Plugin Keluaran Multimedia Qt</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Plugin Keluaran Multimedia Qt Qmmp</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Ditulis oleh: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_it.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_it.ts index 785a99222..51edb8123 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_it.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ja.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ja.ts index aa6b09b04..5d790ed7e 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ja.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Qt Multimedia プラグイン</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Qt Multimedia 出力プラグインについて</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>QMMP Qt Multimedia 出力プラグイン</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>制作: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_kk.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_kk.ts index 1d0681bf9..2c6e6b23c 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_kk.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_lt.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_lt.ts index 0d62627e0..45caac7bb 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_lt.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_nl.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_nl.ts index 85cf4b421..06ef013f3 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_nl.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pl_PL.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pl_PL.ts index ee672a3d3..f95364eac 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pl_PL.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt.ts index 784ae4ebf..10ee7993f 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Suplemento Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Sobre o suplemento Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Suplemento Qmmp Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Desenvolvido por: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt_BR.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt_BR.ts index 63bc515dc..a843266f0 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt_BR.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Plugin Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Sobre o plugin Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Plugin Qmmp Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Desenvolvido por: Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ru.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ru.ts index e1fb2bd19..fd46c0943 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ru.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Модуль Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>О модуле вывода Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Модуль вывода Qt Multimedia для Qmmp</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Разработчик: Иван Пономарев <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sk.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sk.ts index ecab2652b..8414f8317 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sk.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_BA.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_BA.ts index de31d0ab9..3b3f03713 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_BA.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_RS.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_RS.ts index 00225c32b..8da85bc41 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_RS.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_tr.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_tr.ts index a80534efc..68d893525 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_tr.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_uk_UA.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_uk_UA.ts index 7603c68d2..bcc4097ef 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_uk_UA.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Модуль Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>Про модуль виведення Qt Multimedia</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Модуль виведення Qt Multimedia для Qmmp</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>Розробник: Іван Пономарьов <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_CN.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_CN.ts index 383a44408..b28e87ae1 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_CN.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation>Qt 多媒体插件</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation>关于 Qt 多媒体输出插件</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation>Qmmp Qt 多媒体输出插件</translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation>作者:Ivan Ponomarev <ivantrue@gmail.com></translation> </message> diff --git a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_TW.ts b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_TW.ts index 0be9adddc..bcbee312b 100644 --- a/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_TW.ts +++ b/src/plugins/Output/qtmultimedia/translations/qtmultimedia_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputQtMultimediaFactory</name> <message> - <location filename="../outputqtmultimediafactory.cpp" line="34"/> + <location filename="../outputqtmultimediafactory.cpp" line="33"/> <source>Qt Multimedia Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="59"/> + <location filename="../outputqtmultimediafactory.cpp" line="58"/> <source>About Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="60"/> + <location filename="../outputqtmultimediafactory.cpp" line="59"/> <source>Qmmp Qt Multimedia Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputqtmultimediafactory.cpp" line="61"/> + <location filename="../outputqtmultimediafactory.cpp" line="60"/> <source>Written by: Ivan Ponomarev <ivantrue@gmail.com></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/CMakeLists.txt b/src/plugins/Output/shout/CMakeLists.txt index a53b267f1..f245ed1c4 100644 --- a/src/plugins/Output/shout/CMakeLists.txt +++ b/src/plugins/Output/shout/CMakeLists.txt @@ -1,20 +1,7 @@ project(libshout) -# qt plugin -ADD_DEFINITIONS(-Wall) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -34,14 +21,14 @@ SET(libshout_SRCS SET(libshout_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libshout_RCC_SRCS ${libshout_RCCS}) +QT5_ADD_RESOURCES(libshout_RCC_SRCS ${libshout_RCCS}) # user interface SET(libshout_UIS settingsdialog.ui ) -QT4_WRAP_UI(libshout_UIS_H ${libshout_UIS}) +QT5_WRAP_UI(libshout_UIS_H ${libshout_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -49,6 +36,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(SHOUT_FOUND) ADD_LIBRARY(shout MODULE ${libshout_SRCS} ${libshout_UIS_H} ${libshout_RCC_SRCS}) add_dependencies(shout qmmp) -target_link_libraries(shout ${QT_LIBRARIES} libqmmp ${SHOUT_LDFLAGS}) +target_link_libraries(shout Qt5::Widgets -lqmmp ${SHOUT_LDFLAGS}) install(TARGETS shout DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(SHOUT_FOUND) diff --git a/src/plugins/Output/shout/outputshoutfactory.cpp b/src/plugins/Output/shout/outputshoutfactory.cpp index d42289156..c186e99cf 100644 --- a/src/plugins/Output/shout/outputshoutfactory.cpp +++ b/src/plugins/Output/shout/outputshoutfactory.cpp @@ -29,7 +29,6 @@ #include "settingsdialog.h" #include "outputshoutfactory.h" - OutputShoutFactory::OutputShoutFactory() { m_connection = new ShoutClient(qApp); @@ -76,5 +75,3 @@ QTranslator *OutputShoutFactory::createTranslator(QObject *parent) translator->load(QString(":/shout_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(shout, OutputShoutFactory) diff --git a/src/plugins/Output/shout/outputshoutfactory.h b/src/plugins/Output/shout/outputshoutfactory.h index eec7d3aaf..bd3683d02 100644 --- a/src/plugins/Output/shout/outputshoutfactory.h +++ b/src/plugins/Output/shout/outputshoutfactory.h @@ -32,6 +32,7 @@ class ShoutClient; class OutputShoutFactory : public QObject, OutputFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0") Q_INTERFACES(OutputFactory) public: diff --git a/src/plugins/Output/shout/translations/shout_plugin_bg.ts b/src/plugins/Output/shout/translations/shout_plugin_bg.ts index f509eecfe..7ff77759f 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_bg.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_cs.ts b/src/plugins/Output/shout/translations/shout_plugin_cs.ts index ae42c68b3..08b39b6c8 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_cs.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_de.ts b/src/plugins/Output/shout/translations/shout_plugin_de.ts index 6fffc5f05..2b251ee10 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_de.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Icecast-Modul</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Über Icecast-Ausgabemodul</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Qmmp Icecast-Ausgabemodul</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Kompiliert gegen libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_el.ts b/src/plugins/Output/shout/translations/shout_plugin_el.ts index bf56b7f7a..fa8c41946 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_el.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Πρόσθετο Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Σχετικά με το πρόσθετο εξόδου Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Πρόσθετο εξόδου Icecast Qmmp</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Μεταγλωττίστηκε χρησιμοποιώντας libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_en.ts b/src/plugins/Output/shout/translations/shout_plugin_en.ts index 637d5f40b..c8e7f4e4e 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_en.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_es.ts b/src/plugins/Output/shout/translations/shout_plugin_es.ts index cc33c5f06..379d6d1f7 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_es.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Módulo Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Acerca del Módulo de Salida Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Módulo de Salida Icecast de Qmmp</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Compilado contra libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_fi.ts b/src/plugins/Output/shout/translations/shout_plugin_fi.ts index dd8fbaacb..332a2f333 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_fi.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Icecast-liitännäinen</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Tietoja - Icecast-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Qmmp:n Icecast-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Käännetty vasten libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_fr.ts b/src/plugins/Output/shout/translations/shout_plugin_fr.ts index 7b1fe7919..5bb8dae9c 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_fr.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Plugin Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>A propos de la sortie du plugin Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Sortie du plugin Qmmp Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Compilé avec la mauvaise version de libshout -%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_gl_ES.ts b/src/plugins/Output/shout/translations/shout_plugin_gl_ES.ts index bd9f7ee0e..ccf08378b 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_gl_ES.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Plugin Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Acerca do plugin de saida Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Plugin de saida Qmmp Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Compilando con libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_he.ts b/src/plugins/Output/shout/translations/shout_plugin_he.ts index 0691bdccc..0b867f723 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_he.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_hu.ts b/src/plugins/Output/shout/translations/shout_plugin_hu.ts index 71c3eaf9e..5fd6bd917 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_hu.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_id.ts b/src/plugins/Output/shout/translations/shout_plugin_id.ts index 2dbf59dbb..d67d6c8c1 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_id.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Plugin Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Tentang Plugin Keluaran Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Plugin Keluaran Icecast Qmmp</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Dikompilasi terhadap libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_it.ts b/src/plugins/Output/shout/translations/shout_plugin_it.ts index 969287647..d8a84b558 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_it.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_ja.ts b/src/plugins/Output/shout/translations/shout_plugin_ja.ts index ea71ef70d..4f45cf047 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_ja.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Icecast プラグイン</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Icecast 出力プラグインについて</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>QMMP Icecast 出力プラグイン</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>libshout-%1 を使用してコンパイル</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_kk.ts b/src/plugins/Output/shout/translations/shout_plugin_kk.ts index 19c2f3289..06b38c57a 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_kk.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_lt.ts b/src/plugins/Output/shout/translations/shout_plugin_lt.ts index 29bb99bf3..afb53ec37 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_lt.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_nl.ts b/src/plugins/Output/shout/translations/shout_plugin_nl.ts index c87f38efd..89eafc1ac 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_nl.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_pl_PL.ts b/src/plugins/Output/shout/translations/shout_plugin_pl_PL.ts index e93ddf74d..68e5d2901 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_pl_PL.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_pt.ts b/src/plugins/Output/shout/translations/shout_plugin_pt.ts index 0cc894b58..d8d1f4d91 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_pt.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Suplemento Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Sobre o suplemento Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Suplemento Qmmp Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Compilado com libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_pt_BR.ts b/src/plugins/Output/shout/translations/shout_plugin_pt_BR.ts index 644004f46..196a262a3 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_pt_BR.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Plugin Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Sobre o plugin de saída Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Plugin de saída Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Compilado com libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_ru.ts b/src/plugins/Output/shout/translations/shout_plugin_ru.ts index 05a9adb48..b5e7d2a2e 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_ru.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Модуль Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>О модуле вывода Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Модуль вывода Icecast для Qmmp</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Собран с libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_sk.ts b/src/plugins/Output/shout/translations/shout_plugin_sk.ts index ef16cd513..9d93ae60b 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_sk.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_sr_BA.ts b/src/plugins/Output/shout/translations/shout_plugin_sr_BA.ts index 42e8ca2bc..221ee41af 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_sr_BA.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_sr_RS.ts b/src/plugins/Output/shout/translations/shout_plugin_sr_RS.ts index 0ed75eb90..bd38ced60 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_sr_RS.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_tr.ts b/src/plugins/Output/shout/translations/shout_plugin_tr.ts index 187e3ffb2..392c33399 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_tr.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_uk_UA.ts b/src/plugins/Output/shout/translations/shout_plugin_uk_UA.ts index 28108771f..ab0af6fd3 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_uk_UA.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Модуль Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>Про модуль виведення Icecast</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Модуль виведення Icecast для Qmmp</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>Зібрано з libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_zh_CN.ts b/src/plugins/Output/shout/translations/shout_plugin_zh_CN.ts index 11992562e..028fdd890 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_zh_CN.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation>Icecast 插件</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation>关于 Icecast 输出插件</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation>Qmmp Icecast 输出插件</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation>编译依赖 libshout-%1</translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/shout/translations/shout_plugin_zh_TW.ts b/src/plugins/Output/shout/translations/shout_plugin_zh_TW.ts index 4fce321cf..5f004a046 100644 --- a/src/plugins/Output/shout/translations/shout_plugin_zh_TW.ts +++ b/src/plugins/Output/shout/translations/shout_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>OutputShoutFactory</name> <message> - <location filename="../outputshoutfactory.cpp" line="41"/> + <location filename="../outputshoutfactory.cpp" line="40"/> <source>Icecast Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="66"/> + <location filename="../outputshoutfactory.cpp" line="65"/> <source>About Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="67"/> + <location filename="../outputshoutfactory.cpp" line="66"/> <source>Qmmp Icecast Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="68"/> + <location filename="../outputshoutfactory.cpp" line="67"/> <source>Compiled against libshout-%1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputshoutfactory.cpp" line="69"/> + <location filename="../outputshoutfactory.cpp" line="68"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/CMakeLists.txt b/src/plugins/Output/wasapi/CMakeLists.txt index 56be4fc4a..6e76c3740 100644 --- a/src/plugins/Output/wasapi/CMakeLists.txt +++ b/src/plugins/Output/wasapi/CMakeLists.txt @@ -2,14 +2,6 @@ project(libwasapi) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) SET(QT_INCLUDES @@ -30,13 +22,9 @@ SET(libwasapi_SRCS settingsdialog.cpp ) -SET(libwasapi_HDRS - outputwasapi.h -) - SET(libwasapi_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libwasapi_RCC_SRCS ${libwasapi_RCCS}) +QT5_ADD_RESOURCES(libwasapi_RCC_SRCS ${libwasapi_RCCS}) # user interface @@ -44,7 +32,7 @@ SET(libwasapi_UIS settingsdialog.ui ) -QT4_WRAP_UI(libwasapi_UIS_H ${libwasapi_UIS}) +QT5_WRAP_UI(libwasapi_UIS_H ${libwasapi_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -52,6 +40,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(WASAPI_FOUND) ADD_LIBRARY(wasapi MODULE ${libwasapi_SRCS} ${libwasapi_RCC_SRCS} ${libwasapi_HDRS} ${libwasapi_UIS_H}) add_dependencies(wasapi qmmp) -target_link_libraries(wasapi ${QT_LIBRARIES} libqmmp -lstrmiids -ldmoguids -lmsdmo -lole32 -loleaut32 -luuid -lgdi32 -lksuser) +target_link_libraries(wasapi Qt5::Widgets libqmmp -lstrmiids -ldmoguids -lmsdmo -lole32 -loleaut32 -luuid -lgdi32 -lksuser) install(TARGETS wasapi DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(WASAPI_FOUND) diff --git a/src/plugins/Output/wasapi/outputwasapifactory.cpp b/src/plugins/Output/wasapi/outputwasapifactory.cpp index ede9f4f0b..196a8c2be 100644 --- a/src/plugins/Output/wasapi/outputwasapifactory.cpp +++ b/src/plugins/Output/wasapi/outputwasapifactory.cpp @@ -20,7 +20,6 @@ #include <QMessageBox>
#include <QTranslator>
-#include <QtPlugin>
#include "settingsdialog.h"
#include "outputwasapi.h"
#include "outputwasapifactory.h"
@@ -65,5 +64,3 @@ QTranslator *OutputWASAPIFactory::createTranslator(QObject *parent) translator->load(QString(":/wasapi_plugin_") + locale);
return translator;
}
-
-Q_EXPORT_PLUGIN2(wasapi,OutputWASAPIFactory)
diff --git a/src/plugins/Output/wasapi/outputwasapifactory.h b/src/plugins/Output/wasapi/outputwasapifactory.h index 2d359e995..23a77eb50 100644 --- a/src/plugins/Output/wasapi/outputwasapifactory.h +++ b/src/plugins/Output/wasapi/outputwasapifactory.h @@ -30,6 +30,7 @@ class OutputWASAPIFactory : public QObject, OutputFactory
{
Q_OBJECT
+Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0")
Q_INTERFACES(OutputFactory)
public:
diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_bg.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_bg.ts index b9fdc87e3..bf072d50f 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_bg.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_cs.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_cs.ts index e1758a368..6665623a5 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_cs.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_de.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_de.ts index fab406e68..da909ea72 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_de.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>WASAPI-Modul</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Über WASAPI-Ausgabemodul</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Qmmp WASAPI-Ausgabemodul</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_el.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_el.ts index ed94af444..f94abef9f 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_el.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Πρόσθετο WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Περί του πρόσθετου εξόδου WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Qmmp πρόσθετο εξόδου WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_en.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_en.ts index 7918a12ba..fe0f270bd 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_en.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_es.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_es.ts index 0440ffe5a..6ea986ab1 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_es.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Módulo WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Acerca del Módulo de Salida WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Módulo de Salida WASAPI de Qmmp</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_fi.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_fi.ts index de5525077..5bbd10adf 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_fi.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>WASAPI-liitännäinen</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Tietoja - WASAPI-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Qmmp:n WASAPI-ulostuloliitännäinen</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_fr.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_fr.ts index 6cc913141..039d9f9cb 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_fr.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Greffon WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>À propos du greffon de sortie WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Greffon de sortie WASAPI pour Qmmp</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_gl_ES.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_gl_ES.ts index 83a557c1c..90f1b618e 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_gl_ES.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Plugin WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Acerca da saida do plugin WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Saida do plugin Qmmp WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_he.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_he.ts index 976274c5f..4a4a3a03e 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_he.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>תוסף WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>אודות תוסף פלט WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>תוסף פלט WASAPI של Qmmp</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_hu.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_hu.ts index 51ffca11a..0d1fa11b6 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_hu.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_id.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_id.ts index 0dcbc280f..d6292a80f 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_id.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Plugin WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Tentang Plugin Keluaran WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Plugin Keluaran WASAPI Qmmp</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_it.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_it.ts index 864299bad..574473d33 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_it.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_ja.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_ja.ts index 78ba4717f..2b0ef7b85 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_ja.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>WASAPI プラグイン</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>WASAPI プラグインについて</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>QMMP WASAPI 出力プラグイン</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_kk.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_kk.ts index fa0fc73fb..0299d32ba 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_kk.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_lt.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_lt.ts index 041ad36b4..5f2663c67 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_lt.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_nl.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_nl.ts index 3c2902892..fc2b8bd86 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_nl.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_pl_PL.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_pl_PL.ts index 50c3d4e36..1e05373ec 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_pl_PL.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_pt.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_pt.ts index 85d5fa4f5..a4fdbbdf2 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_pt.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Suplemento Wasabi</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Sobre o suplemento Wasabi</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Suplemento Qmmp Wasabi</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_pt_BR.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_pt_BR.ts index e3de362e8..3fc2abd90 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_pt_BR.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Plugin WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Sobre o plugin WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Plugin Qmmp WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_ru.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_ru.ts index 4fbb50784..cf7327515 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_ru.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Модуль WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>О модуле вывода WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Модуль вывода WASAPI для Qmmp</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_sk.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_sk.ts index 5c0e6c65e..0898e960a 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_sk.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_BA.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_BA.ts index 545474707..cfacc60f9 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_BA.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_RS.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_RS.ts index 8822e7471..12d8f90ca 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_RS.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_tr.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_tr.ts index dde1f8780..c6058f36c 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_tr.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_uk_UA.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_uk_UA.ts index ba545a299..144ff9803 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_uk_UA.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>Модуль WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>Про модуль виведення WASAPI</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Модуль виведення WASAPI для Qmmp</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_CN.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_CN.ts index 57742ac8b..f72903899 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_CN.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation>WASAP I插件</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation>关于WASAPI输出插件</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation>Qmmp WASAPI输出插件</translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_TW.ts b/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_TW.ts index c90122c40..d82de651f 100644 --- a/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_TW.ts +++ b/src/plugins/Output/wasapi/translations/wasapi_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>OutputWASAPIFactory</name> <message> - <location filename="../outputwasapifactory.cpp" line="31"/> + <location filename="../outputwasapifactory.cpp" line="30"/> <source>WASAPI Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="56"/> + <location filename="../outputwasapifactory.cpp" line="55"/> <source>About WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="57"/> + <location filename="../outputwasapifactory.cpp" line="56"/> <source>Qmmp WASAPI Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwasapifactory.cpp" line="58"/> + <location filename="../outputwasapifactory.cpp" line="57"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Output/waveout/CMakeLists.txt b/src/plugins/Output/waveout/CMakeLists.txt index dee810a58..169eaed0a 100644 --- a/src/plugins/Output/waveout/CMakeLists.txt +++ b/src/plugins/Output/waveout/CMakeLists.txt @@ -2,21 +2,8 @@ project(libwaveout) INCLUDE(CheckIncludeFile) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -35,13 +22,13 @@ SET(libwaveout_HDRS SET(libwaveout_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libwaveout_RCC_SRCS ${libwaveout_RCCS}) +QT5_ADD_RESOURCES(libwaveout_RCC_SRCS ${libwaveout_RCCS}) IF(WINDOWS_H_FOUND) ADD_LIBRARY(waveout MODULE ${libwaveout_SRCS} ${libwaveout_RCC_SRCS} ${libwaveout_HDRS}) add_dependencies(waveout qmmp) -target_link_libraries(waveout ${QT_LIBRARIES} libqmmp -lwinmm) +target_link_libraries(waveout Qt5::Widgets -lqmmp -lwinmm) install(TARGETS waveout DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(WINDOWS_H_FOUND) diff --git a/src/plugins/Output/waveout/outputwaveoutfactory.cpp b/src/plugins/Output/waveout/outputwaveoutfactory.cpp index f6bf47321..f9eb0f684 100644 --- a/src/plugins/Output/waveout/outputwaveoutfactory.cpp +++ b/src/plugins/Output/waveout/outputwaveoutfactory.cpp @@ -18,9 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <QMessageBox>
-#include <QTranslator>
-#include <QtPlugin>
+
#include "outputwaveout.h"
#include "outputwaveoutfactory.h"
@@ -73,4 +71,4 @@ QTranslator *OutputWaveOutFactory::createTranslator(QObject *parent) return translator;
}
-Q_EXPORT_PLUGIN2(waveout,OutputWaveOutFactory)
+
diff --git a/src/plugins/Output/waveout/outputwaveoutfactory.h b/src/plugins/Output/waveout/outputwaveoutfactory.h index 6a92e9f0c..c8b992408 100644 --- a/src/plugins/Output/waveout/outputwaveoutfactory.h +++ b/src/plugins/Output/waveout/outputwaveoutfactory.h @@ -31,6 +31,7 @@ class OutputWaveOutFactory : public QObject, OutputFactory
{
Q_OBJECT
+Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0")
Q_INTERFACES(OutputFactory)
public:
diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts b/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts index c351363ad..eb83518eb 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts b/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts index 52d9224b6..355c75de4 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Modul WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>O výstupním modulu WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Výstupní modul Qmmp WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Založeno na přehrávači aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_de.ts b/src/plugins/Output/waveout/translations/waveout_plugin_de.ts index df7497a7b..f72ca0e92 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_de.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut-Modul</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Über WaveOut-Ausgabemodul</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut-Ausgabemodul</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basiert auf dem aacDECdrop-Abspieler</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_el.ts b/src/plugins/Output/waveout/translations/waveout_plugin_el.ts index 1c6f35526..19418b0ee 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_el.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Πρόσθετο WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Σχετικά με το πρόσθετο εξόδου WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp πρόσθετο εξόδου WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Βασισμένο στον αναπαραγωγέα aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_en.ts b/src/plugins/Output/waveout/translations/waveout_plugin_en.ts index 08d6dffe3..5bfb4e66a 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_en.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_es.ts b/src/plugins/Output/waveout/translations/waveout_plugin_es.ts index a836cc924..9fca80fab 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_es.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Módulo WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Acerca del módulo de salida WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Módulo de salida WaveOut para Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basado en el reproductor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts b/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts index b97d48277..5d8e8ad18 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts b/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts index e01029d16..a0fc67d8a 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Greffon WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>À propos du greffon de sortie WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Greffon de sortie WaveOut pour Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basé sur le lecteur aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts b/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts index 25fbe5390..f933353cb 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Engadido WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Sobre o engadido WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Engadido WaveOut de Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Baseado no reprodutor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_he.ts b/src/plugins/Output/waveout/translations/waveout_plugin_he.ts index 9bace0344..d7c14c5ea 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_he.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>תוסף WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>אודות תוסף WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>תוסף פלט WaveOut של Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>מבוססת על נגן aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts b/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts index e3d210463..e52f81927 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_id.ts b/src/plugins/Output/waveout/translations/waveout_plugin_id.ts index e6109dbaf..94a61c5da 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_id.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Plugin WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Tentang Plugin Keluaran WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Plugin Keluaran WaveOut Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Berdasarkan pada player aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_it.ts b/src/plugins/Output/waveout/translations/waveout_plugin_it.ts index d64fc081c..fa8f4e16b 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_it.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Modulo WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Informazioni sul modulo d'uscita WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Modulo d'uscita WaveOut per Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basato sul riproduttore audio aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts b/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts index 771f93277..4a859d9c2 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut プラグイン</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>WaveOut 出力プラグインについて</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>QMMP WaveOut 出力プラグイン</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>aacDECdrop プレイヤーを基に作成</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts b/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts index 490a7c37f..a2e56b9cf 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts b/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts index 24c08772e..704b22adb 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut įskiepis</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Apie WaveOut įskiepį</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut įskiepis</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Sukurtas aacDECdrop grotuvo pagrindu</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts b/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts index d649d45ed..d27edf189 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut Module</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Over de WaveOut Output Module</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>WaveOut Output Module voor Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Gebasseerd op de aacDECdrop speler</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts b/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts index d98e8c5c8..a496d64f6 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Wtyczka WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>O wtyczce WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Wtyczka WaveOut dla Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Oparta na kodzie odtwarzacza aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts b/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts index 9ca85a561..1dfe4d18b 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Suplemento WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Sobre o suplemento WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Suplemento Qmmp WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Baseado no reprodutor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts b/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts index 61360fdbe..38fee938e 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Plugin WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Sobre o plugin WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Plugin Qmmp WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Baseado no reprodutor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts b/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts index 62c66e39a..3f35418c9 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Модуль WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>О модуле вывода WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Модуль вывода WaveOut для Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Основан на базе проигрывателя aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts b/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts index fd708ae33..9e568828c 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts b/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts index 3ab8214b8..3790be675 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>ВејвАут прикључак</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>О ВејвАут прикључку излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Кумп ВејвАут прикључак излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Заснован на aacDECdrop плејеру</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts b/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts index bd76aa786..9bb328206 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>ВејвАут прикључак</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>О ВејвАут прикључку излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Кумп ВејвАут прикључак излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Заснован на aacDECdrop плејеру</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts b/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts index 251a12f7c..6aa5d6179 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut Eklentisi</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>WaveOut Çıktı Eklentisi</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut Çıktı Eklentisi</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>aacDECdrop oynatıcısı temellidir</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts b/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts index f0fb7a11a..65dca5a7d 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Модуль WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Про модуль виведення WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Модуль виведення WaveOut для Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Базується на програвачі aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts b/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts index 25efa192e..4bba0e4f3 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut 插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>关于 WaveOut 输出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut 输出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>基于 aacDECdrop 播放器</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts b/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts index 40c3f6efb..23f9cf351 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut 外掛</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>關於 WaveOut 匯出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut 匯出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>基於 aacDECdrop 播放器</translation> </message> diff --git a/src/plugins/PlayListFormats/m3u/CMakeLists.txt b/src/plugins/PlayListFormats/m3u/CMakeLists.txt index a96c2df62..d3e7b577d 100644 --- a/src/plugins/PlayListFormats/m3u/CMakeLists.txt +++ b/src/plugins/PlayListFormats/m3u/CMakeLists.txt @@ -1,20 +1,7 @@ project(libm3uplaylistformat) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -23,7 +10,7 @@ SET(libm3uplaylistformat_SRCS m3uplaylistformat.cpp ) -QT4_ADD_RESOURCES(libm3uplaylistformat_RCC_SRCS ${libm3uplaylistformat_RCCS}) +QT5_ADD_RESOURCES(libm3uplaylistformat_RCC_SRCS ${libm3uplaylistformat_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -31,5 +18,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(m3uplaylistformat MODULE ${libm3uplaylistformat_SRCS}) add_dependencies(m3uplaylistformat qmmpui) -target_link_libraries(m3uplaylistformat ${QT_LIBRARIES} qmmpui) +target_link_libraries(m3uplaylistformat Qt5::Widgets -lqmmpui) install(TARGETS m3uplaylistformat DESTINATION ${LIB_DIR}/qmmp/PlayListFormats) diff --git a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp index dd2ee0cd5..feb31fa19 100644 --- a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp +++ b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp @@ -35,7 +35,7 @@ const PlayListFormatProperties M3UPlaylistFormat::properties() const QList<PlayListTrack *> M3UPlaylistFormat::decode(const QByteArray &contents) { QList<PlayListTrack*> out; - QStringList splitted = QString::fromUtf8(contents.constData()).split("\n"); + QStringList splitted = QString::fromUtf8(contents).split("\n"); if(splitted.isEmpty()) return out; @@ -100,5 +100,3 @@ QByteArray M3UPlaylistFormat::encode(const QList<PlayListTrack*> &contents, cons } return out.join("\n").toUtf8(); } - -Q_EXPORT_PLUGIN2(m3uplaylistformat,M3UPlaylistFormat) diff --git a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h index d1188d553..c22bab1c8 100644 --- a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h +++ b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h @@ -33,6 +33,7 @@ class M3UPlaylistFormat : public QObject, public PlayListFormat { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.PlayListFormatInterface.1.0") Q_INTERFACES(PlayListFormat) public: const PlayListFormatProperties properties() const; diff --git a/src/plugins/PlayListFormats/pls/CMakeLists.txt b/src/plugins/PlayListFormats/pls/CMakeLists.txt index 4666e2951..9a19d064c 100644 --- a/src/plugins/PlayListFormats/pls/CMakeLists.txt +++ b/src/plugins/PlayListFormats/pls/CMakeLists.txt @@ -1,20 +1,7 @@ project(libplsplaylistformat) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -23,7 +10,7 @@ SET(libplsplaylistformat_SRCS plsplaylistformat.cpp ) -QT4_ADD_RESOURCES(libplsplaylistformat_RCC_SRCS ${libplsplaylistformat_RCCS}) +QT5_ADD_RESOURCES(libplsplaylistformat_RCC_SRCS ${libplsplaylistformat_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -31,5 +18,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(plsplaylistformat MODULE ${libplsplaylistformat_SRCS}) add_dependencies(plsplaylistformat qmmpui) -target_link_libraries(plsplaylistformat ${QT_LIBRARIES} qmmpui) +target_link_libraries(plsplaylistformat Qt5::Widgets -lqmmpui) install(TARGETS plsplaylistformat DESTINATION ${LIB_DIR}/qmmp/PlayListFormats) diff --git a/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp b/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp index 9ee2fdd70..1e96077dc 100644 --- a/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp +++ b/src/plugins/PlayListFormats/pls/plsplaylistformat.cpp @@ -35,7 +35,7 @@ const PlayListFormatProperties PLSPlaylistFormat::properties() const QList<PlayListTrack *> PLSPlaylistFormat::decode(const QByteArray &contents) { QList<PlayListTrack *> out; - QStringList splitted = QString::fromUtf8(contents.constData()).split("\n"); + QStringList splitted = QString::fromUtf8(contents).split("\n"); if(splitted.isEmpty()) { @@ -138,5 +138,3 @@ QByteArray PLSPlaylistFormat::encode(const QList<PlayListTrack *> &contents, con out << "Version=2"; return out.join("\n").toUtf8(); } - -Q_EXPORT_PLUGIN2(plsplaylistformat, PLSPlaylistFormat) diff --git a/src/plugins/PlayListFormats/pls/plsplaylistformat.h b/src/plugins/PlayListFormats/pls/plsplaylistformat.h index ba5d355d5..96dcf225b 100644 --- a/src/plugins/PlayListFormats/pls/plsplaylistformat.h +++ b/src/plugins/PlayListFormats/pls/plsplaylistformat.h @@ -33,6 +33,7 @@ class PLSPlaylistFormat : public QObject, public PlayListFormat { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.PlayListFormatInterface.1.0") Q_INTERFACES(PlayListFormat) public: const PlayListFormatProperties properties() const; diff --git a/src/plugins/PlayListFormats/xspf/CMakeLists.txt b/src/plugins/PlayListFormats/xspf/CMakeLists.txt index 128fb39d1..a18935cab 100644 --- a/src/plugins/PlayListFormats/xspf/CMakeLists.txt +++ b/src/plugins/PlayListFormats/xspf/CMakeLists.txt @@ -1,20 +1,7 @@ project(libxspfplaylistformat) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmpui include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -24,7 +11,7 @@ SET(libxspfplaylistformat_SRCS xspfplaylistformat.cpp ) -QT4_ADD_RESOURCES(libxspfplaylistformat_RCC_SRCS ${libxspfplaylistformat_RCCS}) +QT5_ADD_RESOURCES(libxspfplaylistformat_RCC_SRCS ${libxspfplaylistformat_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! @@ -32,5 +19,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(xspfplaylistformat MODULE ${libxspfplaylistformat_SRCS}) add_dependencies(xspfplaylistformat qmmpui) -target_link_libraries(xspfplaylistformat ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(xspfplaylistformat Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS xspfplaylistformat DESTINATION ${LIB_DIR}/qmmp/PlayListFormats) diff --git a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp index 562b8d154..f20c83903 100644 --- a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp +++ b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp @@ -41,7 +41,7 @@ QList<PlayListTrack*> XSPFPlaylistFormat::decode(const QByteArray &contents) { QList<PlayListTrack*> out; QString currentTag; - QString contents_copy = QString::fromUtf8(contents.constData()); + QString contents_copy = QString::fromUtf8(contents); //remove control symbols to avoid xml errors for(int i = 0; i < contents_copy.size(); ++i) @@ -168,5 +168,3 @@ QByteArray XSPFPlaylistFormat::encode(const QList<PlayListTrack*> &files, const xml.writeEndDocument(); return out; } - -Q_EXPORT_PLUGIN2(xspfplaylistformat,XSPFPlaylistFormat) diff --git a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h index 3b729883a..fca9fff6a 100644 --- a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h +++ b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h @@ -33,6 +33,7 @@ class XSPFPlaylistFormat : public QObject, public PlayListFormat { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.PlayListFormatInterface.1.0") Q_INTERFACES(PlayListFormat) public: const PlayListFormatProperties properties() const; diff --git a/src/plugins/Transports/http/CMakeLists.txt b/src/plugins/Transports/http/CMakeLists.txt index efd40d1e4..5ca267c5e 100644 --- a/src/plugins/Transports/http/CMakeLists.txt +++ b/src/plugins/Transports/http/CMakeLists.txt @@ -1,20 +1,7 @@ project(libhttp) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_BINARY_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -41,13 +28,13 @@ SET(libhttp_SRCS # resources SET(libhttp_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libhttp_RCC_SRCS ${libhttp_RCCS}) +QT5_ADD_RESOURCES(libhttp_RCC_SRCS ${libhttp_RCCS}) # user interface SET(libhttp_UIS settingsdialog.ui ) -QT4_WRAP_UI(libhttp_UIS_H ${libhttp_UIS}) +QT5_WRAP_UI(libhttp_UIS_H ${libhttp_UIS}) # Don't forget to include output directory, otherwise @@ -58,9 +45,9 @@ IF(CURL_FOUND) ADD_LIBRARY(http MODULE ${libhttp_SRCS} ${libhttp_UIS_H} ${libhttp_RCC_SRCS}) IF(USE_ENCA AND ENCA_FOUND) -target_link_libraries(http ${QT_LIBRARIES} libqmmp ${CURL_LDFLAGS} ${CURL_CFLAGS} ${ENCA_LDFLAGS} ${ENCA_CFLAGS}) +target_link_libraries(http Qt5::Widgets -lqmmp ${CURL_LDFLAGS} ${CURL_CFLAGS} ${ENCA_LDFLAGS} ${ENCA_CFLAGS}) ELSE(USE_ENCA AND ENCA_FOUND) -target_link_libraries(http ${QT_LIBRARIES} libqmmp ${CURL_LDFLAGS}) +target_link_libraries(http Qt5::Widgets -lqmmp ${CURL_LDFLAGS}) ENDIF(USE_ENCA AND ENCA_FOUND) add_dependencies(http qmmp) diff --git a/src/plugins/Transports/http/httpinputfactory.cpp b/src/plugins/Transports/http/httpinputfactory.cpp index f9a3fc1d4..daedaf9f7 100644 --- a/src/plugins/Transports/http/httpinputfactory.cpp +++ b/src/plugins/Transports/http/httpinputfactory.cpp @@ -64,4 +64,3 @@ QTranslator *HTTPInputFactory::createTranslator(QObject *parent) translator->load(QString(":/http_plugin_") + locale); return translator; } -Q_EXPORT_PLUGIN2(http, HTTPInputFactory) diff --git a/src/plugins/Transports/http/httpinputfactory.h b/src/plugins/Transports/http/httpinputfactory.h index a2c8b910f..9aea98f09 100644 --- a/src/plugins/Transports/http/httpinputfactory.h +++ b/src/plugins/Transports/http/httpinputfactory.h @@ -33,6 +33,7 @@ class QTranslator; class HTTPInputFactory : public QObject, InputSourceFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.InputSourceFactoryInterface.1.0") Q_INTERFACES(InputSourceFactory) public: const InputSourceProperties properties() const; diff --git a/src/plugins/Transports/http/httpstreamreader.cpp b/src/plugins/Transports/http/httpstreamreader.cpp index 861c17735..be051a89b 100644 --- a/src/plugins/Transports/http/httpstreamreader.cpp +++ b/src/plugins/Transports/http/httpstreamreader.cpp @@ -75,7 +75,7 @@ static size_t curl_header(void *data, size_t size, size_t nmemb, } else { - QString key = QString::fromLatin1(header.left(header.indexOf(":")).trimmed().toLower().constData()); + QString key = QString::fromLatin1(header.left(header.indexOf(":")).trimmed().toLower()); QByteArray value = header.right(header.size() - header.indexOf(":") - 1).trimmed(); dl->stream()->header.insert(key, value); qDebug("HttpStreamReader: key=%s, value=%s",qPrintable(key), value.constData()); diff --git a/src/plugins/Transports/mms/CMakeLists.txt b/src/plugins/Transports/mms/CMakeLists.txt index 106c2f796..2bcf19141 100644 --- a/src/plugins/Transports/mms/CMakeLists.txt +++ b/src/plugins/Transports/mms/CMakeLists.txt @@ -1,20 +1,7 @@ project(libmms) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_BINARY_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -35,13 +22,13 @@ SET(libmms_SRCS # resources SET(libmms_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libmms_RCC_SRCS ${libmms_RCCS}) +QT5_ADD_RESOURCES(libmms_RCC_SRCS ${libmms_RCCS}) # user interface SET(libmms_UIS settingsdialog.ui ) -QT4_WRAP_UI(libmms_UIS_H ${libmms_UIS}) +QT5_WRAP_UI(libmms_UIS_H ${libmms_UIS}) # Don't forget to include output directory, otherwise @@ -49,7 +36,7 @@ QT4_WRAP_UI(libmms_UIS_H ${libmms_UIS}) include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(MMS_FOUND) ADD_LIBRARY(mms MODULE ${libmms_SRCS} ${libmms_UIS_H} ${libmms_RCC_SRCS}) -target_link_libraries(mms ${QT_LIBRARIES} libqmmp ${MMS_LDFLAGS}) +target_link_libraries(mms Qt5::Widgets -lqmmp ${MMS_LDFLAGS}) add_dependencies(mms qmmp) install(TARGETS mms DESTINATION ${LIB_DIR}/qmmp/Transports) ENDIF(MMS_FOUND) diff --git a/src/plugins/Transports/mms/mmsinputfactory.cpp b/src/plugins/Transports/mms/mmsinputfactory.cpp index d51eee4d6..2dc0c84bf 100644 --- a/src/plugins/Transports/mms/mmsinputfactory.cpp +++ b/src/plugins/Transports/mms/mmsinputfactory.cpp @@ -62,4 +62,3 @@ QTranslator *MMSInputFactory::createTranslator(QObject *parent) translator->load(QString(":/mms_plugin_") + locale); return translator; } -Q_EXPORT_PLUGIN2(mms, MMSInputFactory) diff --git a/src/plugins/Transports/mms/mmsinputfactory.h b/src/plugins/Transports/mms/mmsinputfactory.h index 25a1fe070..3b6e8576c 100644 --- a/src/plugins/Transports/mms/mmsinputfactory.h +++ b/src/plugins/Transports/mms/mmsinputfactory.h @@ -33,6 +33,7 @@ class QTranslator; class MMSInputFactory : public QObject, InputSourceFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.InputSourceFactoryInterface.1.0") Q_INTERFACES(InputSourceFactory) public: const InputSourceProperties properties() const; diff --git a/src/plugins/Ui/CMakeLists.txt b/src/plugins/Ui/CMakeLists.txt index 7670cdb56..ca25b54c9 100644 --- a/src/plugins/Ui/CMakeLists.txt +++ b/src/plugins/Ui/CMakeLists.txt @@ -1,9 +1,9 @@ SET(USE_SKINNED TRUE CACHE BOOL "enable/disable skinned user interface") SET(USE_QSUI TRUE CACHE BOOL "enable/disable simple user interface (qsui)") -IF(USE_SKINNED) +IF(USE_SKINNED AND Qt5X11Extras_FOUND) add_subdirectory(skinned) -ENDIF(USE_SKINNED) +ENDIF(USE_SKINNED AND Qt5X11Extras_FOUND) IF(USE_QSUI) add_subdirectory(qsui) diff --git a/src/plugins/Ui/qsui/CMakeLists.txt b/src/plugins/Ui/qsui/CMakeLists.txt index a0a3c9bd7..ab302dda4 100644 --- a/src/plugins/Ui/qsui/CMakeLists.txt +++ b/src/plugins/Ui/qsui/CMakeLists.txt @@ -1,14 +1,4 @@ -project(libqsui) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - -include_directories(${CMAKE_CURRENT_SOURCE_DIR}) +project(qsui) # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) @@ -60,7 +50,7 @@ SET(libqsui_HDRS SET(libqsui_RCCS translations/translations.qrc txt/qsui_txt.qrc resources/qsui_resources.qrc) -QT4_ADD_RESOURCES(libqsui_RCC_SRCS ${libqsui_RCCS}) +QT5_ADD_RESOURCES(libqsui_RCC_SRCS ${libqsui_RCCS}) # user interface @@ -74,12 +64,12 @@ SET(libqsui_UIS forms/hotkeyeditor.ui ) -QT4_WRAP_UI(libqsui_UIS_H ${libqsui_UIS}) +QT5_WRAP_UI(libqsui_UIS_H ${libqsui_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(qsui MODULE ${libqsui_SRCS} ${libqsui_UIS_H} ${libqsui_RCC_SRCS} ${libqsui_HDRS}) add_dependencies(qsui qmmpui libqmmp) -target_link_libraries(qsui ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(qsui Qt5::Widgets -lqmmpui -lqmmp) install(TARGETS qsui DESTINATION ${LIB_DIR}/qmmp/Ui) diff --git a/src/plugins/Ui/qsui/filesystembrowser.cpp b/src/plugins/Ui/qsui/filesystembrowser.cpp index 3d43f1e08..fa017bb17 100644 --- a/src/plugins/Ui/qsui/filesystembrowser.cpp +++ b/src/plugins/Ui/qsui/filesystembrowser.cpp @@ -79,11 +79,7 @@ FileSystemBrowser::FileSystemBrowser(QWidget *parent) : m_fileSystemModel = new QFileSystemModel(this); m_fileSystemModel->setReadOnly(true); m_fileSystemModel->setNameFilterDisables(false); -#if QT_VERSION >= 0x040700 m_fileSystemModel->setFilter(QDir::AllDirs | QDir::Files | QDir::NoDot); -#else - m_fileSystemModel->setFilter(QDir::AllDirs | QDir::Files); -#endif m_proxyModel = new FileSystemFilterProxyModel(this); m_proxyModel->setDynamicSortFilter(true); diff --git a/src/plugins/Ui/qsui/listwidget.cpp b/src/plugins/Ui/qsui/listwidget.cpp index 365239cca..5f231fb53 100644 --- a/src/plugins/Ui/qsui/listwidget.cpp +++ b/src/plugins/Ui/qsui/listwidget.cpp @@ -29,6 +29,7 @@ #include <QHelpEvent> #include <QTimer> #include <QScrollBar> +#include <QMimeData> #include <qmmpui/playlistitem.h> #include <qmmpui/playlistmodel.h> #include <qmmpui/qmmpuisettings.h> @@ -196,9 +197,7 @@ void ListWidget::paintEvent(QPaintEvent *) { QPainter painter(this); m_drawer.fillBackground(&painter, width(), height()); -#if QT_VERSION >= 0x040700 painter.setLayoutDirection(Qt::LayoutDirectionAuto); -#endif bool rtl = (layoutDirection() == Qt::RightToLeft); int scroll_bar_width = m_scrollBar->isVisibleTo(this) ? m_scrollBar->sizeHint().width() : 0; diff --git a/src/plugins/Ui/qsui/logo.cpp b/src/plugins/Ui/qsui/logo.cpp index f8fe7cf80..c413dfbb3 100644 --- a/src/plugins/Ui/qsui/logo.cpp +++ b/src/plugins/Ui/qsui/logo.cpp @@ -184,7 +184,7 @@ void Logo::processPreset2() void Logo::processPreset3() { m_lines.clear(); - QString str = QString("...%1...").arg(Qmmp::strVersion().left(6)); + QString str = QString("...%1...").arg(Qmmp::strVersion().left(5)); int at = m_value % str.size(); foreach(QString line, m_source_lines) diff --git a/src/plugins/Ui/qsui/mainwindow.cpp b/src/plugins/Ui/qsui/mainwindow.cpp index bdc7b81c8..3cf109e5e 100644 --- a/src/plugins/Ui/qsui/mainwindow.cpp +++ b/src/plugins/Ui/qsui/mainwindow.cpp @@ -132,6 +132,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) m_ui.statusbar->addPermanentWidget(m_timeLabel, 1); m_ui.statusbar->setMinimumWidth(2); m_statusLabel->setMinimumWidth(2); + m_ui.statusbar->setStyleSheet("QStatusBar::item { border: 0px solid black };"); //volume m_volumeSlider = new VolumeSlider(this); m_volumeSlider->setFocusPolicy(Qt::NoFocus); diff --git a/src/plugins/Ui/qsui/qsuifactory.cpp b/src/plugins/Ui/qsui/qsuifactory.cpp index 014b1aabf..ccf2401dd 100644 --- a/src/plugins/Ui/qsui/qsuifactory.cpp +++ b/src/plugins/Ui/qsui/qsuifactory.cpp @@ -53,5 +53,3 @@ QTranslator *QSUIFactory::createTranslator(QObject *parent) translator->load(QString(":/qsui_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(qsui, QSUIFactory) diff --git a/src/plugins/Ui/qsui/qsuifactory.h b/src/plugins/Ui/qsui/qsuifactory.h index b95931751..138807308 100644 --- a/src/plugins/Ui/qsui/qsuifactory.h +++ b/src/plugins/Ui/qsui/qsuifactory.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2011-2012 by Ilya Kotov * + * Copyright (C) 2011-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -30,6 +30,7 @@ class QSUIFactory : public QObject, public UiFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.UiFactoryInterface.1.0") Q_INTERFACES(UiFactory) public: const UiProperties properties() const; diff --git a/src/plugins/Ui/qsui/qsuiquicksearch.cpp b/src/plugins/Ui/qsui/qsuiquicksearch.cpp index 2b82fa3a4..19509c9c6 100644 --- a/src/plugins/Ui/qsui/qsuiquicksearch.cpp +++ b/src/plugins/Ui/qsui/qsuiquicksearch.cpp @@ -41,21 +41,8 @@ QSUIQuickSearch::QSUIQuickSearch(ListWidget *listWidget, QWidget *parent) : setLayout(layout); layout->addWidget(m_lineEdit); m_lineEdit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); + m_lineEdit->setClearButtonEnabled(true); connect(m_lineEdit, SIGNAL(textEdited(QString)), m_listWidget, SLOT(setFilterString(QString))); - connect(m_lineEdit, SIGNAL(textChanged(QString)), SLOT(onTextChanged(QString))); connect(m_manager, SIGNAL(selectedPlayListChanged(PlayListModel*,PlayListModel*)), m_lineEdit, SLOT(clear())); connect(m_listWidget, SIGNAL(doubleClicked()), m_lineEdit, SLOT(clear())); - - m_clearButton = new QToolButton(this); - m_clearButton->setVisible(false); - m_clearButton->setAutoRaise(true); - m_clearButton->setIcon(QIcon::fromTheme("edit-clear")); - layout->addWidget(m_clearButton); - connect(m_clearButton, SIGNAL(clicked()), m_lineEdit, SLOT(clear())); - connect(m_clearButton, SIGNAL(clicked()), m_listWidget, SLOT(setFilterString())); -} - -void QSUIQuickSearch::onTextChanged(const QString &str) -{ - m_clearButton->setVisible(!str.isEmpty()); } diff --git a/src/plugins/Ui/qsui/qsuiquicksearch.h b/src/plugins/Ui/qsui/qsuiquicksearch.h index 2e51c6388..96e96cd29 100644 --- a/src/plugins/Ui/qsui/qsuiquicksearch.h +++ b/src/plugins/Ui/qsui/qsuiquicksearch.h @@ -27,7 +27,6 @@ class QLineEdit; class PlayListManager; class ListWidget; -class QToolButton; /** @author Ilya Kotov <forkotov02@ya.ru> @@ -38,14 +37,10 @@ class QSUIQuickSearch : public QWidget public: explicit QSUIQuickSearch(ListWidget *listWidget, QWidget *parent = 0); -private slots: - void onTextChanged(const QString &str); - private: QLineEdit *m_lineEdit; PlayListManager *m_manager; ListWidget *m_listWidget; - QToolButton *m_clearButton; }; diff --git a/src/plugins/Ui/qsui/shortcutitem.cpp b/src/plugins/Ui/qsui/shortcutitem.cpp index 8e3412e10..2502b8bd0 100644 --- a/src/plugins/Ui/qsui/shortcutitem.cpp +++ b/src/plugins/Ui/qsui/shortcutitem.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Ilya Kotov * + * Copyright (C) 2010-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -24,7 +24,7 @@ ShortcutItem::ShortcutItem(QTreeWidgetItem *parent, int type) : QTreeWidgetItem(parent, QStringList() << ActionManager::instance()->action(type)->text().remove("&") - << ActionManager::instance()->action(type)->shortcut()) + << ActionManager::instance()->action(type)->shortcut().toString()) { m_action = ActionManager::instance()->action(type); setIcon(0, m_action->icon()); diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts index 52f8c68ec..da1eaf5e6 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_bg.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts index d097b455f..2d10cc62d 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_cs.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Přejmenovat seznam skladeb</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Hlasitost</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pozastaveno</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Zastaveno</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Název seznamu skladeb:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Vzhled</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Zkratky</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Přehrává se</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Umístění</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Seřadit seznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Podle názvu skladby</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Podle alba</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Podle umělce</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Podle názvu souboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Podle cesty a názvu souboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Podle data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Podle čísla skladby</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Podle čísla disku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Podle data vytvoření souboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Seřadit výběr</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Zamíchat seznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Obrátit pořadí seznamu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Činnosti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Načítám: %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts index 14950f6d4..a36d3e2ef 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_de.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Zur Wiedergabeliste hinzufügen</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Verzeichnis wechseln</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Schnellsuche</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Verzeichnis auswählen</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Wiedergabeliste umbenennen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Lautstärke</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 Bit|%3 Kan.|%4 Hz|Titel: %5|Gesamtzeit: %6|%7 kbit/s|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausiert</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|Titel: %2|Gesamtzeit: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Gestoppt</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Wiedergabelistenname:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Erscheinungsbild</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Kurzbefehle</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Wiedergabe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Strg+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Position</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Schnellsuche</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Werkzeugleisten bearbeiten</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Wiedergabeliste sortieren</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Nach Titel</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Nach Album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Nach Interpret</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Nach Albuminterpret</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Nach Dateinamen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Nach Pfad & Dateinamen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Nach Datum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Nach Titelnummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Nach Disc-Nummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Nach Dateierstellungsdatum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Nach Dateiänderungsdatum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Nach Gruppe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Auswahl sortieren</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Wiedergabeliste mischen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Wiedergabeliste umkehren</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Aktionen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Neue Wiedergabeliste hinzufügen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Alle Reiter anzeigen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Pufferung: %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts index c5707b310..684c328dc 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_el.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Προσθήκη στη Λίστα Αναπαραγωγής</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Αλλαγή καταλόγου</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Γρήγορη αναζήτηση</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Επιλογή καταλόγου</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Μετονομασία της λίστας αναπαραγωγής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Ένταση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 καν|%4 Hz|κομμάτια: %5|συνολικός χρόνος: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Σε παύση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|κομμάτια: %2|συνολικός χρόνος: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Σταματημένο</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Όνομα λίστας αναπαραγωγής:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Εμφάνιση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Συντομεύσεις</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Εκτελείται</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Θέση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Γρήγορη αναζήτηση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Επεξεργασία γραμμών εργαλείων</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Ταξινόμηση λίστας</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Ανά τίτλο</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Ανά άλμπουμ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Ανά καλλιτέχνη</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Ανά καλλιτέχνη άλμπουμ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Ανά όνομα αρχείου</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Ανά διαδρομή + όνομα αρχείου</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Ανά ημερομηνία</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Ανά αριθμό κομματιού</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Ανά αριθμό δίσκου</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Ανά ημερομηνία δημιουργίας του αρχείου </translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Ανά ημερομηνία τροποποίησης του αρχείου </translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Ανά ομάδα</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Ταξινόμηση επιλογής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Τυχαία ταξινόμηση της λίστας</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Αντιστροφή ταξινόμησης της λίστας</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Ενέργειες</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Προσθήκη νέας λίστας αναπαραγωγής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Εμφάνιση όλων των καρτελών</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Πλήρωση ενδιάμεσης μνήμης: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts index 6125885e1..66c995ff3 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_en.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts index aa474b799..bad982f31 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_es.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Añadir a la lista de reproducción</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Cambiar Directorio</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Búsqueda Rápida</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Seleccionar Directorio</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renombrar lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volumen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|pistas: %5|tiempo total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|pistas: %2|tiempo total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Detenido</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nombre de la lista:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Apariencia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Atajos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reproduciendo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posición</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Búsqueda Rápida</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar Barras de Herramientas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Ordenar la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por intérprete</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por Artista del Álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nombre de archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por ruta + nombre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por fecha</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de pista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por Número de Disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por Fecha de Creación de Archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por Fecha de Modificación de Archivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por Grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Ordenar la selección</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatoria</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Invertir la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Acciones</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Añadir nueva lista de reproducción</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Mostrar todas las pestañas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Cargando: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts index 06b376045..df6780a2a 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_fi.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Lisää soittolistaan</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Vaihda kansio</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Pikahaku</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Valitse kansio</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Nimeä soittolista uudelleen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Äänenvoimakkuus</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Keskeytetty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Pysäytetty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Soittolistan nimi:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Ulkoasu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Pikanäppäimet</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Sijainti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Pikahaku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Muokkaa työkalupalkkeja</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Käänteinen lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Toiminnot</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Lisää uusi soittolista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Puskuroidaan: %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts index e3c47972e..2c754b042 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_fr.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Ajouter à la liste</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Changer le répertoire</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Recherche rapide</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Sélectionner le répertoire</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renommer la liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|pistes : %5|durée totale : %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>En pause</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|pistes : %2|durée totale : %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Arrêté</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nom de la liste :</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Apparence</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Raccourcis</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>En cours</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Position</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Recherche rapideR</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editer la barre des outils</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Trier la liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>par titre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>par album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>par artiste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>par artiste d'album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>par no mde fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>par chemin et nom de fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>par date</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>par numéro de piste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>par numéro de disque</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>par date de création du fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>par date de modification du fichier</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>par groupe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>trier la sélection</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Mélanger la liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Inverser la lsite</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Actions</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Ajouter une nouvelle liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Montrer tous les onglets</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Mise en tampon : %1 %</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts index d809aae90..5dea37eed 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_gl_ES.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Engadir á lista de producción</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Mudar directorio</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Seleccionar directorio</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodución</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|pistas: %5|tempo total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|pistas: %2|tempo total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Detido</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nome da lista de reprodución:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Apariencia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Accesos rápidos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reproducindo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posición</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar barras de ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Ordear lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por artista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por Artista do álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por ruta + nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de pista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por número de disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por data de creación do ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por data de modificación do arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Ordear selección</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatoria</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Reverter lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Accións</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Engadir nova lista de reproducción</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Amosar tódalas lapelas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buffering: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts index eac6cd6c0..c52f2547c 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_he.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>הוסף אל רשימת נגינה</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>שנה מדור</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>בחר מדור</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>שנה שם רשימת נגינה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>עוצמת קול</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>השהה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>הופסקה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>שם רשימת נגינה:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>הופעה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>קיצורי דרך</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>מנגן</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>מיקום</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>ערוך סרגלי כלים</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>מיין רשימה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>לפי כותרת</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>לפי אלבום</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>לפי אמן</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>לפי אלבום אמן</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>לפי שם קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>לפי נתיב + שם קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>לפי תאריך</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>לפי מספר רצועה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>לפי מספר תקליטור</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>לפי תאריך יצירת קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>לפי תאריך שינוי קובץ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>לפי קבוצה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>מיין נבחרות</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>הפוך רשימה לאקראית</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>הפוך רשימה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>פעולות</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>הוסף רשימת נגינה חדשה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>הצג את כל הכרטיסיות</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>אוגר כעת: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts index 635246949..fa35f39c9 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_hu.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Megjelenés</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Lista rendezése</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Cím szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished">Album szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished">Előadó szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Fájlnév szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Elérési út és fájlnév szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Dátum szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Zene sorszáma szerint</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Jelöltek rendezése</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Lista összekeverése</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Fordított lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Tevékenységek</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished">Lista átnevezése</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts index 53c6b663f..51fd31d26 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_id.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Tambah ke Daftarmain</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Ubah Direktori</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Pilih Direktori</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Ubah-nama Daftarmain</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|track: %5|total waktu: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Dijeda</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|track: %2|total waktu: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Dihentikan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nama daftarmain:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Tampilan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Pintasan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Memainkan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posisi</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Edit Bilah-alat</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Daftar Surtir</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Menurut Judul</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Menurut Album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Menurut Artist</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Menurut Album Artist</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Menurut Filename</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Menurut Alur + Filename</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Menurut Tanggal</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Menurut Nomor Trek</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Menurut Nomor Cakram</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Menurut Tanggal Penciptaan File</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Menurut Tanggal Modifikasi File</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Menurut Kelompok</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Pilihan Surtir</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Daftar Acakan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Daftar Mundur</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Tindakan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Tambah daftarmain baru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Tampakkan semua tab</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buffering: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts index 26cfda917..5705399c8 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_it.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Aspetto</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Riordina la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Per titolo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished">Per album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished">PEr interprete</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Per titolo del brano</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">per percorso più titolo del brano</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Per data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Per numero di traccia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Riordina la selezione</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Mescola i brnai della lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Inverti la lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Azioni</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished">Rinomina lista brani</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts index 020271d49..46c6e309b 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_ja.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>プレイリストに追加</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>絞り込み検索</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>ディレクトリーを選択</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>ディレクトリーを変更</translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>音量</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ch|%4 Hz|全 %5 曲|総演奏時間: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>一時停止中断</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|全 %2 曲|総演奏時間: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>終演</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>プレイリスト名:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>外観</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>ショートカット</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>演奏中</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>配置</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>絞り込み検索</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>ツールバーを変更</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>リストを並べ換え</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>タイトル名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>アルバム名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>アーティスト名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>アルバムのアーティスト名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>ファイル名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>パスとファイル名の順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>日付順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>トラック番号順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>ディスク番号順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>ファイルの作成日順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>ファイルの加工日時順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>グループ名順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>選択範囲内で並び換え</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>リストを順不同に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>リストを逆順に</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>動作</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>新しいプレイリストを追加</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>すべてのタブを表示</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>バッファーへ先読み: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>QMMP</translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>プレイリスト名を変更</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts index 1f93d2906..45f1334a7 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_kk.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished">Даусы</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Сыртқы түрі</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Сұрыптау</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Аты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Файл аты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Жолы мен файл аты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Уақыты бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Трек нөмірі бойынша</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Таңдалғанды сұрыптау</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Тізімді араластыру</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Тізімді кері айналдыру</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Әрекеттер</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts index 8eff0a4d8..2069b99c4 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_lt.ts @@ -582,22 +582,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Įkelti į grojąraštį</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Pasirinkti aplanką</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Pakeisti aplanką</translation> </message> @@ -663,190 +663,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Garsumas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pristabdyta</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Sustabdyta</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Grojąraščio pavadinimas:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Išvaizda</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Trumpiniai</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Grojama</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Rūšiuoti sąrašą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Pagal dainos pavadinimą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Pagal albumą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Pagal atlikėją</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Pagal bylos pavadinimą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Pagal kelią iki bylos ir pavadinimą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Pagal datą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Pagal takelio numerį</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Pagal disko numerį</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Pagal bylos sukūrimo laiką</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Pagal grupę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Rūšiuoti pasirinktus</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Sumaišyti sąrašą</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Apversti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Veiksmai</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Pridėti naują grojąraštį</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Rodyti visas korteles</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buferis: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -992,7 +992,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Pervadinti grojaraštį</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts index f462da0df..ed7380775 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_nl.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -663,190 +663,190 @@ Afspeellijst</translation> <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Gepauzeerd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Gestopt</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Vertoning</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Sneltoetsen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Spelen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Sorteer Lijst</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Op Titel</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Op Album</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Op Artiest</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Op Bestandsnaam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Op Pad + Bestandsnaam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Op Datum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Op Lied Nummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Op CD Nummer</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Sorteer Selectie</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Schud Lijst</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Draai Lijst Om</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Acties</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Bufferen: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -993,7 +993,7 @@ Instellingen</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Hernoem Afspeellijst</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts index 0cedda077..644b35641 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_pl_PL.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Dodaj do listy odtwarzania</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Zmień Katalog</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Wybierz Katalog</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Zmień nazwę listy</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Głośność</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Wstrzymane</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Zatrzymane</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nazwa listy odtwarzania:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Wygląd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Skróty klawiszowe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Odtwarzanie</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Pozycja</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Sortuj listę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Według nazwy</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Według nazwy albumu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Według artysty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Według nazwy pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Według Ścieżki + Nazwy pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Wg Daty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Wg numeru utworu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Wg Numeru płyty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Wg Daty Utworzenia pliku</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Wg Grupy</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Sortuj zaznaczone</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Tasuj listę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Odwróć listę</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Akcje</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Dodaj nową listę odtwarzania</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Pokaż wszystkie karty</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Buforowanie: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts index 41aa89f09..6ba7c0221 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_pt.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Adicionar à lista de reprodução</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Mudar diretório</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Procura rápida</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Selecionar diretório</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ca|%4 Hz|faixas: %5|duração total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausa</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|faixas: %2|duração total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Parado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nome da lista de reprodução:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Aparência</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Atalhos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posição</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Procura rápida</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar barras de ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Organizar lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por artista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por artista do álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por caminho e nome de ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de faixa</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por número de disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por data de criação do ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por data de modificação do ficheiro</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Organizar seleção</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatória</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Inverter lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Ações</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Adicionar nova lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Mostrar todos os separadores</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Processamento: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts index 3c463822c..cd4fb1950 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_pt_BR.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Adicionar à lista de reprodução</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Mudar pasta</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Selecionar pasta</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Volume</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 bit|%3 ca|%4 Hz|faixas: %5|duração total: %6|%7 kbps|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Pausado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|faixas: %2|duração total: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Parado</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Nome da lista de reprodução:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Aparência</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Atalhos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Posição</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Editar barras de ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Organizar lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>Por título</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>Por álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>Por artista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>Por artista do álbum</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>Por nome de arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>Por caminho e nome de arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>Por data</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>Por número de faixa</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>Por número de disco</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>Por data de criação do arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>Por data de modificação do arquivo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>Por grupo</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Organizar seleção</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Lista aleatória</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Inverter lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Ações</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Adicionar nova lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Mostrar todos as abas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Processamento: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts index 774dc2414..4b3f0e619 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_ru.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Добавить к списку воспроизведения</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Сменить директорию</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Быстрый поиск</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Выберите директорию</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Переименовать список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Громкость</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 бит|%3 к.|%4 Гц|треков: %5|общее время: %6|%7 кбит/с|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Пауза</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|треков: %2|общее время: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Стоп</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Имя списка:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Внешний вид</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Сочетания клавиш</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Воспр.</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Позиция</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Быстрый поиск</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Изменить панели инструментов</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Сортировать</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>По названию</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>По альбому</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>По исполнителю</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>По исполнителю альбома</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>По имени файла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>По пути и файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>По дате</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>По номеру трека</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>По номеру диска</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>По дате создания файла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>По дате изменения файла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>По группе</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Сортировать выделенное</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Перемешать</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Перевернуть</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Действия</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Добавить новый список воспроизведения</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Показать все вкладки</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Буферизация: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts index 53ca77454..ae0e7d51c 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_sk.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Vzhľad</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Triediť zoznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Podľa názvu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished">Podľa albumu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished">Podľa interpréta</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Podľa názvu súboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Podľa cesty a názvu súboru</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Podľa dátumu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Podľa čísla skladby</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Potriediť výber</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Zamiešať zoznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Otočiť zoznam</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Činnosti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished">Premenovať playlist</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts index fc7804a72..1be40d2f8 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_BA.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Додај на листу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Промијени фасциклу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Избор фасцикле</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Кумп</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Преименуј листу нумера</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Јачина</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Паузирано</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Заустављено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Име листе нумера:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Изглед</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Пречице</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Пуштање</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Поређај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>по наслову</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>по албуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>по извођачу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>по имену фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>по путањи и имену</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>по датуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>по броју нумере</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>по броју диска</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>по датуму фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>по групи</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Поређај избор</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Претумбај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Обрни</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Радње</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Додај нову листу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Прикажи све језичке</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Баферујем: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts index d088c4938..9e9cbec61 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_sr_RS.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Додај на листу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Промени фасциклу</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Избор фасцикле</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Кумп</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Преименуј листу нумера</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Јачина</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Паузирано</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Заустављено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Име листе нумера:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Изглед</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished">Пречице</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Пуштање</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Поређај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>по наслову</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>по албуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>по извођачу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>по имену фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>по путањи и имену</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>по датуму</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>по броју нумере</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>по броју диска</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>по датуму фајла</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>по групи</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Поређај избор</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Претумбај</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Обрни</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Радње</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Додај нову листу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Прикажи све језичке</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Баферујем: %1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts index af4fd111e..a6fad1113 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_tr.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> @@ -662,190 +662,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation type="unfinished">Görünüm</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation type="unfinished">Listeyi Sınıflandır</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation type="unfinished">Başlığa Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation type="unfinished">Dosya Adına Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation type="unfinished">Dosya Yolu + Dosya Adına Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation type="unfinished">Tarihe Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation type="unfinished">Parça Numarasına Göre</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation type="unfinished">Seçilenleri Sınıflandır</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation type="unfinished">Rastgele Listele</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation type="unfinished">Listeyi Ters Çevir</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation type="unfinished">Eylemler</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -991,7 +991,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts index b91996f22..87e4b5a05 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_uk_UA.ts @@ -582,22 +582,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>Додати до списку відтворення</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation>Швидкий пошук</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>Виберіть теку</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>Змінити теку</translation> </message> @@ -663,190 +663,190 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>Гучність</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b>|%2 біт|%3 к.|%4 Гц|треків: %5|загальний час: %6|%7 кбіт/с|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>Призупинено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|треків: %2|загальний час: %3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>Зупинено</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>Назва списку:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>Зовнішній вигляд</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>Комбінації клавіш</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>Відтворюється</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation></translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>Позиція</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation>Швидкий пошук</translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>Редагувати панель інструментів</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>Сортувати</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>За назвою</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>За альбомом</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>За виконавцем</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>За альбомом виконавця</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>За ім'ям файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>За шляхом та файлом</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>За датою</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>За номером треку</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>За номером диску</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>За датою створення файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>За датою модифікації файлу</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>За групою</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>Сортувати вибране</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>Перемішати</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>Перевернути</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>Дії</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>Додати новий список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>Показати всі вкладки</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>Буферизація: %1%</translation> </message> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation></translation> </message> @@ -992,7 +992,7 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>Переіменувати список</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts index 98c8b0dd5..d9dc1def2 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_CN.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation>添加到播放列表中</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation>更改文件夹</translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation>选择文件夹</translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation>重命名播放列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>音量</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation><b>%1</b?|%2 比特|%3频道|%4赫兹|曲目:%5|总计时间:%6|%7前比特每秒|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation>被暂停</translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation><b>%1</b>|曲目:%2|总计时间:%3|</translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation>被停止</translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation>播放列表名称:</translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>外观</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation>热键</translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation>播放中</translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation>Ctrl+0</translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>位置</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation>编辑工具栏</translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>清单排序</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>按标题</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation>按专辑</translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation>按艺术家</translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation>按专辑 艺术家</translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>按文件名称</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>按路径+文件名称</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>按日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>按单曲号</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation>按光盘号</translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation>按文件的创建日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation>按文件的修改日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation>按组</translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>排序选择</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>随机列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>反序列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>行动</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation>添加新播放列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation>显示所有的分页标签</translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation>缓冲中:%1%</translation> </message> diff --git a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts index c27319cae..81dc71433 100644 --- a/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts +++ b/src/plugins/Ui/qsui/translations/qsui_plugin_zh_TW.ts @@ -581,22 +581,22 @@ <context> <name>FileSystemBrowser</name> <message> - <location filename="../filesystembrowser.cpp" line="95"/> + <location filename="../filesystembrowser.cpp" line="91"/> <source>Add to Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="97"/> + <location filename="../filesystembrowser.cpp" line="93"/> <source>Change Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="99"/> + <location filename="../filesystembrowser.cpp" line="95"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../filesystembrowser.cpp" line="173"/> + <location filename="../filesystembrowser.cpp" line="169"/> <source>Select Directory</source> <translation type="unfinished"></translation> </message> @@ -663,7 +663,7 @@ <name>MainWindow</name> <message> <location filename="../forms/mainwindow.ui" line="14"/> - <location filename="../mainwindow.cpp" line="964"/> + <location filename="../mainwindow.cpp" line="965"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -809,189 +809,189 @@ </message> <message> <location filename="../forms/mainwindow.ui" line="247"/> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="463"/> + <location filename="../mainwindow.cpp" line="464"/> <source>Volume</source> <translation>音量</translation> </message> <message> - <location filename="../mainwindow.cpp" line="373"/> + <location filename="../mainwindow.cpp" line="374"/> <source><b>%1</b>|%2 bit|%3 ch|%4 Hz|tracks: %5|total time: %6|%7 kbps|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="384"/> + <location filename="../mainwindow.cpp" line="385"/> <source><b>%1</b>|tracks: %2|total time: %3|</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="385"/> + <location filename="../mainwindow.cpp" line="386"/> <source>Stopped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="286"/> + <location filename="../mainwindow.cpp" line="287"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="327"/> + <location filename="../mainwindow.cpp" line="328"/> <source>Appearance</source> <translation>外觀</translation> </message> <message> - <location filename="../mainwindow.cpp" line="328"/> + <location filename="../mainwindow.cpp" line="329"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="374"/> + <location filename="../mainwindow.cpp" line="375"/> <source>Playing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="453"/> + <location filename="../mainwindow.cpp" line="454"/> <source>Ctrl+0</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="459"/> + <location filename="../mainwindow.cpp" line="460"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../mainwindow.cpp" line="461"/> + <location filename="../mainwindow.cpp" line="462"/> <source>Position</source> <translation>位置</translation> </message> <message> - <location filename="../mainwindow.cpp" line="465"/> + <location filename="../mainwindow.cpp" line="466"/> <source>Quick Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="520"/> + <location filename="../mainwindow.cpp" line="521"/> <source>Edit Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="522"/> + <location filename="../mainwindow.cpp" line="523"/> <source>Sort List</source> <translation>清單排序</translation> </message> <message> - <location filename="../mainwindow.cpp" line="525"/> - <location filename="../mainwindow.cpp" line="580"/> + <location filename="../mainwindow.cpp" line="526"/> + <location filename="../mainwindow.cpp" line="581"/> <source>By Title</source> <translation>按標題</translation> </message> <message> - <location filename="../mainwindow.cpp" line="529"/> - <location filename="../mainwindow.cpp" line="584"/> + <location filename="../mainwindow.cpp" line="530"/> + <location filename="../mainwindow.cpp" line="585"/> <source>By Album</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="533"/> - <location filename="../mainwindow.cpp" line="588"/> + <location filename="../mainwindow.cpp" line="534"/> + <location filename="../mainwindow.cpp" line="589"/> <source>By Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="537"/> - <location filename="../mainwindow.cpp" line="592"/> + <location filename="../mainwindow.cpp" line="538"/> + <location filename="../mainwindow.cpp" line="593"/> <source>By Album Artist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="541"/> - <location filename="../mainwindow.cpp" line="596"/> + <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="597"/> <source>By Filename</source> <translation>按檔名</translation> </message> <message> - <location filename="../mainwindow.cpp" line="545"/> - <location filename="../mainwindow.cpp" line="600"/> + <location filename="../mainwindow.cpp" line="546"/> + <location filename="../mainwindow.cpp" line="601"/> <source>By Path + Filename</source> <translation>按路徑+檔名</translation> </message> <message> - <location filename="../mainwindow.cpp" line="549"/> - <location filename="../mainwindow.cpp" line="604"/> + <location filename="../mainwindow.cpp" line="550"/> + <location filename="../mainwindow.cpp" line="605"/> <source>By Date</source> <translation>按日期</translation> </message> <message> - <location filename="../mainwindow.cpp" line="553"/> - <location filename="../mainwindow.cpp" line="608"/> + <location filename="../mainwindow.cpp" line="554"/> + <location filename="../mainwindow.cpp" line="609"/> <source>By Track Number</source> <translation>按音軌</translation> </message> <message> - <location filename="../mainwindow.cpp" line="557"/> - <location filename="../mainwindow.cpp" line="612"/> + <location filename="../mainwindow.cpp" line="558"/> + <location filename="../mainwindow.cpp" line="613"/> <source>By Disc Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="561"/> - <location filename="../mainwindow.cpp" line="616"/> + <location filename="../mainwindow.cpp" line="562"/> + <location filename="../mainwindow.cpp" line="617"/> <source>By File Creation Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="565"/> - <location filename="../mainwindow.cpp" line="620"/> + <location filename="../mainwindow.cpp" line="566"/> + <location filename="../mainwindow.cpp" line="621"/> <source>By File Modification Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="569"/> + <location filename="../mainwindow.cpp" line="570"/> <source>By Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="577"/> + <location filename="../mainwindow.cpp" line="578"/> <source>Sort Selection</source> <translation>選取排序</translation> </message> <message> - <location filename="../mainwindow.cpp" line="627"/> + <location filename="../mainwindow.cpp" line="628"/> <source>Randomize List</source> <translation>隨機產生清單</translation> </message> <message> - <location filename="../mainwindow.cpp" line="629"/> + <location filename="../mainwindow.cpp" line="630"/> <source>Reverse List</source> <translation>逆串列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="636"/> - <location filename="../mainwindow.cpp" line="677"/> + <location filename="../mainwindow.cpp" line="637"/> + <location filename="../mainwindow.cpp" line="678"/> <source>Actions</source> <translation>動作</translation> </message> <message> - <location filename="../mainwindow.cpp" line="418"/> + <location filename="../mainwindow.cpp" line="419"/> <source>Add new playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="424"/> + <location filename="../mainwindow.cpp" line="425"/> <source>Show all tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="873"/> + <location filename="../mainwindow.cpp" line="874"/> <source>Buffering: %1%</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/CMakeLists.txt b/src/plugins/Ui/skinned/CMakeLists.txt index 23ff393a3..68a15b9ce 100644 --- a/src/plugins/Ui/skinned/CMakeLists.txt +++ b/src/plugins/Ui/skinned/CMakeLists.txt @@ -1,21 +1,5 @@ project(skinned) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - - # libqmmpui & libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) @@ -93,7 +77,7 @@ SET(skinned_HDRS SET(skinned_RCCS glare/glare.qrc resources/resources.qrc translations/translations.qrc) -QT4_ADD_RESOURCES(skinned_RCC_SRCS ${skinned_RCCS}) +QT5_ADD_RESOURCES(skinned_RCC_SRCS ${skinned_RCCS}) # user interface @@ -106,14 +90,14 @@ SET(skinned_UIS forms/hotkeyeditor.ui ) -QT4_WRAP_UI(skinned_UIS_H ${skinned_UIS}) +QT5_WRAP_UI(skinned_UIS_H ${skinned_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(X11_FOUND) ADD_LIBRARY(skinned MODULE ${skinned_SRCS} ${skinned_UIS_H} ${skinned_RCC_SRCS} ${skinned_HDRS}) -target_link_libraries(skinned ${QT_LIBRARIES} libqmmp qmmpui ${X11_LDFLAGS}) add_dependencies(skinned qmmpui libqmmp) +target_link_libraries(skinned Qt5::Widgets Qt5::X11Extras -lqmmpui -lqmmp ${X11_LDFLAGS}) install(TARGETS skinned DESTINATION ${LIB_DIR}/qmmp/Ui) ENDIF(X11_FOUND) diff --git a/src/plugins/Ui/skinned/eqwidget.cpp b/src/plugins/Ui/skinned/eqwidget.cpp index a1ed49c82..76bbcf2bf 100644 --- a/src/plugins/Ui/skinned/eqwidget.cpp +++ b/src/plugins/Ui/skinned/eqwidget.cpp @@ -75,7 +75,7 @@ EqWidget::EqWidget (QWidget *parent) createActions(); updatePositions(); updateMask(); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 QString wm_name = WindowSystem::netWindowManagerName(); if(wm_name.contains("metacity", Qt::CaseInsensitive) || wm_name.contains("openbox", Qt::CaseInsensitive)) @@ -403,12 +403,12 @@ void EqWidget::importWinampEQF() QFile file(path); file.open(QIODevice::ReadOnly); file.read (header, 31); - if (QString::fromAscii(header).contains("Winamp EQ library file v1.1")) + if (QString::fromLatin1(header).contains("Winamp EQ library file v1.1")) { while (file.read (name, 257)) { EQPreset* preset = new EQPreset; - preset->setText(QString::fromAscii(name)); + preset->setText(QString::fromLatin1(name)); file.read(bands,11); @@ -431,10 +431,13 @@ void EqWidget::keyPressEvent (QKeyEvent *ke) QApplication::sendEvent(qobject_cast<MainWindow*>(parent())->playlist(), &event); } -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool EqWidget::event (QEvent *event) { - if(event->type() == QEvent::WinIdChange || event->type() == QEvent::Show) + if(event->type() == QEvent::WinIdChange || + event->type() == QEvent::WindowActivate || + event->type() == QEvent::Show || + event->type() == QEvent::ShowToParent) { WindowSystem::ghostWindow(winId()); WindowSystem::setWinHint(winId(), "equalizer", "Qmmp"); diff --git a/src/plugins/Ui/skinned/eqwidget.h b/src/plugins/Ui/skinned/eqwidget.h index e6d888732..43783df6a 100644 --- a/src/plugins/Ui/skinned/eqwidget.h +++ b/src/plugins/Ui/skinned/eqwidget.h @@ -80,7 +80,7 @@ private: void keyPressEvent (QKeyEvent *); void changeEvent(QEvent*); void closeEvent(QCloseEvent*); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool event (QEvent *event); #endif diff --git a/src/plugins/Ui/skinned/listwidget.cpp b/src/plugins/Ui/skinned/listwidget.cpp index 616067be0..e415aae71 100644 --- a/src/plugins/Ui/skinned/listwidget.cpp +++ b/src/plugins/Ui/skinned/listwidget.cpp @@ -28,6 +28,7 @@ #include <QApplication> #include <QHelpEvent> #include <QTimer> +#include <QMimeData> #include <qmmpui/playlistitem.h> #include <qmmpui/playlistmodel.h> #include <qmmpui/qmmpuisettings.h> @@ -149,9 +150,7 @@ void ListWidget::paintEvent(QPaintEvent *) { QPainter painter(this); m_drawer.fillBackground(&painter, width(), height()); -#if QT_VERSION >= 0x040700 painter.setLayoutDirection(Qt::LayoutDirectionAuto); -#endif bool rtl = (layoutDirection() == Qt::RightToLeft); painter.setClipRect(5,0,width() - 9, height()); diff --git a/src/plugins/Ui/skinned/mainwindow.cpp b/src/plugins/Ui/skinned/mainwindow.cpp index 2cdb4cb94..5108d71e9 100644 --- a/src/plugins/Ui/skinned/mainwindow.cpp +++ b/src/plugins/Ui/skinned/mainwindow.cpp @@ -17,11 +17,13 @@ * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QFileDialog> #include <QDir> #include <QAction> #include <QMenu> #include <QDesktopWidget> +#include <QSignalMapper> #include <math.h> #include <qmmp/soundcore.h> #include <qmmp/visual.h> @@ -54,13 +56,26 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 qDebug("MainWindow: detected wm: %s", qPrintable(WindowSystem::netWindowManagerName())); #endif m_vis = 0; m_update = false; - setWindowFlags(Qt::Window | Qt::FramelessWindowHint | - Qt::WindowCloseButtonHint | Qt::WindowMinMaxButtonsHint | Qt::WindowSystemMenuHint); + +#ifdef QMMP_WS_X11 + QString wm_name = WindowSystem::netWindowManagerName(); + if(wm_name.contains("Marco", Qt::CaseInsensitive) || + wm_name.contains("Metacity", Qt::CaseInsensitive) || + wm_name.contains("Mutter", Qt::CaseInsensitive) || + wm_name.contains("GNOME", Qt::CaseInsensitive)) + { + setWindowFlags(Qt::Window | Qt::FramelessWindowHint | + Qt::WindowCloseButtonHint | Qt::WindowSystemMenuHint); + } + else +#endif + setWindowFlags(Qt::Window | Qt::FramelessWindowHint | + Qt::WindowCloseButtonHint | Qt::WindowMinMaxButtonsHint | Qt::WindowSystemMenuHint); restoreWindowTitle(); @@ -76,17 +91,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) //user interface m_skin = new Skin(this); -#ifdef Q_WS_X11 - QString wm_name = WindowSystem::netWindowManagerName(); - if(wm_name.contains("metacity", Qt::CaseInsensitive) || - wm_name.contains("marko", Qt::CaseInsensitive) || - wm_name.contains("mutter", Qt::CaseInsensitive) || - wm_name.contains("gnome", Qt::CaseInsensitive) || - wm_name.contains("fvwm", Qt::CaseInsensitive)) - resize(275 * m_skin->ratio(),116 * m_skin->ratio()); - else -#endif - setFixedSize(275 * m_skin->ratio(),116 * m_skin->ratio()); + setFixedSize(275 * m_skin->ratio(),116 * m_skin->ratio()); Dock *dock = new Dock(this); dock->setMainWidget(this); @@ -309,7 +314,7 @@ void MainWindow::readSettings() ACTION(ActionManager::NO_PL_ADVANCE)->setChecked(m_ui_settings->isNoPlayListAdvance()); m_update = true; } -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 WindowSystem::changeWinSticky(winId(), ACTION(ActionManager::WM_STICKY)->isChecked()); WindowSystem::setWinHint(winId(), "player", "Qmmp"); #endif @@ -369,7 +374,7 @@ void MainWindow::toggleVisibility() activateWindow(); m_playlist->setVisible(m_display->isPlaylistVisible()); m_equalizer->setVisible(m_display->isEqualizerVisible()); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 if(WindowSystem::netWindowManagerName() == "Metacity") { m_playlist->activateWindow(); @@ -382,7 +387,7 @@ void MainWindow::toggleVisibility() { showNormal(); } -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 WindowSystem::changeWinSticky(winId(), ACTION(ActionManager::WM_STICKY)->isChecked()); WindowSystem::setWinHint(winId(), "player", "Qmmp"); raise(); diff --git a/src/plugins/Ui/skinned/playlist.cpp b/src/plugins/Ui/skinned/playlist.cpp index f27c95312..6830207cb 100644 --- a/src/plugins/Ui/skinned/playlist.cpp +++ b/src/plugins/Ui/skinned/playlist.cpp @@ -64,7 +64,7 @@ PlayList::PlayList (PlayListManager *manager, QWidget *parent) m_pl_browser = 0; m_pl_selector = 0; -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 QString wm_name = WindowSystem::netWindowManagerName(); m_compiz = wm_name.contains("compiz", Qt::CaseInsensitive); if(wm_name.contains("metacity", Qt::CaseInsensitive) || @@ -74,7 +74,7 @@ PlayList::PlayList (PlayListManager *manager, QWidget *parent) #endif setWindowFlags (Qt::Dialog | Qt::FramelessWindowHint); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 if(m_compiz) { setFixedSize(275*m_ratio, 116*m_ratio); @@ -422,37 +422,28 @@ void PlayList::mouseMoveEvent (QMouseEvent *e) { if (m_resize) { -#ifdef Q_WS_X11 - if(m_compiz) -#endif - { - int dx = m_ratio * 25; - int dy = m_ratio * 29; + int dx = m_ratio * 25; + int dy = m_ratio * 29; - int sx = ((e->x() - 275 * m_ratio) + 14) / dx; - int sy = ((e->y() - 116 * m_ratio) + 14) / dy; + int sx = ((e->x() - 275 * m_ratio) + 14) / dx; + int sy = ((e->y() - 116 * m_ratio) + 14) / dy; - sx = qMax(sx, 0); - sy = qMax(sy, 0); + sx = qMax(sx, 0); + sy = qMax(sy, 0); -#ifdef Q_OS_WIN - resize(275 * m_ratio + dx * sx, 116 * m_ratio + dy * sy); -#else +#ifdef QMMP_WS_X11 + if(m_compiz) setFixedSize(275 * m_ratio + dx * sx, 116 * m_ratio + dy * sy); -#endif - } -#ifdef Q_WS_X11 else - resize (e->x() +25, e->y() +25); #endif + resize(275 * m_ratio + dx * sx, 116 * m_ratio + dy * sy); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 //avoid right corner moving during resize if(layoutDirection() == Qt::RightToLeft) WindowSystem::revertGravity(winId()); #endif - } } @@ -517,10 +508,13 @@ void PlayList::readSettings() } } -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool PlayList::event (QEvent *event) { - if(event->type() == QEvent::WinIdChange || event->type() == QEvent::Show) + if(event->type() == QEvent::WinIdChange || + event->type() == QEvent::WindowActivate || + event->type() == QEvent::Show || + event->type() == QEvent::ShowToParent) { WindowSystem::ghostWindow(winId()); WindowSystem::setWinHint(winId(), "playlist", "Qmmp"); @@ -536,7 +530,7 @@ void PlayList::writeSettings() settings.setValue ("Skinned/pl_pos", this->pos()); } -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool PlayList::useCompiz() const { return m_compiz; @@ -686,7 +680,7 @@ void PlayList::setMinimalMode(bool b) m_height = height(); m_shaded = b; -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 if(m_compiz) { if(m_shaded) diff --git a/src/plugins/Ui/skinned/playlist.h b/src/plugins/Ui/skinned/playlist.h index 3bd2e0787..d960255c7 100644 --- a/src/plugins/Ui/skinned/playlist.h +++ b/src/plugins/Ui/skinned/playlist.h @@ -56,7 +56,7 @@ class PlayList : public QWidget void setMinimalMode(bool b = true); void writeSettings(); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool useCompiz() const; #endif @@ -102,7 +102,7 @@ class PlayList : public QWidget void changeEvent (QEvent*); void closeEvent (QCloseEvent*); void keyPressEvent (QKeyEvent*); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool event (QEvent *event); #endif QMenu *m_addMenu; @@ -134,7 +134,7 @@ class PlayList : public QWidget KeyboardManager* m_keyboardManager; QPointer <PlayListBrowser> m_pl_browser; PlayListSelector *m_pl_selector; -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 bool m_compiz; #endif }; diff --git a/src/plugins/Ui/skinned/playlisttitlebar.cpp b/src/plugins/Ui/skinned/playlisttitlebar.cpp index a31966b34..1c4b3d98f 100644 --- a/src/plugins/Ui/skinned/playlisttitlebar.cpp +++ b/src/plugins/Ui/skinned/playlisttitlebar.cpp @@ -59,7 +59,7 @@ PlayListTitleBar::PlayListTitleBar(QWidget *parent) readSettings(); QSettings settings (Qmmp::configFile(), QSettings::IniFormat); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 if(m_pl->useCompiz()) m_pl->setFixedSize(settings.value ("Skinned/pl_size", QSize (m_ratio*275, m_ratio*116)).toSize()); else @@ -189,7 +189,7 @@ void PlayListTitleBar::mouseMoveEvent(QMouseEvent* event) QPoint npos = event->globalPos()-pos; if (m_shaded && m_resize) { -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 //avoid right corner moving during resize if(layoutDirection() == Qt::RightToLeft) WindowSystem::revertGravity(m_pl->winId()); @@ -200,7 +200,7 @@ void PlayListTitleBar::mouseMoveEvent(QMouseEvent* event) sx = qMax(sx, 0); resize(275 * m_ratio + dx * sx, height()); -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 if(m_pl->useCompiz()) m_pl->setFixedSize(275 * m_ratio + dx * sx, m_pl->height()); diff --git a/src/plugins/Ui/skinned/popupsettings.cpp b/src/plugins/Ui/skinned/popupsettings.cpp index 95c6c4c1b..e57e3624a 100644 --- a/src/plugins/Ui/skinned/popupsettings.cpp +++ b/src/plugins/Ui/skinned/popupsettings.cpp @@ -39,6 +39,7 @@ PopupSettings::PopupSettings(QWidget *parent) createMenu(); } + PopupSettings::~PopupSettings() {} diff --git a/src/plugins/Ui/skinned/shortcutitem.cpp b/src/plugins/Ui/skinned/shortcutitem.cpp index 8e3412e10..0af929a85 100644 --- a/src/plugins/Ui/skinned/shortcutitem.cpp +++ b/src/plugins/Ui/skinned/shortcutitem.cpp @@ -24,7 +24,7 @@ ShortcutItem::ShortcutItem(QTreeWidgetItem *parent, int type) : QTreeWidgetItem(parent, QStringList() << ActionManager::instance()->action(type)->text().remove("&") - << ActionManager::instance()->action(type)->shortcut()) + << ActionManager::instance()->action(type)->shortcut().toString()) { m_action = ActionManager::instance()->action(type); setIcon(0, m_action->icon()); diff --git a/src/plugins/Ui/skinned/skin.cpp b/src/plugins/Ui/skinned/skin.cpp index ed7edf89e..2dd078037 100644 --- a/src/plugins/Ui/skinned/skin.cpp +++ b/src/plugins/Ui/skinned/skin.cpp @@ -566,7 +566,7 @@ void Skin::loadVisColor() { j++; QByteArray line = file.readLine (); - QString tmp = QString::fromLatin1(line.constData()); + QString tmp = QString::fromLatin1(line); tmp = tmp.trimmed (); tmp.remove("\""); int i = tmp.indexOf ("//"); diff --git a/src/plugins/Ui/skinned/skinned.pro b/src/plugins/Ui/skinned/skinned.pro index 77fa36dd0..9e55ab2d0 100644 --- a/src/plugins/Ui/skinned/skinned.pro +++ b/src/plugins/Ui/skinned/skinned.pro @@ -122,7 +122,9 @@ RESOURCES = resources/resources.qrc \ LIBS += $$QMMPUI_LIB unix { - target.path = $$LIB_DIR/qmmp/Ui - INSTALLS += target - PKGCONFIG += x11 + target.path = $$LIB_DIR/qmmp/Ui + INSTALLS += target + PKGCONFIG += x11 + DEFINES += QMMP_WS_X11 + QT += x11extras } diff --git a/src/plugins/Ui/skinned/skinnedfactory.cpp b/src/plugins/Ui/skinned/skinnedfactory.cpp index 35115986b..064a0ffc5 100644 --- a/src/plugins/Ui/skinned/skinnedfactory.cpp +++ b/src/plugins/Ui/skinned/skinnedfactory.cpp @@ -60,5 +60,3 @@ QTranslator *SkinnedFactory::createTranslator(QObject *parent) translator->load(QString(":/skinned_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(skinned, SkinnedFactory) diff --git a/src/plugins/Ui/skinned/skinnedfactory.h b/src/plugins/Ui/skinned/skinnedfactory.h index 8f9b7c28f..2c8859e6d 100644 --- a/src/plugins/Ui/skinned/skinnedfactory.h +++ b/src/plugins/Ui/skinned/skinnedfactory.h @@ -31,6 +31,7 @@ class SkinnedFactory : public QObject, public UiFactory { Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.UiFactoryInterface.1.0") Q_INTERFACES(UiFactory) public: const UiProperties properties() const; diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_bg.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_bg.ts index 5f42638c7..db614e81d 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_bg.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_bg.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -929,17 +929,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts index e43399697..b3c8e7161 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_cs.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Vzhled</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Zkratky</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Zobrazení</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Seznam skladeb</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Zvuk</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Činnosti</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Přejmenovat seznam skladeb</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Název seznamu skladeb:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nový seznam skladeb</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts index 3d9961910..16569dff2 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_de.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Erscheinungsbild</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Kurzbefehle</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Wiedergabeliste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Audio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Aktionen</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Wiedergabeliste umbenennen</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Wiedergabelistenname:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Neue Wiedergabeliste</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_el.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_el.ts index 10d6bff44..c52fedb4b 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_el.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_el.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Εμφάνιση</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Συντομεύσεις</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Προβολή</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Λίστα αναπαραγωγής</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Ήχος</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Εργαλεία</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Ενέργειες</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Μετονομασία της λίστας αναπαραγωγής</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Όνομα λίστας αναπαραγωγής:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Νέα λίστα αναπαραγωγής</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_en.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_en.ts index 7892b2358..56f82222d 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_en.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_en.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -929,17 +929,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts index ac7dedd24..a396c8ed9 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_es.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Apariencia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Atajos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Lista de reproducción</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Sonido</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Acciones</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Renombrar lista</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nombre de la lista:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Lista nueva</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_fi.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_fi.ts index 0ba34efd6..93585c49e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_fi.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_fi.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Ulkoasu</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Pikanäppäimet</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Soittolista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Ääni</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Työkalut</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Toiminnot</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Nimeä soittolista uudelleen</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Soittolistan nimi:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Uusi soittolista</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_fr.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_fr.ts index 062f9d9e2..37cd662a3 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_fr.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_fr.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Apparence</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Raccourcis</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Vue</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Liste</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Audio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Outils</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Actions</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Renommer la liste</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nom de la liste : </translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nouvelle liste</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_gl_ES.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_gl_ES.ts index 6107c3f53..b8af41fd6 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_gl_ES.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_gl_ES.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Apariencia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Accesos rápidos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Vista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Lista de reprodución</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Audio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Accións</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodución</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nome da lista de reprodución:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nova lista de reprodución</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_he.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_he.ts index 16b8158bb..cc2fb0fc4 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_he.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_he.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>הופעה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>קיצורי דרך</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>תצוגה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>רשימת נגינה</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>שמע</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>כלים</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>פעולות</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>שנה שם רשימת נגינה</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>שם רשימת נגינה:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>רשימת נגינה &חדשה</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts index 8b8fd1445..d8401f893 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_hu.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation type="unfinished">Lejátszási lista</translation> </message> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished">Megjelenés</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished">Megnéz</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Eszközök</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -924,17 +924,17 @@ <translation>Tevékenységek</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Lista átnevezése</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Lista neve:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_id.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_id.ts index a4db5f6ee..fdfcbba06 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_id.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_id.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Tampilan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Pintasan</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Tinjau</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Daftarmain</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Audio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Alat</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Tindakan</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Ubah-nama Daftarmain</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nama daftarmain:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Daftarmain Baru</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts index db0922951..d909f772e 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_it.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished">Aspetto</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation type="unfinished">Lista brani</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -913,17 +913,17 @@ <translation>Inverti la lista</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Rinomina lista brani</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Nome della lista brani:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts index bf08420a3..966731509 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_ja.ts @@ -786,37 +786,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>プレイリスト</translation> </message> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>外観</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>ショートカット</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>観容</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>音響</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>ツール</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -930,17 +930,17 @@ <translation>動作</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>プレイリスト名を変更</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>プレイリスト名:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>新しいプレイリスト(&N)</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_kk.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_kk.ts index 4868e72ac..68cd60083 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_kk.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_kk.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished">Сыртқы түрі</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation type="unfinished">Тізім</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Қызмет</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -918,17 +918,17 @@ <translation>Тізімді кері айналдыру</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts index fe9b04633..49068ba21 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_lt.ts @@ -786,37 +786,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Išvaizda</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Trumpiniai</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Rodyti</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Grojaraštis</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Audio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Įrankiai</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -914,17 +914,17 @@ <translation>Apversti</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Pervadinti grojaraštį</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Grojaraščio pavadinimas:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Naujas grojaraštis</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts index 2c3eed93c..102776c3f 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_nl.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Vertoning</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Sneltoetsen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Weergave</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Afspeellijst</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Gereedschappen</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -908,17 +908,17 @@ <translation>Draai Lijst Om</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Hernoem Afspeellijst</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Naam van de Afspeellijst:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nieuwe Afspeellijst</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts index 59eac4862..5061eec8f 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pl_PL.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Wygląd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Skróty klawiszowe</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Wygląd</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Lista odtwarzania</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Dźwięk</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Narzędzia</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -929,17 +929,17 @@ <translation>Akcje</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Zmień nazwę listy</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nazwa listy odtwarzania:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nowa lista odtwarzania</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pt.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pt.ts index b1a574237..15b1070fe 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pt.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pt.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Aparência</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Atalhos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Áudio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Ações</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodução</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nome da lista de reprodução:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nova lista de reprodução</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts index 480dadc11..238598b77 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_pt_BR.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Aparência</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Atalhos</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Lista de reprodução</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Áudio</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Ações</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Renomear lista de reprodução</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Nome da lista de reprodução:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nova lista de reprodução</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts index 6c20a57b3..f66bcef4d 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_ru.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Внешний вид</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Сочетания клавиш</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Звук</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Сервис</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>Действия</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Переименовать список</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Имя списка:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Новый список</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts index bf78a9a88..3e1bcdcda 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_sk.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished">Vzhľad</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished">Skratky</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Zobraziť</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Playlist</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -908,17 +908,17 @@ <translation>Otočiť zoznam</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Premenovať playlist</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Název playlistu:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Nový playlist</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_sr_BA.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_sr_BA.ts index ca522ba09..994e740b8 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_sr_BA.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_sr_BA.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Изглед</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Пречице</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Приказ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Листа нумера</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Звук</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Алатке</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -929,17 +929,17 @@ <translation>Радње</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Преименовање листе</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Име листе:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&нову листу</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_sr_RS.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_sr_RS.ts index d74235964..61a5cae6c 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_sr_RS.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_sr_RS.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Изглед</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Пречице</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Приказ</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Листа нумера</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Звук</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Алатке</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -929,17 +929,17 @@ <translation>Радње</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished">Преименовање листе</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished">Име листе:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&нову листу</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts index bd141fc02..7300fc961 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_tr.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation type="unfinished">Görünüm</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation type="unfinished">Çalma Listesi</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Araçlar</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -913,17 +913,17 @@ <translation>Listeyi Ters Çevir</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts index 4cb9ab7d3..e65d6be55 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_uk_UA.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>Зовнішній вигляд</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>Комбінації клавіш</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>Вигляд</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>Список</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>Звук</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>Утиліти</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation></translation> </message> @@ -913,17 +913,17 @@ <translation>Перевернути</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>Переіменувати список</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>Ім'я списка:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&Новий список</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts index 94d93daf0..6022b55d7 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_CN.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>外观</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation>热键</translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation>视图</translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>播放列表</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>音频</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation>Qmmp</translation> </message> @@ -929,17 +929,17 @@ <translation>动作</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation>重命名播放列表</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation>播放列表名称:</translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation>&新播放列表</translation> </message> diff --git a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts index 3020c9afe..b5f9aa158 100644 --- a/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts +++ b/src/plugins/Ui/skinned/translations/skinned_plugin_zh_TW.ts @@ -785,37 +785,37 @@ <context> <name>MainWindow</name> <message> - <location filename="../mainwindow.cpp" line="354"/> + <location filename="../mainwindow.cpp" line="359"/> <source>Appearance</source> <translation>外觀</translation> </message> <message> - <location filename="../mainwindow.cpp" line="355"/> + <location filename="../mainwindow.cpp" line="360"/> <source>Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="425"/> + <location filename="../mainwindow.cpp" line="430"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../mainwindow.cpp" line="434"/> + <location filename="../mainwindow.cpp" line="439"/> <source>Playlist</source> <translation>播放清單</translation> </message> <message> - <location filename="../mainwindow.cpp" line="452"/> + <location filename="../mainwindow.cpp" line="457"/> <source>Audio</source> <translation>聲訊</translation> </message> <message> - <location filename="../mainwindow.cpp" line="460"/> + <location filename="../mainwindow.cpp" line="465"/> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../mainwindow.cpp" line="542"/> + <location filename="../mainwindow.cpp" line="547"/> <source>Qmmp</source> <translation type="unfinished"></translation> </message> @@ -929,17 +929,17 @@ <translation>動作</translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Rename Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="617"/> + <location filename="../playlist.cpp" line="611"/> <source>Playlist name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../playlist.cpp" line="638"/> + <location filename="../playlist.cpp" line="632"/> <source>&New PlayList</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Ui/skinned/windowsystem.cpp b/src/plugins/Ui/skinned/windowsystem.cpp index e4489a250..acad483f2 100644 --- a/src/plugins/Ui/skinned/windowsystem.cpp +++ b/src/plugins/Ui/skinned/windowsystem.cpp @@ -21,7 +21,7 @@ #include "windowsystem.h" #include <QCoreApplication> -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 #include <QX11Info> #include <X11/X.h> #include <X11/Xatom.h> @@ -29,7 +29,7 @@ #include <X11/Xutil.h> #endif -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 void WindowSystem::ghostWindow(WId win) { Display* dsp = QX11Info::display(); diff --git a/src/plugins/Ui/skinned/windowsystem.h b/src/plugins/Ui/skinned/windowsystem.h index b5cc76626..6c3cd8b45 100644 --- a/src/plugins/Ui/skinned/windowsystem.h +++ b/src/plugins/Ui/skinned/windowsystem.h @@ -27,7 +27,7 @@ class WindowSystem { public: -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 static void ghostWindow(WId id); static QString netWindowManagerName(); static void changeWinSticky(WId win, bool stick); diff --git a/src/plugins/Visual/analyzer/CMakeLists.txt b/src/plugins/Visual/analyzer/CMakeLists.txt index dcf21a5ed..cb08ec0a3 100644 --- a/src/plugins/Visual/analyzer/CMakeLists.txt +++ b/src/plugins/Visual/analyzer/CMakeLists.txt @@ -1,20 +1,7 @@ project(libanalyzer) -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) @@ -34,7 +21,7 @@ SET(libanalyzer_HDRS SET(libanalyzer_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libanalyzer_RCC_SRCS ${libanalyzer_RCCS}) +QT5_ADD_RESOURCES(libanalyzer_RCC_SRCS ${libanalyzer_RCCS}) # user interface @@ -43,7 +30,7 @@ SET(libanalyzer_UIS settingsdialog.ui ) -QT4_WRAP_UI(libanalyzer_UIS_H ${libanalyzer_UIS}) +QT5_WRAP_UI(libanalyzer_UIS_H ${libanalyzer_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -51,5 +38,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(analyzer MODULE ${libanalyzer_SRCS} ${libanalyzer_UIS_H} ${libanalyzer_RCC_SRCS} ${libanalyzer_HDRS}) add_dependencies(analyzer qmmp) -target_link_libraries(analyzer ${QT_LIBRARIES} libqmmp) +target_link_libraries(analyzer Qt5::Widgets -lqmmp) install(TARGETS analyzer DESTINATION ${LIB_DIR}/qmmp/Visual) diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_bg.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_bg.ts index 6399d6a22..d6634a08e 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_bg.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_bg.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts index 80830bd45..dd175c398 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Modul frekvenčního analyzátoru</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>O modulu frekvenčního analyzátoru</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Modul frekvenčního analyzátoru pro Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts index be8f12898..f67ef76b8 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Analysatormodul</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Über Analysator-Visualisierungsmodul</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Qmmp Analysator-Visualisierungsmodul</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_el.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_el.ts index f76f0d07f..689010390 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_el.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_el.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Πρόσθετο αναλυτή</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Σχετικά με το πρόσθετο οπτικού αναλυτή</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Πρόσθετο Qmmp οπτικού αναλυτή</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_en.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_en.ts index 415d6a3e0..e1d4b769d 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_en.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_en.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts index 22138affd..86af36bf9 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Módulo Analizador</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Acerca del Módulo Analizador Visual</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Módulo Analizador Visual de Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_fi.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_fi.ts index 0ab41f3d4..1100bc446 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_fi.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_fi.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_fr.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_fr.ts index 750a8e011..442e9d9af 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_fr.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_fr.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Greffon d'analyse</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>À propos du greffon visuel d'analyse</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Greffon visuel d'analyse pour Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_gl_ES.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_gl_ES.ts index ad714a4f0..063437506 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_gl_ES.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_gl_ES.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Engadido Analizador</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Sobre o engadido Analizador</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Engadido de Analizador de Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_he.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_he.ts index edb6e19fb..e6d51af97 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_he.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_he.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>תוסף מאבחן</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>אודות תוסף מאבחן חזותי</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>תוסף מאבחן חזותי של Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_hu.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_hu.ts index b526af1a5..e1940447b 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_hu.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_hu.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_id.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_id.ts index c09bbf173..8a01d5a34 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_id.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_id.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Plugin Analyzer</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Tentang Plugin Visual Analyzer</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Plugin Visual Analyzer Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts index dcf56620a..106c0a22d 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Modulo analizzatore</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Info sul modulo Analizzatore visivo</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Modulo Analizzatore visivo Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts index 0e52f43bf..1cdc38788 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>アナライザープラグイン</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>アナライザー視覚効果プラグインについて</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>QMMP アナライザー視覚効果プラグイン</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_kk.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_kk.ts index 90cae5feb..1272c3aa0 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_kk.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_kk.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts index 5011817f6..bc0b407a4 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Analizatoriaus įskiepis</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Apie analizatoriaus įskiepį</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Qmmp analizatoriaus įskiepis</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts index f425576e8..c46e7280a 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Analysator Module</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Over de Visuele Analysator Module</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Visuele Analysator Module voor Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl_PL.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl_PL.ts index 79d942f32..14f37002f 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl_PL.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl_PL.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Wtyczka Analizator</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>O wtyczce Analizator</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Wtyczka wizualna Analizator dla Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt.ts index da54b4685..b834cdac3 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Suplemento Analyzer</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Sobre o suplemento Analyzer</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Suplemento Qmmp Analyzer</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt_BR.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt_BR.ts index ba647a3cd..e226eb4be 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt_BR.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pt_BR.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Plugin de visualizações</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Sobre o plugin Analyzer Visual</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Plugin Qmmp Analyzer Visual</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts index 83d0fe40f..48bf06385 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Анализатор</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Об анализаторе (модуле визуализации)</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Модуль анализатора для Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_sk.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_sk.ts index f9cc32835..b5ce79400 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_sk.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_sk.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_BA.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_BA.ts index 8f7e25f58..768449717 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_BA.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_BA.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Анализатор</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>О визуелном анализатору</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Кумп визелни анализатор</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_RS.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_RS.ts index 8f80fd80a..875433aa4 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_RS.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_sr_RS.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Анализатор</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>О визуелном анализатору</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Кумп визелни анализатор</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts index 109ebf5e2..aefb3d220 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Çözümleyici Eklentisi</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Çözümleyici Görsel Eklentisi Hakkında</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Qmmp Çözümleyici Görsel Eklentisi</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts index b1234aad3..69cc5ec1e 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>Модуль аналізатора</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>Про модуль аналізатора</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Модуль аналізатора для Qmmp</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts index f31dc170f..8f0f3573d 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>可视化分析器插件</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>关于可视化分析器插件</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Qmmp 可视化分析器插件</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts index 47d70a60b..704619174 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts @@ -148,22 +148,22 @@ <context> <name>VisualAnalyzerFactory</name> <message> - <location filename="../visualanalyzerfactory.cpp" line="32"/> + <location filename="../visualanalyzerfactory.cpp" line="31"/> <source>Analyzer Plugin</source> <translation>可視化解析器插件</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="51"/> + <location filename="../visualanalyzerfactory.cpp" line="50"/> <source>About Analyzer Visual Plugin</source> <translation>關於可視化解析器外掛</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="52"/> + <location filename="../visualanalyzerfactory.cpp" line="51"/> <source>Qmmp Analyzer Visual Plugin</source> <translation>Qmmp 可視化解析器插件</translation> </message> <message> - <location filename="../visualanalyzerfactory.cpp" line="53"/> + <location filename="../visualanalyzerfactory.cpp" line="52"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/Visual/analyzer/visualanalyzerfactory.cpp b/src/plugins/Visual/analyzer/visualanalyzerfactory.cpp index b9867ecca..a41eb89f1 100644 --- a/src/plugins/Visual/analyzer/visualanalyzerfactory.cpp +++ b/src/plugins/Visual/analyzer/visualanalyzerfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "visualanalyzerfactory.h" @@ -60,5 +59,3 @@ QTranslator *VisualAnalyzerFactory::createTranslator(QObject *parent) translator->load(QString(":/analyzer_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(analyzer,VisualAnalyzerFactory) diff --git a/src/plugins/Visual/analyzer/visualanalyzerfactory.h b/src/plugins/Visual/analyzer/visualanalyzerfactory.h index f5f14d96a..4e49c7836 100644 --- a/src/plugins/Visual/analyzer/visualanalyzerfactory.h +++ b/src/plugins/Visual/analyzer/visualanalyzerfactory.h @@ -27,11 +27,12 @@ #include <qmmp/visual.h> /** - @author Ilya Kotov <forkotov02@ya.ru> + @author Ilya Kotov <forkotov02@ya.ru> */ class VisualAnalyzerFactory : public QObject, public VisualFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.VisualFactoryInterface.1.0") Q_INTERFACES(VisualFactory) public: diff --git a/src/plugins/Visual/projectm/CMakeLists.txt b/src/plugins/Visual/projectm/CMakeLists.txt index a5acb247e..7f73c38db 100644 --- a/src/plugins/Visual/projectm/CMakeLists.txt +++ b/src/plugins/Visual/projectm/CMakeLists.txt @@ -1,36 +1,19 @@ project(libprojectm) -SET (QT_USE_QTOPENGL TRUE) -INCLUDE(FindQt4) -include(${QT_USE_FILE}) - -# qt plugin -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_PLUGIN) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) -SET(QT_INCLUDES - ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../../../ -) - # libqmmp include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) # projectM -pkg_search_module(PROJECTM libprojectM) -pkg_search_module(PROJECTM_20 libprojectM>=2.0.0) -ADD_DEFINITIONS(${PROJECTM_CFLAGS}) - -IF(PROJECTM_20_FOUND) -ADD_DEFINITIONS(-DPROJECTM_20) -ENDIF(PROJECTM_20_FOUND) +MESSAGE(STATUS "Found OpenGL implementation: ${Qt5Gui_OPENGL_IMPLEMENTATION}") +IF(${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL GL) + pkg_search_module(PROJECTM libprojectM>=2.0.0) + ADD_DEFINITIONS(${PROJECTM_CFLAGS}) +ELSE(${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL GL) + MESSAGE(WARNING "Unsuppoted OpenGL implementation, projectM disabled") +ENDIF(${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL GL) find_file(PROJECTM_CONFIG config.inp PATHS "/usr/share/projectM/" "/usr/local/share/projectM/") @@ -49,15 +32,15 @@ SET(libprojectm_SRCS SET(libprojectm_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libprojectm_RCC_SRCS ${libprojectm_RCCS}) +QT5_ADD_RESOURCES(libprojectm_RCC_SRCS ${libprojectm_RCCS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) IF(PROJECTM_FOUND) ADD_LIBRARY(projectm MODULE ${libprojectm_SRCS} ${libprojectm_RCC_SRCS}) -SET_TARGET_PROPERTIES(projectm PROPERTIES COMPILE_DEFINITIONS "${libprojectm_DEFINES}") +target_compile_definitions(projectm PRIVATE ${libprojectm_DEFINES}) add_dependencies(projectm qmmp) -target_link_libraries(projectm ${QT_LIBRARIES} libqmmp ${PROJECTM_LDFLAGS} -lGL) +target_link_libraries(projectm Qt5::Widgets -lqmmp ${PROJECTM_LDFLAGS} -lGL) install(TARGETS projectm DESTINATION ${LIB_DIR}/qmmp/Visual) ENDIF(PROJECTM_FOUND) diff --git a/src/plugins/Visual/projectm/projectm.pro b/src/plugins/Visual/projectm/projectm.pro index 59af466cc..5ee0c5f4f 100644 --- a/src/plugins/Visual/projectm/projectm.pro +++ b/src/plugins/Visual/projectm/projectm.pro @@ -2,8 +2,6 @@ include(../../plugins.pri) TARGET = $$PLUGINS_PREFIX/Visual/projectm -QT += opengl - HEADERS += projectmwidget.h \ visualprojectmfactory.h \ projectmplugin.h \ @@ -15,10 +13,6 @@ SOURCES += projectmplugin.cpp \ RESOURCES = translations/translations.qrc -contains(CONFIG, WITH_PROJECTM20){ - DEFINES += PROJECTM_20 -} - unix { PKGCONFIG += libprojectM target.path = $$LIB_DIR/qmmp/Visual diff --git a/src/plugins/Visual/projectm/projectmplugin.cpp b/src/plugins/Visual/projectm/projectmplugin.cpp index 7b0935949..dd44872e6 100644 --- a/src/plugins/Visual/projectm/projectmplugin.cpp +++ b/src/plugins/Visual/projectm/projectmplugin.cpp @@ -99,7 +99,7 @@ void ProjectMPlugin::onTimeout() m_projectMWidget->projectMInstance()->pcm()->addPCM16(m_buf); } - m_projectMWidget->updateGL(); + m_projectMWidget->update(); } void ProjectMPlugin::setFullScreen(bool yes) diff --git a/src/plugins/Visual/projectm/projectmwidget.cpp b/src/plugins/Visual/projectm/projectmwidget.cpp index af1074c1b..7f7fcc447 100644 --- a/src/plugins/Visual/projectm/projectmwidget.cpp +++ b/src/plugins/Visual/projectm/projectmwidget.cpp @@ -27,6 +27,7 @@ #include <QMenu> #include <QApplication> #include <QListWidget> +#include <QOpenGLContext> #include <qmmp/soundcore.h> #include <qmmp/qmmp.h> #include "projectmwrapper.h" @@ -37,22 +38,16 @@ #endif ProjectMWidget::ProjectMWidget(QListWidget *listWidget, QWidget *parent) - : QGLWidget(parent) + : QOpenGLWidget(parent) { setMouseTracking(true); m_listWidget = listWidget; m_projectM = 0; m_menu = new QMenu(this); connect(SoundCore::instance(), SIGNAL(metaDataChanged()), SLOT(updateTitle())); -#if QT_VERSION >= 0x040700 - qDebug("ProjectMWidget: opengl version: %d.%d", - context()->format().majorVersion(), - context()->format().minorVersion()); createActions(); -#endif } - ProjectMWidget::~ProjectMWidget() {} @@ -113,18 +108,13 @@ void ProjectMWidget::initializeGL() QStringList filters; filters << "*.prjm" << "*.milk"; QFileInfoList l = presetDir.entryInfoList(filters); -#ifdef PROJECTM_20 + RatingList list; list.push_back(3); list.push_back(3); -#endif foreach (QFileInfo info, l) { -#ifdef PROJECTM_20 m_projectM->addPresetURL (info.absoluteFilePath().toStdString(), info.fileName().toStdString(), list); -#else - m_projectM->addPresetURL (info.absoluteFilePath().toStdString(), info.fileName().toStdString(), 1); -#endif m_listWidget->addItem(info.fileName()); m_listWidget->setCurrentRow(0,QItemSelectionModel::Select); } diff --git a/src/plugins/Visual/projectm/projectmwidget.h b/src/plugins/Visual/projectm/projectmwidget.h index 4c4788ce1..561aa1658 100644 --- a/src/plugins/Visual/projectm/projectmwidget.h +++ b/src/plugins/Visual/projectm/projectmwidget.h @@ -20,7 +20,7 @@ #ifndef PROJECTMWIDGET_H #define PROJECTMWIDGET_H -#include <QGLWidget> +#include <QOpenGLWidget> class QMenu; class QTimer; @@ -31,7 +31,7 @@ class projectM; /** @author Ilya Kotov <forkotov02@ya.ru> */ -class ProjectMWidget : public QGLWidget +class ProjectMWidget : public QOpenGLWidget { Q_OBJECT public: diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_bg.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_bg.ts index f4d1b8cc1..01142b3bd 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_bg.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_bg.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation type="unfinished"></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_cs.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_cs.ts index 87e12720f..6961728a1 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_cs.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_cs.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Zobrazit název skladby</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>Zobrazit název &předvoleb</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Další předvolby</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>Př&edchozí předvolby</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>Ná&hodné předvolby</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>U&zamknout předvolby</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Celá obrazovka</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>O vizualizačním modulu ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Vizualizační modul Qmmp ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Tento modul přidává vizualizaci ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Založeno na knihovně libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_de.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_de.ts index b2ee4fc42..63138572e 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_de.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_de.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Liedna&me anzeigen</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>N&ame der Voreinstellung anzeigen</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>Menü an&zeigen</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Nächste Voreinstellung</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>Vor&herige Voreinstellung</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>H</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Zufällige Voreinstellung</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>Z</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>V&oreinstellung sperren</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>O</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Vollbild</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>V</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Über ProjectM-Visualisierungsmodul</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Qmmp ProjectM-Visualisierungsmodul</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Dieses Modul fügt ProjectM-Visualisierungen hinzu</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Basiert auf der libprojectM-Qt-Bibliothek</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_el.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_el.ts index f93069164..1ef6c3f1f 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_el.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_el.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Βοήθεια</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Εμφάνιση του τίτλου του τραγουδιού</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>Εμφάνιση του ονόματος της προρύθμισης</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Εμφάνιση του μενού</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Επόμενη προρύθμιση</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Προηγούμενη προρύθμιση</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Τυχαία προρύθμιση</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Κλείδωμα προρύθμισης</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Πλήρης οθόνη</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Σχετικά με το πρόσθετο οπτικοποίησης ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Qmmp πρόσθετο οπτικοποίησης ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Αυτό το πρόσθετο προσθέτει οπτικοποίηση projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Βασισμένο στη βιβλιοθήκη libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_en.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_en.ts index 52f2b9d84..69a9b8238 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_en.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_en.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation type="unfinished"></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_es.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_es.ts index 686184edb..09085df28 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_es.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_es.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Ayuda</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Mostrar el título de la canción</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Mostrar nombre preprogramado</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Mostrar menú</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Preprogramado siguiente</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Preprogramado anterior</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Preprogramado aleatorio</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Bloquear preprogramado</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Pantalla completa</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Acerca del módulo visual ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Módulo visual Projectm para Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Este módulo añade visualización projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Basado en la librería libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_fi.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_fi.ts index 484172047..c0484fbd5 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_fi.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_fi.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Ohje</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Näytä valikko</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Koko näyttö</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_fr.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_fr.ts index 61920fc4a..3986e5de7 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_fr.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_fr.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Aide</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Montrer le titre du morceau</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Montrer le nom du réglage</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Montrer le menu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Réglage suivant</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Réglage précédent</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Réglage aléatoire</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Verrouiller le réglage</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Plein écran</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>À propos du greffon visuel ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Greffon visuel ProjectM pour Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Ce greffon ajoute une visualisation ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Basé sur la bibliothèque libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_gl_ES.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_gl_ES.ts index 4b9aff748..dd7c2b817 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_gl_ES.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_gl_ES.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Axuda</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Amosar título de canción</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Amosar nome de perfil</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>Amosar menú</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Perfil seguinte</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Perfil anterior</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Perfil aleatorio</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Bloquear perfil</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Pantalla completa</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Sobre o engadido visual ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Engadido ProjectM de Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Este engadido provén visualización ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Baseado na libraría libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_he.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_he.ts index b5886db98..994b87595 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_he.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_he.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&עזרה</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>הצג &כותרת שיר</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>הצג &שם קביעה</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>הצג &תפריט</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>קביעה &באה</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>קביעה &קודמת</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>קביעה &אקריאת</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&נעל קביעה</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&מסך מלא</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>אודות תוסף חיזוי ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>תוסף חיזוי ProjectM של Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>תוסף זה מוסיף חיזוי ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>מבוססת על ספריית libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_hu.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_hu.ts index fb75cf29a..15f58286c 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_hu.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_hu.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation type="unfinished"></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_id.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_id.ts index 5c76a7cf2..992437f19 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_id.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_id.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Bantuan</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Tampakkan Judul Lagu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Tampakkan Nama Preset</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Tampakkan Menu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Preset Selanjutnya</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Preset Sebelumnya</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Preset Acak</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Kunci Preset</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Layarpenuh</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Tentang Plugin Visual ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Plugin Visual ProjectM Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Plugin ini menambahkan visualisasi projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Berdasarkan pada pustaka projectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_it.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_it.ts index 4ae461bc0..93eb2eafb 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_it.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_it.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Mostra il titolo del brano</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>Mostra nome del brano programmato</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>Brano programmato successivo</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>>Brano programmato precedente</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>Brano programmato casuale</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>Blocca programmazione</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Schermo intero</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>Visualizzatore musicale ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Informazioni sul visualizzatore musicale ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Modulo Visulaizzatore Projectm per Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Questo modulo aggiunge visualizzazione musicale dei brani grazie a projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore by: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Basato sulla libreria libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_ja.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_ja.ts index 8ad116e4f..a7eb715d8 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_ja.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_ja.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>ヘルプ(&H)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>曲名を表示(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>プリセット名を表示(&H)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>メニューを表示(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>次のプリセット(&N)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>前のプリセット(&P)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>プリセットを無作為に(&R)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>プリセットをロック(&L)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>フルスクリーン(&F)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>ProjectM 視覚効果プラグインについて</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>QMMP ProjectM 視覚効果プラグイン</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>このプラグインは ProjectM 視覚効果を加えます</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>libprojectM ライブラリを基に作成</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_kk.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_kk.ts index 3478511c1..cf33bc8ac 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_kk.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_kk.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation type="unfinished"></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_lt.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_lt.ts index 4c2d97126..2616a62e8 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_lt.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_lt.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Pagalba</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Rodyti dainos pavadinimą</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Rodyti vizualizacijos pavadinimą</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Rodyti Meniu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Sekanti</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Atgal</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Atsitiktinė</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Užrakinti</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Visas ekranas</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Apie Qmmp vizualizacijos įskiepį</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Qmmp ProjectM vizualizacijos įskiepis</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Šis įskiepis leidžia naudoti projectM vizualizacijas</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Sukurta libprojectM-qt pagrindu</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_nl.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_nl.ts index 67495d9aa..49c19f811 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_nl.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_nl.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Hulp</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Weergeef Titel van Nummer</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Weergeef Naam van Voorinstellingen</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Volgende Instelling</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Vorige Instelling</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Willekeurige Instelling</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Zet Instelling Vast</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Volledig scherm</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Over de ProjectM Visuele Module</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>ProjectM Visuele Module voor Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Deze plugin voegt projectM visualisatie toe</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Gebasseerd op de libprojectM-qt bibliotheek</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_pl_PL.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_pl_PL.ts index 8b85d127b..3c534ebb6 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_pl_PL.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_pl_PL.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Pomoc</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Pokaż &tytuł utworu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>Pokaż nazwę &Wizualizacji</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>Pokaż &Menu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Następna animacja</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Poprzednia animacja</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Losowa animacja</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Zablokuj animację</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>P&ełny ekran</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>O Wtyczce ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Wtyczka ProjectM dla Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Ta wtyczka dodaje obsługę wizualizacji projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Oparta na bibliotece libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_pt.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_pt.ts index 86a38e298..64616823d 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_pt.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_pt.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>Aj&uda</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Mo&strar título da faixa</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>M&ostrar nome do pré-ajuste</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Mostrar menu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>Pré-ajuste segui&nte</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Pré-ajuste anterior</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>P&ré-ajuste aleatório</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>B&loquear pré-ajuste</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Ecrã completo</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Sobre o suplemento ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Suplemento Qmmp ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Este suplemento disponibiliza as visualizações ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Baseado na biblioteca libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_pt_BR.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_pt_BR.ts index 4b6e6f9df..d863feec5 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_pt_BR.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_pt_BR.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>Aj&uda</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Mo&strar título da faixa</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>M&ostrar nome do pré-ajuste</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Mostrar menu</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>Pré-ajuste segui&nte</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Pré-ajuste anterior</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>P&ré-ajuste aleatório</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>B&loquear pré-ajuste</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Ecrã completo</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Sobre o plugin ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Plugin Qmmp ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Este plugin disponibiliza as visualizações ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Baseado na biblioteca libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_ru.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_ru.ts index a0e7f7fd9..127eb0d14 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_ru.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_ru.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Показать название песни</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Показать имя предустановки</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Показать меню</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Следующая предустановка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Предыдущая предустановка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Случайная предустановка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Заблокировать предустановку</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Полноэкранный режим</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>О модуле ProjectM для Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Модуль projectM для Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Этот модуль добавляет визуализацию projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Основан на базе библиотеки libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_sk.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_sk.ts index cf1199942..92c24f018 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_sk.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_sk.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation type="unfinished"></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_sr_BA.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_sr_BA.ts index 58238eec8..b30a7da8d 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_sr_BA.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_sr_BA.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Помоћ</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Прикажи &наслов нумере</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>Прикажи &име поставке</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>Прикажи &мени</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>М</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Сљедећа поставка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>Н</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>П&ретходна поставка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>П</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>Н&асумична поставка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>Р</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Закључај поставку</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>Л</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Цио екран</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>Ф</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ПројектМ</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>О ПројектМ визуелизатору</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Кумп ПројектМ визуелни прикључак</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Подршка за ПројектМ визуелизације</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Заснован на libprojectM-qt библиотеци</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_sr_RS.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_sr_RS.ts index 583896188..186285b33 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_sr_RS.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_sr_RS.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Помоћ</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>Прикажи &наслов нумере</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>Прикажи &име поставке</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>Прикажи &мени</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>М</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Следећа поставка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>Н</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>П&ретходна поставка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>П</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>Н&асумична поставка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>Р</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Закључај поставку</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>Л</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Цео екран</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>Ф</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ПројектМ</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>О ПројектМ визуелизатору</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Кумп ПројектМ визуелни прикључак</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Подршка за ПројектМ визуелизације</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Заснован на libprojectM-qt библиотеци</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_tr.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_tr.ts index bbdb87157..cac434248 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_tr.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_tr.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Şarkı Başlığını Göster</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Preset Adını Göster</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Sonraki Preset</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Önceki Preset</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Rastgele Preset</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>Preset &Kilitle</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Tam Ekran</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>ProjectM Görsel Eklenti Hakkında</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Qmmp ProjectM Görsel Eklentisi</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Bu eklenti projectM görselliğini ekler</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>librojectM qt kitaplığı temellidir</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_uk_UA.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_uk_UA.ts index 1bb803eae..f9710b745 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_uk_UA.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_uk_UA.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>&Довідка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>&Показати назву пісні</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>&Показати ім'я предустановки</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>&Показати меню</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>&Наступна предустановка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>&Попередня предустановка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>&Випадкова предустановка</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>&Заблокувати предустановку</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>&Повноекранний режим</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation></translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>Про модуль ProjectM для Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Модуль projectM для Qmmp</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>Цей модуль додає візуалізацію projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>Базується на бібліотеці libprojectM-qt</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_zh_CN.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_zh_CN.ts index 366d2d8cd..7f4d8ea26 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_zh_CN.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_zh_CN.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>显示歌曲标题(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>显示边框形式名称(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation>显示菜单(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation>M</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>下一边框形式(&N)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>上一边框形式(&P)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>随意边框形式(&R)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>锁定边框形式(&L)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>全屏(&F)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>projectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>关于 ProjectM 可视化插件</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Qmmp ProjectM 可视化插件</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>此插件添加 projectM 可视化</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>基于 libprojectM-qt 库</translation> </message> diff --git a/src/plugins/Visual/projectm/translations/projectm_plugin_zh_TW.ts b/src/plugins/Visual/projectm/translations/projectm_plugin_zh_TW.ts index a6bb06fdf..ade77a7b8 100644 --- a/src/plugins/Visual/projectm/translations/projectm_plugin_zh_TW.ts +++ b/src/plugins/Visual/projectm/translations/projectm_plugin_zh_TW.ts @@ -12,92 +12,92 @@ <context> <name>ProjectMWidget</name> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>&Help</source> <translation>幫助(&H)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="160"/> + <location filename="../projectmwidget.cpp" line="150"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>&Show Song Title</source> <translation>顯示曲目標題(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="161"/> + <location filename="../projectmwidget.cpp" line="151"/> <source>F2</source> <translation>F2</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>&Show Preset Name</source> <translation>顯示邊框形式名稱(&S)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="162"/> + <location filename="../projectmwidget.cpp" line="152"/> <source>F3</source> <translation>F3</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>&Show Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="163"/> + <location filename="../projectmwidget.cpp" line="153"/> <source>M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>&Next Preset</source> <translation>下一邊框形式(&N)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="165"/> + <location filename="../projectmwidget.cpp" line="155"/> <source>N</source> <translation>N</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>&Previous Preset</source> <translation>上一邊框形式(&P)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="166"/> + <location filename="../projectmwidget.cpp" line="156"/> <source>P</source> <translation>P</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>&Random Preset</source> <translation>隨意邊框形式(&R)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="167"/> + <location filename="../projectmwidget.cpp" line="157"/> <source>R</source> <translation>R</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>&Lock Preset</source> <translation>鎖定邊框形式(&L)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="168"/> + <location filename="../projectmwidget.cpp" line="158"/> <source>L</source> <translation>L</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>&Fullscreen</source> <translation>全屏(&F)</translation> </message> <message> - <location filename="../projectmwidget.cpp" line="170"/> + <location filename="../projectmwidget.cpp" line="160"/> <source>F</source> <translation>F</translation> </message> @@ -105,32 +105,32 @@ <context> <name>VisualProjectMFactory</name> <message> - <location filename="../visualprojectmfactory.cpp" line="31"/> + <location filename="../visualprojectmfactory.cpp" line="30"/> <source>ProjectM</source> <translation>ProjectM</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="51"/> + <location filename="../visualprojectmfactory.cpp" line="50"/> <source>About ProjectM Visual Plugin</source> <translation>關於 ProjectM 可視化插件</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="52"/> + <location filename="../visualprojectmfactory.cpp" line="51"/> <source>Qmmp ProjectM Visual Plugin</source> <translation>Qmmp ProjectM 可視化插件</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="53"/> + <location filename="../visualprojectmfactory.cpp" line="52"/> <source>This plugin adds projectM visualization</source> <translation>此插件添加 ProjectM 可視化</translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="54"/> + <location filename="../visualprojectmfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../visualprojectmfactory.cpp" line="55"/> + <location filename="../visualprojectmfactory.cpp" line="54"/> <source>Based on libprojectM-qt library</source> <translation>基於 libprojectM-qt 程式庫</translation> </message> diff --git a/src/plugins/Visual/projectm/visualprojectmfactory.cpp b/src/plugins/Visual/projectm/visualprojectmfactory.cpp index d7e411136..a66531f0b 100644 --- a/src/plugins/Visual/projectm/visualprojectmfactory.cpp +++ b/src/plugins/Visual/projectm/visualprojectmfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2016 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QMessageBox> #include <QTranslator> -#include <QtPlugin> +#include <QMessageBox> #include <qmmp/qmmp.h> #include "visualprojectmfactory.h" #include "projectmplugin.h" @@ -62,5 +61,3 @@ QTranslator *VisualProjectMFactory::createTranslator(QObject *parent) translator->load(QString(":/projectm_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(projectm,VisualProjectMFactory) diff --git a/src/plugins/Visual/projectm/visualprojectmfactory.h b/src/plugins/Visual/projectm/visualprojectmfactory.h index a4963c137..ffede2f93 100644 --- a/src/plugins/Visual/projectm/visualprojectmfactory.h +++ b/src/plugins/Visual/projectm/visualprojectmfactory.h @@ -25,11 +25,12 @@ #include <qmmp/visual.h> /** - @author Ilya Kotov <forkotov02@ya.ru> + @author Ilya Kotov <forkotov02@ya.ru> */ class VisualProjectMFactory : public QObject, public VisualFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.VisualFactoryInterface.1.0") Q_INTERFACES(VisualFactory) public: diff --git a/src/plugins/plugins.pri b/src/plugins/plugins.pri index a2b0f2ff5..f56e33e64 100644 --- a/src/plugins/plugins.pri +++ b/src/plugins/plugins.pri @@ -18,5 +18,6 @@ unix { QMMPUI_LIB = -lqmmpui } + CONFIG += warn_on plugin lib thread link_pkgconfig hide_symbols TEMPLATE = lib diff --git a/src/qmmp/CMakeLists.txt b/src/qmmp/CMakeLists.txt index ec557a5f9..48212b51a 100644 --- a/src/qmmp/CMakeLists.txt +++ b/src/qmmp/CMakeLists.txt @@ -1,12 +1,5 @@ project(libqmmp) -# qt lib -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - SET(libqmmp_DEFINES LIB_DIR="/${LIB_DIR}" QMMP_INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}" @@ -31,7 +24,6 @@ IF(QMMP_DEFAULT_OUTPUT) ENDIF(QMMP_DEFAULT_OUTPUT) - SET(libqmmp_SRCS visual.cpp recycler.cpp @@ -134,15 +126,14 @@ SET(libqmmp_DEVEL_HDRS include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(libqmmp SHARED ${libqmmp_SRCS} ${libqmmp_HDRS}) -target_link_libraries(libqmmp ${QT_LIBRARIES}) -SET_TARGET_PROPERTIES(libqmmp PROPERTIES COMPILE_DEFINITIONS "${libqmmp_DEFINES}") +target_link_libraries(libqmmp Qt5::Widgets) SET_TARGET_PROPERTIES(libqmmp PROPERTIES VERSION ${QMMP_VERSION} SOVERSION ${QMMP_SOVERSION} OUTPUT_NAME qmmp) +target_compile_definitions(libqmmp PRIVATE ${libqmmp_DEFINES}) install(TARGETS libqmmp LIBRARY DESTINATION ${LIB_DIR} RUNTIME DESTINATION bin ARCHIVE DESTINATION ${LIB_DIR}) +install(FILES ${libqmmp_DEVEL_HDRS} DESTINATION include/qmmp) + -IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES Darwin) - install(FILES ${libqmmp_DEVEL_HDRS} DESTINATION include/qmmp) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmmp.pc.in ${CMAKE_CURRENT_BINARY_DIR}/qmmp.pc @ONLY) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qmmp.pc DESTINATION ${LIB_DIR}/pkgconfig) -ENDIF() +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmmp.pc.in ${CMAKE_CURRENT_BINARY_DIR}/qmmp.pc @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qmmp.pc DESTINATION ${LIB_DIR}/pkgconfig) diff --git a/src/qmmp/decoder.cpp b/src/qmmp/decoder.cpp index 671019a35..d29ea5114 100644 --- a/src/qmmp/decoder.cpp +++ b/src/qmmp/decoder.cpp @@ -8,6 +8,7 @@ #include <QBuffer> #include <QDir> #include <math.h> +#include <algorithm> #include "qmmpplugincache_p.h" #include "output.h" #include "decoderfactory.h" @@ -119,7 +120,7 @@ void Decoder::loadPlugins() m_cache->append(item); } m_disabledNames = settings.value("Decoder/disabled_plugins").toStringList(); - qStableSort(m_cache->begin(), m_cache->end(), _pluginCacheLessComparator); + std::stable_sort(m_cache->begin(), m_cache->end(), _pluginCacheLessComparator); QmmpPluginCache::cleanup(&settings); } diff --git a/src/qmmp/effect.cpp b/src/qmmp/effect.cpp index 7a3155b18..54b19dc39 100644 --- a/src/qmmp/effect.cpp +++ b/src/qmmp/effect.cpp @@ -18,6 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <algorithm> #include <QStringList> #include <QDir> #include "qmmpaudioengine_p.h" @@ -99,7 +100,7 @@ void Effect::loadPlugins() m_cache->append(item); } - qStableSort(m_cache->begin(), m_cache->end(), _effectCacheCompareFunc); + std::stable_sort(m_cache->begin(), m_cache->end(), _effectCacheCompareFunc); m_enabledNames = settings.value("Effect/enabled_plugins").toStringList(); } diff --git a/src/qmmp/qmmp.cpp b/src/qmmp/qmmp.cpp index 550cfc15a..44f404e15 100644 --- a/src/qmmp/qmmp.cpp +++ b/src/qmmp/qmmp.cpp @@ -89,16 +89,16 @@ const QString Qmmp::pluginsPath() QByteArray path = qgetenv("QMMP_PLUGINS"); if (!path.isEmpty()) return path; -#ifdef Q_OS_MAC - QDir dir(qApp->applicationDirPath() + "/../Frameworks/qmmp"); -#elif defined (QMMP_INSTALL_PREFIX) +#ifdef QMMP_INSTALL_PREFIX QDir dir(QMMP_INSTALL_PREFIX "/" LIB_DIR "/qmmp"); //qDebug(QMMP_INSTALL_PREFIX"/"LIB_DIR"/qmmp"); -#elif defined(Q_OS_WIN) && !defined(Q_OS_CYGWIN) +#else +#if defined(Q_OS_WIN) && !defined(Q_OS_CYGWIN) QDir dir(qApp->applicationDirPath() + "/plugins"); #else QDir dir(qApp->applicationDirPath() + "/../" LIB_DIR "/qmmp"); #endif +#endif return dir.canonicalPath(); } diff --git a/src/qmmp/qmmp.h b/src/qmmp/qmmp.h index 7b6b2584e..e1a88576f 100644 --- a/src/qmmp/qmmp.h +++ b/src/qmmp/qmmp.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2017 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -22,9 +22,9 @@ #include <QString> -#define QMMP_VERSION_MAJOR 0 -#define QMMP_VERSION_MINOR 11 -#define QMMP_VERSION_PATCH 0 +#define QMMP_VERSION_MAJOR 1 +#define QMMP_VERSION_MINOR 2 +#define QMMP_VERSION_PATCH 1 #define QMMP_VERSION_STABLE 0 #define QMMP_VERSION_INT (QMMP_VERSION_MAJOR<<16 | QMMP_VERSION_MINOR<<8 | QMMP_VERSION_PATCH) diff --git a/src/qmmp/qmmp.pc.in b/src/qmmp/qmmp.pc.in index 8035a8a6b..abd42a91e 100644 --- a/src/qmmp/qmmp.pc.in +++ b/src/qmmp/qmmp.pc.in @@ -6,6 +6,6 @@ includedir=@CMAKE_INSTALL_PREFIX@/include Name: qmmp Description: qmmp core library Version: @QMMP_VERSION@ -Requires: QtCore QtGui +Requires: Qt5Core Qt5Gui Qt5Widgets Libs: -L${libdir} -lqmmp Cflags: -I${includedir} diff --git a/src/qmmp/qmmp.pro b/src/qmmp/qmmp.pro index ff623ed6b..c63ca443e 100644 --- a/src/qmmp/qmmp.pro +++ b/src/qmmp/qmmp.pro @@ -148,7 +148,6 @@ unix { CONFIG += create_pc create_prl no_install_prl QMAKE_PKGCONFIG_NAME = qmmp QMAKE_PKGCONFIG_DESCRIPTION = qmmp core library - QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui + QMAKE_PKGCONFIG_REQUIRES = Qt5Core Qt5Gui Qt5Widgets QMAKE_PKGCONFIG_DESTDIR = pkgconfig - QMAKE_DISTCLEAN += -r pkgconfig } diff --git a/src/qmmp/visual.cpp b/src/qmmp/visual.cpp index 33455e493..b476a91a5 100644 --- a/src/qmmp/visual.cpp +++ b/src/qmmp/visual.cpp @@ -18,14 +18,14 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <QCloseEvent> +#include <QSettings> +#include <QDir> #include <QObject> #include <QList> #include <QMetaObject> #include <QApplication> -#include <QCloseEvent> -#include <QSettings> #include <QDialog> -#include <QDir> #include <QPluginLoader> #include "statehandler.h" #include "visualfactory.h" diff --git a/src/qmmpui/CMakeLists.txt b/src/qmmpui/CMakeLists.txt index 1167ebb7c..9142f6fe0 100644 --- a/src/qmmpui/CMakeLists.txt +++ b/src/qmmpui/CMakeLists.txt @@ -1,16 +1,5 @@ project(libqmmpui) -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) -include(${QT_USE_FILE}) - -# qt lib -ADD_DEFINITIONS( -Wall ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) -ADD_DEFINITIONS(-DQT_NO_DEBUG) -ADD_DEFINITIONS(-DQT_SHARED) -ADD_DEFINITIONS(-DQT_THREAD) - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) # libqmmp @@ -124,22 +113,20 @@ SET(libqmmpui_UIS forms/columneditor.ui ) -QT4_WRAP_UI(libqmmpui_UIS_H ${libqmmpui_UIS}) +QT5_WRAP_UI(libqmmpui_UIS_H ${libqmmpui_UIS}) -QT4_ADD_RESOURCES(libqmmpui_RCC_SRCS translations/libqmmpui_locales.qrc txt/txt.qrc images/qmmpui_images.qrc) +QT5_ADD_RESOURCES(libqmmpui_RCC_SRCS translations/libqmmpui_locales.qrc txt/txt.qrc images/qmmpui_images.qrc) include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(qmmpui SHARED ${libqmmpui_SRCS} ${libqmmpui_RCC_SRCS} ${libqmmpui_UIS_H} ${libqmmpui_HDRS}) -target_link_libraries(qmmpui ${QT_LIBRARIES} libqmmp) +target_link_libraries(qmmpui Qt5::Widgets Qt5::Network -lqmmp) add_dependencies(qmmpui libqmmp) SET_TARGET_PROPERTIES(qmmpui PROPERTIES VERSION ${QMMP_VERSION} SOVERSION ${QMMP_SOVERSION}) install(TARGETS qmmpui LIBRARY DESTINATION ${LIB_DIR} RUNTIME DESTINATION bin ARCHIVE DESTINATION ${LIB_DIR}) -IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES Darwin) - install(FILES ${libqmmpui_DEVEL_HDRS} DESTINATION include/qmmpui) +install(FILES ${libqmmpui_DEVEL_HDRS} DESTINATION include/qmmpui) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmmpui.pc.in ${CMAKE_CURRENT_BINARY_DIR}/qmmpui.pc @ONLY) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qmmpui.pc DESTINATION ${LIB_DIR}/pkgconfig) -ENDIF() +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmmpui.pc.in ${CMAKE_CURRENT_BINARY_DIR}/qmmpui.pc @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qmmpui.pc DESTINATION ${LIB_DIR}/pkgconfig) diff --git a/src/qmmpui/aboutdialog.cpp b/src/qmmpui/aboutdialog.cpp index ceaec2678..723e259b5 100644 --- a/src/qmmpui/aboutdialog.cpp +++ b/src/qmmpui/aboutdialog.cpp @@ -34,8 +34,8 @@ #include "aboutdialog_p.h" -AboutDialog::AboutDialog(QWidget* parent, Qt::WFlags fl) - : QDialog( parent, fl ) +AboutDialog::AboutDialog(QWidget* parent) + : QDialog(parent) { setupUi(this); setAttribute(Qt::WA_QuitOnClose, false); diff --git a/src/qmmpui/aboutdialog_p.h b/src/qmmpui/aboutdialog_p.h index 5004cf2c3..3857c48e6 100644 --- a/src/qmmpui/aboutdialog_p.h +++ b/src/qmmpui/aboutdialog_p.h @@ -1,5 +1,5 @@ /*************************************************************************** -* Copyright (C) 2006-2013 by Ilya Kotov * +* Copyright (C) 2006-2015 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -33,7 +33,7 @@ class AboutDialog : public QDialog, private Ui::AboutDialog { Q_OBJECT public: - AboutDialog(QWidget* parent = 0, Qt::WFlags fl = 0 ); + AboutDialog(QWidget* parent = 0); ~AboutDialog(); private: diff --git a/src/qmmpui/commandlinemanager.cpp b/src/qmmpui/commandlinemanager.cpp index c8292f786..e50baaa9b 100644 --- a/src/qmmpui/commandlinemanager.cpp +++ b/src/qmmpui/commandlinemanager.cpp @@ -18,11 +18,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include <QDir> +#include <QPluginLoader> #include <QObject> #include <QList> #include <QApplication> -#include <QDir> -#include <QPluginLoader> #include <cstdlib> #include <iostream> #include <qmmp/qmmp.h> diff --git a/src/qmmpui/configdialog.cpp b/src/qmmpui/configdialog.cpp index c38902ce3..de0e271f3 100644 --- a/src/qmmpui/configdialog.cpp +++ b/src/qmmpui/configdialog.cpp @@ -59,7 +59,7 @@ ConfigDialog::ConfigDialog (QWidget *parent) : QDialog (parent) m_ui->preferencesButton->setEnabled(false); m_ui->informationButton->setEnabled(false); m_ui->treeWidget->setItemDelegate(new RadioItemDelegate(this)); - m_ui->treeWidget->header()->setMovable(false); + m_ui->treeWidget->header()->setSectionsMovable(false); connect (this, SIGNAL(rejected()),SLOT(saveSettings())); m_ui->replayGainModeComboBox->addItem (tr("Track"), QmmpSettings::REPLAYGAIN_TRACK); m_ui->replayGainModeComboBox->addItem (tr("Album"), QmmpSettings::REPLAYGAIN_ALBUM); diff --git a/src/qmmpui/detailsdialog.cpp b/src/qmmpui/detailsdialog.cpp index dbeaa57a5..91d5fa23b 100644 --- a/src/qmmpui/detailsdialog.cpp +++ b/src/qmmpui/detailsdialog.cpp @@ -71,7 +71,7 @@ void DetailsDialog:: on_directoryButton_clicked() } else return; -#ifdef Q_WS_X11 +#ifdef QMMP_WS_X11 QProcess::execute("xdg-open", QStringList() << dir_path); //works with lxde #else QDesktopServices::openUrl(QUrl::fromLocalFile(dir_path)); diff --git a/src/qmmpui/images/logo-qmmp.png b/src/qmmpui/images/logo-qmmp.png Binary files differindex 88923cb57..d977e28ad 100644 --- a/src/qmmpui/images/logo-qmmp.png +++ b/src/qmmpui/images/logo-qmmp.png diff --git a/src/qmmpui/playlistparser.cpp b/src/qmmpui/playlistparser.cpp index c6cf7a189..4b5dfc1c8 100644 --- a/src/qmmpui/playlistparser.cpp +++ b/src/qmmpui/playlistparser.cpp @@ -85,7 +85,7 @@ PlayListFormat *PlayListParser::findByPath(const QString &filePath) PlayListFormat *PlayListParser::findByUrl(const QUrl &url) { - QString path = url.encodedPath(); + QString path = url.path(QUrl::FullyEncoded); return findByPath(path); } diff --git a/src/qmmpui/playlisttask.cpp b/src/qmmpui/playlisttask.cpp index f0ec75ce4..8ca027ade 100644 --- a/src/qmmpui/playlisttask.cpp +++ b/src/qmmpui/playlisttask.cpp @@ -21,6 +21,7 @@ #include <QFileInfo> #include <QDateTime> #include <QTime> +#include <algorithm> #include <qmmp/metadatamanager.h> #include "qmmpuisettings.h" #include "metadatahelper_p.h" @@ -308,9 +309,9 @@ void PlayListTask::run() } if(m_reverted) - qStableSort(begin,end,compareGreaterFunc); + std::stable_sort(begin,end,compareGreaterFunc); else - qStableSort(begin,end,compareLessFunc); + std::stable_sort(begin,end,compareLessFunc); //align track list by group name (optimization) if(m_align_groups) diff --git a/src/qmmpui/qmmpui.pc.in b/src/qmmpui/qmmpui.pc.in index 76d87143c..19a82a4d5 100644 --- a/src/qmmpui/qmmpui.pc.in +++ b/src/qmmpui/qmmpui.pc.in @@ -6,6 +6,6 @@ includedir=@CMAKE_INSTALL_PREFIX@/include Name: qmmpui Description: qmmp user interface library Version: @QMMP_VERSION@ -Requires: QtCore QtGui QtNetwork qmmp +Requires: Qt5Core Qt5Gui Qt5Widgets Qt5Network qmmp Libs: -L${libdir} -lqmmpui Cflags: -I${includedir} diff --git a/src/qmmpui/qmmpui.pro b/src/qmmpui/qmmpui.pro index 636371339..7c4ca8132 100644 --- a/src/qmmpui/qmmpui.pro +++ b/src/qmmpui/qmmpui.pro @@ -179,7 +179,6 @@ unix { CONFIG += create_pc create_prl no_install_prl QMAKE_PKGCONFIG_NAME = qmmpui QMAKE_PKGCONFIG_DESCRIPTION = qmmp user interface library - QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui QtNetwork qmmp + QMAKE_PKGCONFIG_REQUIRES = Qt5Core Qt5Gui Qt5Widgets Qt5Network qmmp QMAKE_PKGCONFIG_DESTDIR = pkgconfig - QMAKE_DISTCLEAN += -r pkgconfig } diff --git a/src/qmmpui/qtfiledialog.cpp b/src/qmmpui/qtfiledialog.cpp index 5a452768c..e81330c60 100644 --- a/src/qmmpui/qtfiledialog.cpp +++ b/src/qmmpui/qtfiledialog.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2017 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -19,6 +19,7 @@ ***************************************************************************/ #include <QFileDialog> +#include <QCoreApplication> #include "qtfiledialog_p.h" @@ -54,6 +55,7 @@ QtFileDialog::~QtFileDialog() QStringList QtFileDialog::exec(QWidget *parent, const QString &dir, FileDialog::Mode mode, const QString &caption, const QString &filter, QString *selectedFilter) { + QCoreApplication::sendPostedEvents(Q_NULLPTR, QEvent::LanguageChange); //prevents crash when using KDE file dialog QStringList list; if(mode == AddFile) { diff --git a/src/qmmpui/radioitemdelegate.cpp b/src/qmmpui/radioitemdelegate.cpp index d725995f9..992ba7fe8 100644 --- a/src/qmmpui/radioitemdelegate.cpp +++ b/src/qmmpui/radioitemdelegate.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2012-2014 by Ilya Kotov * + * Copyright (C) 2012-2016 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -32,7 +32,7 @@ void RadioItemDelegate::paint(QPainter *painter, { if (hasRadioButton(index)) { - QStyleOptionViewItemV4 opt = option; + QStyleOptionViewItem opt = option; initStyleOption(&opt, index); diff --git a/src/qmmpui/translations/libqmmpui_bg.ts b/src/qmmpui/translations/libqmmpui_bg.ts index 1842bdfdc..574fd0479 100644 --- a/src/qmmpui/translations/libqmmpui_bg.ts +++ b/src/qmmpui/translations/libqmmpui_bg.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation type="unfinished"></translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_cs.ts b/src/qmmpui/translations/libqmmpui_cs.ts index 561a4c4d0..76f952725 100644 --- a/src/qmmpui/translations/libqmmpui_cs.ts +++ b/src/qmmpui/translations/libqmmpui_cs.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Souborový dialog Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Všechny podporované formáty</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Vyberte jeden či více souborů k otevření</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Výberte adresář</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Seznamy skladeb</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Načíst seznam skladeb</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Uložit seznam skladeb</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_de.ts b/src/qmmpui/translations/libqmmpui_de.ts index 2ba931391..ce4bcfe93 100644 --- a/src/qmmpui/translations/libqmmpui_de.ts +++ b/src/qmmpui/translations/libqmmpui_de.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qt Datei-Dialog</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Alle unterstützten Datenströme</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Dateien hinzufügen</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Wählen Sie eine oder mehrere Dateien zur Wiedergabe aus</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Verzeichnis wählen</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Wiedergabelisten</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Wiedergabeliste öffnen</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Wiedergabeliste speichern</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_el.ts b/src/qmmpui/translations/libqmmpui_el.ts index e83963f1e..f50bdc054 100644 --- a/src/qmmpui/translations/libqmmpui_el.ts +++ b/src/qmmpui/translations/libqmmpui_el.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Διάλογος αρχείων Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Όλα τα υποστηριζόμενα δυφιορρεύματα</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Επιλογή ανοίγματος ενός ή περισσοτέρων αρχείων</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Επιλογή αναπαραγωγής ενός ή περισσοτέρων αρχείων</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Επιλογή ενός καταλόγου</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Αρχεία της λίστα αναπαραγωγής</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Άνοιγμα λίστα αναπαραγωγής</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Αποθήκευση της λίστας αναπαραγωγής</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_en.ts b/src/qmmpui/translations/libqmmpui_en.ts index c28fe121b..d31ff3415 100644 --- a/src/qmmpui/translations/libqmmpui_en.ts +++ b/src/qmmpui/translations/libqmmpui_en.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation type="unfinished"></translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_es.ts b/src/qmmpui/translations/libqmmpui_es.ts index 028676f3c..aa8f27b0a 100644 --- a/src/qmmpui/translations/libqmmpui_es.ts +++ b/src/qmmpui/translations/libqmmpui_es.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Diálogo de archivos Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Todos los flujos de bits soportados</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Seleccione uno o más archivos a abrir</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Seleccione uno o más archivos a reproducir</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Elija un directorio</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Archivos listas de reproducción</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Abrir lista de reproducción</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Guardar lista de reproducción</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_fi.ts b/src/qmmpui/translations/libqmmpui_fi.ts index d08f38bfe..40e789d0a 100644 --- a/src/qmmpui/translations/libqmmpui_fi.ts +++ b/src/qmmpui/translations/libqmmpui_fi.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qt-tiedostoikkuna</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Valitse yksi tai useampi tiedosto avausta varten</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Valitse yksi tai useampi toistettava tiedosto</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Valitse kansio</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Soittolistatiedostot</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Avaa soittolista</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Tallenna soittolista</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_fr.ts b/src/qmmpui/translations/libqmmpui_fr.ts index 5e248d01e..ef391a329 100644 --- a/src/qmmpui/translations/libqmmpui_fr.ts +++ b/src/qmmpui/translations/libqmmpui_fr.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Fenêtre de fichier Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Tous les Bitstreams supportés</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Sélectionner un fichier ou plus à ouvrir</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Sélectionner un fichier ou plus à jouer</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Choisissez un répertoire</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Fichiers de playlist</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Ouvrir une playlist</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Sauvegarder la playlist</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_gl_ES.ts b/src/qmmpui/translations/libqmmpui_gl_ES.ts index c965c4537..d7c3abc80 100644 --- a/src/qmmpui/translations/libqmmpui_gl_ES.ts +++ b/src/qmmpui/translations/libqmmpui_gl_ES.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Diálogo de ficheiro Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Tódolos bitstreams soportados</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Selecciona un ou máis ficheiros para abrir</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Seleccione un ou máis arquivos a reproducir</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Escolla un directorio</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Arquivos de lista de reprodución</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Abrir lista de reprodución</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Gardar a lista de reprodución</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_he.ts b/src/qmmpui/translations/libqmmpui_he.ts index 5a1719188..9f5a39f4c 100644 --- a/src/qmmpui/translations/libqmmpui_he.ts +++ b/src/qmmpui/translations/libqmmpui_he.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>דו שיח קובץ Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>כל זרמי הסביות הנתמכים</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>בחר קובץ אחד או יותר לפתיחה</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>בחר קובץ אחד או יותר לניגון</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>בחר מדור</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>קבצי רשימת נגינה</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>פתח רשימת נגינה</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>שמור רשימת נגינה</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_hu.ts b/src/qmmpui/translations/libqmmpui_hu.ts index b68b69d24..7b82d77d0 100644 --- a/src/qmmpui/translations/libqmmpui_hu.ts +++ b/src/qmmpui/translations/libqmmpui_hu.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation type="unfinished"></translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_id.ts b/src/qmmpui/translations/libqmmpui_id.ts index 19376428d..af7c51454 100644 --- a/src/qmmpui/translations/libqmmpui_id.ts +++ b/src/qmmpui/translations/libqmmpui_id.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Dialog File Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Semua Bitstreams Yang Didukung</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Pilih satu atau lebih banyak file untuk buka</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Pilih satu atau lebih banyak file untuk play</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Memilih sebuah direktori</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>File Playlist</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Buka Playlist</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Simpan Playlist</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_it.ts b/src/qmmpui/translations/libqmmpui_it.ts index 0e4b9cf08..d569370fa 100644 --- a/src/qmmpui/translations/libqmmpui_it.ts +++ b/src/qmmpui/translations/libqmmpui_it.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Menu brani Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_ja.ts b/src/qmmpui/translations/libqmmpui_ja.ts index 6b05e71be..3e803117c 100644 --- a/src/qmmpui/translations/libqmmpui_ja.ts +++ b/src/qmmpui/translations/libqmmpui_ja.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qt ファイルダイアログ</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>サポート対象のすべてのデジタル録音物</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>開きたいファイルを選ぶ (複数可)</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>再生したいファイルを 1 つ以上選ぶ</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>ディレクトリを選択</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>プレイリストファイル</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>プレイリストを開く</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>プレイリストを保存</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_kk.ts b/src/qmmpui/translations/libqmmpui_kk.ts index 36dc733bb..ede770a7e 100644 --- a/src/qmmpui/translations/libqmmpui_kk.ts +++ b/src/qmmpui/translations/libqmmpui_kk.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation type="unfinished"></translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_lt.ts b/src/qmmpui/translations/libqmmpui_lt.ts index 047423b4e..2a40d0621 100644 --- a/src/qmmpui/translations/libqmmpui_lt.ts +++ b/src/qmmpui/translations/libqmmpui_lt.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qt bylų langas</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Palaikomi bylų tipai</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Pasirinkite vieną ar kelias bylas atvėrimui</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Pasirink vieną ar daugiau bylų grojimui</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Pasirinkite aplanką</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Grojaraščio bylos</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Atverti grojaraštį</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Išsaugoti grojaraštį</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_nl.ts b/src/qmmpui/translations/libqmmpui_nl.ts index 839dfd8c3..7bbd6f3c5 100644 --- a/src/qmmpui/translations/libqmmpui_nl.ts +++ b/src/qmmpui/translations/libqmmpui_nl.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qt Bestandsdialoog</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Alle Ondersteunde Bitstromen</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Kies één of meerdere bestanden om te openen</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished">Kies één of meerdere bestanden om af te spelen</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Kies een map</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Afspeellijst Bestanden</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Open Afspeellijst</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Bewaar Afspeellijst</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_pl_PL.ts b/src/qmmpui/translations/libqmmpui_pl_PL.ts index 696953f61..d514f9aed 100644 --- a/src/qmmpui/translations/libqmmpui_pl_PL.ts +++ b/src/qmmpui/translations/libqmmpui_pl_PL.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Okno dialogowe QT</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Wszystkie wspierane formaty</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Wybierz jeden lub więcej plików do otwarcia</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Wybierz jedne lub więcej plików do odtwarzania</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Wybierz katalog</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Pliki listy odtwarzania</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Otwórz listę odtwarzania</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Zapisz listę odtwarzania</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_pt.ts b/src/qmmpui/translations/libqmmpui_pt.ts index 82c8600c3..73ee699a9 100644 --- a/src/qmmpui/translations/libqmmpui_pt.ts +++ b/src/qmmpui/translations/libqmmpui_pt.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Diálogo de ficheiro Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Todas as emissões suportadas</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Selecione um ou mais ficheiros a abrir</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Selecione um ou mais ficheiros a reproduzir</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Selecione um diretório</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Ficheiros de lista de reprodução</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Abrir lista de reprodução</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Guardar lista de reprodução</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_pt_BR.ts b/src/qmmpui/translations/libqmmpui_pt_BR.ts index d04e28362..305e8588e 100644 --- a/src/qmmpui/translations/libqmmpui_pt_BR.ts +++ b/src/qmmpui/translations/libqmmpui_pt_BR.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Diálogo de arquivo Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Todos os formatos suportados</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Selecione um ou mais arquivos para abrir</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Selecione um ou mais arquivos para reproduzir</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Selecione uma pasta</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Arquivos de lista de reprodução</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Abrir lista de reprodução</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Salvar lista de reprodução</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_ru.ts b/src/qmmpui/translations/libqmmpui_ru.ts index 16e1d8481..1edd2e071 100644 --- a/src/qmmpui/translations/libqmmpui_ru.ts +++ b/src/qmmpui/translations/libqmmpui_ru.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Файловый диалог Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Все форматы</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Выберите один или несколько файлов</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Выберите один или несколько файлов для воспроизведения</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Выберите директорию</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Файлы списков</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Открыть список</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Сохранить список</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_sk.ts b/src/qmmpui/translations/libqmmpui_sk.ts index 7559765bf..ce262f2e4 100644 --- a/src/qmmpui/translations/libqmmpui_sk.ts +++ b/src/qmmpui/translations/libqmmpui_sk.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation type="unfinished"></translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_sr_BA.ts b/src/qmmpui/translations/libqmmpui_sr_BA.ts index 59de390c2..1df72e8e4 100644 --- a/src/qmmpui/translations/libqmmpui_sr_BA.ts +++ b/src/qmmpui/translations/libqmmpui_sr_BA.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Кут дијалог фајлова</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Сви подржани формати</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Изаберите један или више фајлова за отварање</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Изаберите један или више фајлова за пуштање</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Изаберите фасциклу</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Фајлови листа нумера</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Отварање листе нумера</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Уписивање листе нумера</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_sr_RS.ts b/src/qmmpui/translations/libqmmpui_sr_RS.ts index c05fd3b9e..3a47d3b56 100644 --- a/src/qmmpui/translations/libqmmpui_sr_RS.ts +++ b/src/qmmpui/translations/libqmmpui_sr_RS.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Кут дијалог фајлова</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Сви подржани формати</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Изаберите један или више фајлова за отварање</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Изаберите један или више фајлова за пуштање</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Изаберите фасциклу</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Фајлови листа нумера</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Отварање листе нумера</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Уписивање листе нумера</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_tr.ts b/src/qmmpui/translations/libqmmpui_tr.ts index d9425cbe5..f99e69868 100644 --- a/src/qmmpui/translations/libqmmpui_tr.ts +++ b/src/qmmpui/translations/libqmmpui_tr.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qt Dosya Diyaloğu</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_uk_UA.ts b/src/qmmpui/translations/libqmmpui_uk_UA.ts index a26ac4300..5515185e4 100644 --- a/src/qmmpui/translations/libqmmpui_uk_UA.ts +++ b/src/qmmpui/translations/libqmmpui_uk_UA.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Файловий діалог Qt</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>Усі формати</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>Виберіть один чи декілька файлів для відкриття</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>Виберіть один чи декілька файлів для відтвореня</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>Виберіть теку</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>Файли списків</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>Відкрити список</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>Зберегти список</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_zh_CN.ts b/src/qmmpui/translations/libqmmpui_zh_CN.ts index 761f1770f..1f6fc1f31 100644 --- a/src/qmmpui/translations/libqmmpui_zh_CN.ts +++ b/src/qmmpui/translations/libqmmpui_zh_CN.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qmmp 文件对话</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation>所有被支持格式的媒体流</translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation>选择一个或多个文件并打开</translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation>选择一个或多个文件并播放</translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>选择文件夹</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation>播放列表文件</translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation>打开播放列表</translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation>保存播放列表</translation> </message> diff --git a/src/qmmpui/translations/libqmmpui_zh_TW.ts b/src/qmmpui/translations/libqmmpui_zh_TW.ts index e5e6ee7ea..6c8bf36f2 100644 --- a/src/qmmpui/translations/libqmmpui_zh_TW.ts +++ b/src/qmmpui/translations/libqmmpui_zh_TW.ts @@ -995,7 +995,7 @@ <context> <name>QtFileDialogFactory</name> <message> - <location filename="../qtfiledialog.cpp" line="34"/> + <location filename="../qtfiledialog.cpp" line="35"/> <source>Qt File Dialog</source> <translation>Qmmp 檔案會話</translation> </message> @@ -1091,39 +1091,39 @@ <context> <name>UiHelper</name> <message> - <location filename="../uihelper.cpp" line="138"/> - <location filename="../uihelper.cpp" line="150"/> + <location filename="../uihelper.cpp" line="139"/> + <location filename="../uihelper.cpp" line="151"/> <source>All Supported Bitstreams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="144"/> + <location filename="../uihelper.cpp" line="145"/> <source>Select one or more files to open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="156"/> + <location filename="../uihelper.cpp" line="157"/> <source>Select one or more files to play</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="164"/> + <location filename="../uihelper.cpp" line="165"/> <source>Choose a directory</source> <translation>選取一個目錄</translation> </message> <message> - <location filename="../uihelper.cpp" line="180"/> - <location filename="../uihelper.cpp" line="204"/> + <location filename="../uihelper.cpp" line="181"/> + <location filename="../uihelper.cpp" line="205"/> <source>Playlist Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="182"/> + <location filename="../uihelper.cpp" line="183"/> <source>Open Playlist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../uihelper.cpp" line="205"/> + <location filename="../uihelper.cpp" line="206"/> <source>Save Playlist</source> <translation type="unfinished"></translation> </message> diff --git a/src/qmmpui/uihelper.cpp b/src/qmmpui/uihelper.cpp index 44b450bad..4a6bd6bc2 100644 --- a/src/qmmpui/uihelper.cpp +++ b/src/qmmpui/uihelper.cpp @@ -23,6 +23,7 @@ #include <QWidget> #include <QAction> #include <QSettings> +#include <QApplication> #include <qmmp/soundcore.h> #include <qmmp/metadatamanager.h> #include "filedialog.h" @@ -245,34 +246,12 @@ void UiHelper::showMainWindow() void UiHelper::exit() { -#if QT_VERSION < 0x040700 - bool closed = true; - QWidget *w; + //send non-spontaneous close event + //for all windows + foreach (QWidget *widget, qApp->topLevelWidgets()) + widget->close(); - while ((w = qApp->activeModalWidget()) && closed) - { - if (!w->isVisible()) - break; - - closed = w->close(); - } - - QWidgetList list = qApp->topLevelWidgets(); - - while (closed && !list.isEmpty()) - { - w = list.takeLast(); - - if (w->isVisible() && w->windowType() != Qt::Desktop) - { - closed = w->close(); - list = qApp->topLevelWidgets(); - list.removeOne(w); - } - } -#else qApp->closeAllWindows(); -#endif qApp->quit(); } diff --git a/utils/fix_mac_libs.sh b/utils/fix_mac_libs.sh deleted file mode 100755 index d2d8c858b..000000000 --- a/utils/fix_mac_libs.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -#This script changes paths in installed binaries to relative. The first argument is path to .app package. - -echo Fixing paths to libraries inside $1... - -FINDDIR=$1/Contents -IFS=$'\n' -for i in `find $FINDDIR -type f -name \*.dylib -or -type f -name \*.so -or -type f -name qmmp` ; do - install_name_tool -change libqmmp.0.dylib @executable_path/../Frameworks/libqmmp.0.dylib $i - install_name_tool -change libqmmpui.0.dylib @executable_path/../Frameworks/libqmmpui.0.dylib $i -done - -echo Fixing paths to libraries done. |
