Login   Register  
PHP Classes
elePHPant
Icontem

File: languages/en.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/en.conf  >  Download  
File: languages/en.conf
Role: Example script
Content type: text/plain
Description: english locale file
Class: Add multiple languages to a Web
Add multiple languages to a Web site very easy.
Author: By
Last change: example english locale file
Date: 2009-08-15 13:34
Size: 487 bytes
 

Contents

Class file image Download
<?php

    
/* English language configuration */

     
$lang = array (

         
/* title page */
         
'title' => "Page in English",

         
/* content */
        
'hello' => "Hello the language page is English",
          
'page' => "This is the page number 1",
          
'page2' => "This is the page number 2",
          
'home' => "Home",
          
'next' => "Page 2",

          
/* Select language */
          
'select-language' => "Select language",
          
'es' => "Spanish",
          
'en' => "English",
          
'fr' => "French"
     
);
?>