Hello,
To add your language to Real Estate Manager installation you should
1. Place your language file inside the directory
/components/com_real estate manager/lang/ using an FTP client or similar (if you are on a shared hosting account, please use internal Joomla FTP or QuiXplorer or similar to preserve the file ownership).
2. In the file Real Estate Manager.xml in the directory
/components/com_Real estate Manager/ add the language entry for your language. This goes right after the entry lang/english.php.
3. Go to administration Real Estate Manager Language tab. Now you will see your language and may update any constant with it help.
So if you use for example Dutch and Spanish on your site you would add those, like this:
< filename>lang/english.php
< filename>lang/dutch.php
< filename>lang/spanish.php
3. To ensure the languages you use are visible inside the dropdown boxes in the administration part for selecting, you will need to add the language entries to every language file in use in your installation. In each language file, find the part marked //Languages and add your language there. Example:
Code: |
//Languages
DEFINE('_RealEstateManager_LANGUAGE_NOT_USED', 'Not specified');
DEFINE('_RealEstateManager_LANGUAGE_ENG', 'English');
DEFINE('_RealEstateManager_LANGUAGE_DUT', 'Dutch');
DEFINE('_RealEstateManager_LANGUAGE_GER', 'German');
DEFINE('_RealEstateManager_LANGUAGE_FRE', 'French');
DEFINE('_RealEstateManager_LANGUAGE_ITA', 'Italian');
DEFINE('_RealEstateManager_LANGUAGE_SPA', 'Spanish');
etc.
|
Save each file. Remember to translate the entries according to the language file you are editing. That's it, you're done!