Blame Automation/Modules/Prepare/Scripts/prepare_updateLocales.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# prepare_updateLocales.sh -- This function creates/updates the
Alain Reguera Delgado 8f60cb
# machine object (.mo) file gettext uses to output translated messages
Alain Reguera Delgado 8f60cb
# when centos-art.sh script is running. Certainly, what this function
Alain Reguera Delgado 8f60cb
# really does is a call to the locale functionality of centos-art.sh
Alain Reguera Delgado 8f60cb
# script to realize and update action against itself.
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 prepare_updateLocales {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Realize localization tasks only when the current locale
Alain Reguera Delgado 8f60cb
    # information is different to English language. Otherwise
Alain Reguera Delgado 8f60cb
    # centos-art.sh would complain with an `English language cannot be
Alain Reguera Delgado 8f60cb
    # localized to itself' message.  Avoid this noise in the
Alain Reguera Delgado 8f60cb
    # preparation stuff.
Alain Reguera Delgado 8f60cb
    if [[ ! ${CLI_LANG_LL} =~ '^en' ]];then
Alain Reguera Delgado 8f60cb
        cli_runFnEnvironment locale Scripts/Bash --update
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}