diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-10-01 21:10:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-10-01 21:10:31 +0900 |
commit | 1c840ead735b68f4e0e879ff49b343e6e7aed8ba (patch) | |
tree | 68ec44b075941c943344a2ae1140ddb686353e2a /po/CMakeLists.txt | |
parent | 54a6036f059620e55df5e574ef8fbf3f3671a158 (diff) | |
download | kshowmail-1c840ead735b68f4e0e879ff49b343e6e7aed8ba.tar.gz kshowmail-1c840ead735b68f4e0e879ff49b343e6e7aed8ba.zip |
Removed original translation folder.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'po/CMakeLists.txt')
-rw-r--r-- | po/CMakeLists.txt | 14 |
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( ) |