NLP-er |
01-21-2010 02:31 PM |
Quote:
Originally Posted by Bouncer222
(Post 1960634)
*REQUEST*
Could you please make it so that... after clicking the flags to translate to a different language, for example my forums is english default, so if I translate to russian by clicking flags, the english flag appears all the way on the left so I can translate back?
|
If you want to change flags order you have to manually edit one file: /includes/vbenterprisetranslator_url_functions.php
There find this line of code and change order of pairs:
PHP Code:
return array ("af"=>"Afrikaans","sq"=>"Albanian","ar"=>"Arabic", "be"=>"Belarusian","bg"=>"Bulgarian","ca"=>"Catalan","zh-CN"=>"Chinese","hr"=>"Croatian","cs"=>"Czech","da"=>"Danish","nl"=>"Dutch","en"=>"English","et"=>"Estonian","tl"=>"Filipino","fi"=>"Finnish","fr"=>"French","gl"=>"Galician","de"=>"German","el"=>"Greek","iw"=>"Hebrew","hi"=>"Hindi","hu"=>"Hungarian","is"=>"Icelandic","id"=>"Indonesian","ga"=>"Irish","it"=>"Italian","ja"=>"Japanese","ko"=>"Korean","lv"=>"Latvian","lt"=>"Lithuanian","mk"=>"Macedonian","ms"=>"Malay","mt"=>"Maltese","no"=>"Norwegian", "fa" => "Persian", "pl"=>"Polish","pt"=>"Portuguese","ro"=>"Romanian","ru"=>"Russian","sr"=>"Serbian","sk"=>"Slovak","sl"=>"Slovenian","es"=>"Spanish","sw"=>"Swahili","sv"=>"Swedish","zh-TW"=>"Taiwanese","th"=>"Thai","tr"=>"Turkish","uk"=>"Ukrainian","vi"=>"Vietnamese","cy"=>"Welsh","yi"=>"Yiddish");
|