Blob Blame History Raw
#!/bin/bash
#
# locale_updateMessageMetadata.sh -- This function sanitates .pot and
# .po files to use common translation markers inside top comment.
# Later, replacement of common translation markers is applied to set
# the final information.
#
# Copyright (C) 2009, 2010, 2011 The CentOS Project
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# ----------------------------------------------------------------------
# $Id$
# ----------------------------------------------------------------------

function locale_updateMessageMetadata {

    local COUNT=0
    local -a SRC
    local -a DST

    # Retrive absolute path of portable object we'll work with.
    local FILE="$1"

    # Define current locale.
    local CURRENTLOCALE=$(cli_getCurrentLocale)

    # Define language name from current locale.
    local LANGNAME=$(cli_getLangName ${CURRENTLOCALE})

    # Check existence of file before work with it.
    cli_checkFiles "${FILE}"

    # Define pattern lines. The pattern lines are put inside portable
    # objects through xgettext and xml2po commands .
    SRC[0]="\"Project-Id-Version:"
    SRC[1]="\"Report-Msgid-Bugs-To:"
    SRC[2]="\"Last-Translator:"
    SRC[3]="\"Language-Team:"
    SRC[4]="\"PO-Revision-Date:"

    # Define replacement lines for pattern line.
    DST[0]="\"Project-Id-Version: ${CLI_NAME}.sh\\\n\""
    DST[1]="\"Report-Msgid-Bugs-To: The CentOS L10n SIG <=MAIL_L10N=>\\\n\""
    DST[2]="\"Last-Translator: The CentOS L10n SIG <=MAIL_L10N=>\\\n\""
    DST[3]="\"Language-Team: ${LANGNAME}\\\n\""
    DST[4]="\"PO-Revision-Date: $(date "+%F %H:%M%z")\\\n\""

    # Change pattern lines with their replacement lines.
    while [[ $COUNT -lt ${#SRC[*]} ]];do
        sed -i -r "/${SRC[$COUNT]}/c${DST[$COUNT]}" ${FILE}
        COUNT=$(($COUNT + 1))
    done

    # When the .pot file is created using xml2po the
    # `Report-Msgid-Bugs-To:' metadata field isn't created like it
    # does when xgettext is used. So, in order to have such metadata
    # field in all .pot files, verify its existence and add it if it
    # doesn't exist.
    egrep "^\"${SRC[1]}" $FILE > /dev/null
    if [[ $? -ne 0 ]];then
        sed -i -r "/^\"${SRC[0]}/a${DST[1]}" $FILE
    fi

    # Replace package information using gettext domain information.
    sed -i -r "s/PACKAGE/${TEXTDOMAIN}/g" ${FILE}

    # Expand translation markers inside file.
    cli_expandTMarkers ${FILE}

    # Unset array variables to avoid undesired concatenations.
    unset SRC
    unset DST

}