Blame Automation/centos-art.sh-locale/locale_updateMessagePObjects.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# locale_updateMessagePObjects.sh -- This function initializes the
Alain Reguera Delgado 8f60cb
# portable object when it doesn't exist. When the portable object does
Alain Reguera Delgado 8f60cb
# exist, it is updated instead. In both cases, the portable object
Alain Reguera Delgado 8f60cb
# template is used as source to merge changes inside the portable
Alain Reguera Delgado 8f60cb
# object.
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_updateMessagePObjects {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local FILE="$1"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify the portable object template. The portable object
Alain Reguera Delgado 8f60cb
    # template is used to create the portable object. We cannot
Alain Reguera Delgado 8f60cb
    # continue without it. 
Alain Reguera Delgado 8f60cb
    cli_checkFiles -e "${FILE}.pot"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Print action message.
Alain Reguera Delgado 8f60cb
    cli_printMessage "${FILE}.po" --as-creating-line
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify existence of portable object. The portable object is the
Alain Reguera Delgado 8f60cb
    # file translators edit in order to make translation works.
Alain Reguera Delgado 8f60cb
    if [[ -f ${FILE}.po ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Update portable object merging both portable object and
Alain Reguera Delgado 8f60cb
        # portable object template.
Alain Reguera Delgado 8f60cb
        msgmerge --output="${FILE}.po" "${FILE}.po" "${FILE}.pot" --quiet
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    else
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Initiate portable object using portable object template.
Alain Reguera Delgado 8f60cb
        # Do not print msginit sterr output, use centos-art action
Alain Reguera Delgado 8f60cb
        # message instead.
Alain Reguera Delgado 8f60cb
        msginit -i ${FILE}.pot -o ${FILE}.po --width=70 \
Alain Reguera Delgado 8f60cb
            --no-translator > /dev/null 2>&1
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Sanitate metadata inside the PO file.
Alain Reguera Delgado 8f60cb
    locale_updateMessageMetadata "${FILE}.po"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}