summaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2022-01-30 17:07:06 +0100
committerSlávek Banko <[email protected]>2022-02-01 13:00:57 +0100
commitf3392a5eaf4340ec31f8254162f2bd135ed494ec (patch)
tree442b750cf968d717705fc603d33938f6af263d01 /po
parent32b670138b0fb0c85bf1d55dd6687c6db672b677 (diff)
downloadtork-f3392a5eaf4340ec31f8254162f2bd135ed494ec.tar.gz
tork-f3392a5eaf4340ec31f8254162f2bd135ed494ec.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 <[email protected]> (cherry picked from commit f7ce4cdb608b1bbec0180fe3ae059e2cc999b705)
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( )