Sometimes it is very hard to have to maintain a translation of a website PHP.
Erel has long published an impressive tool: B4XLocalizator that greatly facilitates the work of translation within the app with a Excel workbook.
Well, I have made this simple code to help generate the files that allow us to maintain a website translated in several languages.
Inspired on: https://www.b4x.com/android/forum/threads/b4x-localizator-localize-your-b4x-applications.68751/
EXCEL SHEET
GENERATED FILES
CODE GENERATED (\Objects\language\en_lang.php)
Regards
Erel has long published an impressive tool: B4XLocalizator that greatly facilitates the work of translation within the app with a Excel workbook.
Well, I have made this simple code to help generate the files that allow us to maintain a website translated in several languages.
Inspired on: https://www.b4x.com/android/forum/threads/b4x-localizator-localize-your-b4x-applications.68751/
EXCEL SHEET
GENERATED FILES
CODE GENERATED (\Objects\language\en_lang.php)
PHP:
<?php
$lang['acceso'] = 'Access';
$lang['account_information'] = 'Account Information';
$lang['active'] = 'Active';
$lang['active_client'] = 'Active Client';
$lang['add'] = 'Add';
$lang['add_client'] = 'Add Client';
?>
Regards