Skip to content

Commit

Permalink
Merge pull request jenssegers#204 from asd-lt/patch-1
Browse files Browse the repository at this point in the history
Lithuanian language support
  • Loading branch information
jenssegers committed Jun 5, 2016
2 parents e8766bf + 0f624e3 commit 3454648
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions src/Lang/lt.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/

'ago' => 'prieš :time',
'from_now' => ':time nuo dabar',
'after' => 'po :time',
'before' => 'prieš :time',
'year' => '0 metų|:count metai|:count metai',
'month' => '0 mėnesių|:count mėnesis|:count mėnesiai',
'week' => '0 savaičių|:count savaitė|:count savaitės',
'day' => '0 dienų|:count diena|:count dienos',
'hour' => '0 valandų|:count valanda|:count valandos',
'minute' => '0 minučių|:count minutė|:count minutės',
'second' => '0 sekundžių|:count sekundė|:count sekundės',

'january' => 'Sausis',
'february' => 'Vasaris',
'march' => 'Kovas',
'april' => 'Balandis',
'may' => 'Gegužė',
'june' => 'Birželis',
'july' => 'Liepa',
'august' => 'Rugpjūtis',
'september' => 'Rugsėjis',
'october' => 'Spalis',
'november' => 'Lapkritis',
'december' => 'Gruodis',

'monday' => 'Pirmadienis',
'tuesday' => 'Antradienis',
'wednesday' => 'Trečiadienis',
'thursday' => 'Ketvirtadienis',
'friday' => 'Penktadienis',
'saturday' => 'Šeštadienis',
'sunday' => 'Sekmadienis',

];

0 comments on commit 3454648

Please sign in to comment.