parent
628b8d04cf
commit
ea8d5387f2
@ -1,25 +1,5 @@
|
|||||||
find_program(GETTEXT_MSGFMT_EXECUTABLE msgfmt)
|
file( GLOB _srcs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
|
||||||
|
|
||||||
if(NOT GETTEXT_MSGFMT_EXECUTABLE)
|
|
||||||
message("------\n"
|
|
||||||
"NOTE: msgfmt not found. Translations will *not* be installed\n"
|
|
||||||
"------\n")
|
|
||||||
else(NOT GETTEXT_MSGFMT_EXECUTABLE)
|
|
||||||
set(catalogname qtcurve)
|
|
||||||
add_custom_target(translations ALL)
|
|
||||||
file(GLOB PO_FILES *.po)
|
|
||||||
foreach(_poFile ${PO_FILES})
|
|
||||||
get_filename_component(_poFileName ${_poFile} NAME)
|
|
||||||
string(REGEX REPLACE "^${catalogname}_?" "" _langCode ${_poFileName} )
|
|
||||||
string(REGEX REPLACE "\\.po$" "" _langCode ${_langCode} )
|
|
||||||
if(_langCode)
|
|
||||||
get_filename_component(_lang ${_poFile} NAME_WE)
|
|
||||||
set(_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo)
|
|
||||||
add_custom_command(TARGET translations
|
|
||||||
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --check -o ${_gmoFile} ${_poFile}
|
|
||||||
DEPENDS ${_poFile})
|
|
||||||
install(FILES ${_gmoFile} DESTINATION ${KDE3_LOCALE_PREFIX}/${_langCode}/LC_MESSAGES/ RENAME ${catalogname}.mo)
|
|
||||||
endif( _langCode )
|
|
||||||
endforeach(_poFile ${PO_FILES})
|
|
||||||
endif(NOT GETTEXT_MSGFMT_EXECUTABLE)
|
|
||||||
|
|
||||||
|
if( _srcs )
|
||||||
|
tde_create_translation( LANG auto OUTPUT_NAME qtcurve )
|
||||||
|
endif( )
|
||||||
|
Loading…
Reference in new issue