1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

added si_lk locale from sri lanka

This commit is contained in:
rizkyrajitha 2019-10-01 21:28:17 +05:30
parent 9efa8fc90f
commit 3fc5cc8a34
6 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<?php
return [
'AF' => 'අප්‍රිකාව',
'AN' => 'ඇන්ටාක්ටිකාව',
'AS' => 'ආසියාව',
'EU' => 'යුරෝපය',
'NA' => 'උතුරු ඇමරිකාව',
'OC' => 'ඕෂනියා',
'SA' => 'දකුණු ඇමරිකාව',
];

18
app/config/locale/si.php Normal file
View file

@ -0,0 +1,18 @@
<?php
return [
'settings.inspire' => '"ප්‍රඥාවන්ත වීමේ කලාව යනු නොසලකා හැරිය යුතු දේ දැන ගැනීමේ කලාවයි."', // This is the line printed in the homepage and console 'view-source'
'settings.locale' => 'si',
'settings.direction' => 'ltr',
// Service - Users
'auth.emails.team' => '%s කණ්ඩායම',
'auth.emails.confirm.title' => 'ගිණුම් තහවුරු කිරීම',
'auth.emails.confirm.body' => 'si.email.auth.confirm.tpl',
'auth.emails.recovery.title' => 'මුරපදය යළි පිහිටුවන්න',
'auth.emails.recovery.body' => 'si.email.auth.recovery.tpl',
'auth.emails.invitation.title' => 'ආරාධනයයි , %s කණ්ඩායමට %s ව්‍යාපෘතියෙහි',
'auth.emails.invitation.body' => 'si.email.auth.invitation.tpl',
'locale.country.unknown' => 'Unknown',
'countries' => include 'si.countries.php',
'continents' => include 'si.continents.php',
];

View file

@ -0,0 +1,25 @@
<style>
* {
font-family: sans-serif,Arial;
-webkit-font-smoothing: antialiased;
font-weight: lighter;
}
</style>
<div style="direction: {{direction}}">
ආයුබෝවන් {{name}},
<br />
<br />
ඔබගේ විද්‍යුත් තැපැල් ලිපිනය සත්‍යාපනය කිරීමට මෙම සබැඳිය අනුගමනය කරන්න.
<br />
<a href="{{redirect}}">{{redirect}}</a>
<br />
<br />
ඔබ මෙම ලිපිනය සත්‍යාපනය කිරීමට ඉල්ලා නොසිටියේ නම්, ඔබට මෙම පණිවිඩය නොසලකා හැරිය හැක.
<br />
<br />
ස්තූතියි,
<br />
{{project}} කණ්ඩායම
</div>

View file

@ -0,0 +1,31 @@
<style>
* {
font-family: sans-serif,Arial;
-webkit-font-smoothing: antialiased;
font-weight: lighter;
}
</style>
<div style="direction: {{direction}}">
ආයුබෝවන්,
<br />
<br />
මෙම තැපෑල ඔබ වෙත එවනු ලැබුවේ <b>{{owner}}</b>ට ඔබව , {{project}} ව්‍යාපෘතියෙහි <b>{{team}}</b> කණ්ඩායමේ කණ්ඩායම් සාමාජිකයෙකු වීමට ආරාධනා කිරීමට අවශ්‍ය වූ නිසාය.
<br />
<br />
<b>{{team}}</b> කණ්ඩායමට එක්වීමට මෙම සබැඳිය අනුගමනය කරන්න:
<br />
<a href="{{redirect}}">{{redirect}}</a>
<br />
<br />
ඔබ උනන්දුවක් නොදක්වන්නේ නම්, ඔබට මෙම පණිවිඩය නොසලකා හැරිය හැකිය.
<br />
<br />
ස්තූතියි,
<br />
{{project}} කණ්ඩායම.
</div>

View file

@ -0,0 +1,25 @@
<style>
* {
font-family: sans-serif,Arial;
-webkit-font-smoothing: antialiased;
font-weight: lighter;
}
</style>
<div style="direction: {{direction}}">
ආයුබෝවන් {{name}},
<br />
<br />
ඔබගේ {{project}} ව්‍යාපෘතියෙහි මුරපදය නැවත සැකසීමට මෙම සබැඳිය අනුගමනය කරන්න
<br />
<a href="{{redirect}}">{{redirect}}</a>
<br />
<br />
ඔබගේ මුරපදය නැවත සැකසීමට ඔබ ඉල්ලා නොසිටියේ නම්, ඔබට මෙම පණිවිඩය නොසලකා හැරිය හැක.
<br />
<br />
ස්තූතියි,
<br />
{{project}} කණ්ඩායම
</div>

View file

@ -133,6 +133,7 @@ Locale::setLanguage('ua', include __DIR__ . '/config/locale/ua.php');
Locale::setLanguage('pt-br', include __DIR__ . '/config/locale/pt-br.php');
Locale::setLanguage('es', include __DIR__ . '/config/locale/es.php');
Locale::setLanguage('ro', include __DIR__ . '/config/locale/ro.php');
Locale::setLanguage('si', include __DIR__ . '/config/locale/si.php');
if (in_array($locale, APP_LOCALES)) {
Locale::setDefault($locale);