Blame Scripts/Bash/Functions/Render/Config/Manuals/ReleaseNotes/5/eula.txt.sh

ecb17b
#!/bin/bash
ecb17b
#
ecb17b
# render_loadConfig.sh -- This function specifies translation markers
ecb17b
# and replacements for EULA in plain-text format.
ecb17b
#
ecb17b
# Copyright (C) 2009-2011  Alain Reguera Delgado
ecb17b
# 
ecb17b
# This program is free software; you can redistribute it and/or
ecb17b
# modify it under the terms of the GNU General Public License as
ecb17b
# published by the Free Software Foundation; either version 2 of the
ecb17b
# License, or (at your option) any later version.
ecb17b
# 
ecb17b
# This program is distributed in the hope that it will be useful, but
ecb17b
# WITHOUT ANY WARRANTY; without even the implied warranty of
ecb17b
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ecb17b
# General Public License for more details.
ecb17b
#
ecb17b
# You should have received a copy of the GNU General Public License
ecb17b
# along with this program; if not, write to the Free Software
ecb17b
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
ecb17b
# USA.
ecb17b
# ----------------------------------------------------------------------
ecb17b
# $Id: splash.png.sh 963 2011-01-26 17:25:47Z al $
ecb17b
# ----------------------------------------------------------------------
ecb17b
ecb17b
function render_loadConfig {
ecb17b
ecb17b
    local INDEX=''
ecb17b
ecb17b
    # Define translation markers.
ecb17b
    SRC[0]='=TITLE='
ecb17b
    for INDEX in {1..2};do
ecb17b
        SRC[$INDEX]="=P${INDEX}="
ecb17b
    done
ecb17b
ecb17b
    # Define replacements for translation markers.
ecb17b
    DST[0]="`gettext "CentOS =RELEASE= EULA"`"
ecb17b
ecb17b
    DST[1]="`gettext "CentOS =RELEASE= comes with no guarantees or
ecb17b
    warranties of any sorts, either written or implied."`"
ecb17b
ecb17b
    DST[2]="`gettext "The Distribution is released as GPL. Individual
ecb17b
    packages in the distribution come with their own licences."`"
ecb17b
ecb17b
}