PHP Classes

File: languages/en.conf

Recommend this page to a friend!
  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: 14 years ago
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"
    
);
?>