|
About Joomla! -
The CMS
|
|
Written by POPOEVER
|
|
Sunday, 20 April 2008 10:48 |
|
FireBoard is cool and fast, except there is an small issue after default installation, it seems the default language file omitted some items for the My Profile page, users will read unconverted variable name "_EDIT_TITLE" instead of the translated "Edit Your Details", and all the items name on that page.
Here goes a quick fix, find english.php under /JOOMLA/INSTALL/PATH/administrator/components/com_fireboard/language/, add the following code from line 247:
DEFINE('_EDIT_TITLE', 'Edit Your Details');
DEFINE('_YOUR_NAME', 'Your Name:');
DEFINE('_EMAIL', 'e-mail:');
DEFINE('_UNAME', 'User Name:');
DEFINE('_PASS', 'Password:');
DEFINE('_VPASS', 'Verify Password:');
Save and upload to overwrite, done! |