forked from science-ation/science-ation
27 lines
927 B
PHP
27 lines
927 B
PHP
<?php
|
|
|
|
// This file was created February 2015 by Sebastian Ruan
|
|
|
|
/*
|
|
* It determines if signature page is to be called permission form.
|
|
* The multiple variables allow for correct grammer to be observed
|
|
* on the website.
|
|
*/
|
|
|
|
if ($config['signaturepage_or_permissionform'] == 'permissionform') {
|
|
$participationform = 'Permission Form';
|
|
$plural_participationform = 'Permission Forms';
|
|
$non_capital_participationform = 'permission form';
|
|
$non_capital_plural_participationform = 'permission forms';
|
|
$sentence_begin_participationform = 'Permission form';
|
|
$signatureformpermissionform = 'permission form';
|
|
} else {
|
|
$participationform = 'Signature Page';
|
|
$plural_participationform = 'Signature Forms';
|
|
$non_capital_participationform = 'signature page';
|
|
$non_capital_plural_participationform = 'signature forms';
|
|
$sentence_begin_participationform = 'Signature page';
|
|
$signatureformpermissionform = 'signature form';
|
|
}
|
|
|
|
?>
|