Login   Register  
PHP Classes
elePHPant
Icontem

File: languages/es.conf

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Deyby Vasquez  >  Add multiple languages to a Web  >  languages/es.conf  >  Download  
File: languages/es.conf
Role: Example script
Content type: text/plain
Description: Spanish locale file
Class: Add multiple languages to a Web
Add multiple languages to a Web site very easy.
Author: By
Last change:
Date: 2009-08-15 13:36
Size: 585 bytes
 

Contents

Class file image Download
<?php

    
/* Spanish language configuration */

     
$lang = array (

         
/* Titulo de pagina */
         
'title' => "P&aacute;gina en Espa&ntilde;ol",

         
/* Contenido */
        
'hello' => "El lenguaje de la p&aacute;gina es Espa&ntilde;ol",
          
'page' => "Esta es la p&aacute;gina n&uacute;mero 1",
          
'page2' => "Esta es la p&aacute;gina n&uacute;mero 2",
          
'home' => "Inicio",
          
'next' => "P&aacute;gina 2",

        
/* Seleccione idioma */
          
'select-language' => "Seleccione lenguaje",
          
'es' => "Espa&ntilde;ol",
          
'en' => "Ingles",
          
'fr' => 'Franc&eacute;s'
     
);
?>