StocksNew/vendor/nesbot/carbon/src/Carbon/Lang/tlh.php

73 lines
2.5 KiB
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?php
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - François B
* - Serhan Apaydın
* - Dominika
*/
return [
'year' => '{1}wa DIS|:count DIS',
'month' => '{1}wa jar|:count jar',
'week' => '{1}wa hogh|:count hogh',
'day' => '{1}wa jaj|:count jaj',
'hour' => '{1}wa rep|:count rep',
'minute' => '{1}wa tup|:count tup',
'second' => '{1}puS lup|:count lup',
'ago' => function ($time) {
$output = strtr($time, [
'jaj' => 'Hu',
'jar' => 'wen',
'DIS' => 'ben',
]);
return $output === $time ? "$time ret" : $output;
},
'from_now' => function ($time) {
$output = strtr($time, [
'jaj' => 'leS',
'jar' => 'waQ',
'DIS' => 'nem',
]);
return $output === $time ? "$time pIq" : $output;
},
'diff_yesterday' => 'waHu',
'diff_today' => 'DaHjaj',
'diff_tomorrow' => 'waleS',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
'calendar' => [
'sameDay' => '[DaHjaj] LT',
'nextDay' => '[waleS] LT',
'nextWeek' => 'LLL',
'lastDay' => '[waHu] LT',
'lastWeek' => 'LLL',
'sameElse' => 'L',
],
'ordinal' => ':number.',
'months' => ['tera jar wa', 'tera jar cha', 'tera jar wej', 'tera jar loS', 'tera jar vagh', 'tera jar jav', 'tera jar Soch', 'tera jar chorgh', 'tera jar Hut', 'tera jar wamaH', 'tera jar wamaH wa', 'tera jar wamaH cha'],
'months_short' => ['jar wa', 'jar cha', 'jar wej', 'jar loS', 'jar vagh', 'jar jav', 'jar Soch', 'jar chorgh', 'jar Hut', 'jar wamaH', 'jar wamaH wa', 'jar wamaH cha'],
'weekdays' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],
'weekdays_short' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],
'weekdays_min' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' ej '],
];