#!/bin/bash
#
# locale_updateMessageBinary.sh -- This function creates/updates
# machine objects (.mo) from portable objects (.po).
#
# 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_updateMessageBinary {
# Verify machine object creation flag.
if [[ ${FLAG_DONT_CREATE_MO} == 'true' ]];then
return
fi
local PO=''
local MO=''
local FILE=''
local FILES="$1"
for FILE in $FILES;do
# Verify existence of portable object.
cli_checkFiles "${FILE}"
# Define absolute path to portable object.
PO=$FILE
# Define absolute path to machine object.
MO=$(dirname ${PO})/LC_MESSAGES/$(basename ${PO} | sed -r 's!\.po$!.mo!')
# Print action message.
if [[ -f ${MO} ]];then
cli_printMessage "${MO}" --as-updating-line
else
cli_printMessage "${MO}" --as-creating-line
fi
# Define directory used to store machine object.
MODIR=$(dirname ${MO})
# Create directory to store machine object, if it doesn't
# exist.
if [[ ! -d ${MODIR} ]];then
mkdir -p ${MODIR}
fi
# Create machine object from portable object.
msgfmt --check ${PO} --output-file=${MO}
done
}