mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
Merge remote-tracking branch 'erlehmann/master'
Conflicts (from the introduction of fr translations): src/CMakeLists.txt
This commit is contained in:
commit
7c1ea34baf
6 changed files with 140 additions and 1 deletions
|
@ -268,6 +268,7 @@ if(BUILD_CLIENT)
|
|||
|
||||
if (USE_GETTEXT)
|
||||
install(FILES ${CMAKE_BINARY_DIR}/locale/de/LC_MESSAGES/minetest-delta.mo DESTINATION locale/de/LC_MESSAGES)
|
||||
install(FILES ${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES/minetest-c55.mo DESTINATION locale/fr/LC_MESSAGES)
|
||||
endif()
|
||||
|
||||
if(WIN32)
|
||||
|
@ -294,6 +295,7 @@ endif(BUILD_SERVER)
|
|||
|
||||
if (USE_GETTEXT)
|
||||
add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/locale/de/LC_MESSAGES COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/locale/de/LC_MESSAGES COMMENT "mo-update [de]: Creating locale directory.")
|
||||
add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES COMMENT "mo-update [fr]: Creating locale directory.")
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT ${CMAKE_BINARY_DIR}/locale/de/LC_MESSAGES/minetest-delta.mo
|
||||
|
@ -304,7 +306,18 @@ if (USE_GETTEXT)
|
|||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/po/de
|
||||
COMMENT "mo-update [de]: Creating mo file."
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT ${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES/minetest-c55.mo
|
||||
COMMAND ${GETTEXT_MSGFMT} -o ${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES/minetest-c55.mo ${CMAKE_SOURCE_DIR}/po/fr/minetest-c55.po
|
||||
DEPENDS
|
||||
${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES
|
||||
${CMAKE_SOURCE_DIR}/po/fr/minetest-c55.po
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/po/fr
|
||||
COMMENT "mo-update [fr]: Creating mo file."
|
||||
)
|
||||
|
||||
add_custom_target(translation_de ALL COMMENT "mo update [de]" DEPENDS ${CMAKE_BINARY_DIR}/locale/de/LC_MESSAGES/minetest-delta.mo)
|
||||
add_custom_target(translation_fr ALL COMMENT "mo update [fr]" DEPENDS ${CMAKE_BINARY_DIR}/locale/fr/LC_MESSAGES/minetest-c55.mo)
|
||||
endif(USE_GETTEXT)
|
||||
|
||||
# Subdirectories
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue