Added Thai locale

This commit is contained in:
eldadfux
2019-10-23 22:43:19 +03:00
parent 91dea0ea61
commit 4fe9576ec7
4 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
## Features
* Added 1 new locales for locale service and email templates (ml,)
* Added 1 new locales for locale service and email templates (ml, th)
* 2 stage Docker build
* New database rule validation options
* Update docs example with auth info
+1 -1
View File
@@ -158,7 +158,7 @@ return [
'SV' => 'เซียร์ราลีโอน',
'SM' => 'ซานมาริโน',
'SO' => 'โซมาเลีย',
'RS' => 'เซอร์เบีย,
'RS' => 'เซอร์เบีย',
'SS' => 'ซูดานใต้',
'ST' => 'เซาตูเมและปรินซิปี',
'SR' => 'ซูรินาเม',
+1 -1
View File
@@ -8,7 +8,7 @@ return [
// Service - Users
'auth.emails.team' => '%s ทีม',
'auth.emails.confirm.title' => 'ยืนยันบัญชี',
'auth.emails.confirm.body' => th.email.auth.confirm.tpl',
'auth.emails.confirm.body' => 'th.email.auth.confirm.tpl',
'auth.emails.recovery.title' => 'รีเซ็ตรหัสผ่าน',
'auth.emails.recovery.body' => 'th.email.auth.recovery.tpl',
'auth.emails.invitation.title' => 'ขอเชิญเข้าร่วม %s ทีมที่ %s',
+2
View File
@@ -60,6 +60,7 @@ const APP_LOCALES = [
'sq', // Albanian
'sv', // Swedish
'ta', // Tamil
'th', // Thai
'tr', // Turkish
'ua', // Ukrainian
'vi', // Vietnamese
@@ -204,6 +205,7 @@ Locale::setLanguage('sl', include __DIR__ . '/config/locale/sl.php');
Locale::setLanguage('sq', include __DIR__ . '/config/locale/sq.php');
Locale::setLanguage('sv', include __DIR__ . '/config/locale/sv.php');
Locale::setLanguage('ta', include __DIR__ . '/config/locale/ta.php');
Locale::setLanguage('th', include __DIR__.'/config/locale/th.php');
Locale::setLanguage('tr', include __DIR__.'/config/locale/tr.php');
Locale::setLanguage('ua', include __DIR__.'/config/locale/ua.php');
Locale::setLanguage('vi', include __DIR__.'/config/locale/vi.php');