diff --git a/Scripts/Functions/Help/help_updateOutputFiles.sh b/Scripts/Functions/Help/help_updateOutputFiles.sh index cede19b..51faa5e 100755 --- a/Scripts/Functions/Help/help_updateOutputFiles.sh +++ b/Scripts/Functions/Help/help_updateOutputFiles.sh @@ -28,10 +28,6 @@ function help_updateOutputFiles { # Print separator line. cli_printMessage '-' --as-separator-line - # Remove extension from manual's base file. This way it is - # possible to reuse the same filename on different types of files. - MANUAL_BASEFILE=$(echo ${MANUAL_BASEFILE} | sed -r 's!\.texi!!') - # Add the working copy root directory to directory stack to make # path construction correctly. Otherwise, makeinfo may produce # paths incorrectly. @@ -46,20 +42,4 @@ function help_updateOutputFiles { # Remove the working copy root directory from directory stack. popd > /dev/null - # Perform language-specific actions when the current language is - # other but English language. - if [[ ! $(cli_getCurrentLocale) =~ '^en' ]];then - - # Update translatable strings in related portable objects. - eval ${CLI_BASEDIR}/${CLI_PROGRAM}.sh locale --update ${MANUAL_BASEFILE}.xhtml --dont-commit-changes - - # Print action message. - cli_printMessage "${MANUAL_BASEFILE}.xhtml/$(cli_getCurrentLocale)" '--as-updating-line' - - # Render translated versions of the XHTML output files, - # supressing the rendition output. - eval ${CLI_BASEDIR}/${CLI_PROGRAM}.sh render ${MANUAL_BASEFILE}.xhtml --dont-commit-changes --quiet - - fi - }