Add support for LINGUAS for listing translations to install. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>pull/3/head
parent
0e9bb47eea
commit
3406eb9681
@ -1 +1,14 @@
|
|||||||
add_subdirectory( en )
|
file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * )
|
||||||
|
string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
|
||||||
|
|
||||||
|
foreach( _dir ${_dirs} )
|
||||||
|
if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} AND
|
||||||
|
EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/CMakeLists.txt )
|
||||||
|
if( "${_dir}" STREQUAL "en" OR
|
||||||
|
"${_dir}" STREQUAL "man" OR
|
||||||
|
"${_linguas}" MATCHES "^;*$" OR
|
||||||
|
";${_linguas};" MATCHES ";${_dir};" )
|
||||||
|
add_subdirectory( ${_dir} )
|
||||||
|
endif( )
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
##### create translation templates ##############
|
##### create translation templates ##############
|
||||||
|
|
||||||
tde_l10n_create_template( "mplayerthumbs" )
|
tde_l10n_create_template( "messages/mplayerthumbs" )
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
tde_auto_add_subdirectories()
|
@ -0,0 +1,14 @@
|
|||||||
|
file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
|
||||||
|
string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
|
||||||
|
|
||||||
|
foreach( _po ${po_files} )
|
||||||
|
get_filename_component( _lang ${_po} NAME_WE )
|
||||||
|
if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" )
|
||||||
|
if( "${_po}" MATCHES "^([^/]*)/.*" )
|
||||||
|
string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" )
|
||||||
|
else( )
|
||||||
|
set( _component "${PROJECT_NAME}" )
|
||||||
|
endif( )
|
||||||
|
tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} )
|
||||||
|
endif( )
|
||||||
|
endforeach( )
|
@ -0,0 +1,65 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"POT-Creation-Date: 2019-01-03 17:27+0100\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: Automatically generated\n"
|
||||||
|
"Language-Team: none\n"
|
||||||
|
"Language: de\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: _translatorinfo:1
|
||||||
|
msgid ""
|
||||||
|
"_: NAME OF TRANSLATORS\n"
|
||||||
|
"Your names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: _translatorinfo:2
|
||||||
|
msgid ""
|
||||||
|
"_: EMAIL OF TRANSLATORS\n"
|
||||||
|
"Your emails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/main.cpp:29
|
||||||
|
msgid "MPlayerThumbs Configuration Utility"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/main.cpp:41
|
||||||
|
msgid "MPlayerThumbsConfig"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:37
|
||||||
|
msgid "Enter here the path for mplayer executable file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:39
|
||||||
|
msgid "Custom arguments for mplayer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:41
|
||||||
|
msgid "Blacklisted File Extensions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:43
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbs.kcfg:7
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Full path of the mplayer binary to use."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbs.kcfg:10
|
||||||
|
#, no-c-format
|
||||||
|
msgid "File extensions that mplayerthumbs should avoid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbs.kcfg:13
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Append custom arguments to mplayer"
|
||||||
|
msgstr ""
|
@ -0,0 +1,65 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"POT-Creation-Date: 2019-01-03 17:27+0100\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: _translatorinfo:1
|
||||||
|
msgid ""
|
||||||
|
"_: NAME OF TRANSLATORS\n"
|
||||||
|
"Your names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: _translatorinfo:2
|
||||||
|
msgid ""
|
||||||
|
"_: EMAIL OF TRANSLATORS\n"
|
||||||
|
"Your emails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/main.cpp:29
|
||||||
|
msgid "MPlayerThumbs Configuration Utility"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/main.cpp:41
|
||||||
|
msgid "MPlayerThumbsConfig"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:37
|
||||||
|
msgid "Enter here the path for mplayer executable file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:39
|
||||||
|
msgid "Custom arguments for mplayer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:41
|
||||||
|
msgid "Blacklisted File Extensions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbsconfig/mplayerthumbscfg.cpp:43
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbs.kcfg:7
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Full path of the mplayer binary to use."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbs.kcfg:10
|
||||||
|
#, no-c-format
|
||||||
|
msgid "File extensions that mplayerthumbs should avoid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mplayerthumbs.kcfg:13
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Append custom arguments to mplayer"
|
||||||
|
msgstr ""
|
Loading…
Reference in new issue