Blame Automation/centos-art.sh-mods/Locale/locale_updateMessageXml.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# locale_updateMessageXml.sh -- This function parses XML-based files
Alain Reguera Delgado 8f60cb
# (e.g., Scalable Vector Graphics and Docbook files), retrieves
Alain Reguera Delgado 8f60cb
# translatable strings and creates/update gettext portable objects.
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_updateMessageXml {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define what kind of XML file we are generating translation
Alain Reguera Delgado 8f60cb
    # messages for. This is relevant because scalable vector graphics
Alain Reguera Delgado 8f60cb
    # (SVG) files are not using entity expansion while DocBook files
Alain Reguera Delgado 8f60cb
    # do.
Alain Reguera Delgado 8f60cb
    if [[ $ACTIONVAL =~ "^${TCAR_WORKDIR}/Documentation/Models/Docbook/[[:alnum:]-]+$" ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        locale_updateMessageXmlDocbook
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Combine template messages and licenses messages so when
Alain Reguera Delgado 8f60cb
        # template be merged into the final portable object the
Alain Reguera Delgado 8f60cb
        # translations be there. If we cannot treat licenses as
Alain Reguera Delgado 8f60cb
        # independent documents (e.g., through XInclude), then lets
Alain Reguera Delgado 8f60cb
        # keep translation messages as synchronized as possible.
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    elif [[ $ACTIONVAL =~ "^${TCAR_WORKDIR}/Identity/Models/.+$" ]] \
Alain Reguera Delgado 8f60cb
        || [[ $ACTIONVAL =~ "^${TCAR_WORKDIR}/Documentation/Models/Svg/.+$" ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        locale_updateMessageXmlSvg
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    else
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "The path provided doesn't support localization."`" --as-error-line
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}