PHP Classes

File: country/extcountry_es.php

Recommend this page to a friend!
  Classes of Fidel Bravo   Kalender   country/extcountry_es.php   Download  
File: country/extcountry_es.php
Role: Configuration script
Content type: text/plain
Description: Lang
Class: Kalender
Display month calendars denoting holidays
Author: By
Last change:
Date: 18 years ago
Size: 587 bytes
 

Contents

Class file image Download
<?php
$_LANG
= array(
   
'de' => array(
       
"spainconstitutionday" => 'Tag der Verfassung',
       
"spainnationalday" => 'Tag der Nation',
       
"doctor" => 'Arztbesuch ABC.'
   
),
   
'es' => array(
       
"spainconstitutionday" => 'Día de la Constitución"',
       
"spainnationalday" => 'Día Nacional',
       
"doctor" => 'Ir al doctor ABC. '
   
),
   
'en' => array(
       
"spainconstitutionday" => 'Spain Constitution Day',
       
"spainnationalday" => 'Spain National Day',
       
"doctor" => 'Doctor'
   
)
);

$GLOBALS['_LOCALLANG'] = array_merge_recursive ($GLOBALS['_LOCALLANG'], $_LANG);
?>