How to localize the software to my language

Reply

Join Date: Feb 2007
Posts: 12
Reputation: mmangai is an unknown quantity at this point 
Solved Threads: 1
mmangai's Avatar
mmangai mmangai is offline Offline
Newbie Poster

How to localize the software to my language

 
0
  #1
Jul 2nd, 2009
Please tell how to localize the open sourcesoftware(that is just translate to my language)by replacing the english with my local language.Any software available?
Reply With Quote Quick reply to this message  
Join Date: Dec 2005
Posts: 5,850
Reputation: Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute 
Solved Threads: 749
Team Colleague
Salem's Avatar
Salem Salem is offline Offline
Void main'ers are DOOMed

Re: How to localize the software to my language

 
0
  #2
Jul 2nd, 2009
http://unixhelp.ed.ac.uk/CGI/man-cgi?gettext+3

Eg.
#include <stdio.h>
#include <libintl.h>
int main ( ) {
  printf( "%s\n", gettext("hello world") );
  return 0;
}
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 4,190
Reputation: peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of 
Solved Threads: 483
Moderator
Featured Poster
peter_budo's Avatar
peter_budo peter_budo is offline Offline
Code tags enforcer

Re: How to localize the software to my language

 
0
  #3
Jul 2nd, 2009
Language dependent, but often it will go down to simple text file from which localized term would be read.
If you can be specific which language you use somebody may be able to point you in right direction
Learn to see in another's calamity the ills which you should avoid.
Publilius Syrus
(~100 BC)

LJC - London Java Community, Graduate & Undergraduate Software Development Community, JAVAWUG (Java Web User Group), The London Android Group
Reply With Quote Quick reply to this message  
Join Date: Feb 2007
Posts: 12
Reputation: mmangai is an unknown quantity at this point 
Solved Threads: 1
mmangai's Avatar
mmangai mmangai is offline Offline
Newbie Poster

Re: How to localize the software to my language

 
0
  #4
Jul 3rd, 2009
Originally Posted by peter_budo View Post
Language dependent, but often it will go down to simple text file from which localized term would be read.
If you can be specific which language you use somebody may be able to point you in right direction
Thanks for reply
From english to tamil,malayalam (south indian languages).And can you specify the simple text file(any common name for all software sources which has localized terms.
Last edited by mmangai; Jul 3rd, 2009 at 12:19 pm. Reason: speling
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 4,190
Reputation: peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of 
Solved Threads: 483
Moderator
Featured Poster
peter_budo's Avatar
peter_budo peter_budo is offline Offline
Code tags enforcer

Re: How to localize the software to my language

 
0
  #5
Jul 3rd, 2009
Originally Posted by mmangai View Post
Thanks for reply
From english to tamil,malayalam (south indian languages).And can you specify the simple text file(any common name for all software sources which has localized terms.
Programming language...
Learn to see in another's calamity the ills which you should avoid.
Publilius Syrus
(~100 BC)

LJC - London Java Community, Graduate & Undergraduate Software Development Community, JAVAWUG (Java Web User Group), The London Android Group
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 15,362
Reputation: Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute 
Solved Threads: 1464
Team Colleague
Featured Poster
Ancient Dragon's Avatar
Ancient Dragon Ancient Dragon is offline Offline
Still Learning

Re: How to localize the software to my language

 
0
  #6
Jul 3rd, 2009
I believe most programs contain language-specific dlls for each of the languages they wish to support. If its a MS-Windows gui program then put all the resources in language-specific dll.
Reply With Quote Quick reply to this message  
Join Date: Feb 2007
Posts: 12
Reputation: mmangai is an unknown quantity at this point 
Solved Threads: 1
mmangai's Avatar
mmangai mmangai is offline Offline
Newbie Poster

Re: How to localize the software to my language

 
0
  #7
Jul 4th, 2009
Originally Posted by peter_budo View Post
Programming language...
I am using Java
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 4,190
Reputation: peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of 
Solved Threads: 483
Moderator
Featured Poster
peter_budo's Avatar
peter_budo peter_budo is offline Offline
Code tags enforcer

Re: How to localize the software to my language

 
1
  #8
Jul 4th, 2009
For start yo can have look at Iternationalization. I'm not sure if this will be best solution for you, but as previously mentioned you can create "property" files with localization for given languages (you can have look at Pebble bloging application, where these files are stored in TOMCAT_DIR\WEB-INF\classes).

If this info is not enough please create new thread in Java section
Learn to see in another's calamity the ills which you should avoid.
Publilius Syrus
(~100 BC)

LJC - London Java Community, Graduate & Undergraduate Software Development Community, JAVAWUG (Java Web User Group), The London Android Group
Reply With Quote Quick reply to this message  
Join Date: Feb 2007
Posts: 12
Reputation: mmangai is an unknown quantity at this point 
Solved Threads: 1
mmangai's Avatar
mmangai mmangai is offline Offline
Newbie Poster

Re: How to localize the software to my language

 
0
  #9
Jul 5th, 2009
Originally Posted by peter_budo View Post
For start yo can have look at Iternationalization. I'm not sure if this will be best solution for you, but as previously mentioned you can create "property" files with localization for given languages (you can have look at Pebble bloging application, where these files are stored in TOMCAT_DIR\WEB-INF\classes).

If this info is not enough please create new thread in Java section
Thanks for the information.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the IT Professionals' Lounge Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC