summaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-02-25 15:05:47 +0100
committerSlávek Banko <[email protected]>2020-04-10 12:41:25 +0200
commit2578c13462d6ff5f6da401c62b24c461b3b445ca (patch)
tree3ca563d8f2606fb5321167858e5d5c6195ddd0ec /po
parentef3976a6cb843f51333ea43172306a9c8f4954ef (diff)
downloadbasket-2578c13462d6ff5f6da401c62b24c461b3b445ca.tar.gz
basket-2578c13462d6ff5f6da401c62b24c461b3b445ca.zip
Conversion to the cmake building system.
Signed-off-by: gregory guy <[email protected]> Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'po')
-rw-r--r--po/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
new file mode 100644
index 0000000..75c89f8
--- /dev/null
+++ b/po/CMakeLists.txt
@@ -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( )