mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-08 06:16:08 +01:00
add Indonesian
This commit is contained in:
@@ -187,6 +187,7 @@ LANGUAGES = (
|
|||||||
('vi', _('Vietnamese')),
|
('vi', _('Vietnamese')),
|
||||||
('it', _('Italian')),
|
('it', _('Italian')),
|
||||||
('de', _('Deutsch')),
|
('de', _('Deutsch')),
|
||||||
|
('id', _('Indonesian')),
|
||||||
)
|
)
|
||||||
|
|
||||||
MEDIA_URL = '/home/cyberpanel/media/'
|
MEDIA_URL = '/home/cyberpanel/media/'
|
||||||
|
|||||||
Binary file not shown.
@@ -211,6 +211,7 @@
|
|||||||
<option>Polish</option>
|
<option>Polish</option>
|
||||||
<option>Vietnamese</option>
|
<option>Vietnamese</option>
|
||||||
<option>German</option>
|
<option>German</option>
|
||||||
|
<option>Indonesian</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -69,6 +69,8 @@ def verifyLogin(request):
|
|||||||
user_Language = "it"
|
user_Language = "it"
|
||||||
elif data['languageSelection'] == "German":
|
elif data['languageSelection'] == "German":
|
||||||
user_Language = "de"
|
user_Language = "de"
|
||||||
|
elif data['languageSelection'] == "Indonesian":
|
||||||
|
user_Language = "id"
|
||||||
|
|
||||||
translation.activate(user_Language)
|
translation.activate(user_Language)
|
||||||
response = HttpResponse()
|
response = HttpResponse()
|
||||||
|
|||||||
Reference in New Issue
Block a user