Login     Sign up
How to add two language?
kingmagi (@king10magi)
Join date: Sep 6th 2010
Community posts: 97
View Profile
Send Message

how to add more than one language like got tab on footer and people can choose what language they want use..

172 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

admin panel --> translate --> add language --> start to translate or import a language file

172 months ago
kingmagi (@king10magi)
Join date: Sep 6th 2010
Community posts: 97
View Profile
Send Message

ohh.. thnk u..... i found its...

next is how add new language not have thre??..

Thank You,

172 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

language that is not there

file includes\libs\common.inc.php

[code]
$langs = array(
[/code]

add new language Klingon
add line
[code]
'kl' => 'Klingon',
[/code]

172 months ago
kingmagi (@king10magi)
Join date: Sep 6th 2010
Community posts: 97
View Profile
Send Message

ohh.. i have add but its say error on common.inc.php files..

so??

thnk you,

172 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

?

part of the original code

[code]
$langs = array(
'am' => 'Amharic',
'ar' => 'Arabic',
'be' => 'Belarusian',
'bg' => 'Bulgarian',
[/code]

so add Klingon language
new code looks this
[code]
$langs = array(
'am' => 'Amharic',
'ar' => 'Arabic',
'be' => 'Belarusian',
'kl' => 'Klingon',
'bg' => 'Bulgarian',
[/code]

172 months ago
kingmagi (@king10magi)
Join date: Sep 6th 2010
Community posts: 97
View Profile
Send Message

ohh.. okay i have makes its..

thank you,

172 months ago