Blame Scripts/Functions/Locale/locale_editMessages.sh

348bf4
#!/bin/bash
348bf4
#
348bf4
# locale_editMessages.sh -- This function edits portable objects (.po)
348bf4
# using default text editor.
348bf4
#
2d3646
# Copyright (C) 2009, 2010, 2011 The CentOS Project
fa95b1
#
fa95b1
# This program is free software; you can redistribute it and/or modify
fa95b1
# it under the terms of the GNU General Public License as published by
dcd347
# the Free Software Foundation; either version 2 of the License, or (at
dcd347
# your option) any later version.
fa95b1
#
74a058
# This program is distributed in the hope that it will be useful, but
74a058
# WITHOUT ANY WARRANTY; without even the implied warranty of
348bf4
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
348bf4
# General Public License for more details.
348bf4
#
348bf4
# You should have received a copy of the GNU General Public License
348bf4
# along with this program; if not, write to the Free Software
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
7ac5a5
#
348bf4
# ----------------------------------------------------------------------
348bf4
# $Id$
348bf4
# ----------------------------------------------------------------------
348bf4
348bf4
function locale_editMessages {
348bf4
fef984
    # Print separator line.
510fad
    cli_printMessage '-' --as-separator-line
fef984
fef984
    # Initialize local variables.
4aff3a
    local FILES=''
348bf4
b0fdbc
    # Define list of locale files to process using action value as
b0fdbc
    # reference.
7483e2
    if [[ $ACTIONVAL =~ "^$(cli_getRepoTLDir)/Identity/(Models|Manual|Themes/Models)/.+$" ]];then
477096
        FILES=$(cli_getFilesList "${WORKDIR}" ".*/messages\.po")
b0fdbc
    elif [[ $ACTIONVAL =~ "^$(cli_getRepoTLDir)/Scripts$" ]];then
b0fdbc
        FILES=$(cli_getFilesList "${WORKDIR}" ".*/${TEXTDOMAIN}\.po")
e89926
    else
510fad
        cli_printMessage "`gettext "The path provided do not support localization."`" --as-error-line
4aff3a
    fi
4aff3a
bbac1c
    # Go throguh files, one by one.
bbac1c
    for FILE in $FILES;do
348bf4
bbac1c
        # Print the file we are editing.
510fad
        cli_printMessage "$FILE" --as-updating-line
bbac1c
bbac1c
        # Use default text editor to edit file.
bbac1c
        eval ${EDITOR} ${FILE}
bbac1c
bbac1c
        # Update machine object (.mo) from portable object (.po).
bbac1c
        locale_updateMessageBinary ${FILE}
bbac1c
bbac1c
    done
348bf4
348bf4
}