To create a new language file, follow these steps:
- Locate your Joomla!/components/com_rstickets/lang directory.
- Make a copy of english.php and rename it to whatever-language-you-want.php. The name of the file should be the same as the attribute from your Joomla!'s language xml file (located in one of the subdirectories of Joomla!/language). For instance, you can rename it to french.php if you have the french language pack installed.
- Open the newly renamed file with any text editor you wish. Language constants are defined like this:
DEFINE('PLACEHOLDER','This is the translation');
Please make sure you correctly close parenthesis and quotes. All DEFINE() lines should be closed with a semicolon. Use a PHP friendly editor to help you out through the process.
We recommend that you use the corresponding HTML code for UTF-8 characters.
If you choose not to use HTML codes for your UTF-8 characters, please make sure that you save the file with UTF-8 no BOM encoding.