Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

el - greek update: Added months in genitive case - Added am,pm #164

Merged
merged 1 commit into from
Oct 26, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 20 additions & 17 deletions src/Lang/el.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@
|
*/

'ago' => 'πρίν απο :time',
'from_now' => 'σε :time απο τώρα',
'ago' => 'πριν από :time',
'from_now' => 'σε :time από τώρα',
'after' => ':time μετά',
'before' => ':time πρίν',
'year' => '1 χρόνος|:count χρόνια',
'month' => '1 μήνας|:count μήνες',
'before' => ':time πριν',
'year' => '1 χρόνο|:count χρόνια',
'month' => '1 μήνα|:count μήνες',
'week' => '1 εβδομάδα|:count εβδομάδες',
'day' => '1 μέρα|:count μέρες',
'hour' => '1 ώρα|:count ώρες',
'minute' => '1 λεπτό|:count λεπτά',
'second' => '1 δευτερόλεπτο|:count δευτερόλεπτα',

'january' => 'Ιανουάριος',
'february' => 'Φεβρουάριος',
'march' => 'Μάρτιος',
'april' => 'Απρίλιος',
'may' => 'Μάιος',
'june' => 'Ιούνιος',
'july' => 'Ιούλιος',
'august' => 'Αύγουστος',
'september' => 'Σεπτέμβριος',
'october' => 'Οκτώβριος',
'november' => 'Νοέμβριος',
'december' => 'Δεκέμβριος',
'january' => '{0}Ιανουάριος|{1}Ιανουαρίου',
'february' => '{0}Φεβρουάριος|{1}Φεβρουαρίου',
'march' => '{0}Μάρτιος|{1}Μαρτίου',
'april' => '{0}Απρίλιος|{1}Απριλίου',
'may' => '{0}Μάιος|{1}Μαΐου',
'june' => '{0}Ιούνιος|{1}Ιουνίου',
'july' => '{0}Ιούλιος|{1}Ιουλίου',
'august' => '{0}Αύγουστος|{1}Αυγούστου',
'september' => '{0}Σεπτέμβριος|{1}Σεπτεμβρίου',
'october' => '{0}Οκτώβριος|{1}Οκτωβρίου',
'november' => '{0}Νοέμβριος|{1}Νοεμβρίου',
'december' => '{0}Δεκέμβριος|{1}Δεκεμβρίου',

'monday' => 'Δευτέρα',
'tuesday' => 'Τρίτη',
Expand All @@ -45,4 +45,7 @@
'saturday' => 'Σάββατο',
'sunday' => 'Κυριακή',

'am' => 'πμ',
'pm' => 'μμ'

);