Blame Scripts/Bash/Functions/Render/Config/Identity/Themes/Distro/Anaconda/Progress/5/07-docs.png.sh

df9758
#!/bin/bash
df9758
#
df9758
# render_loadConfig.sh -- This function specifies translation
df9758
# markers and replacements for anaconda progress `07-docs.png' slide.
df9758
#
df9758
# Copyright (C) 2009-2011  Alain Reguera Delgado
df9758
# 
df9758
# This program is free software; you can redistribute it and/or
df9758
# modify it under the terms of the GNU General Public License as
df9758
# published by the Free Software Foundation; either version 2 of the
df9758
# License, or (at your option) any later version.
df9758
# 
df9758
# This program is distributed in the hope that it will be useful, but
df9758
# WITHOUT ANY WARRANTY; without even the implied warranty of
df9758
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
df9758
# General Public License for more details.
df9758
#
df9758
# You should have received a copy of the GNU General Public License
df9758
# along with this program; if not, write to the Free Software
df9758
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
df9758
# USA.
df9758
# ----------------------------------------------------------------------
df9758
# $Id$
df9758
# ----------------------------------------------------------------------
df9758
df9758
function render_loadConfig {
df9758
df9758
    local INDEX=''
df9758
df9758
    # Define translation markers.
df9758
    SRC[0]='=TITLE='
df9758
    for INDEX in {1..17};do
df9758
        SRC[$INDEX]="=TEXT${INDEX}="
df9758
    done
df9758
df9758
    # Define replacements for translation markers.
df9758
    DST[0]="`gettext "CentOS Documentation"`"
df9758
    DST[1]="`gettext "The following documentation is available for CentOS:"`"
df9758
    DST[2]="• `gettext "Deployment Guide"`"
df9758
    DST[3]="• `gettext "Installation Guide"`"
df9758
    DST[4]="• `gettext "Virtualization Guide"`"
df9758
    DST[5]="• `gettext "Cluster Suite Overview"`"
df9758
    DST[6]="• `gettext "Cluster Administration"`"
df9758
    DST[7]="• `gettext "Cluster Logical Volume Manager"`"
df9758
    DST[8]="• `gettext "Global File System"`"
df9758
    DST[9]="• `gettext "Global Network Block Device"`"
df9758
    DST[10]="• `gettext "Virtual Server Administration"`"
df9758
    DST[11]="• `gettext "Managing Software with yum"`"
df9758
    DST[12]="• `gettext "Using YumEx"`"
df9758
    DST[13]="• `gettext "Release notes for all software"`"
df9758
df9758
    DST[14]=''
df9758
    DST[15]=''
df9758
    DST[16]=''
df9758
    DST[17]=''
df9758
df9758
df9758
}