Blame Automation/Modules/Locale/locale_combineLicenseMessages.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# locale_combineLicenseMessages.sh -- This function combines template
Alain Reguera Delgado 8f60cb
# messages with license messages.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function locale_combineLicenseMessages {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    if [[ $# -lt 1 ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "One argument is required."`" --as-error-message
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local TRANSLATION_INSTANCE=$1
Alain Reguera Delgado 8f60cb
    local TRANSLATION_TEMPLATE=$2
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local DOCBOOK_LOCALES=$(echo $DOCBOOK_MODELS \
Alain Reguera Delgado 8f60cb
        | sed -r "s!${TCAR_WORKDIR}/!${TCAR_WORKDIR}/Locales/!")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define list of all files you want to combine.
Alain Reguera Delgado 8f60cb
    local FILES="${DOCBOOK_LOCALES}/${CLI_LANG_LC}/messages.po \
Alain Reguera Delgado 8f60cb
        ${DOCBOOK_LOCALES}/${CLI_LANG_LC}/messages.po \
Alain Reguera Delgado 8f60cb
        ${TRANSLATION_TEMPLATE}"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Be sure the files we want to combine do exist.
Alain Reguera Delgado 8f60cb
    cli_checkFiles -e ${FILES}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Combine files.
Alain Reguera Delgado 8f60cb
    msgcat --output=${TRANSLATION_INSTANCE} \
Alain Reguera Delgado 8f60cb
        --width=70 --no-location --use-first ${FILES}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}