Blame Scripts/Bash/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
#
348bf4
# Copyright (C) 2009-2011 Alain Reguera Delgado
348bf4
# 
348bf4
# This program is free software; you can redistribute it and/or
348bf4
# modify it under the terms of the GNU General Public License as
348bf4
# published by the Free Software Foundation; either version 2 of the
348bf4
# License, or (at your option) any later version.
348bf4
# 
348bf4
# This program is distributed in the hope that it will be useful, but
348bf4
# 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
348bf4
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
348bf4
# USA.
348bf4
# 
348bf4
# ----------------------------------------------------------------------
348bf4
# $Id$
348bf4
# ----------------------------------------------------------------------
348bf4
348bf4
function locale_editMessages {
348bf4
348bf4
    # Syncronize changes between the working copy and the central
348bf4
    # repository.
348bf4
    cli_commitRepoChanges
348bf4
348bf4
    # Redefine filter pattern in order to reduce match to portable
348bf4
    # objects only.
348bf4
    local FLAG_FILTER="${FLAG_FILTER}.*\.po"
348bf4
348bf4
    # Build list of portable objects which we want to edit.
348bf4
    cli_getFilesList
348bf4
348bf4
    # Print action preamble. 
348bf4
    cli_printActionPreamble "${FILES}" "doEdit" 'AsResponseLine'
348bf4
348bf4
    # Use default text editor to edit portable objects.
348bf4
    eval ${EDITOR} ${FILES}
348bf4
348bf4
    # Update machine object (.mo) from portable object (.po).
348bf4
    locale_updateMessageBinary ${FILES}
348bf4
348bf4
    # Syncronize changes between the working copy and the central
348bf4
    # repository.
348bf4
    cli_commitRepoChanges
348bf4
348bf4
}