blob: 09cf7e894238644d6811373d80805d925b64e439 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - Alessandro Di Felice
15 * - François B
16 * - Tim Fish
17 * - Gabriel Monteagudo
18 * - JD Isaacks
19 * - yiannisdesp
20 * - Ilias Kasmeridis (iliaskasm)
21 */
22return [
23 'year' => ':count χρόνος|:count χρόνια',
24 'a_year' => 'ένας χρόνος|:count χρόνια',
25 'y' => ':count χρ.',
26 'month' => ':count μήνας|:count μήνες',
27 'a_month' => 'ένας μήνας|:count μήνες',
28 'm' => ':count μήν.',
29 'week' => ':count εβδομάδα|:count εβδομάδες',
30 'a_week' => 'μια εβδομάδα|:count εβδομάδες',
31 'w' => ':count εβδ.',
32 'day' => ':count μέρα|:count μέρες',
33 'a_day' => 'μία μέρα|:count μέρες',
34 'd' => ':count μέρ.',
35 'hour' => ':count ώρα|:count ώρες',
36 'a_hour' => 'μία ώρα|:count ώρες',
37 'h' => ':count ώρα|:count ώρες',
38 'minute' => ':count λεπτό|:count λεπτά',
39 'a_minute' => 'ένα λεπτό|:count λεπτά',
40 'min' => ':count λεπ.',
41 'second' => ':count δευτερόλεπτο|:count δευτερόλεπτα',
42 'a_second' => 'λίγα δευτερόλεπτα|:count δευτερόλεπτα',
43 's' => ':count δευ.',
44 'ago' => 'πριν :time',
45 'from_now' => 'σε :time',
46 'after' => ':time μετά',
47 'before' => ':time πριν',
48 'diff_now' => 'τώρα',
49 'diff_today' => 'Σήμερα',
50 'diff_today_regexp' => 'Σήμερα(?:\\s+{})?',
51 'diff_yesterday' => 'χθες',
52 'diff_yesterday_regexp' => 'Χθες(?:\\s+{})?',
53 'diff_tomorrow' => 'αύριο',
54 'diff_tomorrow_regexp' => 'Αύριο(?:\\s+{})?',
55 'formats' => [
56 'LT' => 'h:mm A',
57 'LTS' => 'h:mm:ss A',
58 'L' => 'DD/MM/YYYY',
59 'LL' => 'D MMMM YYYY',
60 'LLL' => 'D MMMM YYYY h:mm A',
61 'LLLL' => 'dddd, D MMMM YYYY h:mm A',
62 ],
63 'calendar' => [
64 'sameDay' => '[Σήμερα {}] LT',
65 'nextDay' => '[Αύριο {}] LT',
66 'nextWeek' => 'dddd [{}] LT',
67 'lastDay' => '[Χθες {}] LT',
68 'lastWeek' => function (\Carbon\CarbonInterface $current) {
69 switch ($current->dayOfWeek) {
70 case 6:
71 return '[το προηγούμενο] dddd [{}] LT';
72 default:
73 return '[την προηγούμενη] dddd [{}] LT';
74 }
75 },
76 'sameElse' => 'L',
77 ],
78 'ordinal' => ':numberη',
79 'meridiem' => ['ΠΜ', 'ΜΜ', 'πμ', 'μμ'],
80 'months' => ['Ιανουαρίου', 'Φεβρουαρίου', 'Μαρτίου', 'Απριλίου', 'Μαΐου', 'Ιουνίου', 'Ιουλίου', 'Αυγούστου', 'Σεπτεμβρίου', 'Οκτωβρίου', 'Νοεμβρίου', 'Δεκεμβρίου'],
81 'months_standalone' => ['Ιανουάριος', 'Φεβρουάριος', 'Μάρτιος', 'Απρίλιος', 'Μάιος', 'Ιούνιος', 'Ιούλιος', 'Αύγουστος', 'Σεπτέμβριος', 'Οκτώβριος', 'Νοέμβριος', 'Δεκέμβριος'],
82 'months_regexp' => '/(D[oD]?[\s,]+MMMM|L{2,4}|l{2,4})/',
83 'months_short' => ['Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαϊ', 'Ιουν', 'Ιουλ', 'Αυγ', 'Σεπ', 'Οκτ', 'Νοε', 'Δεκ'],
84 'weekdays' => ['Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο'],
85 'weekdays_short' => ['Κυρ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'],
86 'weekdays_min' => ['Κυ', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'],
87 'first_day_of_week' => 1,
88 'day_of_first_week_of_year' => 4,
89 'list' => [', ', ' και '],
90];