Merge topic 'FindGettext-whitespace'

f34c28fd57 FindGettext: CMake linting: fix mismatching spaces
c9b7906968 FindGettext: Remove the unneeded space before a full stop

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !10341
diff --git a/Modules/FindGettext.cmake b/Modules/FindGettext.cmake
index 1d4ba1b..b982bb9 100644
--- a/Modules/FindGettext.cmake
+++ b/Modules/FindGettext.cmake
@@ -78,7 +78,7 @@
 
   ``INSTALL_DESTINATION``
     Install the results into the given directory (``share/locale/`` by
-    default). The language subdirectory will be taken into account .
+    default). The language subdirectory will be taken into account.
 
 .. versionadded:: 3.2
   If you wish to use the Gettext runtime library (libintl), use
@@ -96,7 +96,7 @@
                   OUTPUT_STRIP_TRAILING_WHITESPACE)
   get_filename_component(msgmerge_name ${GETTEXT_MSGMERGE_EXECUTABLE} NAME)
   get_filename_component(msgmerge_namewe ${GETTEXT_MSGMERGE_EXECUTABLE} NAME_WE)
-  if (gettext_version MATCHES "^(${msgmerge_name}|${msgmerge_namewe}) \\([^\\)]*\\) ([0-9\\.]+[^ \n]*)")
+  if(gettext_version MATCHES "^(${msgmerge_name}|${msgmerge_namewe}) \\([^\\)]*\\) ([0-9\\.]+[^ \n]*)")
     set(GETTEXT_VERSION_STRING "${CMAKE_MATCH_2}")
   endif()
   unset(gettext_version)
@@ -117,7 +117,7 @@
   endif()
   set(${_unique_name} "${_name}_${currentCounter}" PARENT_SCOPE)
   math(EXPR currentCounter "${currentCounter} + 1")
-  set_property(GLOBAL PROPERTY ${propertyName} ${currentCounter} )
+  set_property(GLOBAL PROPERTY ${propertyName} ${currentCounter})
 endfunction()
 
 macro(GETTEXT_CREATE_TRANSLATIONS _potFile _firstPoFileArg)
@@ -135,7 +135,7 @@
     set(_firstPoFile)
   endif()
 
-  foreach (_currentPoFile ${_firstPoFile} ${ARGN})
+  foreach(_currentPoFile ${_firstPoFile} ${ARGN})
     get_filename_component(_absFile ${_currentPoFile} ABSOLUTE)
     get_filename_component(_abs_PATH ${_absFile} PATH)
     get_filename_component(_lang ${_absFile} NAME_WE)
@@ -151,7 +151,7 @@
     install(FILES ${_gmoFile} DESTINATION share/locale/${_lang}/LC_MESSAGES RENAME ${_potBasename}.mo)
     set(_gmoFiles ${_gmoFiles} ${_gmoFile})
 
-  endforeach ()
+  endforeach()
 
   if(NOT TARGET translations)
     add_custom_target(translations)
@@ -178,7 +178,7 @@
   string(REGEX REPLACE "^(.+)(\\.[^.]+)$" "\\1" _potBasename ${_potName})
   get_filename_component(_absPotFile ${_potFile} ABSOLUTE)
 
-  foreach (_lang ${_parsedArguments_LANGUAGES})
+  foreach(_lang ${_parsedArguments_LANGUAGES})
     set(_poFile  "${CMAKE_CURRENT_BINARY_DIR}/${_lang}.po")
     set(_gmoFile "${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo")
 
@@ -198,7 +198,7 @@
       install(FILES ${_gmoFile} DESTINATION ${_parsedArguments_INSTALL_DESTINATION}/${_lang}/LC_MESSAGES RENAME ${_potBasename}.mo)
     endif()
     list(APPEND _gmoFiles ${_gmoFile})
-  endforeach ()
+  endforeach()
 
   if(NOT TARGET potfiles)
     add_custom_target(potfiles)
@@ -246,7 +246,7 @@
     add_custom_target(pofiles)
   endif()
 
-  _GETTEXT_GET_UNIQUE_TARGET_NAME( pofiles uniqueTargetName)
+  _GETTEXT_GET_UNIQUE_TARGET_NAME(pofiles uniqueTargetName)
 
   if(_parsedArguments_ALL)
     add_custom_target(${uniqueTargetName} ALL DEPENDS ${_gmoFiles})