|
|
878a2b |
#!/bin/bash
|
|
|
878a2b |
#
|
|
|
878a2b |
# locale_updateMessageBinary.sh -- This function creates/updates
|
|
|
878a2b |
# machine objects (.mo) from portable objects (.po).
|
|
|
878a2b |
#
|
|
|
03486a |
# Copyright (C) 2009, 2010, 2011, 2012 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_updateMessageBinary {
|
|
|
878a2b |
|
|
|
878a2b |
# Verify machine object creation flag.
|
|
|
878a2b |
if [[ ${FLAG_DONT_CREATE_MO} == 'true' ]];then
|
|
|
878a2b |
return
|
|
|
878a2b |
fi
|
|
|
878a2b |
|
|
|
6a0218 |
# Define absolute path to final portable object. This is the file
|
|
|
6a0218 |
# that contains all the individual function translation messages
|
|
|
6a0218 |
# and is used to build the machine object (.mo) file.
|
|
|
6a0218 |
local PO_FILE=${L10N_WORKDIR}/${TEXTDOMAIN}.po
|
|
|
878a2b |
|
|
|
6a0218 |
# Define list of portable objects to work with. This list must be
|
|
|
6a0218 |
# built using the portable objects inside the working copy as
|
|
|
6a0218 |
# reference not the information in the central repository
|
|
|
6a0218 |
# (IMPORTANT: all of them must be included in this list, so
|
|
|
6a0218 |
# FLAG_FILTER mustn't be applied here). Thus, when we are
|
|
|
6a0218 |
# selective about the functionalities we want to use, it is
|
|
|
6a0218 |
# possible to have translation messages only for those
|
|
|
6a0218 |
# functionalities we did donwload into the working copy and no
|
|
|
6a0218 |
# others. There is no need to have translation messages for
|
|
|
6a0218 |
# functionalities we didn't download.
|
|
|
6a0218 |
local PO_FILES=$(cli_getFilesList ${L10N_WORKDIR} --type='f' --pattern="/messages.po$")
|
|
|
878a2b |
|
|
|
878a2b |
# Define absolute path to machine object directory.
|
|
|
878a2b |
local MO_DIR="${L10N_WORKDIR}/LC_MESSAGES"
|
|
|
878a2b |
|
|
|
878a2b |
# Define absolute path to machine object file.
|
|
|
6a0218 |
local MO_FILE="${MO_DIR}/${TEXTDOMAIN}.mo"
|
|
|
878a2b |
|
|
|
878a2b |
# Print action message.
|
|
|
6a0218 |
cli_printMessage "${PO_FILE}" --as-creating-line
|
|
|
6a0218 |
|
|
|
6a0218 |
# Combine all the function individual portable objects into just
|
|
|
6a0218 |
# one portable object. Be sure to use just the first translation
|
|
|
6a0218 |
# found, otherwise the automated flow will be broken for you to
|
|
|
6a0218 |
# decide which one of two or more variants should remain in the
|
|
|
6a0218 |
# portable object.
|
|
|
63aa6e |
msgcat ${PO_FILES} --use-first --output-file=${PO_FILE}
|
|
|
6a0218 |
|
|
|
6a0218 |
# Print action message.
|
|
|
878a2b |
cli_printMessage "${MO_FILE}" --as-creating-line
|
|
|
878a2b |
|
|
|
878a2b |
# Verify absolute path to machine object directory, if it doesn't
|
|
|
878a2b |
# exist create it.
|
|
|
878a2b |
if [[ ! -d ${MO_DIR} ]];then
|
|
|
878a2b |
mkdir -p ${MO_DIR}
|
|
|
878a2b |
fi
|
|
|
6a0218 |
|
|
|
878a2b |
# Create machine object from portable object.
|
|
|
878a2b |
msgfmt --check ${PO_FILE} --output-file=${MO_FILE}
|
|
|
878a2b |
|
|
|
878a2b |
}
|