Blame Scripts/Bash/Functions/Render/Config/Identity/Themes/Promo/Stationery/Media/5.5/i386/label-livecd.png.sh

a0f997
#!/bin/bash
a0f997
#
a0f997
# render_loadConfig.sh -- This function specifies translation markers
a0f997
# and replacements for installation media labels.
a0f997
#
a0f997
# Copyright (C) 2009-2011  Alain Reguera Delgado
a0f997
# 
a0f997
# This program is free software; you can redistribute it and/or
a0f997
# modify it under the terms of the GNU General Public License as
a0f997
# published by the Free Software Foundation; either version 2 of the
a0f997
# License, or (at your option) any later version.
a0f997
# 
a0f997
# This program is distributed in the hope that it will be useful, but
a0f997
# WITHOUT ANY WARRANTY; without even the implied warranty of
a0f997
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
a0f997
# General Public License for more details.
a0f997
#
a0f997
# You should have received a copy of the GNU General Public License
a0f997
# along with this program; if not, write to the Free Software
a0f997
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
a0f997
# USA.
a0f997
# ----------------------------------------------------------------------
a0f997
# $Id$
a0f997
# ----------------------------------------------------------------------
a0f997
a0f997
function render_loadConfig {
a0f997
a0f997
    # Define specific translation markers.
a0f997
    SRC[0]='=TEXT='
a0f997
    SRC[1]='=ARCH='
a0f997
a0f997
    # Define replacement for specitif translation markers.
a0f997
    DST[0]="`gettext "Live CD"`"
a0f997
    DST[1]="`gettext "for =ARCH= architectures"`"
a0f997
a0f997
}