Blame Scripts/Bash/Functions/Render/Config/Identity/Themes/Promo/Stationery/Media/5.5/x86_64/sleeve-installdvd.png.sh

a0f997
#!/bin/bash
a0f997
#
a0f997
# render_loadConfig.sh -- This function specifies translation markers
a0f997
# and replacements for installation media sleeves.
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]='=MESSAGE1_HEAD='
a0f997
    SRC[2]='=MESSAGE1_P1='
a0f997
    SRC[3]='=MESSAGE1_P2='
a0f997
    SRC[4]='=MESSAGE1_P3='
a0f997
    SRC[5]='=ARCH='
a0f997
a0f997
    # Define replacement for specitif translation markers.
a0f997
    DST[0]="`gettext "Install DVD"`"
a0f997
a0f997
    DST[1]="`gettext "What is CentOS?"`"
a0f997
a0f997
    DST[2]="`gettext "CentOS is an Enterprise Linux distribution based
a0f997
    on the freely available sources from Red Hat Enterprise Linux.
a0f997
    Each CentOS version is supported for 7 years (by means of
a0f997
    security updates)."`"
a0f997
a0f997
    DST[3]="`gettext "A new CentOS version is released every 2 years
a0f997
    and each CentOS version is regularly updated (every 6 months) to
a0f997
    support newer hardware."`"
a0f997
a0f997
    DST[4]="`gettext "This results in a secure, low-maintenance,
a0f997
    reliable, predictable and reproducible environment."`"
a0f997
a0f997
    DST[5]="`gettext "for =ARCH= architectures"`"
a0f997
a0f997
}