
_________________________________________
Hi all,
after a quick search I didn't find anything regarding this issue so I've decided to code a small utility which may help mods author to convert their old phpBB 2 lang files into the new phpBB 3 lang files system.
This tool is really small and simple, and it may still contain errors.
It is really easy to use, you can use it in two ways:
- Including the lang files using the include function
- Code: Select all
include('lang_test.php');
- Pasting all the $lang vars you need to convert directly into the file
- Code: Select all
//============================================
// LANG VARS - BEGIN
//============================================
$lang['Test_01'] = 'Testing...';
$lang['Test_02'] = 'Testing...';
//============================================
// LANG VARS - END
//============================================
To do this just open phpbb3_lc.php and edit the first lines accordingly.
Once you have edited the lines, you just need to launch the files in your
browser and you'll have the output to be pasted in a brand new phpBB 3 lang
file.
There is also the possibility to download it as a file, but pay attention that
will be downloaded only the automated output, not the content of the textbox
if you have modified it!!!
Download: http://www.icyphoenix.com/dload.php?action=file&file_id=49
I hope someone may find this useful.
Here is the link to phpBB discussion:
http://www.phpbb.com/community/viewtopic.php?f=71&t=570961



