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

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