Current location: Hot Scripts Forums » Programming Languages » PHP » Website Language Translation


Website Language Translation

Reply
  #1 (permalink)  
Old 01-10-12, 04:32 AM
hemi hemi is offline
Wannabe Coder
 
Join Date: Aug 2009
Posts: 117
Thanks: 15
Thanked 0 Times in 0 Posts
Website Language Translation

Hi All,

My website content is written in english. As soon as user enters my website it show options of translating into other languages, especially Indian Local Languages(Hindi,Tamil,Telugu). I have checked google translator and others also. But i did not get what i needed exactly. If anyone know how to get this, please help me
Reply With Quote
  #2 (permalink)  
Old 01-10-12, 06:15 AM
alxkls alxkls is offline
Newbie Coder
 
Join Date: Nov 2011
Posts: 98
Thanks: 0
Thanked 9 Times in 9 Posts
google translate is now a paid service. im not sure how much they charge. but as we all know-the online translation tools are anything but perfect. personally ive never used them for that particular reason. your best option is to translate it manually. make a link for switching languages using $_SESSION so if someone clicks english for example:
Code:
$_SESSION['lang']='en';
and work with those. Large data-store in database with a field called language ans select it based on that and for small texts(links, buttons etc). try the following in an empty file and see how it goes
Code:
session_start();
$_SESSION['lang']='en';
$translation=array(
	'contact'=>array(
		'en'=>'contact',
		'es'=>'contactar',
		'ru'=>'контакти',
	),
);
function t($string){
	global $translation;
	$result=$translation[$string][$_SESSION['lang']];
	if ($result=='')
		return $string;
	else
		return $result;
}
echo t('contact');
something along these lines... also take a look at this

Last edited by alxkls; 01-10-12 at 06:17 AM.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
100 ways to get more traffic jorokolarov The Lounge 12 12-06-07 07:20 PM
FS: Prozilla Memberships (Turnkey Sites) - $10-15 less than Retail! rockergrrl General Advertisements 0 08-11-04 12:05 AM


All times are GMT -5. The time now is 09:00 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.