== Dolphin Languages == '''[http://www.boonex.com/trac/dolphin/wiki/DolLang#Newlanguagecreation New language creation]''' == New language creation == '''''This manual is for Dolphin 7.0.x'''''.[[BR]] '''''The manual for Dolphin 6 is available [http://www.boonex.com/trac/dolphin/wiki/GenDolFAQs#HowcanItranslatemysiteintoadifferentlanguage here]''''' To translate Dolphin's language file you need to: 1. Install the latest Dolphin 2. Uninstall all available modules from Dolphin Admin Panel -> Tools -> Modules 3. Go to the Dolphin administration panel -> Settings -> Languages Settings. In the 'Language Files' block you need to export the necessary language file by clicking the 'Export' link. 4. The downloaded file will have the following structure {{{ 'en', 'Flag' => 'gb', 'Title' => 'English', ); $aLangContent=array ( '_add' => 'add', '_bottom_text' => '2002-{0}. Product of BoonEx Group.', '_copyright' => 'Copyright © {0} Your Company.', 'test_key' => 'Key\'s string', ... ); ?> }}} * You need to change the 'Name', 'Flag' and 'Title' in accordance with the language you are translating to. Note. You need to use International Language Codes for 'Name' and 'Flag'. You may read more about this using the following link http://www.boonex.com/unity/txt/extension_requirements#LanguageFiles7 * If you use the (') sign in the language string you need to escape it by replacing it with (\'). Take a look at the example above -> 'test_key' language key. * It is necessary that you open and save this file in UTF-8 format. Otherwise non-latin symbols will not be correctly displayed. * It exports only the system language file, but not modules language files, which are translated a bit differently. 5. Translate the language file in each module located in modules/boonex/*/install/langs/en.php. The Forum has 2 language files - first in the regular location and another one in the modules\boonex\forum\integrations\base\langs\en.php. Use the same language code for translated files like in the 'Name' field in the system language file. 6. Put all translated files in a folder with all modules structure and exported system language in the root of the folder. The name of the folder must be named with the vendor name, language name and version of the translation. So it may look like this: {{{ Org-Russian-v.1.3 modules boonex ads install langs ru.php articles install langs ru.php ... forum install langs ru.php integrations base langs ru.php ... wall install langs ru.php lang-ru.php readme.txt }}} Don't forget to put a readme.txt file into the archive with language file info, compatibility with Dolphin and installation instructions. Pack the resulting folder in a zip archive. ---- == Installation instructions == 1. Unpack the zip archive 2. Go to the Dolphin admin panel -> Settings -> Languages Settings, and in the 'Create New' block switch tabs to 'Import'. Browse for your system language file (in the root of this folder, like lang-ru.php) and click 'Import'. If everything is OK, you should see the new language in the 'Language Files' block. 3. Copy all the '''modules''' directory to your dolphin root directory - it will create the language file in each module. 4. Go to the Dolphin admin panel -> Tools -> Modules, and scroll down to the '''Installed Modules''' block. Select all modules and click the '''Recompile Language(s)''' button. 5. Go to the Modules -> Orca Forum, click '''[L[Compile Lang:]]ru''' link to compile new language file specifically for orca forum.