summaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-01-30 16:21:43 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-01-31 23:23:19 +0100
commit1a7a97756e62bac0abc7ad91e7a098085f7e2f76 (patch)
tree0c05e7802f7ea4b6a1ca888f8739c087f5c82608 /po
parent6eb0b661f24ad4d5f19ae114e2504de7e52ebbb5 (diff)
downloadktechlab-1a7a9775.tar.gz
ktechlab-1a7a9775.zip
Copy translations to a new directory layout.
Use common rules for build and install translations. Added translation of .desktop files. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 4a14670c0042e50e0efa30bf81f7a72e74c4a923)
Diffstat (limited to 'po')
-rw-r--r--po/CMakeLists.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
deleted file mode 100644
index 75c89f8..0000000
--- a/po/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-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( )