blob: 2003e1eab7a7e42805e45629684f2c30159783ba [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 * - Philippe Vaucher
15 * - Janne Warén
16 * - digitalfrost
17 * - Tsutomu Kuroda
18 * - Roope Salmi
19 * - tjku
20 * - Max Melentiev
21 * - Sami Haahtinen
22 * - Teemu Leisti
23 * - Artem Ignatyev
24 * - Akira Matsuda
25 * - Christopher Dell
26 * - Enrique Vidal
27 * - Simone Carletti
28 * - Robert Bjarnason
29 * - Aaron Patterson
30 * - Nicolás Hock Isaza
31 * - Tom Hughes
32 * - Sven Fuchs
33 * - Petri Kivikangas
34 * - Nizar Jouini
35 * - Marko Seppae
36 * - Tomi Mynttinen (Pikseli)
37 * - Petteri (powergrip)
38 */
39return [
40 'year' => ':count vuosi|:count vuotta',
41 'y' => ':count v',
42 'month' => ':count kuukausi|:count kuukautta',
43 'm' => ':count kk',
44 'week' => ':count viikko|:count viikkoa',
45 'w' => ':count vk',
46 'day' => ':count päivä|:count päivää',
47 'd' => ':count pv',
48 'hour' => ':count tunti|:count tuntia',
49 'h' => ':count t',
50 'minute' => ':count minuutti|:count minuuttia',
51 'min' => ':count min',
52 'second' => ':count sekunti|:count sekuntia',
53 'a_second' => 'muutama sekunti|:count sekuntia',
54 's' => ':count s',
55 'ago' => ':time sitten',
56 'from_now' => ':time päästä',
57 'year_from_now' => ':count vuoden',
58 'month_from_now' => ':count kuukauden',
59 'week_from_now' => ':count viikon',
60 'day_from_now' => ':count päivän',
61 'hour_from_now' => ':count tunnin',
62 'minute_from_now' => ':count minuutin',
63 'second_from_now' => ':count sekunnin',
64 'after' => ':time sen jälkeen',
65 'before' => ':time ennen',
66 'first_day_of_week' => 1,
67 'day_of_first_week_of_year' => 4,
68 'list' => [', ', ' ja '],
69 'diff_now' => 'nyt',
70 'diff_yesterday' => 'eilen',
71 'diff_tomorrow' => 'huomenna',
72 'formats' => [
73 'LT' => 'HH.mm',
74 'LTS' => 'HH.mm:ss',
75 'L' => 'D.M.YYYY',
76 'LL' => 'dddd D. MMMM[ta] YYYY',
77 'LLL' => 'D.MM. HH.mm',
78 'LLLL' => 'D. MMMM[ta] YYYY HH.mm',
79 ],
80 'weekdays' => ['sunnuntai', 'maanantai', 'tiistai', 'keskiviikko', 'torstai', 'perjantai', 'lauantai'],
81 'weekdays_short' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
82 'weekdays_min' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
83 'months' => ['tammikuu', 'helmikuu', 'maaliskuu', 'huhtikuu', 'toukokuu', 'kesäkuu', 'heinäkuu', 'elokuu', 'syyskuu', 'lokakuu', 'marraskuu', 'joulukuu'],
84 'months_short' => ['tammi', 'helmi', 'maalis', 'huhti', 'touko', 'kesä', 'heinä', 'elo', 'syys', 'loka', 'marras', 'joulu'],
85 'meridiem' => ['aamupäivä', 'iltapäivä'],
86];