Blame Scripts/Bash/Functions/Locale/locale_updateMessages.sh

878a2b
#!/bin/bash
878a2b
#
878a2b
# locale_updateMessages.sh -- This function extracts translatable
878a2b
# strings from both XML-based files (using xml2po) and shell scripts
878a2b
# (using xgettext). Translatable strings are initially stored in
878a2b
# portable objects templates (.pot) which are later merged into
878a2b
# portable objects (.po) in order to be optionally converted as
878a2b
# machine objects (.mo).
878a2b
#
e6bbbf
# Copyright (C) 2009-2013 The CentOS Project
878a2b
#
878a2b
# This program is free software; you can redistribute it and/or modify
878a2b
# it under the terms of the GNU General Public License as published by
878a2b
# the Free Software Foundation; either version 2 of the License, or (at
878a2b
# your option) any later version.
878a2b
#
878a2b
# This program is distributed in the hope that it will be useful, but
878a2b
# WITHOUT ANY WARRANTY; without even the implied warranty of
878a2b
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
878a2b
# General Public License for more details.
878a2b
#
878a2b
# You should have received a copy of the GNU General Public License
878a2b
# along with this program; if not, write to the Free Software
878a2b
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
878a2b
#
878a2b
# ----------------------------------------------------------------------
878a2b
# $Id$
878a2b
# ----------------------------------------------------------------------
878a2b
878a2b
function locale_updateMessages {
878a2b
08b3a3
    # Verify directory passed as non-option argument to be sure it
08b3a3
    # supports localization.
08b3a3
    locale_isLocalizable "${ACTIONVAL}"
08b3a3
78487b
    # Prepare working directory to receive translation files.  Don't
78487b
    # do this here. This location can be redefine later based on
78487b
    # deeper directory structures not provided as arguments to
78487b
    # centos-art.sh script. For example, if you execute the following
78487b
    # command:
78487b
    #
78487b
    #   centos-art locale Documentation/Models/Svg/Brands --update
78487b
    #
78487b
    # it should produce the following directory structure:
78487b
    #
78487b
    #   Locales/Documentation/Models/Svg/Brands/Logos/${LANG}/
78487b
    #   Locales/Documentation/Models/Svg/Brands/Symbols/${LANG}/
78487b
    #   Locales/Documentation/Models/Svg/Brands/Types/${LANG}/
78487b
    #
78487b
    # and not the next one:
78487b
    #
78487b
    #   Locales/Documentation/Models/Svg/Brands/${LANG}/
78487b
    #
78487b
    # So, don't prepare working directory to receive translation files
78487b
    # here. Instead, do it just before POT files creation.
fa14ca
878a2b
    # Evaluate action value to determine whether to use xml2po to
878a2b
    # extract translatable strings from XML-based files or to use
878a2b
    # xgettext to extract translatable strings from shell script
878a2b
    # files.
78487b
    if [[ $ACTIONVAL =~ "^${TCAR_WORKDIR}/(Documentation/Models/(Docbook|Svg)|Identity/Models)/.*$" ]];then
878a2b
878a2b
        # Update translatable strings inside the portable object
878a2b
        # template related to XML-based files (e.g., scalable vector
878a2b
        # graphics).
878a2b
        locale_updateMessageXml
878a2b
819c26
    elif [[ $ACTIONVAL =~ "^${TCAR_WORKDIR}/Scripts/Bash$" ]];then
878a2b
878a2b
        # Update translatable strings inside the portable object
878a2b
        # template related to shell scripts (e.g., the centos-art.sh
878a2b
        # script).
878a2b
        locale_updateMessageShell
878a2b
878a2b
    else
878a2b
        cli_printMessage "`gettext "The path provided doesn't support localization."`" --as-error-line
878a2b
    fi
878a2b
878a2b
}