From 440bda1096cdb137746ce5474434a22650cb0e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 28 Jun 2020 18:13:33 +0200 Subject: [PATCH] Add CMakeL10n rules. Update translation templates. Use common cmake rules for documentation. Added creation of translated desktop files during build. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- CMakeL10n.txt | 23 + doc/CMakeLists.txt | 35 +- misc/CMakeL10n.txt | 6 + misc/CMakeLists.txt | 13 +- misc/codeine.desktop | 55 +- misc/codeine_part.desktop | 8 +- misc/codeine_play_dvd.desktop | 29 -- src/CMakeL10n.txt | 3 + translations/desktop_files/bg.po | 42 ++ translations/desktop_files/bn.po | 42 ++ translations/desktop_files/br.po | 42 ++ translations/desktop_files/ca.po | 42 ++ .../desktop_files/codeine-desktops.pot | 42 ++ translations/desktop_files/cs.po | 42 ++ translations/desktop_files/cy.po | 42 ++ translations/desktop_files/da.po | 42 ++ translations/desktop_files/de.po | 42 ++ translations/desktop_files/el.po | 42 ++ translations/desktop_files/es.po | 42 ++ translations/desktop_files/et.po | 42 ++ translations/desktop_files/fi.po | 42 ++ translations/desktop_files/fr.po | 42 ++ translations/desktop_files/ga.po | 42 ++ translations/desktop_files/he.po | 42 ++ translations/desktop_files/hi.po | 42 ++ translations/desktop_files/hu.po | 42 ++ translations/desktop_files/it.po | 42 ++ translations/desktop_files/ja.po | 42 ++ translations/desktop_files/lt.po | 42 ++ translations/desktop_files/mk.po | 42 ++ translations/desktop_files/nb.po | 42 ++ translations/desktop_files/nl.po | 42 ++ translations/desktop_files/nn.po | 42 ++ translations/desktop_files/pa.po | 42 ++ translations/desktop_files/pl.po | 42 ++ translations/desktop_files/pt.po | 42 ++ translations/desktop_files/pt_BR.po | 42 ++ translations/desktop_files/ru.po | 42 ++ translations/desktop_files/sr.po | 42 ++ translations/desktop_files/sr@Latn.po | 42 ++ translations/desktop_files/sv.po | 42 ++ translations/desktop_files/tr.po | 42 ++ translations/desktop_files/xh.po | 42 ++ translations/desktop_files/zh_CN.po | 42 ++ translations/desktop_files/zu.po | 42 ++ translations/messages/codeine.pot | 476 +++++++++--------- 46 files changed, 1885 insertions(+), 317 deletions(-) create mode 100644 CMakeL10n.txt create mode 100644 misc/CMakeL10n.txt create mode 100644 src/CMakeL10n.txt create mode 100644 translations/desktop_files/bg.po create mode 100644 translations/desktop_files/bn.po create mode 100644 translations/desktop_files/br.po create mode 100644 translations/desktop_files/ca.po create mode 100644 translations/desktop_files/codeine-desktops.pot create mode 100644 translations/desktop_files/cs.po create mode 100644 translations/desktop_files/cy.po create mode 100644 translations/desktop_files/da.po create mode 100644 translations/desktop_files/de.po create mode 100644 translations/desktop_files/el.po create mode 100644 translations/desktop_files/es.po create mode 100644 translations/desktop_files/et.po create mode 100644 translations/desktop_files/fi.po create mode 100644 translations/desktop_files/fr.po create mode 100644 translations/desktop_files/ga.po create mode 100644 translations/desktop_files/he.po create mode 100644 translations/desktop_files/hi.po create mode 100644 translations/desktop_files/hu.po create mode 100644 translations/desktop_files/it.po create mode 100644 translations/desktop_files/ja.po create mode 100644 translations/desktop_files/lt.po create mode 100644 translations/desktop_files/mk.po create mode 100644 translations/desktop_files/nb.po create mode 100644 translations/desktop_files/nl.po create mode 100644 translations/desktop_files/nn.po create mode 100644 translations/desktop_files/pa.po create mode 100644 translations/desktop_files/pl.po create mode 100644 translations/desktop_files/pt.po create mode 100644 translations/desktop_files/pt_BR.po create mode 100644 translations/desktop_files/ru.po create mode 100644 translations/desktop_files/sr.po create mode 100644 translations/desktop_files/sr@Latn.po create mode 100644 translations/desktop_files/sv.po create mode 100644 translations/desktop_files/tr.po create mode 100644 translations/desktop_files/xh.po create mode 100644 translations/desktop_files/zh_CN.po create mode 100644 translations/desktop_files/zu.po diff --git a/CMakeL10n.txt b/CMakeL10n.txt new file mode 100644 index 0000000..e4b7476 --- /dev/null +++ b/CMakeL10n.txt @@ -0,0 +1,23 @@ +################################################# +# +# (C) 2020 Slávek Banko +# slavek.banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +cmake_minimum_required( VERSION 2.8 ) + + +##### include our cmake modules ################# + +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) +include( TDEL10n ) + + +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 6d0aa9f..f6eec15 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1 +1,34 @@ -tde_auto_add_subdirectories( ) +file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * ) +list( REMOVE_ITEM _dirs html man ) + +string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) + +foreach( _dir IN LISTS _dirs ) + if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} + AND ( "${_dir}" STREQUAL "en" OR + "${_linguas}" MATCHES "^;*$" OR + ";${_linguas};" MATCHES ";${_dir};" )) + file( GLOB _doc_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} ${_dir}/*.docbook ) + if( _doc_files ) + list( FIND _doc_files "index.docbook" _find_index ) + if( -1 EQUAL _find_index ) + set( _noindex "NOINDEX" ) + else() + unset( _noindex ) + endif() + tde_create_handbook( + SOURCE_BASEDIR ${_dir} + ${_noindex} + LANG ${_dir} + DESTINATION ${PROJECT_NAME} + ) + endif() + endif() +endforeach() + +if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/html/CMakeLists.txt ) + add_subdirectory( html ) +endif() +if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/man/CMakeLists.txt ) + add_subdirectory( man ) +endif() diff --git a/misc/CMakeL10n.txt b/misc/CMakeL10n.txt new file mode 100644 index 0000000..337401d --- /dev/null +++ b/misc/CMakeL10n.txt @@ -0,0 +1,6 @@ +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "desktop_files/codeine-desktops" + SOURCES *.desktop +) diff --git a/misc/CMakeLists.txt b/misc/CMakeLists.txt index 30786a7..99c0db2 100644 --- a/misc/CMakeLists.txt +++ b/misc/CMakeLists.txt @@ -15,17 +15,14 @@ install( DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} ) -install( - FILES ${PROJECT_NAME}.desktop - DESTINATION ${XDG_APPS_INSTALL_DIR} -) +tde_create_translated_desktop( ${PROJECT_NAME}.desktop ) -install( - FILES ${PROJECT_NAME}_part.desktop +tde_create_translated_desktop( + SOURCE ${PROJECT_NAME}_part.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) -install( - FILES ${PROJECT_NAME}_play_dvd.desktop +tde_create_translated_desktop( + SOURCE ${PROJECT_NAME}_play_dvd.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/servicemenus ) diff --git a/misc/codeine.desktop b/misc/codeine.desktop index 9aded75..853fb18 100644 --- a/misc/codeine.desktop +++ b/misc/codeine.desktop @@ -1,41 +1,14 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Codeine -Exec=codeine %u -Icon=codeine -Type=Application -Terminal=false -MimeType=video/x-theora;video/x-ogm;video/x-ms-wmv;video/x-msvideo;video/x-ms-asf;video/x-matroska;video/mpeg;video/avi;video/quicktime;video/vnd.rn-realvideo;video/x-flic; -Categories=Qt;TDE;AudioVideo;Player -Comment=Video player for TDE designed to be as simple as possible -Comment[de]=Videoabspieler für TDE entworfen zur einfachen Bedienung -GenericName=Media Player -GenericName[br]=Soner liesvedia -GenericName[ca]=Reproductor multimèdia -GenericName[cs]=Přehrávač médií -GenericName[cy]=Chwaraeydd Cyfryngau -GenericName[da]=Medieafspiller -GenericName[el]=Αναπαραγωγέας μέσων -GenericName[es]=Reproductor multimedia -GenericName[et]=Meediamängija -GenericName[fr]=Lecteur multimédia -GenericName[ga]=Seinnteoir Meán -GenericName[he]=נגן מדיה -GenericName[hi]=मीडिया प्लेयर -GenericName[hu]=Médialejátszó -GenericName[it]=Lettore multimediale -GenericName[lt]=Media grotuvas -GenericName[mk]=Изведувач на мултимедиа -GenericName[nl]=Mediaspeler -GenericName[pa]=ਮੀਡਿਆ ਪਲੇਅਰ -GenericName[pt]=Leitor Multimédia -GenericName[pt_BR]=Tocador de Mídia -GenericName[ru]=Медиаплеер -GenericName[sr]=Медија плејер -GenericName[sr@Latn]=Medija plejer -GenericName[sv]=Mediaspelare -GenericName[tr]=Medya Oynatıcı -GenericName[xh]=Umdlali we Midia -GenericName[xx]=xxMedia Playerxx -GenericName[zh_CN]=媒体播放器 -GenericName[zu]=Umdlali Wezezindaba +[Desktop Entry] +Encoding=UTF-8 +Name=Codeine + +GenericName=Media Player + +Comment=Video player for TDE designed to be as simple as possible + +Type=Application +Exec=codeine %u +Icon=codeine +Terminal=false +MimeType=video/x-theora;video/x-ogm;video/x-ms-wmv;video/x-msvideo;video/x-ms-asf;video/x-matroska;video/mpeg;video/avi;video/quicktime;video/vnd.rn-realvideo;video/x-flic; +Categories=Qt;TDE;AudioVideo;Player diff --git a/misc/codeine_part.desktop b/misc/codeine_part.desktop index c8f8d73..4d7962d 100644 --- a/misc/codeine_part.desktop +++ b/misc/codeine_part.desktop @@ -1,10 +1,12 @@ [Desktop Entry] Encoding=UTF-8 -Icon=codeine -MimeType=video/x-theora;video/x-ogm;video/x-ms-wmv;video/x-msvideo;video/x-ms-asf;video/x-matroska;video/mpeg;video/avi;video/quicktime;video/vnd.rn-realvideo;video/x-flic; Name=Codeine + Comment=Embeddable Video Player -X-TDE-ServiceTypes=KParts/ReadOnlyPart + Type=Service +Icon=codeine +MimeType=video/x-theora;video/x-ogm;video/x-ms-wmv;video/x-msvideo;video/x-ms-asf;video/x-matroska;video/mpeg;video/avi;video/quicktime;video/vnd.rn-realvideo;video/x-flic; +X-TDE-ServiceTypes=KParts/ReadOnlyPart X-TDE-Library=libcodeine X-TDE-InitialPreference=9 diff --git a/misc/codeine_play_dvd.desktop b/misc/codeine_play_dvd.desktop index 36ce1cf..11b6f13 100644 --- a/misc/codeine_play_dvd.desktop +++ b/misc/codeine_play_dvd.desktop @@ -6,34 +6,5 @@ X-TDE-Priority=TopLevel [Desktop Action Play] Name=Play DVD with Codeine -Name[bg]=Възпроизвеждане на DVD с Codeine -Name[bn]=ক্যাফিন দিয়ে ডিভিডি চালাও -Name[br]=Seniñ an DVD gant Codeine -Name[ca]=Reprodueix DVD amb Codeine -Name[cs]=Přehrát DVD v Codeine -Name[da]=Spil dvd med Codeine -Name[de]=DVD mit Codeine abspielen -Name[el]=Αναπαραγωγή DVD με το Codeine -Name[es]=Reproducir DVD con Codeine -Name[et]=Esita DVD Codeine'is -Name[fi]=Toista dvd-levy Codeinessa -Name[fr]=Lire le DVD avec Codeine -Name[ga]=Seinn DVD le Codeine -Name[he]=נגן תקליטור DVD עם Codeine -Name[it]=Riproduci DVD con Codeine -Name[ja]=CodeineでDVDを再生 -Name[nb]=Spill DVD med Codeine -Name[nl]=DVD met Codeine afspelen -Name[nn]=Spel DVD med Codeine -Name[pa]=ਕੈਫੀਨ ਨਾਲ DVD ਚਲਾਓ -Name[pl]=Odtwarzaj DVD w Codeine -Name[pt]=Ver o DVD com o Codeine -Name[pt_BR]=Reproduzir o DVD com o Codeine -Name[sr]=Пусти DVD Codeine-ом -Name[sr@Latn]=Pusti DVD Codeine-om -Name[sv]=Spela dvd med Codeine -Name[tr]=DVD'yi Codeine ile oynat -Name[xx]=xxPlay DVD with Codeinexx -Name[zh_CN]=用 Codeine 播放 DVD Icon=codeine Exec=codeine --play-dvd %u diff --git a/src/CMakeL10n.txt b/src/CMakeL10n.txt new file mode 100644 index 0000000..c7b0eb1 --- /dev/null +++ b/src/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "messages/codeine" ) diff --git a/translations/desktop_files/bg.po b/translations/desktop_files/bg.po new file mode 100644 index 0000000..9433b71 --- /dev/null +++ b/translations/desktop_files/bg.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Възпроизвеждане на DVD с Codeine" diff --git a/translations/desktop_files/bn.po b/translations/desktop_files/bn.po new file mode 100644 index 0000000..cfc5be8 --- /dev/null +++ b/translations/desktop_files/bn.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "ক্যাফিন দিয়ে ডিভিডি চালাও" diff --git a/translations/desktop_files/br.po b/translations/desktop_files/br.po new file mode 100644 index 0000000..8c70d2a --- /dev/null +++ b/translations/desktop_files/br.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Soner liesvedia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Seniñ an DVD gant Codeine" diff --git a/translations/desktop_files/ca.po b/translations/desktop_files/ca.po new file mode 100644 index 0000000..364de43 --- /dev/null +++ b/translations/desktop_files/ca.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Reproductor multimèdia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Reprodueix DVD amb Codeine" diff --git a/translations/desktop_files/codeine-desktops.pot b/translations/desktop_files/codeine-desktops.pot new file mode 100644 index 0000000..0d4a17d --- /dev/null +++ b/translations/desktop_files/codeine-desktops.pot @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/cs.po b/translations/desktop_files/cs.po new file mode 100644 index 0000000..8c1903e --- /dev/null +++ b/translations/desktop_files/cs.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Přehrávač médií" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Přehrát DVD v Codeine" diff --git a/translations/desktop_files/cy.po b/translations/desktop_files/cy.po new file mode 100644 index 0000000..5a9307a --- /dev/null +++ b/translations/desktop_files/cy.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Chwaraeydd Cyfryngau" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/da.po b/translations/desktop_files/da.po new file mode 100644 index 0000000..e6bcae8 --- /dev/null +++ b/translations/desktop_files/da.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Medieafspiller" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Spil dvd med Codeine" diff --git a/translations/desktop_files/de.po b/translations/desktop_files/de.po new file mode 100644 index 0000000..14daff3 --- /dev/null +++ b/translations/desktop_files/de.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "Videoabspieler für TDE entworfen zur einfachen Bedienung" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "DVD mit Codeine abspielen" diff --git a/translations/desktop_files/el.po b/translations/desktop_files/el.po new file mode 100644 index 0000000..31e2738 --- /dev/null +++ b/translations/desktop_files/el.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Αναπαραγωγέας μέσων" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Αναπαραγωγή DVD με το Codeine" diff --git a/translations/desktop_files/es.po b/translations/desktop_files/es.po new file mode 100644 index 0000000..0bdf55b --- /dev/null +++ b/translations/desktop_files/es.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Reproductor multimedia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Reproducir DVD con Codeine" diff --git a/translations/desktop_files/et.po b/translations/desktop_files/et.po new file mode 100644 index 0000000..1ffca3a --- /dev/null +++ b/translations/desktop_files/et.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Meediamängija" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Esita DVD Codeine'is" diff --git a/translations/desktop_files/fi.po b/translations/desktop_files/fi.po new file mode 100644 index 0000000..e690b7d --- /dev/null +++ b/translations/desktop_files/fi.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Toista dvd-levy Codeinessa" diff --git a/translations/desktop_files/fr.po b/translations/desktop_files/fr.po new file mode 100644 index 0000000..87d8ad0 --- /dev/null +++ b/translations/desktop_files/fr.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Lecteur multimédia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Lire le DVD avec Codeine" diff --git a/translations/desktop_files/ga.po b/translations/desktop_files/ga.po new file mode 100644 index 0000000..1b8e14e --- /dev/null +++ b/translations/desktop_files/ga.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Seinnteoir Meán" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Seinn DVD le Codeine" diff --git a/translations/desktop_files/he.po b/translations/desktop_files/he.po new file mode 100644 index 0000000..8778a41 --- /dev/null +++ b/translations/desktop_files/he.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "נגן מדיה" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "נגן תקליטור DVD עם Codeine" diff --git a/translations/desktop_files/hi.po b/translations/desktop_files/hi.po new file mode 100644 index 0000000..4be9aad --- /dev/null +++ b/translations/desktop_files/hi.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "मीडिया प्लेयर" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/hu.po b/translations/desktop_files/hu.po new file mode 100644 index 0000000..270d28f --- /dev/null +++ b/translations/desktop_files/hu.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Médialejátszó" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/it.po b/translations/desktop_files/it.po new file mode 100644 index 0000000..b71fdd8 --- /dev/null +++ b/translations/desktop_files/it.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Lettore multimediale" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Riproduci DVD con Codeine" diff --git a/translations/desktop_files/ja.po b/translations/desktop_files/ja.po new file mode 100644 index 0000000..32087f0 --- /dev/null +++ b/translations/desktop_files/ja.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "CodeineでDVDを再生" diff --git a/translations/desktop_files/lt.po b/translations/desktop_files/lt.po new file mode 100644 index 0000000..8901383 --- /dev/null +++ b/translations/desktop_files/lt.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Media grotuvas" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/mk.po b/translations/desktop_files/mk.po new file mode 100644 index 0000000..91faf02 --- /dev/null +++ b/translations/desktop_files/mk.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Изведувач на мултимедиа" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/nb.po b/translations/desktop_files/nb.po new file mode 100644 index 0000000..90c3f05 --- /dev/null +++ b/translations/desktop_files/nb.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Spill DVD med Codeine" diff --git a/translations/desktop_files/nl.po b/translations/desktop_files/nl.po new file mode 100644 index 0000000..39137be --- /dev/null +++ b/translations/desktop_files/nl.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Mediaspeler" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "DVD met Codeine afspelen" diff --git a/translations/desktop_files/nn.po b/translations/desktop_files/nn.po new file mode 100644 index 0000000..55e62e1 --- /dev/null +++ b/translations/desktop_files/nn.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Spel DVD med Codeine" diff --git a/translations/desktop_files/pa.po b/translations/desktop_files/pa.po new file mode 100644 index 0000000..ca36338 --- /dev/null +++ b/translations/desktop_files/pa.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "ਮੀਡਿਆ ਪਲੇਅਰ" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "ਕੈਫੀਨ ਨਾਲ DVD ਚਲਾਓ" diff --git a/translations/desktop_files/pl.po b/translations/desktop_files/pl.po new file mode 100644 index 0000000..73e65b8 --- /dev/null +++ b/translations/desktop_files/pl.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Odtwarzaj DVD w Codeine" diff --git a/translations/desktop_files/pt.po b/translations/desktop_files/pt.po new file mode 100644 index 0000000..ecbb92a --- /dev/null +++ b/translations/desktop_files/pt.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Leitor Multimédia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Ver o DVD com o Codeine" diff --git a/translations/desktop_files/pt_BR.po b/translations/desktop_files/pt_BR.po new file mode 100644 index 0000000..b583ee2 --- /dev/null +++ b/translations/desktop_files/pt_BR.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Tocador de Mídia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Reproduzir o DVD com o Codeine" diff --git a/translations/desktop_files/ru.po b/translations/desktop_files/ru.po new file mode 100644 index 0000000..b2764b0 --- /dev/null +++ b/translations/desktop_files/ru.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Медиаплеер" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/sr.po b/translations/desktop_files/sr.po new file mode 100644 index 0000000..0d11047 --- /dev/null +++ b/translations/desktop_files/sr.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Медија плејер" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Пусти DVD Codeine-ом" diff --git a/translations/desktop_files/sr@Latn.po b/translations/desktop_files/sr@Latn.po new file mode 100644 index 0000000..d5eac50 --- /dev/null +++ b/translations/desktop_files/sr@Latn.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sr@Latn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Medija plejer" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Pusti DVD Codeine-om" diff --git a/translations/desktop_files/sv.po b/translations/desktop_files/sv.po new file mode 100644 index 0000000..11b1cfb --- /dev/null +++ b/translations/desktop_files/sv.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Mediaspelare" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "Spela dvd med Codeine" diff --git a/translations/desktop_files/tr.po b/translations/desktop_files/tr.po new file mode 100644 index 0000000..20c6234 --- /dev/null +++ b/translations/desktop_files/tr.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Medya Oynatıcı" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "DVD'yi Codeine ile oynat" diff --git a/translations/desktop_files/xh.po b/translations/desktop_files/xh.po new file mode 100644 index 0000000..40e67fe --- /dev/null +++ b/translations/desktop_files/xh.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Umdlali we Midia" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/desktop_files/zh_CN.po b/translations/desktop_files/zh_CN.po new file mode 100644 index 0000000..c47e08f --- /dev/null +++ b/translations/desktop_files/zh_CN.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "媒体播放器" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "用 Codeine 播放 DVD" diff --git a/translations/desktop_files/zu.po b/translations/desktop_files/zu.po new file mode 100644 index 0000000..99b7993 --- /dev/null +++ b/translations/desktop_files/zu.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-28 16:45+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Name +#: codeine.desktop:3 codeine_part.desktop:3 +msgid "Codeine" +msgstr "" + +#. GenericName +#: codeine.desktop:5 +msgid "Media Player" +msgstr "Umdlali Wezezindaba" + +#. Comment +#: codeine.desktop:7 +msgid "Video player for TDE designed to be as simple as possible" +msgstr "" + +#. Comment +#: codeine_part.desktop:5 +msgid "Embeddable Video Player" +msgstr "" + +#. Name +#: codeine_play_dvd.desktop:8 +msgid "Play DVD with Codeine" +msgstr "" diff --git a/translations/messages/codeine.pot b/translations/messages/codeine.pot index c98a10d..5d4591a 100644 --- a/translations/messages/codeine.pot +++ b/translations/messages/codeine.pot @@ -1,484 +1,490 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-01 17:30+0100\n" +"POT-Creation-Date: 2020-06-28 16:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../src/app/videoSettings.cpp:91 -msgid "Video Settings" +#. Instead of a literal translation, add your name to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" msgstr "" -#: ../src/app/playDialog.cpp:27 -msgid "Play Media" +#. Instead of a literal translation, add your email to the end of the list (separated by a comma). +#, ignore-inconsistent +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" msgstr "" -#: ../src/app/playDialog.cpp:33 -msgid "What media would you like to play?" +#: app/actions.cpp:13 part/part.cpp:38 +msgid "Play" msgstr "" -#: ../src/app/playDialog.cpp:38 -msgid "Play File..." +#: app/adjustSizeButton.cpp:31 +msgid "Preferred Scale" msgstr "" -#: ../src/app/playDialog.cpp:42 -msgid "Play VCD" +#: app/adjustSizeButton.cpp:35 +#, c-format +msgid "Scale 100%" msgstr "" -#: ../src/app/playDialog.cpp:46 -msgid "Play DVD" +#: app/adjustSizeButton.cpp:41 +msgid "Adjust video scale?" msgstr "" -#: ../src/app/playDialog.cpp:73 -msgid "Recently Played Media" +#: app/captureFrame.cpp:82 +#, c-format +msgid "Capture - %1" msgstr "" -#: ../src/app/xineConfig.cpp:60 -msgid "Configure xine" +#: app/captureFrame.cpp:98 +msgid "" +"*.png|PNG Format\n" +"*.jpeg|JPEG Format" msgstr "" -#: ../src/app/xineConfig.cpp:84 -msgid "" -"xine's defaults are usually sensible and should not require modification. " -"However, full configurability is provided for your pleasure ;-)." +#: app/captureFrame.cpp:100 +msgid "Save Frame" msgstr "" -#: ../src/app/adjustSizeButton.cpp:31 -msgid "Preferred Scale" +#: app/captureFrame.cpp:111 +msgid "%1 saved successfully" msgstr "" -#: ../src/app/adjustSizeButton.cpp:35 -msgid "Scale 100%" +#: app/captureFrame.cpp:113 +#, c-format +msgid "Sorry, could not save %1" msgstr "" -#: ../src/app/adjustSizeButton.cpp:41 -msgid "Adjust video scale?" +#: app/fullScreenAction.cpp:31 +msgid "Exit F&ull Screen Mode" +msgstr "" + +#: app/fullScreenAction.cpp:37 +msgid "F&ull Screen Mode" msgstr "" -#: ../src/app/insertAspectRatioMenuItems.cpp:15 +#: app/insertAspectRatioMenuItems.cpp:15 msgid "Determine &Automatically" msgstr "" -#: ../src/app/insertAspectRatioMenuItems.cpp:17 +#: app/insertAspectRatioMenuItems.cpp:17 msgid "&Square (1:1)" msgstr "" -#: ../src/app/insertAspectRatioMenuItems.cpp:18 +#: app/insertAspectRatioMenuItems.cpp:18 msgid "&4:3" msgstr "" -#: ../src/app/insertAspectRatioMenuItems.cpp:19 +#: app/insertAspectRatioMenuItems.cpp:19 msgid "Ana&morphic (16:9)" msgstr "" -#: ../src/app/insertAspectRatioMenuItems.cpp:20 +#: app/insertAspectRatioMenuItems.cpp:20 msgid "&DVB (2.11:1)" msgstr "" -#: ../src/app/main.cpp:14 +#: app/main.cpp:14 msgid "A video player that has a usability focus" msgstr "" -#: ../src/app/main.cpp:15 -msgid "Copyright 2005, Max Howell" +#: app/main.cpp:15 +msgid "Copyright 2006, Max Howell" msgstr "" -#: ../src/app/main.cpp:19 +#: app/main.cpp:20 msgid "Play 'URL'" msgstr "" -#: ../src/app/main.cpp:28 +#: app/main.cpp:21 +msgid "Play DVD Video" +msgstr "" + +#: app/main.cpp:31 msgid "Handbook" msgstr "" -#: ../src/app/main.cpp:29 +#: app/main.cpp:32 msgid "Great reference code" msgstr "" -#: ../src/app/main.cpp:30 -msgid "The current Codeine icon" +#: app/main.cpp:33 +msgid "The video for \"Call on Me\" encouraged plenty of debugging! ;)" msgstr "" -#: ../src/app/main.cpp:31 -msgid "The video for \"Call on Me\" encouraged plenty of debugging! ;)" +#: app/main.cpp:34 +msgid "The current Codeine icon" msgstr "" -#: ../src/app/playlistFile.cpp:32 -msgid "The file is not a playlist" +#: app/main.cpp:35 +msgid "Patches, advice and moral support" msgstr "" -#: ../src/app/playlistFile.cpp:39 -msgid "Codeine could not download the remote playlist: %1" +#: app/mainWindow.cpp:129 +msgid "&Subtitles" msgstr "" -#: ../src/app/playlistFile.cpp:54 -msgid "" -"The playlist, '%1', could not be interpreted. Perhaps it is empty?" +#: app/mainWindow.cpp:130 +msgid "A&udio Channels" msgstr "" -#: ../src/app/playlistFile.cpp:58 -msgid "Codeine could not open the file: %1" +#: app/mainWindow.cpp:131 +msgid "Aspect &Ratio" msgstr "" -#: ../src/app/stateChange.cpp:83 -msgid "&Pause" +#: app/mainWindow.cpp:248 +msgid "Play &Media..." msgstr "" -#: ../src/app/stateChange.cpp:83 -msgid "&Play" +#: app/mainWindow.cpp:254 +msgid "Record" msgstr "" -#: ../src/app/stateChange.cpp:147 -msgid "No media loaded" +#: app/mainWindow.cpp:256 +msgid "Reset Video Scale" msgstr "" -#: ../src/app/stateChange.cpp:150 -msgid "Paused" +#: app/mainWindow.cpp:257 app/mainWindow.cpp:590 +msgid "Media Information" msgstr "" -#: ../src/app/actions.cpp:13 ../src/part/part.cpp:38 -msgid "Play" +#: app/mainWindow.cpp:258 +msgid "Menu Toggle" msgstr "" -#: ../src/app/xineEngine.cpp:127 ../src/part/xineEngine.cpp:50 -msgid "xine was unable to initialize any video-drivers." +#: app/mainWindow.cpp:259 +msgid "&Capture Frame" msgstr "" -#: ../src/app/xineEngine.cpp:129 ../src/part/xineEngine.cpp:48 -msgid "xine was unable to initialize any audio-drivers." +#: app/mainWindow.cpp:261 +msgid "Video Settings..." msgstr "" -#: ../src/app/xineEngine.cpp:231 -msgid "Loading media: %1" +#: app/mainWindow.cpp:262 +msgid "Configure xine..." msgstr "" -#: ../src/app/xineEngine.cpp:333 -msgid "Recording to: %1" +#: app/mainWindow.cpp:264 +msgid "Position Slider" msgstr "" -#: ../src/app/xineEngine.cpp:364 -msgid "Playback paused" +#: app/mainWindow.cpp:362 +msgid "Codeine was asked to open an empty URL; it cannot." msgstr "" -#: ../src/app/xineEngine.cpp:369 -msgid "Playback resumed" +#: app/mainWindow.cpp:424 +msgid "Supported Media Formats" msgstr "" -#: ../src/app/xineEngine.cpp:382 -msgid "There is no input plugin that can read: %1." +#: app/mainWindow.cpp:424 +msgid "All Files" msgstr "" -#: ../src/app/xineEngine.cpp:385 -msgid "There is no demux plugin available for %1." +#: app/mainWindow.cpp:425 +msgid "Select A File To Play" msgstr "" -#: ../src/app/xineEngine.cpp:388 -msgid "Demuxing failed for %1." +#: app/mainWindow.cpp:605 +msgid "&Determine Automatically" msgstr "" -#: ../src/app/xineEngine.cpp:393 -msgid "Internal error while attempting to play %1." +#: app/mainWindow.cpp:617 +msgid "&Off" msgstr "" -#: ../src/app/xineEngine.cpp:433 -msgid "xine cannot currently seek in flac media" +#: app/mainWindow.cpp:659 +msgid "Sorry, no media was found in the drop" msgstr "" -#: ../src/app/xineEngine.cpp:585 ../src/app/xineEngine.cpp:593 -msgid "Channel %1" +#: app/playDialog.cpp:28 +msgid "Play Media" msgstr "" -#: ../src/app/xineEngine.cpp:692 ../src/part/xineEngine.cpp:282 -msgid "The source is encrypted and can not be decrypted." +#: app/playDialog.cpp:34 +msgid "What media would you like to play?" msgstr "" -#: ../src/app/xineEngine.cpp:694 ../src/part/xineEngine.cpp:284 -msgid "The host is unknown for the URL: %1" +#: app/playDialog.cpp:39 +msgid "Play File..." msgstr "" -#: ../src/app/xineEngine.cpp:696 ../src/part/xineEngine.cpp:286 -msgid "The device name you specified seems invalid." +#: app/playDialog.cpp:43 +msgid "Play VCD" msgstr "" -#: ../src/app/xineEngine.cpp:698 ../src/part/xineEngine.cpp:288 -msgid "The network appears unreachable." +#: app/playDialog.cpp:47 +msgid "Play DVD" msgstr "" -#: ../src/app/xineEngine.cpp:700 ../src/part/xineEngine.cpp:290 -msgid "Audio output unavailable; the device is busy." +#: app/playDialog.cpp:75 +msgid "Recently Played Media" msgstr "" -#: ../src/app/xineEngine.cpp:702 ../src/part/xineEngine.cpp:292 -msgid "The connection was refused for the URL: %1" +#: app/playlistFile.cpp:32 +msgid "The file is not a playlist" msgstr "" -#: ../src/app/xineEngine.cpp:704 ../src/part/xineEngine.cpp:294 -msgid "xine could not find the URL: %1" +#: app/playlistFile.cpp:39 +#, c-format +msgid "Codeine could not download the remote playlist: %1" msgstr "" -#: ../src/app/xineEngine.cpp:706 ../src/part/xineEngine.cpp:296 -msgid "Access was denied for the URL: %1" +#: app/playlistFile.cpp:54 +msgid "" +"The playlist, '%1', could not be interpreted. Perhaps it is empty?" msgstr "" -#: ../src/app/xineEngine.cpp:708 ../src/part/xineEngine.cpp:298 -msgid "The source cannot be read for the URL: %1" +#: app/playlistFile.cpp:58 +#, c-format +msgid "Codeine could not open the file: %1" msgstr "" -#: ../src/app/xineEngine.cpp:710 ../src/part/xineEngine.cpp:300 -msgid "A problem occurred while loading a library or decoder." +#: app/stateChange.cpp:90 +msgid "&Pause" msgstr "" -#: ../src/app/xineEngine.cpp:737 ../src/part/xineEngine.cpp:327 -msgid "Sorry, no additional information is available." +#: app/stateChange.cpp:90 +msgid "&Play" msgstr "" -#: ../src/app/captureFrame.cpp:82 -msgid "Capture - %1" +#: app/stateChange.cpp:154 +msgid "No media loaded" msgstr "" -#: ../src/app/captureFrame.cpp:98 -msgid "" -"*.png|PNG Format\n" -"*.jpeg|JPEG Format" +#: app/stateChange.cpp:157 +msgid "Paused" msgstr "" -#: ../src/app/captureFrame.cpp:100 -msgid "Save Frame" +#: app/theStream.cpp:107 +msgid "Metadata" msgstr "" -#: ../src/app/captureFrame.cpp:111 -msgid "%1 saved successfully" +#: app/theStream.cpp:109 +msgid "Title" msgstr "" -#: ../src/app/captureFrame.cpp:113 -msgid "Sorry, could not save %1" +#: app/theStream.cpp:110 +msgid "Comment" msgstr "" -#: ../src/app/fullScreenAction.cpp:31 -msgid "Exit F&ull Screen Mode" +#: app/theStream.cpp:111 +msgid "Artist" msgstr "" -#: ../src/app/fullScreenAction.cpp:37 -msgid "F&ull Screen Mode" +#: app/theStream.cpp:112 +msgid "Genre" msgstr "" -#: ../src/app/mainWindow.cpp:94 -msgid "&Subtitles" +#: app/theStream.cpp:113 +msgid "Album" msgstr "" -#: ../src/app/mainWindow.cpp:95 -msgid "A&udio Channels" +#: app/theStream.cpp:114 +msgid "Year" msgstr "" -#: ../src/app/mainWindow.cpp:96 -msgid "Aspect &Ratio" +#: app/theStream.cpp:116 +msgid "Audio Properties" msgstr "" -#: ../src/app/mainWindow.cpp:106 -msgid "" +#: app/theStream.cpp:118 +msgid "Bitrate" msgstr "" -#: ../src/app/mainWindow.cpp:106 -msgid " could not load its interface, this probably means that " +#: app/theStream.cpp:118 +msgid "%1 bps" msgstr "" -#: ../src/app/mainWindow.cpp:106 -msgid "" -" is not installed to the correct prefix. If you installed from packages " -"please contact the packager, if you installed from source please try running " -"the configure script again like this:
 % ./configure --"
-"prefix=`tde-config --prefix`
" +#: app/theStream.cpp:119 +msgid "Sample-rate" msgstr "" -#: ../src/app/mainWindow.cpp:139 -msgid "xine could not be successfully initialised. " +#: app/theStream.cpp:119 +msgid "%1 Hz" msgstr "" -#: ../src/app/mainWindow.cpp:139 -msgid "" -" will now exit. You can try to identify what is wrong with your xine " -"installation using the xine-check command at a command-prompt." +#: app/theStream.cpp:121 +msgid "Technical Information" msgstr "" -#: ../src/app/mainWindow.cpp:208 -msgid "Play &Media..." +#: app/theStream.cpp:123 +msgid "Video Codec" msgstr "" -#: ../src/app/mainWindow.cpp:214 -msgid "Record" +#: app/theStream.cpp:124 +msgid "Audio Codec" msgstr "" -#: ../src/app/mainWindow.cpp:216 -msgid "Reset Video Scale" +#: app/theStream.cpp:125 +msgid "System Layer" msgstr "" -#: ../src/app/mainWindow.cpp:217 ../src/app/mainWindow.cpp:423 -msgid "Media Information" +#: app/theStream.cpp:126 +msgid "Input Plugin" msgstr "" -#: ../src/app/mainWindow.cpp:218 -msgid "Menu Toggle" +#: app/theStream.cpp:127 +msgid "CDINDEX_DISCID" msgstr "" -#: ../src/app/mainWindow.cpp:219 -msgid "&Capture Frame" +#: app/videoSettings.cpp:91 +msgid "Video Settings" msgstr "" -#: ../src/app/mainWindow.cpp:221 -msgid "Video Settings..." +#: app/videoWindow.cpp:135 +msgid "Pause" msgstr "" -#: ../src/app/mainWindow.cpp:222 -msgid "Configure xine..." +#: app/volumeAction.cpp:45 +msgid "Volume" msgstr "" -#: ../src/app/mainWindow.cpp:224 -msgid "Position Slider" +#: app/volumeAction.cpp:85 +#, c-format +msgid "Volume: %1" msgstr "" -#: ../src/app/mainWindow.cpp:317 -msgid "Codeine was asked to open an empty URL; it cannot." +#: app/xineConfig.cpp:60 +msgid "Configure xine" msgstr "" -#: ../src/app/mainWindow.cpp:366 -msgid "Supported Media Formats" +#: app/xineConfig.cpp:85 +msgid "" +"xine's defaults are usually sensible and should not require modification. " +"However, full configurability is provided for your pleasure ;-)." msgstr "" -#: ../src/app/mainWindow.cpp:366 -msgid "All Files" +#: app/xineEngine.cpp:138 part/xineEngine.cpp:50 +msgid "xine was unable to initialize any video-drivers." msgstr "" -#: ../src/app/mainWindow.cpp:367 -msgid "Select A File To Play" +#: app/xineEngine.cpp:140 part/xineEngine.cpp:48 +msgid "xine was unable to initialize any audio-drivers." msgstr "" -#: ../src/app/mainWindow.cpp:438 -msgid "&Determine Automatically" +#: app/xineEngine.cpp:245 +#, c-format +msgid "Loading media: %1" msgstr "" -#: ../src/app/mainWindow.cpp:450 -msgid "&Off" +#: app/xineEngine.cpp:355 +#, c-format +msgid "Recording to: %1" msgstr "" -#: ../src/app/mainWindow.cpp:492 -msgid "Sorry, no media was found in the drop" +#: app/xineEngine.cpp:386 +msgid "Playback paused" msgstr "" -#: ../src/app/theStream.cpp:107 -msgid "Metadata" +#: app/xineEngine.cpp:391 +msgid "Playback resumed" msgstr "" -#: ../src/app/theStream.cpp:109 -msgid "Title" +#: app/xineEngine.cpp:404 +#, c-format +msgid "There is no input plugin that can read: %1." msgstr "" -#: ../src/app/theStream.cpp:110 -msgid "Comment" +#: app/xineEngine.cpp:407 +#, c-format +msgid "There is no demux plugin available for %1." msgstr "" -#: ../src/app/theStream.cpp:111 -msgid "Artist" +#: app/xineEngine.cpp:410 +#, c-format +msgid "Demuxing failed for %1." msgstr "" -#: ../src/app/theStream.cpp:112 -msgid "Genre" +#: app/xineEngine.cpp:415 +#, c-format +msgid "Internal error while attempting to play %1." msgstr "" -#: ../src/app/theStream.cpp:113 -msgid "Album" +#: app/xineEngine.cpp:503 +msgid "xine cannot currently seek in flac media" msgstr "" -#: ../src/app/theStream.cpp:114 -msgid "Year" +#: app/xineEngine.cpp:688 app/xineEngine.cpp:696 +#, c-format +msgid "Channel %1" msgstr "" -#: ../src/app/theStream.cpp:116 -msgid "Audio Properties" +#: app/xineEngine.cpp:795 part/xineEngine.cpp:289 +msgid "The source is encrypted and can not be decrypted." msgstr "" -#: ../src/app/theStream.cpp:118 -msgid "Bitrate" +#: app/xineEngine.cpp:797 part/xineEngine.cpp:291 +msgid "The host is unknown for the URL: %1" msgstr "" -#: ../src/app/theStream.cpp:118 -msgid "%1 bps" +#: app/xineEngine.cpp:799 part/xineEngine.cpp:293 +msgid "The device name you specified seems invalid." msgstr "" -#: ../src/app/theStream.cpp:119 -msgid "Sample-rate" +#: app/xineEngine.cpp:801 part/xineEngine.cpp:295 +msgid "The network appears unreachable." msgstr "" -#: ../src/app/theStream.cpp:119 -msgid "%1 Hz" +#: app/xineEngine.cpp:803 part/xineEngine.cpp:297 +msgid "Audio output unavailable; the device is busy." msgstr "" -#: ../src/app/theStream.cpp:121 -msgid "Technical Information" +#: app/xineEngine.cpp:805 part/xineEngine.cpp:299 +msgid "The connection was refused for the URL: %1" msgstr "" -#: ../src/app/theStream.cpp:123 -msgid "Video Codec" +#: app/xineEngine.cpp:807 part/xineEngine.cpp:301 +msgid "xine could not find the URL: %1" msgstr "" -#: ../src/app/theStream.cpp:124 -msgid "Audio Codec" +#: app/xineEngine.cpp:809 part/xineEngine.cpp:303 +msgid "Access was denied for the URL: %1" msgstr "" -#: ../src/app/theStream.cpp:125 -msgid "System Layer" +#: app/xineEngine.cpp:811 part/xineEngine.cpp:305 +msgid "The source cannot be read for the URL: %1" msgstr "" -#: ../src/app/theStream.cpp:126 -msgid "Input Plugin" +#: app/xineEngine.cpp:813 part/xineEngine.cpp:307 +msgid "A problem occurred while loading a library or decoder." msgstr "" -#: ../src/app/theStream.cpp:127 -msgid "CDINDEX_DISCID" +#: app/xineEngine.cpp:840 part/xineEngine.cpp:334 +msgid "Sorry, no additional information is available." msgstr "" -#: ../src/app/videoWindow.cpp:140 -msgid "Pause" +#: part/part.cpp:39 +msgid "Mute" msgstr "" -#: ../src/part/xineEngine.cpp:159 +#: part/xineEngine.cpp:166 msgid "The Codeine video player could not find an input plugin for '%1'." msgstr "" -#: ../src/part/xineEngine.cpp:162 +#: part/xineEngine.cpp:169 msgid "The Codeine video player could not find a demux plugin for '%1'." msgstr "" -#: ../src/part/xineEngine.cpp:165 +#: part/xineEngine.cpp:172 msgid "" "The Codeine video player failed to demux '%1'; please check your xine " "installation." msgstr "" -#: ../src/part/xineEngine.cpp:170 +#: part/xineEngine.cpp:177 msgid "" "The Codeine video player reports an internal error; please check your xine " "installation." msgstr "" - -#: ../src/_translatorinfo.cpp:1 -msgid "" -"_: NAME OF TRANSLATORS\n" -"Your names" -msgstr "" - -#: ../src/_translatorinfo.cpp:3 -msgid "" -"_: EMAIL OF TRANSLATORS\n" -"Your emails" -msgstr ""