Strings localization for PHP (like [B4X] Localizator)

scsjc

Well-Known Member
Licensed User
Longtime User
Hello everyone,
I don't know if this is the most correct place to ask this question :)

Currently I use [B4X] Localizator for the translation of the app through an Excel workbook as Erel shows in: https://www.b4x.com/android/forum/threads/b4x-localizator-localize-your-b4x-applications.68751/
and it is great & simple :)

Well I would like to know if anyone knows any similar system to apply it within a web php, I currently use this code that I attach but it is horrible and old:

PHP:
$lang['Next'] = 'Next';
$lang['Previous'] = 'Previous';
$lang['Goto_page'] = 'Goto page';
$lang['Joined'] = 'Joined';
$lang['IP_Address'] = 'IP Address';

$lang['Select_forum'] = 'Select a forum';
$lang['View_latest_post'] = 'View latest post';
$lang['View_newest_post'] = 'View newest post';

Thanks :)
 

DonManfred

Expert
Licensed User
Longtime User
 

scsjc

Well-Known Member
Licensed User
Longtime User
Thanks for your reply :)
This shape is very similar to the one I use. I was looking for something as visual as putting it in a CSV file and being able to import with some utility or in another way ...
 
Top