Welcome Guest, Not a member yet? Register   Sign In
localization issue
#8

(This post was last modified: 04-30-2021, 10:22 AM by demyr.)

(04-30-2021, 07:01 AM)eleumas Wrote: Sorry, but Codeigniter have a specific folder called language for translate multilangual sites. Why i should use a mySQL table for to do this? Smile


Well, If you think like that, it looks you have a long way to produce a larger scale project.

Language folder is for texts, not for your algorithms. In order to set the correct relational structure and algorithm you will need a very basic and solid branch to grasp, to connect/join everything in a clear way. So, a language column on your table will save your life and will make everything easier.

+

On your that ,mutual, product page, let's imagine a title of a part with if:

PHP Code:
<?php if($lang == 'en'){
  echo 'Categories';
}else if (
$lang == 'it'){
 echo 
'Categorie';
}else if (
$lang == 'de'){
  echo 'Kategorien';
//etc..
?>

but with language file you can only write :

PHP Code:
<?php echo lang('MyLangFile.catPartTitle');?>

that's all and clear again.
cordiali saluti Smile
Reply


Messages In This Thread
localization issue - by eleumas - 04-29-2021, 04:34 AM
RE: localization issue - by demyr - 04-29-2021, 09:02 AM
RE: localization issue - by includebeer - 04-29-2021, 05:16 PM
RE: localization issue - by eleumas - 04-30-2021, 02:45 AM
RE: localization issue - by demyr - 04-30-2021, 06:47 AM
RE: localization issue - by eleumas - 04-30-2021, 07:01 AM
RE: localization issue - by includebeer - 04-30-2021, 07:31 AM
RE: localization issue - by demyr - 04-30-2021, 07:54 AM
RE: localization issue - by eleumas - 05-04-2021, 12:45 AM
RE: localization issue - by InsiteFX - 05-04-2021, 02:13 AM
RE: localization issue - by paliz - 05-04-2021, 11:11 AM
RE: localization issue - by eleumas - 05-11-2021, 12:06 AM
RE: localization issue - by includebeer - 05-11-2021, 04:31 AM
RE: localization issue - by eleumas - 05-11-2021, 01:01 PM
RE: localization issue - by InsiteFX - 05-12-2021, 02:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB