From 8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 25 Nov 2017 18:00:06 +0000 Subject: copy 1.2 branch to trunk git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7772 90c681e8-e032-0410-971d-27865f9a5e38 --- src/app/CMakeLists.txt | 43 ++++++------------ src/app/app.pro | 8 +--- src/app/desktop-translations/qmmp_cs.desktop.in | 7 +-- src/app/desktop-translations/qmmp_de.desktop.in | 6 +-- .../desktop-translations/qmmp_dir_cs.desktop.in | 5 +-- .../desktop-translations/qmmp_dir_de.desktop.in | 4 +- .../desktop-translations/qmmp_dir_he.desktop.in | 5 +-- .../desktop-translations/qmmp_dir_ja.desktop.in | 2 - .../desktop-translations/qmmp_dir_pt.desktop.in | 4 +- .../desktop-translations/qmmp_dir_pt_BR.desktop.in | 3 +- .../desktop-translations/qmmp_dir_ru.desktop.in | 6 +-- .../qmmp_enqueue_cs.desktop.in | 3 +- .../qmmp_enqueue_de.desktop.in | 2 +- .../qmmp_enqueue_he.desktop.in | 3 +- .../qmmp_enqueue_ja.desktop.in | 2 - .../qmmp_enqueue_pt.desktop.in | 2 +- .../qmmp_enqueue_pt_BR.desktop.in | 2 +- .../qmmp_enqueue_ru.desktop.in | 3 +- src/app/desktop-translations/qmmp_he.desktop.in | 7 ++- src/app/desktop-translations/qmmp_ja.desktop.in | 2 - src/app/desktop-translations/qmmp_pt.desktop.in | 6 +-- src/app/desktop-translations/qmmp_pt_BR.desktop.in | 5 ++- src/app/desktop-translations/qmmp_ru.desktop.in | 8 ++-- src/app/images/mac/icons.icns | Bin 222922 -> 0 bytes src/app/lxdesupport.cpp | 48 --------------------- src/app/lxdesupport.h | 33 -------------- src/app/main.cpp | 5 +-- src/app/qmmp.rc | 4 +- src/app/qmmpapplication.cpp | 36 ---------------- src/app/qmmpapplication.h | 39 ----------------- src/app/qmmpstarter.cpp | 18 +++++--- src/app/qmmpstarter.h | 2 + src/app/translations/qmmp_bg.ts | 32 +++++++------- src/app/translations/qmmp_cs.ts | 32 +++++++------- src/app/translations/qmmp_de.ts | 32 +++++++------- src/app/translations/qmmp_el.ts | 32 +++++++------- src/app/translations/qmmp_en.ts | 32 +++++++------- src/app/translations/qmmp_es.ts | 32 +++++++------- src/app/translations/qmmp_fi.ts | 32 +++++++------- src/app/translations/qmmp_fr.ts | 32 +++++++------- src/app/translations/qmmp_gl_ES.ts | 32 +++++++------- src/app/translations/qmmp_he.ts | 32 +++++++------- src/app/translations/qmmp_hu.ts | 32 +++++++------- src/app/translations/qmmp_id.ts | 32 +++++++------- src/app/translations/qmmp_it.ts | 32 +++++++------- src/app/translations/qmmp_ja.ts | 32 +++++++------- src/app/translations/qmmp_kk.ts | 32 +++++++------- src/app/translations/qmmp_lt.ts | 32 +++++++------- src/app/translations/qmmp_nl.ts | 32 +++++++------- src/app/translations/qmmp_pl_PL.ts | 32 +++++++------- src/app/translations/qmmp_pt.ts | 32 +++++++------- src/app/translations/qmmp_pt_BR.ts | 32 +++++++------- src/app/translations/qmmp_ru.ts | 32 +++++++------- src/app/translations/qmmp_sk.ts | 32 +++++++------- src/app/translations/qmmp_sr_BA.ts | 32 +++++++------- src/app/translations/qmmp_sr_RS.ts | 32 +++++++------- src/app/translations/qmmp_tr.ts | 32 +++++++------- src/app/translations/qmmp_uk_UA.ts | 32 +++++++------- src/app/translations/qmmp_zh_CN.ts | 32 +++++++------- src/app/translations/qmmp_zh_TW.ts | 32 +++++++------- 60 files changed, 516 insertions(+), 703 deletions(-) delete mode 100644 src/app/images/mac/icons.icns delete mode 100644 src/app/lxdesupport.cpp delete mode 100644 src/app/lxdesupport.h delete mode 100644 src/app/qmmpapplication.cpp delete mode 100644 src/app/qmmpapplication.h (limited to 'src/app') 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 deleted file mode 100644 index 7d1da8cd8..000000000 Binary files a/src/app/images/mac/icons.icns and /dev/null differ 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 -#include -#include -#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 -*/ -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 #endif #include -#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 -#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 -#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 - -/** - @author Ilya Kotov -*/ -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 #include #include "qmmpstarter.h" -#include "lxdesupport.h" #include "builtincommandlineoption.h" #ifdef Q_OS_WIN @@ -48,8 +47,6 @@ #include #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 #include #include +#include #ifdef Q_OS_WIN #include #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 @@ - + Usage: qmmp [options] [files] - + Options: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application - + Display this text and exit - + Print version number and exit - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces 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 @@ Neznámý příkaz - + Usage: qmmp [options] [files] Použití: qmmp [volby] [soubory] - + Options: Volby: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Nespouštět aplikaci - + Display this text and exit Zobrazit tento text a skončit - + Print version number and exit Vypsat číslo verze a skončit - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 QMMP verze: %1 - + Compiled with Qt version: %1 Zkompilováno s Qt verze: %1 - + Using Qt version: %1 Používá Qt verze: %1 - + Qmmp Version - + User Interfaces Uživatelská rozhraní 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 @@ Unbekannter Befehl - + Usage: qmmp [options] [files] Aufruf: qmmp [Optionen] [Dateien] - + Options: Optionen: - + Start qmmp with the specified user interface qmmp mit der angegebenen Benutzeroberfläche starten - + List all available user interfaces Liste aller verfügbaren Benutzeroberflächen - + Don't start the application Die Anwendung nicht starten - + Display this text and exit Zeigt diesen Hilfetext an - + Print version number and exit Gibt die Versionsnummer aus - + Home page: %1 Homepage: %1 - + Development page: %1 Entwicklungsseite: %1 - + Bug tracker: %1 - + Command Line Help Befehlszeilenhilfe - + QMMP version: %1 Qmmp-Version: %1 - + Compiled with Qt version: %1 Kompiliert mit der Qt-Version %1 - + Using Qt version: %1 Verwendet Qt-Version: %1 - + Qmmp Version Qmmp-Version - + User Interfaces Benutzeroberflächen 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 @@ Άγνωστη εντολή - + Usage: qmmp [options] [files] Χρήση: qmmp [επιλογές] [αρχεία] - + Options: Επιλογές: - + Start qmmp with the specified user interface Εκκίνηση του qmmp με το καθορισμένο περιβάλλον χρήστη - + List all available user interfaces Εμφάνιση όλων των διαθέσιμων περιβαλλόντων χρήστη - + Don't start the application Να μην εκκινηθεί η εφαρμογή - + Display this text and exit Εμφάνιση του κειμένου και έξοδος - + Print version number and exit Εμφάνιση του αριθμού έκδοσης και έξοδος - + Home page: %1 Ιστοσελίδα: %1 - + Development page: %1 Ιστοσελίδα ανάπτυξης: %1 - + Bug tracker: %1 Ιχνηλάτης σφαλμάτων: %1 - + Command Line Help Βοήθεια γραμμής εντολών - + QMMP version: %1 Έκδοση του QMMP: %1 - + Compiled with Qt version: %1 Μεταγλωττίστηκε με την έκδοση της Qt: %1 - + Using Qt version: %1 Χρήση της έκδοσης της Qt: %1 - + Qmmp Version Έκδοση του Qmmp - + User Interfaces Περιβάλλοντα χρήστη 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 @@ - + Usage: qmmp [options] [files] - + Options: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application - + Display this text and exit - + Print version number and exit - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces 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 @@ Comando desconocido - + Usage: qmmp [options] [files] Uso: qmmp [opciones] [archivos] - + Options: Opciones: - + Start qmmp with the specified user interface Iniciar qmmp con la interfaz de usuario especificada - + List all available user interfaces Mostrar lista de todas las interfaces de usuario disponibles - + Don't start the application No iniciar la aplicación - + Display this text and exit Muestra este texto y sale - + Print version number and exit Mostrar el número de versión y salir - + Home page: %1 Página de inicio: %1 - + Development page: %1 Página de desarrollo: %1 - + Bug tracker: %1 Reporte de errores: %1 - + Command Line Help Ayuda de Consola - + QMMP version: %1 QMMP versión: %1 - + Compiled with Qt version: %1 Compilado con Qt versión: %1 - + Using Qt version: %1 Usando Qt versión: %1 - + Qmmp Version Versión de Qmmp - + User Interfaces Interfaz de usuario 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 @@ Tuntematon komento - + Usage: qmmp [options] [files] Käyttö: qmmp [valinnat] [tiedostot] - + Options: Valinnat: - + Start qmmp with the specified user interface Käynnistä qmmp tietyllä käyttöliittymällä - + List all available user interfaces Listaa kaikki käytettävissä olevat käyttöliittymät - + Don't start the application Älä käynnistä sovellusta - + Display this text and exit Näytä tämä teksti ja lopeta - + Print version number and exit Tulosta versionumero ja lopeta - + Home page: %1 Sivusto: %1 - + Development page: %1 Kehityssivusto: %1 - + Bug tracker: %1 Vikaseuranta: %1 - + Command Line Help Komentorivin ohje - + QMMP version: %1 QMMP-versio: %1 - + Compiled with Qt version: %1 Käännetty käyttäen Qt-versiota: %1 - + Using Qt version: %1 Käytössä Qt-versio: %1 - + Qmmp Version Qmmp-versio - + User Interfaces Käyttöliittymät 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 @@ Commande inconnue - + Usage: qmmp [options] [files] Usage : qmmp [options] [fichiers] - + Options: Options : - + Start qmmp with the specified user interface Démarrer Qmmp avec l'interface spécifiée - + List all available user interfaces Lister toutes les interfaces disponibles - + Don't start the application Ne pas démarrer l'application - + Display this text and exit Afficher ce texte et quitter - + Print version number and exit Imprimer le numéro de version et quitter - + Home page: %1 Page d'accueil: %1 - + Development page: %1 Page du développement: %1 - + Bug tracker: %1 Traqueur de bugs: %1 - + Command Line Help Aide de la ligne de commande - + QMMP version: %1 QMMP version: %1 - + Compiled with Qt version: %1 Compilé avec Qt version: %1 - + Using Qt version: %1 Utilisation de Qt version: %1 - + Qmmp Version Version de Qmmp - + User Interfaces Interfaces utilisateur 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 @@ Comando descoñecido - + Usage: qmmp [options] [files] Uso: qmmp [opcións] [ficheiros] - + Options: Opcións: - + Start qmmp with the specified user interface Iniciar Qmmp coa interface de usuario especificada - + List all available user interfaces Listar tódalas interfaces de usuario dispoñibles - + Don't start the application Non lanzar o aplicativo - + Display this text and exit Mostar este texto e saír - + Print version number and exit Mostar número de versión e saír - + Home page: %1 Páxina de inicio: %1 - + Development page: %1 Páxina de desenrolo: %1 - + Bug tracker: %1 Seguimento de faios: %1 - + Command Line Help Axuda en liña de comandos - + QMMP version: %1 versión de QMMP: %1 - + Compiled with Qt version: %1 Compilado coa versión %1 de Qt - + Using Qt version: %1 Usando a versión %1 de Qt - + Qmmp Version Versión de Qmmp - + User Interfaces Interfaces de usuario 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 @@ פקודה לא מוכרת - + Usage: qmmp [options] [files] - + Options: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application - + Display this text and exit - + Print version number and exit - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 הודר בעזרת Qt גירסה: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces ממשקי משתמש 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 @@ Ismeretlen parancs - + Usage: qmmp [options] [files] Használat: qmmp [opciók] [fájlok] - + Options: Opciók: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application - + Display this text and exit Mutasd ezt a szöveget, majd lépj ki - + Print version number and exit Mutasd a verziószámot, majd lépj ki - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces 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 @@ Perintah tak diketahui - + Usage: qmmp [options] [files] Penggunaan: qmmp [pilihan] [file] - + Options: Pilihan: - + Start qmmp with the specified user interface Start qmmp dengan antarmuka pengguna yang ditentukan - + List all available user interfaces Daftar semua antarmuka pengguna yang tersedia - + Don't start the application Jangan mulaikan aplikasi - + Display this text and exit Tayangkan teks ini dan keluar - + Print version number and exit Cetak nomor versi dan keluar - + Home page: %1 Beranda: %1 - + Development page: %1 Halaman pengembang: %1 - + Bug tracker: %1 Pelacak bug: %1 - + Command Line Help Bantuan Baris Perintah - + QMMP version: %1 Versi QMMP: %1 - + Compiled with Qt version: %1 Dikompilasi dengan versi Qt: %1 - + Using Qt version: %1 Menggunakan versi Qt: %1 - + Qmmp Version Versi Qmmp - + User Interfaces Antarmuka Pengguna 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Uso: qmmp [options] [fichiers] - + Options: Opzioni: - + Start qmmp with the specified user interface - + List all available user interfaces - + Print version number and exit Stampa il numero di versione ed esci - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces - + Display this text and exit Mostra questo testo ed esci @@ -172,7 +172,7 @@ Comando sconosciuto - + Don't start the application 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 @@ 不明なコマンドです - + Usage: qmmp [options] [files] 使用法: qmmp [オプション] [ファイル名:複数可] - + Options: オプション: - + Start qmmp with the specified user interface ユーザーインターフェイスを選んで起動する - + List all available user interfaces 利用可能なユーザーインターフェイス一覧 - + Don't start the application アプリケーションを始動しない - + Display this text and exit このメッセージを表示して終了 - + Print version number and exit バージョン番号を表示して終了 - + Home page: %1 ホームページ: %1 - + Development page: %1 開発者のページ: %1 - + Bug tracker: %1 バグトラッカー: %1 - + Command Line Help コマンド行ヘルプ - + QMMP version: %1 QMMP のバージョン: %1 - + Compiled with Qt version: %1 コンパイルに使用した Qt のバージョン: %1 - + Using Qt version: %1 現在使用中の Qt のバージョン: %1 - + Qmmp Version QMMP バージョン - + User Interfaces ユーザーインターフェイス 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 @@ - + Usage: qmmp [options] [files] Қолданылуы: qmmp [опциялар] [файлдар] - + Options: Опциялары: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application - + Print version number and exit Нұсқасын көрсету мен шығу - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces - + Display this text and exit Осы мәтінді көрсету және шығу 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Naudojimas: qmmp [nuostatos] [bylos] - + Options: Nustatymai: - + Print version number and exit Parodyti versiją ir išeiti - + Display this text and exit Parodyti šį tekstą ir išeiti @@ -117,62 +117,62 @@ Nežinoma komanda - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Nepaleisti programos - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help Terminalo pagalba - + QMMP version: %1 QMMP versija: %1 - + Compiled with Qt version: %1 Sukompiliuota su Qt versija: %1 - + Using Qt version: %1 Naudojama Qt versija: %1 - + Qmmp Version Qmmp Versija - + User Interfaces 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Gebruik: qmmp [opties] [bestanden] - + Options: Opties: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Niet de applicatie starten - + Print version number and exit Print versienummer en sluit - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 QMMP versie: %1 - + Compiled with Qt version: %1 Gecompileerd met QT versie: %1 - + Using Qt version: %1 Gebruikt QT versie: %1 - + Qmmp Version - + User Interfaces - + Display this text and exit Toon deze tekst en sluit 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 @@ Nieznane polecenie - + Usage: qmmp [options] [files] Użycie: qmmp [opcje] [pliki] - + Options: Opcje: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Nie uruchamiaj aplikacji - + Display this text and exit Wyświetla ten tekst i wychodzi - + Print version number and exit Wyświetla wersję programu i wychodzi - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help Linia Poleceń Pomoc - + QMMP version: %1 Wersja QMMP: %1 - + Compiled with Qt version: %1 Skompilowane z wersją QT: %1 - + Using Qt version: %1 Używana wersja Qt: %1 - + Qmmp Version Wersja Qmmp - + User Interfaces Interfejs użytkownika 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 @@ Comando desconhecido - + Usage: qmmp [options] [files] Utilização: qmmp [opções] [ficheiros] - + Options: Opções: - + Start qmmp with the specified user interface Inicia o qmmp com a interface especificada - + List all available user interfaces Lista todas as interfaces disponíveis - + Don't start the application Não iniciar a aplicação - + Display this text and exit Mostrar este texto e sair - + Print version number and exit Mostrar número da versão e sair - + Home page: %1 Página web: %1 - + Development page: %1 Página de desenvolvimento: %1 - + Bug tracker: %1 Reporte de erros: %1 - + Command Line Help Ajuda para linha de comandos - + QMMP version: %1 Versão Qmmp: %1 - + Compiled with Qt version: %1 Compilado com Qt: %1 - + Using Qt version: %1 Utiliza a versão Qt: %1 - + Qmmp Version Versão Qmmp - + User Interfaces Interface de utilizador 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 @@ Comando desconhecido - + Usage: qmmp [options] [files] qmmp [opção] [arquivo] - + Options: Opções: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Não iniciar o aplicativo - + Display this text and exit Exibir esse texto e sair - + Print version number and exit Exibir informações sobre a versão e sair - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help Ajuda para linha de comandos - + QMMP version: %1 Versão do Qmmp: %1 - + Compiled with Qt version: %1 Versão do Qt usado para compilação: %1 - + Using Qt version: %1 Versão Qt usada: %1 - + Qmmp Version Versão Qmmp - + User Interfaces Interface de usuário 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 @@ Неизвестная команда - + Usage: qmmp [options] [files] Использование: qmmp [options] [files] - + Options: Опции: - + Start qmmp with the specified user interface Запустить qmmp с указанным интерфейсом пользователя - + List all available user interfaces Вывести доступные интерфейсы пользователя - + Don't start the application Не запускать приложение - + Display this text and exit Показать этот текст и выйти - + Print version number and exit Показать версии и выйти - + Home page: %1 Домашняя страница: %1 - + Development page: %1 Страница разработки: %1 - + Bug tracker: %1 Система регистрации ошибок: %1 - + Command Line Help Справка по командной строке - + QMMP version: %1 Версия QMMP: %1 - + Compiled with Qt version: %1 Собрано с версией Qt: %1 - + Using Qt version: %1 Используемая версия Qt: %1 - + Qmmp Version Версия Qmmp - + User Interfaces Интерфейсы пользователя 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Použitie: qmmp [možnosti] [súbory] - + Options: Možnosti: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Nezapnúť program - + Print version number and exit Vypísať číslo verzie a skončiť - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces - + Display this text and exit Zobraziť tento text a skončiť 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Употреба: qmmp [опције] [фајлови] - + Options: Опције: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Не покрећи програм - + Print version number and exit Прикажи издање и изађи - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help Помоћ командне линије - + QMMP version: %1 КуМП: %1 - + Compiled with Qt version: %1 Комилован Кут издањем: %1 - + Using Qt version: %1 Користим Кут издање: %1 - + Qmmp Version Издање Кумпа - + User Interfaces - + Display this text and exit Прикажи овај текст и изађи 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Употреба: qmmp [опције] [фајлови] - + Options: Опције: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application Не покрећи програм - + Print version number and exit Прикажи издање и изађи - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help Помоћ командне линије - + QMMP version: %1 КуМП: %1 - + Compiled with Qt version: %1 Комилован Кут издањем: %1 - + Using Qt version: %1 Користим Кут издање: %1 - + Qmmp Version Издање Кумпа - + User Interfaces - + Display this text and exit Прикажи овај текст и изађи 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Kullanım:qmmp [seçenek] [dosyalar] - + Options: Seçenekler: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application - + Print version number and exit Sürüm numarasını yazdır ve çık - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces - + Display this text and exit Bu metni göster ve çık 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 @@ QMMPStarter - + Usage: qmmp [options] [files] Використання: qmmp [options] [files] - + Options: Опції: - + Start qmmp with the specified user interface Запустити qmmp з вказаним інтерфейсом користувача - + List all available user interfaces Перелік доступних інтерфейсів користувача - + Don't start the application Не запускати програму - + Print version number and exit Показати версію та вийти - + Home page: %1 Домашня сторінка: %1 - + Development page: %1 Сторінка розробки: %1 - + Bug tracker: %1 Трекер помилок: %1 - + Command Line Help Довідка по командному рядку - + QMMP version: %1 Версія QMMP: %1 - + Compiled with Qt version: %1 Зібрано з Qt версії: %1 - + Using Qt version: %1 Використовується Qt версії: %1 - + Qmmp Version Версія Qmmp - + User Interfaces Інтерфейси користувача - + Display this text and exit Показати цей текст та вийти 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 @@ 未知指令 - + Usage: qmmp [options] [files] 使用:qmmp [设置] [文件] - + Options: 设置: - + Start qmmp with the specified user interface 使用指定的用户界面启动 QMMP - + List all available user interfaces 列出所有可用的用户界面 - + Don't start the application 无法启动此程序 - + Display this text and exit 显示这些文本并退出 - + Print version number and exit 显示版本并退出 - + Home page: %1 主页:%1 - + Development page: %1 开发页面:%1 - + Bug tracker: %1 问题报告站点:%1 - + Command Line Help 命令行帮助 - + QMMP version: %1 QMMP版本:%1 - + Compiled with Qt version: %1 用于编译的QT版本:%1 - + Using Qt version: %1 使用的Qt版本:%1 - + Qmmp Version Qmmp播放器版本 - + User Interfaces 用户界面 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 @@ 未知指令 - + Usage: qmmp [options] [files] 使用:qmmp [設定] [文件] - + Options: 設定: - + Start qmmp with the specified user interface - + List all available user interfaces - + Don't start the application 無法啟動此程式 - + Display this text and exit 察看這些字檔並結束 - + Print version number and exit 察看版本並結束 - + Home page: %1 - + Development page: %1 - + Bug tracker: %1 - + Command Line Help - + QMMP version: %1 - + Compiled with Qt version: %1 - + Using Qt version: %1 - + Qmmp Version - + User Interfaces -- cgit v1.2.3-13-gbd6f