Multi lingual Wordpress site
-
Hi all, Hope this it the right forum to post my section. I want to create a WP site with multiple languages. So I search the wed for any solution, and found WPML plug-in. However it is not a free solutions. So did any of you guys have use any others. If so please share it with me. Thanks in advance.
I appreciate your help all the time... CodingLover :)
-
Hi all, Hope this it the right forum to post my section. I want to create a WP site with multiple languages. So I search the wed for any solution, and found WPML plug-in. However it is not a free solutions. So did any of you guys have use any others. If so please share it with me. Thanks in advance.
I appreciate your help all the time... CodingLover :)
I had to develop multi-language site, mainly English and Japanese. I use a separate language file for each language and entire content is made by php. But I am not sure if its the best solution. here is an example : lang_japanese.php
"ユーザーネーム",
'Password'=>"パスワード"
);
?>lang_english.php
<?php
$pageName=array(
'UserName'="User Name",
'Password'='Password'
);
?><input type='password' name='password' value=''>
By the way , I do not use any framework or CMS
-
I had to develop multi-language site, mainly English and Japanese. I use a separate language file for each language and entire content is made by php. But I am not sure if its the best solution. here is an example : lang_japanese.php
"ユーザーネーム",
'Password'=>"パスワード"
);
?>lang_english.php
<?php
$pageName=array(
'UserName'="User Name",
'Password'='Password'
);
?><input type='password' name='password' value=''>
By the way , I do not use any framework or CMS
Much similar technique I've used previously. But it is bit of work with the WP. Some kind of plugin will make life easy. However I've found list of plugins and want to try them out, and will share with you. Thanks for the comment too. :)
I appreciate your help all the time... CodingLover :)
-
Much similar technique I've used previously. But it is bit of work with the WP. Some kind of plugin will make life easy. However I've found list of plugins and want to try them out, and will share with you. Thanks for the comment too. :)
I appreciate your help all the time... CodingLover :)
Did you look at Drupal as an alternative to Wordpress? It's very strong on internationalisation. [having just typed that, I can see why it's called i18n! ;P ] Peter
Software rusts. Simon Stephenson, ca 1994.
-
Much similar technique I've used previously. But it is bit of work with the WP. Some kind of plugin will make life easy. However I've found list of plugins and want to try them out, and will share with you. Thanks for the comment too. :)
I appreciate your help all the time... CodingLover :)
I would appreciate if you share :)