Author |
|
apinvent Newbie
Joined: 14 January 2013 Location: Slovenia
Online Status: Offline Posts: 2
|
Posted: 14 January 2013 at 10:42am | IP Logged
|
|
|
Hi,
we translated 95% of outputs to Slovene language (SI - Slovenia), AfterLogic WebMail Lite PHP.
We saved file as Slovenian.php and everything is working fine, BUT, how can we set firendly name for Slovenian language?
Example:
Czech.php is shown as "Čeština" (on login form)
Slovenian.php is shown as Slovenian (but we want "Slovenščina")
Where can we change this?
Thanks in advance :)
Darko
|
Back to Top |
|
|
apinvent Newbie
Joined: 14 January 2013 Location: Slovenia
Online Status: Offline Posts: 2
|
Posted: 14 January 2013 at 1:15pm | IP Logged
|
|
|
Ok I found it myself :)
file:
[BASE]/libraries/afterlogic/common/config.php
IMPORTANT! Use Text editor which does not add BOM, to UTF8 TextFiles! Webmail stops working if you try to edit file with Windows Notepad (automatically adds BOM on save).
line 199:
/**
*
*/
'langs.names' => array(
'Arabic' => 'العربية',
'Bulgarian' => 'Български',
'Danish' => 'Dansk',
'Dutch' => 'Nederlands',
'English' => 'English',
'French' => 'Français',
'German' => 'Deutsch',
'Greek' => 'Ελληνικά',
'Hebrew' => 'עברית',
'Hungarian' => 'Magyar',
'Italian' => 'Italiano',
'Norwegian' => 'Norsk',
'PortugueseBrazil' => 'Português Brasil',
'Polish' => 'Polski',
'Russian' => 'Русский',
'Spanish' => 'Español',
'Swedish' => 'Svenska',
'Thai' => 'ภาษาไทย',
'Turkish' => 'Türkçe',
'Ukrainian' => 'Українська',
'Japanese' => '日本語',
'ChineseSimplified' => '中文(简体)',
'ChineseTraditional' => '中文(香港)',
'Korean' => '한국어',
'Czech' => 'Čeština',
'Slovenian' => 'Slovenščina'
),
|
Back to Top |
|
|