<?php
 
$LANG = array();
 
$LANG['hw'] = "Hello World!";
 
 
$LANG['link1'] = "Home";
 
$LANG['link2'] = "About";
 
$LANG['link3'] = "Contact";
 
 
$LANG['select'] = "Please select a language";
 
$LANG['select_log'] = "Your select '%s'";
 
 
$LANG['t_e'] = "Error message test!";
 
?>
 
 |