1
0
Fork 0
mirror of synced 2024-06-28 11:10:46 +12:00

Added Malayalam locale

This commit is contained in:
eldadfux 2019-10-23 22:32:14 +03:00
parent 6e1598aaf9
commit 83a8616d64
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,6 @@
<?php
return [
'AF' => 'അഫ്ഗാനിസ്ഥാൻ',
'AF' => 'അഫ്ഗാനിസ്ഥാൻ',
'AO' => 'അംഗോള',
'AL' => 'അൽബേനിയ',
'AD' => 'ആൻഡോറ',

View file

@ -46,6 +46,7 @@ const APP_LOCALES = [
'jv', // Javanese
'ko', // Korean
'lt', // Lithuanian
'ml', // Malayalam
'ms', // Malay
'nl', // Dutch
'no', // Norwegian
@ -189,6 +190,7 @@ Locale::setLanguage('jv', include __DIR__.'/config/locale/ja.php');
Locale::setLanguage('jv', include __DIR__.'/config/locale/jv.php');
Locale::setLanguage('ko', include __DIR__.'/config/locale/ko.php');
Locale::setLanguage('lt', include __DIR__.'/config/locale/lt.php');
Locale::setLanguage('ml', include __DIR__.'/config/locale/ml.php');
Locale::setLanguage('ms', include __DIR__.'/config/locale/ms.php');
Locale::setLanguage('nl', include __DIR__.'/config/locale/nl.php');
Locale::setLanguage('no', include __DIR__.'/config/locale/no.php');