Login   Register  
PHP Classes
elePHPant
Icontem

File: country/extcountry_es.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2006-02-13 05:53
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);
?>