summaryrefslogtreecommitdiffstats
path: root/po/CMakeLists.txt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-03-05 11:10:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-03-05 11:11:12 +0900
commite7677345ece23d440d8567f2e0768f83b9b1dd8d (patch)
tree28f4bf027ce8903e63ce8910b4e60523197338dc /po/CMakeLists.txt
parenta8134d5a80bfca5eef9a1cad91835a93d0205dbd (diff)
downloadkstreamripper-e7677345.tar.gz
kstreamripper-e7677345.zip
Remove the original translation directory layout.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c6b6d211a07d2ac9406a9b04b10b201b2a892f0e)
Diffstat (limited to 'po/CMakeLists.txt')
-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( )