PK Z$ɇ
bin/carbonnu W+A #!/usr/bin/env php
toDateTimeString());
printf("Right now in Vancouver is %s", Carbon::now('America/Vancouver')); //implicit __toString()
$tomorrow = Carbon::now()->addDay();
$lastWeek = Carbon::now()->subWeek();
$nextSummerOlympics = Carbon::createFromDate(2016)->addYears(4);
$officialDate = Carbon::now()->toRfc2822String();
$howOldAmI = Carbon::createFromDate(1975, 5, 21)->age;
$noonTodayLondonTime = Carbon::createFromTime(12, 0, 0, 'Europe/London');
$internetWillBlowUpOn = Carbon::create(2038, 01, 19, 3, 14, 7, 'GMT');
// Don't really want this to happen so mock now
Carbon::setTestNow(Carbon::createFromDate(2000, 1, 1));
// comparisons are always done in UTC
if (Carbon::now()->gte($internetWillBlowUpOn)) {
die();
}
// Phew! Return to normal behaviour
Carbon::setTestNow();
if (Carbon::now()->isWeekend()) {
echo 'Party!';
}
// Over 200 languages (and over 500 regional variants) supported:
echo Carbon::now()->subMinutes(2)->diffForHumans(); // '2 minutes ago'
echo Carbon::now()->subMinutes(2)->locale('zh_CN')->diffForHumans(); // '2分钟前'
echo Carbon::parse('2019-07-23 14:51')->isoFormat('LLLL'); // 'Tuesday, July 23, 2019 2:51 PM'
echo Carbon::parse('2019-07-23 14:51')->locale('fr_FR')->isoFormat('LLLL'); // 'mardi 23 juillet 2019 14:51'
// ... but also does 'from now', 'after' and 'before'
// rolling up to seconds, minutes, hours, days, months, years
$daysSinceEpoch = Carbon::createFromTimestamp(0)->diffInDays();
```
[Get supported nesbot/carbon with the Tidelift Subscription](https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme)
## Installation
### With Composer
```
$ composer require nesbot/carbon
```
```json
{
"require": {
"nesbot/carbon": "^2.16"
}
}
```
```php
### Translators
[Thanks to people helping us to translate Carbon in so many languages](https://carbon.nesbot.com/contribute/translators/)
### Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website.
[[Become a sponsor via OpenCollective](https://opencollective.com/Carbon#sponsor)]
[[Become a sponsor via GitHub](https://github.com/sponsors/kylekatarnls)]
### Backers
Thank you to all our backers! 🙏
[[Become a backer](https://opencollective.com/Carbon#backer)]
## Carbon for enterprise
Available as part of the Tidelift Subscription.
The maintainers of ``Carbon`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
PK Z^T LICENSEnu W+A Copyright (C) Brian Nesbitt
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
PK Zz extension.neonnu W+A services:
-
class: Carbon\PHPStan\MacroExtension
tags:
- phpstan.broker.methodsClassReflectionExtension
PK Zg src/Carbon/Language.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Carbon;
use JsonSerializable;
use ReturnTypeWillChange;
class Language implements JsonSerializable
{
/**
* @var array
*/
protected static $languagesNames;
/**
* @var array
*/
protected static $regionsNames;
/**
* @var string
*/
protected $id;
/**
* @var string
*/
protected $code;
/**
* @var string|null
*/
protected $variant;
/**
* @var string|null
*/
protected $region;
/**
* @var array
*/
protected $names;
/**
* @var string
*/
protected $isoName;
/**
* @var string
*/
protected $nativeName;
public function __construct(string $id)
{
$this->id = str_replace('-', '_', $id);
$parts = explode('_', $this->id);
$this->code = $parts[0];
if (isset($parts[1])) {
if (!preg_match('/^[A-Z]+$/', $parts[1])) {
$this->variant = $parts[1];
$parts[1] = $parts[2] ?? null;
}
if ($parts[1]) {
$this->region = $parts[1];
}
}
}
/**
* Get the list of the known languages.
*
* @return array
*/
public static function all()
{
if (!static::$languagesNames) {
static::$languagesNames = require __DIR__.'/List/languages.php';
}
return static::$languagesNames;
}
/**
* Get the list of the known regions.
*
* @return array
*/
public static function regions()
{
if (!static::$regionsNames) {
static::$regionsNames = require __DIR__.'/List/regions.php';
}
return static::$regionsNames;
}
/**
* Get both isoName and nativeName as an array.
*
* @return array
*/
public function getNames(): array
{
if (!$this->names) {
$this->names = static::all()[$this->code] ?? [
'isoName' => $this->code,
'nativeName' => $this->code,
];
}
return $this->names;
}
/**
* Returns the original locale ID.
*
* @return string
*/
public function getId(): string
{
return $this->id;
}
/**
* Returns the code of the locale "en"/"fr".
*
* @return string
*/
public function getCode(): string
{
return $this->code;
}
/**
* Returns the variant code such as cyrl/latn.
*
* @return string|null
*/
public function getVariant(): ?string
{
return $this->variant;
}
/**
* Returns the variant such as Cyrillic/Latin.
*
* @return string|null
*/
public function getVariantName(): ?string
{
if ($this->variant === 'Latn') {
return 'Latin';
}
if ($this->variant === 'Cyrl') {
return 'Cyrillic';
}
return $this->variant;
}
/**
* Returns the region part of the locale.
*
* @return string|null
*/
public function getRegion(): ?string
{
return $this->region;
}
/**
* Returns the region name for the current language.
*
* @return string|null
*/
public function getRegionName(): ?string
{
return $this->region ? (static::regions()[$this->region] ?? $this->region) : null;
}
/**
* Returns the long ISO language name.
*
* @return string
*/
public function getFullIsoName(): string
{
if (!$this->isoName) {
$this->isoName = $this->getNames()['isoName'];
}
return $this->isoName;
}
/**
* Set the ISO language name.
*
* @param string $isoName
*/
public function setIsoName(string $isoName): self
{
$this->isoName = $isoName;
return $this;
}
/**
* Return the full name of the language in this language.
*
* @return string
*/
public function getFullNativeName(): string
{
if (!$this->nativeName) {
$this->nativeName = $this->getNames()['nativeName'];
}
return $this->nativeName;
}
/**
* Set the name of the language in this language.
*
* @param string $nativeName
*/
public function setNativeName(string $nativeName): self
{
$this->nativeName = $nativeName;
return $this;
}
/**
* Returns the short ISO language name.
*
* @return string
*/
public function getIsoName(): string
{
$name = $this->getFullIsoName();
return trim(strstr($name, ',', true) ?: $name);
}
/**
* Get the short name of the language in this language.
*
* @return string
*/
public function getNativeName(): string
{
$name = $this->getFullNativeName();
return trim(strstr($name, ',', true) ?: $name);
}
/**
* Get a string with short ISO name, region in parentheses if applicable, variant in parentheses if applicable.
*
* @return string
*/
public function getIsoDescription()
{
$region = $this->getRegionName();
$variant = $this->getVariantName();
return $this->getIsoName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');
}
/**
* Get a string with short native name, region in parentheses if applicable, variant in parentheses if applicable.
*
* @return string
*/
public function getNativeDescription()
{
$region = $this->getRegionName();
$variant = $this->getVariantName();
return $this->getNativeName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');
}
/**
* Get a string with long ISO name, region in parentheses if applicable, variant in parentheses if applicable.
*
* @return string
*/
public function getFullIsoDescription()
{
$region = $this->getRegionName();
$variant = $this->getVariantName();
return $this->getFullIsoName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');
}
/**
* Get a string with long native name, region in parentheses if applicable, variant in parentheses if applicable.
*
* @return string
*/
public function getFullNativeDescription()
{
$region = $this->getRegionName();
$variant = $this->getVariantName();
return $this->getFullNativeName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : '');
}
/**
* Returns the original locale ID.
*
* @return string
*/
public function __toString()
{
return $this->getId();
}
/**
* Get a string with short ISO name, region in parentheses if applicable, variant in parentheses if applicable.
*
* @return string
*/
#[ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->getIsoDescription();
}
}
PK Z䪦 src/Carbon/Cli/Invoker.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Carbon\Cli;
class Invoker
{
public const CLI_CLASS_NAME = 'Carbon\\Cli';
protected function runWithCli(string $className, array $parameters): bool
{
$cli = new $className();
return $cli(...$parameters);
}
public function __invoke(...$parameters): bool
{
if (class_exists(self::CLI_CLASS_NAME)) {
return $this->runWithCli(self::CLI_CLASS_NAME, $parameters);
}
$function = (($parameters[1] ?? '') === 'install' ? ($parameters[2] ?? null) : null) ?: 'shell_exec';
$function('composer require carbon-cli/carbon-cli --no-interaction');
echo 'Installation succeeded.';
return true;
}
}
PK Z3` src/Carbon/Lang/th_TH.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/th.php';
PK ZLO O src/Carbon/Lang/brx.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/brx_IN.php';
PK ZՉN N src/Carbon/Lang/wo.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/wo_SN.php';
PK Zd src/Carbon/Lang/es_AR.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - RAP bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/es.php', [
'first_day_of_week' => 0,
'day_of_first_week_of_year' => 1,
]);
PK ZB src/Carbon/Lang/bn_IN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/bn.php', [
'formats' => [
'L' => 'D/M/YY',
],
'months' => ['জানুয়ারী', 'ফেব্রুয়ারী', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],
'months_short' => ['জানু', 'ফেব', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],
'weekdays' => ['রবিবার', 'সোমবার', 'মঙ্গলবার', 'বুধবার', 'বৃহস্পতিবার', 'শুক্রবার', 'শনিবার'],
'weekdays_short' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি'],
'weekdays_min' => ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি'],
'day_of_first_week_of_year' => 1,
]);
PK ZM src/Carbon/Lang/cu.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
'first_day_of_week' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY-MM-DD',
'LL' => 'YYYY MMM D',
'LLL' => 'YYYY MMMM D HH:mm',
'LLLL' => 'YYYY MMMM D, dddd HH:mm',
],
'year' => ':count лѣто',
'y' => ':count лѣто',
'a_year' => ':count лѣто',
'month' => ':count мѣсѧць',
'm' => ':count мѣсѧць',
'a_month' => ':count мѣсѧць',
'week' => ':count сєдмица',
'w' => ':count сєдмица',
'a_week' => ':count сєдмица',
'day' => ':count дьнь',
'd' => ':count дьнь',
'a_day' => ':count дьнь',
'hour' => ':count година',
'h' => ':count година',
'a_hour' => ':count година',
'minute' => ':count малъ', // less reliable
'min' => ':count малъ', // less reliable
'a_minute' => ':count малъ', // less reliable
'second' => ':count въторъ',
's' => ':count въторъ',
'a_second' => ':count въторъ',
]);
PK ZUZj
j
src/Carbon/Lang/eo.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Josh Soref
* - François B
* - Mia Nordentoft
* - JD Isaacks
*/
return [
'year' => ':count jaro|:count jaroj',
'a_year' => 'jaro|:count jaroj',
'y' => ':count j.',
'month' => ':count monato|:count monatoj',
'a_month' => 'monato|:count monatoj',
'm' => ':count mo.',
'week' => ':count semajno|:count semajnoj',
'a_week' => 'semajno|:count semajnoj',
'w' => ':count sem.',
'day' => ':count tago|:count tagoj',
'a_day' => 'tago|:count tagoj',
'd' => ':count t.',
'hour' => ':count horo|:count horoj',
'a_hour' => 'horo|:count horoj',
'h' => ':count h.',
'minute' => ':count minuto|:count minutoj',
'a_minute' => 'minuto|:count minutoj',
'min' => ':count min.',
'second' => ':count sekundo|:count sekundoj',
'a_second' => 'sekundoj|:count sekundoj',
's' => ':count sek.',
'ago' => 'antaŭ :time',
'from_now' => 'post :time',
'after' => ':time poste',
'before' => ':time antaŭe',
'diff_yesterday' => 'Hieraŭ',
'diff_yesterday_regexp' => 'Hieraŭ(?:\\s+je)?',
'diff_today' => 'Hodiaŭ',
'diff_today_regexp' => 'Hodiaŭ(?:\\s+je)?',
'diff_tomorrow' => 'Morgaŭ',
'diff_tomorrow_regexp' => 'Morgaŭ(?:\\s+je)?',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY-MM-DD',
'LL' => 'D[-a de] MMMM, YYYY',
'LLL' => 'D[-a de] MMMM, YYYY HH:mm',
'LLLL' => 'dddd, [la] D[-a de] MMMM, YYYY HH:mm',
],
'calendar' => [
'sameDay' => '[Hodiaŭ je] LT',
'nextDay' => '[Morgaŭ je] LT',
'nextWeek' => 'dddd [je] LT',
'lastDay' => '[Hieraŭ je] LT',
'lastWeek' => '[pasinta] dddd [je] LT',
'sameElse' => 'L',
],
'ordinal' => ':numbera',
'meridiem' => ['a.t.m.', 'p.t.m.'],
'months' => ['januaro', 'februaro', 'marto', 'aprilo', 'majo', 'junio', 'julio', 'aŭgusto', 'septembro', 'oktobro', 'novembro', 'decembro'],
'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aŭg', 'sep', 'okt', 'nov', 'dec'],
'weekdays' => ['dimanĉo', 'lundo', 'mardo', 'merkredo', 'ĵaŭdo', 'vendredo', 'sabato'],
'weekdays_short' => ['dim', 'lun', 'mard', 'merk', 'ĵaŭ', 'ven', 'sab'],
'weekdays_min' => ['di', 'lu', 'ma', 'me', 'ĵa', 've', 'sa'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'list' => [', ', ' kaj '],
];
PK Z src/Carbon/Lang/el.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Alessandro Di Felice
* - François B
* - Tim Fish
* - Gabriel Monteagudo
* - JD Isaacks
* - yiannisdesp
* - Ilias Kasmeridis (iliaskasm)
*/
use Carbon\CarbonInterface;
return [
'year' => ':count χρόνος|:count χρόνια',
'a_year' => 'ένας χρόνος|:count χρόνια',
'y' => ':count χρ.',
'month' => ':count μήνας|:count μήνες',
'a_month' => 'ένας μήνας|:count μήνες',
'm' => ':count μήν.',
'week' => ':count εβδομάδα|:count εβδομάδες',
'a_week' => 'μια εβδομάδα|:count εβδομάδες',
'w' => ':count εβδ.',
'day' => ':count μέρα|:count μέρες',
'a_day' => 'μία μέρα|:count μέρες',
'd' => ':count μέρ.',
'hour' => ':count ώρα|:count ώρες',
'a_hour' => 'μία ώρα|:count ώρες',
'h' => ':count ώρα|:count ώρες',
'minute' => ':count λεπτό|:count λεπτά',
'a_minute' => 'ένα λεπτό|:count λεπτά',
'min' => ':count λεπ.',
'second' => ':count δευτερόλεπτο|:count δευτερόλεπτα',
'a_second' => 'λίγα δευτερόλεπτα|:count δευτερόλεπτα',
's' => ':count δευ.',
'ago' => 'πριν :time',
'from_now' => 'σε :time',
'after' => ':time μετά',
'before' => ':time πριν',
'diff_now' => 'τώρα',
'diff_today' => 'Σήμερα',
'diff_today_regexp' => 'Σήμερα(?:\\s+{})?',
'diff_yesterday' => 'χθες',
'diff_yesterday_regexp' => 'Χθες(?:\\s+{})?',
'diff_tomorrow' => 'αύριο',
'diff_tomorrow_regexp' => 'Αύριο(?:\\s+{})?',
'formats' => [
'LT' => 'h:mm A',
'LTS' => 'h:mm:ss A',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY h:mm A',
'LLLL' => 'dddd, D MMMM YYYY h:mm A',
],
'calendar' => [
'sameDay' => '[Σήμερα {}] LT',
'nextDay' => '[Αύριο {}] LT',
'nextWeek' => 'dddd [{}] LT',
'lastDay' => '[Χθες {}] LT',
'lastWeek' => function (CarbonInterface $current) {
switch ($current->dayOfWeek) {
case 6:
return '[το προηγούμενο] dddd [{}] LT';
default:
return '[την προηγούμενη] dddd [{}] LT';
}
},
'sameElse' => 'L',
],
'ordinal' => ':numberη',
'meridiem' => ['ΠΜ', 'ΜΜ', 'πμ', 'μμ'],
'months' => ['Ιανουαρίου', 'Φεβρουαρίου', 'Μαρτίου', 'Απριλίου', 'Μαΐου', 'Ιουνίου', 'Ιουλίου', 'Αυγούστου', 'Σεπτεμβρίου', 'Οκτωβρίου', 'Νοεμβρίου', 'Δεκεμβρίου'],
'months_standalone' => ['Ιανουάριος', 'Φεβρουάριος', 'Μάρτιος', 'Απρίλιος', 'Μάιος', 'Ιούνιος', 'Ιούλιος', 'Αύγουστος', 'Σεπτέμβριος', 'Οκτώβριος', 'Νοέμβριος', 'Δεκέμβριος'],
'months_regexp' => '/(D[oD]?[\s,]+MMMM|L{2,4}|l{2,4})/',
'months_short' => ['Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαϊ', 'Ιουν', 'Ιουλ', 'Αυγ', 'Σεπ', 'Οκτ', 'Νοε', 'Δεκ'],
'weekdays' => ['Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο'],
'weekdays_short' => ['Κυρ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'],
'weekdays_min' => ['Κυ', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' και '],
];
PK ZpG G src/Carbon/Lang/en_CK.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z) ) src/Carbon/Lang/ar_ER.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ar.php', [
]);
PK Zr( src/Carbon/Lang/sr_Latn_XK.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Symfony\Component\Translation\PluralizationRules;
// @codeCoverageIgnoreStart
if (class_exists(PluralizationRules::class)) {
PluralizationRules::set(static function ($number) {
return PluralizationRules::get($number, 'sr');
}, 'sr_Latn_XK');
}
// @codeCoverageIgnoreEnd
return array_replace_recursive(require __DIR__.'/sr_Latn_BA.php', [
'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'],
]);
PK ZpG G src/Carbon/Lang/en_TO.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z8O O src/Carbon/Lang/gez.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/gez_ER.php';
PK ZEA A src/Carbon/Lang/fr_DZ.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/fr.php', [
'first_day_of_week' => 6,
'weekend' => [5, 6],
'formats' => [
'LT' => 'h:mm a',
'LTS' => 'h:mm:ss a',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY h:mm a',
'LLLL' => 'dddd D MMMM YYYY h:mm a',
],
]);
PK Z%
src/Carbon/Lang/so.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Author:
* - Abdifatah Abdilahi(@abdifatahz)
*/
return [
'year' => ':count sanad|:count sanadood',
'a_year' => 'sanad|:count sanadood',
'y' => '{1}:countsn|{0}:countsns|]1,Inf[:countsn',
'month' => ':count bil|:count bilood',
'a_month' => 'bil|:count bilood',
'm' => ':countbil',
'week' => ':count isbuuc',
'a_week' => 'isbuuc|:count isbuuc',
'w' => ':countis',
'day' => ':count maalin|:count maalmood',
'a_day' => 'maalin|:count maalmood',
'd' => ':countml',
'hour' => ':count saac',
'a_hour' => 'saacad|:count saac',
'h' => ':countsc',
'minute' => ':count daqiiqo',
'a_minute' => 'daqiiqo|:count daqiiqo',
'min' => ':countdq',
'second' => ':count ilbidhiqsi',
'a_second' => 'xooga ilbidhiqsiyo|:count ilbidhiqsi',
's' => ':countil',
'ago' => ':time kahor',
'from_now' => ':time gudahood',
'after' => ':time kedib',
'before' => ':time kahor',
'diff_now' => 'hada',
'diff_today' => 'maanta',
'diff_today_regexp' => 'maanta(?:\s+markay\s+(?:tahay|ahayd))?',
'diff_yesterday' => 'shalayto',
'diff_yesterday_regexp' => 'shalayto(?:\s+markay\s+ahayd)?',
'diff_tomorrow' => 'beri',
'diff_tomorrow_regexp' => 'beri(?:\s+markay\s+tahay)?',
'diff_before_yesterday' => 'doraato',
'diff_after_tomorrow' => 'saadanbe',
'period_recurrences' => 'mar|:count jeer',
'period_interval' => ':interval kasta',
'period_start_date' => 'laga bilaabo :date',
'period_end_date' => 'ilaa :date',
'months' => ['Janaayo', 'Febraayo', 'Abriil', 'Maajo', 'Juun', 'Luuliyo', 'Agoosto', 'Sebteembar', 'Oktoobar', 'Nofeembar', 'Diseembar'],
'months_short' => ['Jan', 'Feb', 'Mar', 'Abr', 'Mjo', 'Jun', 'Lyo', 'Agt', 'Seb', 'Okt', 'Nof', 'Dis'],
'weekdays' => ['Axad', 'Isniin', 'Talaada', 'Arbaca', 'Khamiis', 'Jimce', 'Sabti'],
'weekdays_short' => ['Axd', 'Isn', 'Tal', 'Arb', 'Kha', 'Jim', 'Sbt'],
'weekdays_min' => ['Ax', 'Is', 'Ta', 'Ar', 'Kh', 'Ji', 'Sa'],
'list' => [', ', ' and '],
'first_day_of_week' => 6,
'day_of_first_week_of_year' => 1,
'formats' => [
'L' => 'DD/MM/YYYY',
],
'calendar' => [
'sameDay' => '[Maanta markay tahay] LT',
'nextDay' => '[Beri markay tahay] LT',
'nextWeek' => 'dddd [markay tahay] LT',
'lastDay' => '[Shalay markay ahayd] LT',
'lastWeek' => '[Hore] dddd [Markay ahayd] LT',
'sameElse' => 'L',
],
];
PK Z#z
src/Carbon/Lang/ga.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Thanks to André Silva : https://github.com/askpt
*/
return [
'year' => ':count bliain',
'a_year' => '{1}bliain|:count bliain',
'y' => ':countb',
'month' => ':count mí',
'a_month' => '{1}mí|:count mí',
'm' => ':countm',
'week' => ':count sheachtain',
'a_week' => '{1}sheachtain|:count sheachtain',
'w' => ':countsh',
'day' => ':count lá',
'a_day' => '{1}lá|:count lá',
'd' => ':countl',
'hour' => ':count uair an chloig',
'a_hour' => '{1}uair an chloig|:count uair an chloig',
'h' => ':countu',
'minute' => ':count nóiméad',
'a_minute' => '{1}nóiméad|:count nóiméad',
'min' => ':countn',
'second' => ':count soicind',
'a_second' => '{1}cúpla soicind|:count soicind',
's' => ':countso',
'ago' => ':time ó shin',
'from_now' => 'i :time',
'after' => ':time tar éis',
'before' => ':time roimh',
'diff_now' => 'anois',
'diff_today' => 'Inniu',
'diff_today_regexp' => 'Inniu(?:\\s+ag)?',
'diff_yesterday' => 'inné',
'diff_yesterday_regexp' => 'Inné(?:\\s+aig)?',
'diff_tomorrow' => 'amárach',
'diff_tomorrow_regexp' => 'Amárach(?:\\s+ag)?',
'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' => '[Inniu ag] LT',
'nextDay' => '[Amárach ag] LT',
'nextWeek' => 'dddd [ag] LT',
'lastDay' => '[Inné aig] LT',
'lastWeek' => 'dddd [seo caite] [ag] LT',
'sameElse' => 'L',
],
'months' => ['Eanáir', 'Feabhra', 'Márta', 'Aibreán', 'Bealtaine', 'Méitheamh', 'Iúil', 'Lúnasa', 'Meán Fómhair', 'Deaireadh Fómhair', 'Samhain', 'Nollaig'],
'months_short' => ['Eaná', 'Feab', 'Márt', 'Aibr', 'Beal', 'Méit', 'Iúil', 'Lúna', 'Meán', 'Deai', 'Samh', 'Noll'],
'weekdays' => ['Dé Domhnaigh', 'Dé Luain', 'Dé Máirt', 'Dé Céadaoin', 'Déardaoin', 'Dé hAoine', 'Dé Satharn'],
'weekdays_short' => ['Dom', 'Lua', 'Mái', 'Céa', 'Déa', 'hAo', 'Sat'],
'weekdays_min' => ['Do', 'Lu', 'Má', 'Ce', 'Dé', 'hA', 'Sa'],
'ordinal' => function ($number) {
return $number.($number === 1 ? 'd' : ($number % 10 === 2 ? 'na' : 'mh'));
},
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' agus '],
'meridiem' => ['r.n.', 'i.n.'],
];
PK ZpG G src/Carbon/Lang/en_GI.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z}) ) src/Carbon/Lang/ca_IT.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ca.php', [
]);
PK ZjtX X src/Carbon/Lang/twq.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ses.php', [
'meridiem' => ['Subbaahi', 'Zaarikay b'],
]);
PK ZO? ? src/Carbon/Lang/ht_HT.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['janvye', 'fevriye', 'mas', 'avril', 'me', 'jen', 'jiyè', 'out', 'septanm', 'oktòb', 'novanm', 'desanm'],
'months_short' => ['jan', 'fev', 'mas', 'avr', 'me', 'jen', 'jiy', 'out', 'sep', 'okt', 'nov', 'des'],
'weekdays' => ['dimanch', 'lendi', 'madi', 'mèkredi', 'jedi', 'vandredi', 'samdi'],
'weekdays_short' => ['dim', 'len', 'mad', 'mèk', 'jed', 'van', 'sam'],
'weekdays_min' => ['dim', 'len', 'mad', 'mèk', 'jed', 'van', 'sam'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'year' => ':count lane',
'y' => ':count lane',
'a_year' => ':count lane',
'month' => 'mwa :count',
'm' => 'mwa :count',
'a_month' => 'mwa :count',
'week' => 'semèn :count',
'w' => 'semèn :count',
'a_week' => 'semèn :count',
'day' => ':count jou',
'd' => ':count jou',
'a_day' => ':count jou',
'hour' => ':count lè',
'h' => ':count lè',
'a_hour' => ':count lè',
'minute' => ':count minit',
'min' => ':count minit',
'a_minute' => ':count minit',
'second' => ':count segonn',
's' => ':count segonn',
'a_second' => ':count segonn',
]);
PK Z- src/Carbon/Lang/ff_GN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/ff.php';
PK Z>+ src/Carbon/Lang/lt_LT.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/lt.php';
PK Z}*B src/Carbon/Lang/ha_NE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/ha.php';
PK ZpG G src/Carbon/Lang/en_SC.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK ZFI src/Carbon/Lang/en_GB.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - François B
* - Mayank Badola
* - JD Isaacks
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'from_now' => 'in :time',
'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',
],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
]);
PK Zh
src/Carbon/Lang/se.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - François B
* - Karamell
*/
return [
'year' => '{1}:count jahki|:count jagit',
'a_year' => '{1}okta jahki|:count jagit',
'y' => ':count j.',
'month' => '{1}:count mánnu|:count mánut',
'a_month' => '{1}okta mánnu|:count mánut',
'm' => ':count mán.',
'week' => '{1}:count vahkku|:count vahkku',
'a_week' => '{1}okta vahkku|:count vahkku',
'w' => ':count v.',
'day' => '{1}:count beaivi|:count beaivvit',
'a_day' => '{1}okta beaivi|:count beaivvit',
'd' => ':count b.',
'hour' => '{1}:count diimmu|:count diimmut',
'a_hour' => '{1}okta diimmu|:count diimmut',
'h' => ':count d.',
'minute' => '{1}:count minuhta|:count minuhtat',
'a_minute' => '{1}okta minuhta|:count minuhtat',
'min' => ':count min.',
'second' => '{1}:count sekunddat|:count sekunddat',
'a_second' => '{1}moadde sekunddat|:count sekunddat',
's' => ':count s.',
'ago' => 'maŋit :time',
'from_now' => ':time geažes',
'diff_yesterday' => 'ikte',
'diff_yesterday_regexp' => 'ikte(?:\\s+ti)?',
'diff_today' => 'otne',
'diff_today_regexp' => 'otne(?:\\s+ti)?',
'diff_tomorrow' => 'ihttin',
'diff_tomorrow_regexp' => 'ihttin(?:\\s+ti)?',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'MMMM D. [b.] YYYY',
'LLL' => 'MMMM D. [b.] YYYY [ti.] HH:mm',
'LLLL' => 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',
],
'calendar' => [
'sameDay' => '[otne ti] LT',
'nextDay' => '[ihttin ti] LT',
'nextWeek' => 'dddd [ti] LT',
'lastDay' => '[ikte ti] LT',
'lastWeek' => '[ovddit] dddd [ti] LT',
'sameElse' => 'L',
],
'ordinal' => ':number.',
'months' => ['ođđajagemánnu', 'guovvamánnu', 'njukčamánnu', 'cuoŋománnu', 'miessemánnu', 'geassemánnu', 'suoidnemánnu', 'borgemánnu', 'čakčamánnu', 'golggotmánnu', 'skábmamánnu', 'juovlamánnu'],
'months_short' => ['ođđj', 'guov', 'njuk', 'cuo', 'mies', 'geas', 'suoi', 'borg', 'čakč', 'golg', 'skáb', 'juov'],
'weekdays' => ['sotnabeaivi', 'vuossárga', 'maŋŋebárga', 'gaskavahkku', 'duorastat', 'bearjadat', 'lávvardat'],
'weekdays_short' => ['sotn', 'vuos', 'maŋ', 'gask', 'duor', 'bear', 'láv'],
'weekdays_min' => ['s', 'v', 'm', 'g', 'd', 'b', 'L'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' ja '],
'meridiem' => ['i.b.', 'e.b.'],
];
PK ZpG G src/Carbon/Lang/en_LC.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK ZEA A src/Carbon/Lang/fr_SY.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/fr.php', [
'first_day_of_week' => 6,
'weekend' => [5, 6],
'formats' => [
'LT' => 'h:mm a',
'LTS' => 'h:mm:ss a',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY h:mm a',
'LLLL' => 'dddd D MMMM YYYY h:mm a',
],
]);
PK Z src/Carbon/Lang/kln.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'meridiem' => ['krn', 'koosk'],
'weekdays' => ['Kotisap', 'Kotaai', 'Koaeng’', 'Kosomok', 'Koang’wan', 'Komuut', 'Kolo'],
'weekdays_short' => ['Kts', 'Kot', 'Koo', 'Kos', 'Koa', 'Kom', 'Kol'],
'weekdays_min' => ['Kts', 'Kot', 'Koo', 'Kos', 'Koa', 'Kom', 'Kol'],
'months' => ['Mulgul', 'Ng’atyaato', 'Kiptaamo', 'Iwootkuut', 'Mamuut', 'Paagi', 'Ng’eiyeet', 'Rooptui', 'Bureet', 'Epeeso', 'Kipsuunde ne taai', 'Kipsuunde nebo aeng’'],
'months_short' => ['Mul', 'Ngat', 'Taa', 'Iwo', 'Mam', 'Paa', 'Nge', 'Roo', 'Bur', 'Epe', 'Kpt', 'Kpa'],
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
'year' => ':count maghatiat', // less reliable
'y' => ':count maghatiat', // less reliable
'a_year' => ':count maghatiat', // less reliable
]);
PK Z, src/Carbon/Lang/km_KH.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/km.php';
PK Z8 src/Carbon/Lang/ne.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - nootanghimire
* - Josh Soref
* - Nj Subedi
* - JD Isaacks
*/
return [
'year' => 'एक बर्ष|:count बर्ष',
'y' => ':count वर्ष',
'month' => 'एक महिना|:count महिना',
'm' => ':count महिना',
'week' => ':count हप्ता',
'w' => ':count हप्ता',
'day' => 'एक दिन|:count दिन',
'd' => ':count दिन',
'hour' => 'एक घण्टा|:count घण्टा',
'h' => ':count घण्टा',
'minute' => 'एक मिनेट|:count मिनेट',
'min' => ':count मिनेट',
'second' => 'केही क्षण|:count सेकेण्ड',
's' => ':count सेकेण्ड',
'ago' => ':time अगाडि',
'from_now' => ':timeमा',
'after' => ':time पछि',
'before' => ':time अघि',
'diff_now' => 'अहिले',
'diff_today' => 'आज',
'diff_yesterday' => 'हिजो',
'diff_tomorrow' => 'भोलि',
'formats' => [
'LT' => 'Aको h:mm बजे',
'LTS' => 'Aको h:mm:ss बजे',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY, Aको h:mm बजे',
'LLLL' => 'dddd, D MMMM YYYY, Aको h:mm बजे',
],
'calendar' => [
'sameDay' => '[आज] LT',
'nextDay' => '[भोलि] LT',
'nextWeek' => '[आउँदो] dddd[,] LT',
'lastDay' => '[हिजो] LT',
'lastWeek' => '[गएको] dddd[,] LT',
'sameElse' => 'L',
],
'meridiem' => function ($hour) {
if ($hour < 3) {
return 'राति';
}
if ($hour < 12) {
return 'बिहान';
}
if ($hour < 16) {
return 'दिउँसो';
}
if ($hour < 20) {
return 'साँझ';
}
return 'राति';
},
'months' => ['जनवरी', 'फेब्रुवरी', 'मार्च', 'अप्रिल', 'मई', 'जुन', 'जुलाई', 'अगष्ट', 'सेप्टेम्बर', 'अक्टोबर', 'नोभेम्बर', 'डिसेम्बर'],
'months_short' => ['जन.', 'फेब्रु.', 'मार्च', 'अप्रि.', 'मई', 'जुन', 'जुलाई.', 'अग.', 'सेप्ट.', 'अक्टो.', 'नोभे.', 'डिसे.'],
'weekdays' => ['आइतबार', 'सोमबार', 'मङ्गलबार', 'बुधबार', 'बिहिबार', 'शुक्रबार', 'शनिबार'],
'weekdays_short' => ['आइत.', 'सोम.', 'मङ्गल.', 'बुध.', 'बिहि.', 'शुक्र.', 'शनि.'],
'weekdays_min' => ['आ.', 'सो.', 'मं.', 'बु.', 'बि.', 'शु.', 'श.'],
'list' => [', ', ' र '],
'first_day_of_week' => 0,
'day_of_first_week_of_year' => 1,
];
PK Z''x src/Carbon/Lang/fr_BF.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/fr.php';
PK Z4 src/Carbon/Lang/it_CH.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Propaganistas
*/
return array_replace_recursive(require __DIR__.'/it.php', [
'formats' => [
'L' => 'DD.MM.YYYY',
],
]);
PK Z`N N src/Carbon/Lang/li.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/li_NL.php';
PK Z5uO O src/Carbon/Lang/raj.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/raj_IN.php';
PK ZpG G src/Carbon/Lang/en_DG.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK ZNjG src/Carbon/Lang/ku.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Unicode, Inc.
*/
return [
'ago' => 'berî :time',
'from_now' => 'di :time de',
'after' => ':time piştî',
'before' => ':time berê',
'year' => ':count sal',
'year_ago' => ':count salê|:count salan',
'year_from_now' => 'salekê|:count salan',
'month' => ':count meh',
'week' => ':count hefte',
'day' => ':count roj',
'hour' => ':count saet',
'minute' => ':count deqîqe',
'second' => ':count saniye',
'months' => ['rêbendanê', 'reşemiyê', 'adarê', 'avrêlê', 'gulanê', 'pûşperê', 'tîrmehê', 'gelawêjê', 'rezberê', 'kewçêrê', 'sermawezê', 'berfanbarê'],
'months_standalone' => ['rêbendan', 'reşemî', 'adar', 'avrêl', 'gulan', 'pûşper', 'tîrmeh', 'gelawêj', 'rezber', 'kewçêr', 'sermawez', 'berfanbar'],
'months_short' => ['rêb', 'reş', 'ada', 'avr', 'gul', 'pûş', 'tîr', 'gel', 'rez', 'kew', 'ser', 'ber'],
'weekdays' => ['yekşem', 'duşem', 'sêşem', 'çarşem', 'pêncşem', 'în', 'şemî'],
'weekdays_short' => ['yş', 'dş', 'sş', 'çş', 'pş', 'în', 'ş'],
'weekdays_min' => ['Y', 'D', 'S', 'Ç', 'P', 'Î', 'Ş'],
'list' => [', ', ' û '],
'first_day_of_week' => 6,
'day_of_first_week_of_year' => 1,
];
PK ZF src/Carbon/Lang/os_RU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD.MM.YYYY',
],
'months' => ['январы', 'февралы', 'мартъийы', 'апрелы', 'майы', 'июны', 'июлы', 'августы', 'сентябры', 'октябры', 'ноябры', 'декабры'],
'months_short' => ['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'],
'weekdays' => ['Хуыцаубон', 'Къуырисæр', 'Дыццæг', 'Æртыццæг', 'Цыппæрæм', 'Майрæмбон', 'Сабат'],
'weekdays_short' => ['Хцб', 'Крс', 'Дцг', 'Æрт', 'Цпр', 'Мрб', 'Сбт'],
'weekdays_min' => ['Хцб', 'Крс', 'Дцг', 'Æрт', 'Цпр', 'Мрб', 'Сбт'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'minute' => ':count гыццыл', // less reliable
'min' => ':count гыццыл', // less reliable
'a_minute' => ':count гыццыл', // less reliable
'second' => ':count æндæр', // less reliable
's' => ':count æндæр', // less reliable
'a_second' => ':count æндæр', // less reliable
'year' => ':count аз',
'y' => ':count аз',
'a_year' => ':count аз',
'month' => ':count мӕй',
'm' => ':count мӕй',
'a_month' => ':count мӕй',
'week' => ':count къуыри',
'w' => ':count къуыри',
'a_week' => ':count къуыри',
'day' => ':count бон',
'd' => ':count бон',
'a_day' => ':count бон',
'hour' => ':count сахат',
'h' => ':count сахат',
'a_hour' => ':count сахат',
]);
PK Z$ $ src/Carbon/Lang/be.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Carbon\CarbonInterface;
use Symfony\Component\Translation\PluralizationRules;
// @codeCoverageIgnoreStart
if (class_exists(PluralizationRules::class)) {
PluralizationRules::set(static function ($number) {
return (($number % 10 == 1) && ($number % 100 != 11)) ? 0 : ((($number % 10 >= 2) && ($number % 10 <= 4) && (($number % 100 < 10) || ($number % 100 >= 20))) ? 1 : 2);
}, 'be');
}
// @codeCoverageIgnoreEnd
/*
* Authors:
* - Josh Soref
* - SobakaSlava
* - François B
* - Serhan Apaydın
* - JD Isaacks
* - AbadonnaAbbys
* - Siomkin Alexander
*/
return [
'year' => ':count год|:count гады|:count гадоў',
'a_year' => '{1}год|:count год|:count гады|:count гадоў',
'y' => ':count год|:count гады|:count гадоў',
'month' => ':count месяц|:count месяцы|:count месяцаў',
'a_month' => '{1}месяц|:count месяц|:count месяцы|:count месяцаў',
'm' => ':count месяц|:count месяцы|:count месяцаў',
'week' => ':count тыдзень|:count тыдні|:count тыдняў',
'a_week' => '{1}тыдзень|:count тыдзень|:count тыдні|:count тыдняў',
'w' => ':count тыдзень|:count тыдні|:count тыдняў',
'day' => ':count дзень|:count дні|:count дзён',
'a_day' => '{1}дзень|:count дзень|:count дні|:count дзён',
'd' => ':count дн',
'hour' => ':count гадзіну|:count гадзіны|:count гадзін',
'a_hour' => '{1}гадзіна|:count гадзіна|:count гадзіны|:count гадзін',
'h' => ':count гадзіна|:count гадзіны|:count гадзін',
'minute' => ':count хвіліна|:count хвіліны|:count хвілін',
'a_minute' => '{1}хвіліна|:count хвіліна|:count хвіліны|:count хвілін',
'min' => ':count хв',
'second' => ':count секунда|:count секунды|:count секунд',
'a_second' => '{1}некалькі секунд|:count секунда|:count секунды|:count секунд',
's' => ':count сек',
'hour_ago' => ':count гадзіну|:count гадзіны|:count гадзін',
'a_hour_ago' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',
'h_ago' => ':count гадзіну|:count гадзіны|:count гадзін',
'minute_ago' => ':count хвіліну|:count хвіліны|:count хвілін',
'a_minute_ago' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',
'min_ago' => ':count хвіліну|:count хвіліны|:count хвілін',
'second_ago' => ':count секунду|:count секунды|:count секунд',
'a_second_ago' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',
's_ago' => ':count секунду|:count секунды|:count секунд',
'hour_from_now' => ':count гадзіну|:count гадзіны|:count гадзін',
'a_hour_from_now' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',
'h_from_now' => ':count гадзіну|:count гадзіны|:count гадзін',
'minute_from_now' => ':count хвіліну|:count хвіліны|:count хвілін',
'a_minute_from_now' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',
'min_from_now' => ':count хвіліну|:count хвіліны|:count хвілін',
'second_from_now' => ':count секунду|:count секунды|:count секунд',
'a_second_from_now' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',
's_from_now' => ':count секунду|:count секунды|:count секунд',
'hour_after' => ':count гадзіну|:count гадзіны|:count гадзін',
'a_hour_after' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',
'h_after' => ':count гадзіну|:count гадзіны|:count гадзін',
'minute_after' => ':count хвіліну|:count хвіліны|:count хвілін',
'a_minute_after' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',
'min_after' => ':count хвіліну|:count хвіліны|:count хвілін',
'second_after' => ':count секунду|:count секунды|:count секунд',
'a_second_after' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',
's_after' => ':count секунду|:count секунды|:count секунд',
'hour_before' => ':count гадзіну|:count гадзіны|:count гадзін',
'a_hour_before' => '{1}гадзіну|:count гадзіну|:count гадзіны|:count гадзін',
'h_before' => ':count гадзіну|:count гадзіны|:count гадзін',
'minute_before' => ':count хвіліну|:count хвіліны|:count хвілін',
'a_minute_before' => '{1}хвіліну|:count хвіліну|:count хвіліны|:count хвілін',
'min_before' => ':count хвіліну|:count хвіліны|:count хвілін',
'second_before' => ':count секунду|:count секунды|:count секунд',
'a_second_before' => '{1}некалькі секунд|:count секунду|:count секунды|:count секунд',
's_before' => ':count секунду|:count секунды|:count секунд',
'ago' => ':time таму',
'from_now' => 'праз :time',
'after' => ':time пасля',
'before' => ':time да',
'diff_now' => 'цяпер',
'diff_today' => 'Сёння',
'diff_today_regexp' => 'Сёння(?:\\s+ў)?',
'diff_yesterday' => 'учора',
'diff_yesterday_regexp' => 'Учора(?:\\s+ў)?',
'diff_tomorrow' => 'заўтра',
'diff_tomorrow_regexp' => 'Заўтра(?:\\s+ў)?',
'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' => '[Сёння ў] LT',
'nextDay' => '[Заўтра ў] LT',
'nextWeek' => '[У] dddd [ў] LT',
'lastDay' => '[Учора ў] LT',
'lastWeek' => function (CarbonInterface $current) {
switch ($current->dayOfWeek) {
case 1:
case 2:
case 4:
return '[У мінулы] dddd [ў] LT';
default:
return '[У мінулую] dddd [ў] LT';
}
},
'sameElse' => 'L',
],
'ordinal' => function ($number, $period) {
switch ($period) {
case 'M':
case 'd':
case 'DDD':
case 'w':
case 'W':
return ($number % 10 === 2 || $number % 10 === 3) && ($number % 100 !== 12 && $number % 100 !== 13) ? $number.'-і' : $number.'-ы';
case 'D':
return $number.'-га';
default:
return $number;
}
},
'meridiem' => function ($hour) {
if ($hour < 4) {
return 'ночы';
}
if ($hour < 12) {
return 'раніцы';
}
if ($hour < 17) {
return 'дня';
}
return 'вечара';
},
'months' => ['студзеня', 'лютага', 'сакавіка', 'красавіка', 'траўня', 'чэрвеня', 'ліпеня', 'жніўня', 'верасня', 'кастрычніка', 'лістапада', 'снежня'],
'months_standalone' => ['студзень', 'люты', 'сакавік', 'красавік', 'травень', 'чэрвень', 'ліпень', 'жнівень', 'верасень', 'кастрычнік', 'лістапад', 'снежань'],
'months_short' => ['студ', 'лют', 'сак', 'крас', 'трав', 'чэрв', 'ліп', 'жнів', 'вер', 'каст', 'ліст', 'снеж'],
'months_regexp' => '/(DD?o?\.?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/',
'weekdays' => ['нядзелю', 'панядзелак', 'аўторак', 'сераду', 'чацвер', 'пятніцу', 'суботу'],
'weekdays_standalone' => ['нядзеля', 'панядзелак', 'аўторак', 'серада', 'чацвер', 'пятніца', 'субота'],
'weekdays_short' => ['нд', 'пн', 'ат', 'ср', 'чц', 'пт', 'сб'],
'weekdays_min' => ['нд', 'пн', 'ат', 'ср', 'чц', 'пт', 'сб'],
'weekdays_regexp' => '/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/',
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'list' => [', ', ' і '],
'months_short_standalone' => ['сту', 'лют', 'сак', 'кра', 'май', 'чэр', 'ліп', 'жні', 'вер', 'кас', 'ліс', 'сне'],
];
PK ZX src/Carbon/Lang/mag_IN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - bhashaghar@googlegroups.com
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'D/M/YY',
],
'months' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],
'months_short' => ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रेल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],
'weekdays' => ['एतवार', 'सोमार', 'मंगर', 'बुध', 'बिफे', 'सूक', 'सनिचर'],
'weekdays_short' => ['एतवार', 'सोमार', 'मंगर', 'बुध', 'बिफे', 'सूक', 'सनिचर'],
'weekdays_min' => ['एतवार', 'सोमार', 'मंगर', 'बुध', 'बिफे', 'सूक', 'सनिचर'],
'day_of_first_week_of_year' => 1,
'meridiem' => ['पूर्वाह्न', 'अपराह्न'],
]);
PK Z."N N src/Carbon/Lang/wa.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/wa_BE.php';
PK ZSWN
N
src/Carbon/Lang/fy.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - François B
* - Tim Fish
* - JD Isaacks
*/
return [
'year' => ':count jier|:count jierren',
'a_year' => 'ien jier|:count jierren',
'y' => ':count j',
'month' => ':count moanne|:count moannen',
'a_month' => 'ien moanne|:count moannen',
'm' => ':count moa.',
'week' => ':count wike|:count wiken',
'a_week' => 'in wike|:count wiken',
'a' => ':count w.',
'day' => ':count dei|:count dagen',
'a_day' => 'ien dei|:count dagen',
'd' => ':count d.',
'hour' => ':count oere|:count oeren',
'a_hour' => 'ien oere|:count oeren',
'h' => ':count o.',
'minute' => ':count minút|:count minuten',
'a_minute' => 'ien minút|:count minuten',
'min' => ':count min.',
'second' => ':count sekonde|:count sekonden',
'a_second' => 'in pear sekonden|:count sekonden',
's' => ':count s.',
'ago' => ':time lyn',
'from_now' => 'oer :time',
'diff_yesterday' => 'juster',
'diff_yesterday_regexp' => 'juster(?:\\s+om)?',
'diff_today' => 'hjoed',
'diff_today_regexp' => 'hjoed(?:\\s+om)?',
'diff_tomorrow' => 'moarn',
'diff_tomorrow_regexp' => 'moarn(?:\\s+om)?',
'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' => '[hjoed om] LT',
'nextDay' => '[moarn om] LT',
'nextWeek' => 'dddd [om] LT',
'lastDay' => '[juster om] LT',
'lastWeek' => '[ôfrûne] dddd [om] LT',
'sameElse' => 'L',
],
'ordinal' => function ($number) {
return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de');
},
'months' => ['jannewaris', 'febrewaris', 'maart', 'april', 'maaie', 'juny', 'july', 'augustus', 'septimber', 'oktober', 'novimber', 'desimber'],
'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],
'mmm_suffix' => '.',
'weekdays' => ['snein', 'moandei', 'tiisdei', 'woansdei', 'tongersdei', 'freed', 'sneon'],
'weekdays_short' => ['si.', 'mo.', 'ti.', 'wo.', 'to.', 'fr.', 'so.'],
'weekdays_min' => ['Si', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'So'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' en '],
];
PK Z{9t src/Carbon/Lang/hif_FJ.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'dddd DD MMM YYYY',
],
'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
'weekdays' => ['Ravivar', 'Somvar', 'Mangalvar', 'Budhvar', 'Guruvar', 'Shukravar', 'Shanivar'],
'weekdays_short' => ['Ravi', 'Som', 'Mangal', 'Budh', 'Guru', 'Shukra', 'Shani'],
'weekdays_min' => ['Ravi', 'Som', 'Mangal', 'Budh', 'Guru', 'Shukra', 'Shani'],
'meridiem' => ['Purvahan', 'Aparaahna'],
'hour' => ':count minit', // less reliable
'h' => ':count minit', // less reliable
'a_hour' => ':count minit', // less reliable
'year' => ':count saal',
'y' => ':count saal',
'a_year' => ':count saal',
'month' => ':count Mahina',
'm' => ':count Mahina',
'a_month' => ':count Mahina',
'week' => ':count Hafta',
'w' => ':count Hafta',
'a_week' => ':count Hafta',
'day' => ':count Din',
'd' => ':count Din',
'a_day' => ':count Din',
'minute' => ':count Minit',
'min' => ':count Minit',
'a_minute' => ':count Minit',
'second' => ':count Second',
's' => ':count Second',
'a_second' => ':count Second',
]);
PK Zb src/Carbon/Lang/cs_CZ.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/cs.php';
PK Z ) ) src/Carbon/Lang/kkj.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
]);
PK ZHv| src/Carbon/Lang/bho_IN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - bhashaghar@googlegroups.com
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'D/M/YY',
],
'months' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर"'],
'months_short' => ['जनवरी', 'फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर"'],
'weekdays' => ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'],
'weekdays_short' => ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
'weekdays_min' => ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
'day_of_first_week_of_year' => 1,
'meridiem' => ['पूर्वाह्न', 'अपराह्न'],
'hour' => ':count मौसम',
'h' => ':count मौसम',
'a_hour' => ':count मौसम',
'minute' => ':count कला',
'min' => ':count कला',
'a_minute' => ':count कला',
'second' => ':count सोमार',
's' => ':count सोमार',
'a_second' => ':count सोमार',
'year' => ':count साल',
'y' => ':count साल',
'a_year' => ':count साल',
'month' => ':count महिना',
'm' => ':count महिना',
'a_month' => ':count महिना',
'week' => ':count सप्ताह',
'w' => ':count सप्ताह',
'a_week' => ':count सप्ताह',
'day' => ':count दिन',
'd' => ':count दिन',
'a_day' => ':count दिन',
]);
PK Z" src/Carbon/Lang/kam.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'meridiem' => ['Ĩyakwakya', 'Ĩyawĩoo'],
'weekdays' => ['Wa kyumwa', 'Wa kwambĩlĩlya', 'Wa kelĩ', 'Wa katatũ', 'Wa kana', 'Wa katano', 'Wa thanthatũ'],
'weekdays_short' => ['Wky', 'Wkw', 'Wkl', 'Wtũ', 'Wkn', 'Wtn', 'Wth'],
'weekdays_min' => ['Wky', 'Wkw', 'Wkl', 'Wtũ', 'Wkn', 'Wtn', 'Wth'],
'months' => ['Mwai wa mbee', 'Mwai wa kelĩ', 'Mwai wa katatũ', 'Mwai wa kana', 'Mwai wa katano', 'Mwai wa thanthatũ', 'Mwai wa muonza', 'Mwai wa nyaanya', 'Mwai wa kenda', 'Mwai wa ĩkumi', 'Mwai wa ĩkumi na ĩmwe', 'Mwai wa ĩkumi na ilĩ'],
'months_short' => ['Mbe', 'Kel', 'Ktũ', 'Kan', 'Ktn', 'Tha', 'Moo', 'Nya', 'Knd', 'Ĩku', 'Ĩkm', 'Ĩkl'],
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
// Too unreliable
/*
'year' => ':count mbua', // less reliable
'y' => ':count mbua', // less reliable
'a_year' => ':count mbua', // less reliable
'month' => ':count ndakitali', // less reliable
'm' => ':count ndakitali', // less reliable
'a_month' => ':count ndakitali', // less reliable
'day' => ':count wia', // less reliable
'd' => ':count wia', // less reliable
'a_day' => ':count wia', // less reliable
'hour' => ':count orasan', // less reliable
'h' => ':count orasan', // less reliable
'a_hour' => ':count orasan', // less reliable
'minute' => ':count orasan', // less reliable
'min' => ':count orasan', // less reliable
'a_minute' => ':count orasan', // less reliable
*/
]);
PK Z=
src/Carbon/Lang/cy.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - François B
* - JD Isaacks
* - Daniel Monaghan
*/
return [
'year' => '{1}blwyddyn|]1,Inf[:count flynedd',
'y' => ':countbl',
'month' => '{1}mis|]1,Inf[:count mis',
'm' => ':countmi',
'week' => ':count wythnos',
'w' => ':countw',
'day' => '{1}diwrnod|]1,Inf[:count diwrnod',
'd' => ':countd',
'hour' => '{1}awr|]1,Inf[:count awr',
'h' => ':counth',
'minute' => '{1}munud|]1,Inf[:count munud',
'min' => ':countm',
'second' => '{1}ychydig eiliadau|]1,Inf[:count eiliad',
's' => ':counts',
'ago' => ':time yn ôl',
'from_now' => 'mewn :time',
'after' => ':time ar ôl',
'before' => ':time o\'r blaen',
'diff_now' => 'nawr',
'diff_today' => 'Heddiw',
'diff_today_regexp' => 'Heddiw(?:\\s+am)?',
'diff_yesterday' => 'ddoe',
'diff_yesterday_regexp' => 'Ddoe(?:\\s+am)?',
'diff_tomorrow' => 'yfory',
'diff_tomorrow_regexp' => 'Yfory(?:\\s+am)?',
'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' => '[Heddiw am] LT',
'nextDay' => '[Yfory am] LT',
'nextWeek' => 'dddd [am] LT',
'lastDay' => '[Ddoe am] LT',
'lastWeek' => 'dddd [diwethaf am] LT',
'sameElse' => 'L',
],
'ordinal' => function ($number) {
return $number.(
$number > 20
? (\in_array((int) $number, [40, 50, 60, 80, 100], true) ? 'fed' : 'ain')
: ([
'', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed
'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed', // 11eg to 20fed
])[$number] ?? ''
);
},
'months' => ['Ionawr', 'Chwefror', 'Mawrth', 'Ebrill', 'Mai', 'Mehefin', 'Gorffennaf', 'Awst', 'Medi', 'Hydref', 'Tachwedd', 'Rhagfyr'],
'months_short' => ['Ion', 'Chwe', 'Maw', 'Ebr', 'Mai', 'Meh', 'Gor', 'Aws', 'Med', 'Hyd', 'Tach', 'Rhag'],
'weekdays' => ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'],
'weekdays_short' => ['Sul', 'Llun', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'],
'weekdays_min' => ['Su', 'Ll', 'Ma', 'Me', 'Ia', 'Gw', 'Sa'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' a '],
'meridiem' => ['yb', 'yh'],
];
PK ZT.C C src/Carbon/Lang/rwk.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'meridiem' => ['utuko', 'kyiukonyi'],
'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'],
'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],
'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'],
'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
'first_day_of_week' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
]);
PK Zd src/Carbon/Lang/es_PY.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - RAP bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/es.php', [
'first_day_of_week' => 0,
'day_of_first_week_of_year' => 1,
]);
PK ZKNn n src/Carbon/Lang/no.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Daniel S. Billing
* - Paul
* - Jimmie Johansson
* - Jens Herlevsen
*/
return array_replace_recursive(require __DIR__.'/nb.php', [
'formats' => [
'LLL' => 'D. MMMM YYYY HH:mm',
'LLLL' => 'dddd, D. MMMM YYYY [kl.] HH:mm',
],
'calendar' => [
'nextWeek' => 'på dddd [kl.] LT',
'lastWeek' => '[i] dddd[s kl.] LT',
],
]);
PK Zw
src/Carbon/Lang/fr_VU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/fr.php', [
'formats' => [
'LT' => 'h:mm a',
'LTS' => 'h:mm:ss a',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY h:mm a',
'LLLL' => 'dddd D MMMM YYYY h:mm a',
],
]);
PK Z?Ej src/Carbon/Lang/en_BS.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/en.php';
PK Z% src/Carbon/Lang/rof.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'meridiem' => ['kang’ama', 'kingoto'],
'weekdays' => ['Ijumapili', 'Ijumatatu', 'Ijumanne', 'Ijumatano', 'Alhamisi', 'Ijumaa', 'Ijumamosi'],
'weekdays_short' => ['Ijp', 'Ijt', 'Ijn', 'Ijtn', 'Alh', 'Iju', 'Ijm'],
'weekdays_min' => ['Ijp', 'Ijt', 'Ijn', 'Ijtn', 'Alh', 'Iju', 'Ijm'],
'months' => ['Mweri wa kwanza', 'Mweri wa kaili', 'Mweri wa katatu', 'Mweri wa kaana', 'Mweri wa tanu', 'Mweri wa sita', 'Mweri wa saba', 'Mweri wa nane', 'Mweri wa tisa', 'Mweri wa ikumi', 'Mweri wa ikumi na moja', 'Mweri wa ikumi na mbili'],
'months_short' => ['M1', 'M2', 'M3', 'M4', 'M5', 'M6', 'M7', 'M8', 'M9', 'M10', 'M11', 'M12'],
'first_day_of_week' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
]);
PK Zx0N N src/Carbon/Lang/ts.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/ts_ZA.php';
PK Z/ src/Carbon/Lang/ff.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM, YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd D MMMM YYYY HH:mm',
],
'months' => ['siilo', 'colte', 'mbooy', 'seeɗto', 'duujal', 'korse', 'morso', 'juko', 'siilto', 'yarkomaa', 'jolal', 'bowte'],
'months_short' => ['sii', 'col', 'mbo', 'see', 'duu', 'kor', 'mor', 'juk', 'slt', 'yar', 'jol', 'bow'],
'weekdays' => ['dewo', 'aaɓnde', 'mawbaare', 'njeslaare', 'naasaande', 'mawnde', 'hoore-biir'],
'weekdays_short' => ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],
'weekdays_min' => ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'meridiem' => ['subaka', 'kikiiɗe'],
'year' => ':count baret', // less reliable
'y' => ':count baret', // less reliable
'a_year' => ':count baret', // less reliable
'month' => ':count lewru', // less reliable
'm' => ':count lewru', // less reliable
'a_month' => ':count lewru', // less reliable
'week' => ':count naange', // less reliable
'w' => ':count naange', // less reliable
'a_week' => ':count naange', // less reliable
'day' => ':count dian', // less reliable
'd' => ':count dian', // less reliable
'a_day' => ':count dian', // less reliable
'hour' => ':count montor', // less reliable
'h' => ':count montor', // less reliable
'a_hour' => ':count montor', // less reliable
'minute' => ':count tokossuoum', // less reliable
'min' => ':count tokossuoum', // less reliable
'a_minute' => ':count tokossuoum', // less reliable
'second' => ':count tenen', // less reliable
's' => ':count tenen', // less reliable
'a_second' => ':count tenen', // less reliable
]);
PK Zv src/Carbon/Lang/bs_BA.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/bs.php';
PK ZVBO O src/Carbon/Lang/szl.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/szl_PL.php';
PK ZڑQ Q src/Carbon/Lang/so_SO.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Ge'ez Frontier Foundation locales@geez.org
*/
return require __DIR__.'/so.php';
PK Z'JN N src/Carbon/Lang/iu.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/iu_CA.php';
PK ZA$ src/Carbon/Lang/ja.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Takuya Sawada
* - Atsushi Tanaka
* - François B
* - Jason Katz-Brown
* - Serhan Apaydın
* - XueWei
* - JD Isaacks
* - toyama satoshi
* - atakigawa
*/
use Carbon\CarbonInterface;
return [
'year' => ':count年',
'y' => ':count年',
'month' => ':countヶ月',
'm' => ':countヶ月',
'week' => ':count週間',
'w' => ':count週間',
'day' => ':count日',
'd' => ':count日',
'hour' => ':count時間',
'h' => ':count時間',
'minute' => ':count分',
'min' => ':count分',
'second' => ':count秒',
'a_second' => '{1}数秒|]1,Inf[:count秒',
's' => ':count秒',
'ago' => ':time前',
'from_now' => ':time後',
'after' => ':time後',
'before' => ':time前',
'diff_now' => '今',
'diff_today' => '今日',
'diff_yesterday' => '昨日',
'diff_tomorrow' => '明日',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY/MM/DD',
'LL' => 'YYYY年M月D日',
'LLL' => 'YYYY年M月D日 HH:mm',
'LLLL' => 'YYYY年M月D日 dddd HH:mm',
],
'calendar' => [
'sameDay' => '[今日] LT',
'nextDay' => '[明日] LT',
'nextWeek' => function (CarbonInterface $current, CarbonInterface $other) {
if ($other->week !== $current->week) {
return '[来週]dddd LT';
}
return 'dddd LT';
},
'lastDay' => '[昨日] LT',
'lastWeek' => function (CarbonInterface $current, CarbonInterface $other) {
if ($other->week !== $current->week) {
return '[先週]dddd LT';
}
return 'dddd LT';
},
'sameElse' => 'L',
],
'ordinal' => function ($number, $period) {
switch ($period) {
case 'd':
case 'D':
case 'DDD':
return $number.'日';
default:
return $number;
}
},
'meridiem' => ['午前', '午後'],
'months' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
'weekdays' => ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'],
'weekdays_short' => ['日', '月', '火', '水', '木', '金', '土'],
'weekdays_min' => ['日', '月', '火', '水', '木', '金', '土'],
'list' => '、',
'alt_numbers' => ['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二', '十三', '十四', '十五', '十六', '十七', '十八', '十九', '二十', '二十一', '二十二', '二十三', '二十四', '二十五', '二十六', '二十七', '二十八', '二十九', '三十', '三十一', '三十二', '三十三', '三十四', '三十五', '三十六', '三十七', '三十八', '三十九', '四十', '四十一', '四十二', '四十三', '四十四', '四十五', '四十六', '四十七', '四十八', '四十九', '五十', '五十一', '五十二', '五十三', '五十四', '五十五', '五十六', '五十七', '五十八', '五十九', '六十', '六十一', '六十二', '六十三', '六十四', '六十五', '六十六', '六十七', '六十八', '六十九', '七十', '七十一', '七十二', '七十三', '七十四', '七十五', '七十六', '七十七', '七十八', '七十九', '八十', '八十一', '八十二', '八十三', '八十四', '八十五', '八十六', '八十七', '八十八', '八十九', '九十', '九十一', '九十二', '九十三', '九十四', '九十五', '九十六', '九十七', '九十八', '九十九'],
'alt_numbers_pow' => [
10000 => '万',
1000 => '千',
100 => '百',
],
];
PK Z
src/Carbon/Lang/da_GL.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/da.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
'LL' => 'D. MMM YYYY',
'LLL' => 'D. MMMM YYYY HH.mm',
'LLLL' => 'dddd [den] D. MMMM YYYY HH.mm',
],
]);
PK ZpG G src/Carbon/Lang/en_SE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK ZIt
src/Carbon/Lang/cv.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Josh Soref
* - François B
* - JD Isaacks
*/
return [
'year' => ':count ҫул',
'a_year' => '{1}пӗр ҫул|:count ҫул',
'month' => ':count уйӑх',
'a_month' => '{1}пӗр уйӑх|:count уйӑх',
'week' => ':count эрне',
'a_week' => '{1}пӗр эрне|:count эрне',
'day' => ':count кун',
'a_day' => '{1}пӗр кун|:count кун',
'hour' => ':count сехет',
'a_hour' => '{1}пӗр сехет|:count сехет',
'minute' => ':count минут',
'a_minute' => '{1}пӗр минут|:count минут',
'second' => ':count ҫеккунт',
'a_second' => '{1}пӗр-ик ҫеккунт|:count ҫеккунт',
'ago' => ':time каялла',
'from_now' => function ($time) {
return $time.(preg_match('/сехет$/u', $time) ? 'рен' : (preg_match('/ҫул/u', $time) ? 'тан' : 'ран'));
},
'diff_yesterday' => 'Ӗнер',
'diff_today' => 'Паян',
'diff_tomorrow' => 'Ыран',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD-MM-YYYY',
'LL' => 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
'LLL' => 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
'LLLL' => 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
],
'calendar' => [
'sameDay' => '[Паян] LT [сехетре]',
'nextDay' => '[Ыран] LT [сехетре]',
'nextWeek' => '[Ҫитес] dddd LT [сехетре]',
'lastDay' => '[Ӗнер] LT [сехетре]',
'lastWeek' => '[Иртнӗ] dddd LT [сехетре]',
'sameElse' => 'L',
],
'ordinal' => ':number-мӗш',
'months' => ['кӑрлач', 'нарӑс', 'пуш', 'ака', 'май', 'ҫӗртме', 'утӑ', 'ҫурла', 'авӑн', 'юпа', 'чӳк', 'раштав'],
'months_short' => ['кӑр', 'нар', 'пуш', 'ака', 'май', 'ҫӗр', 'утӑ', 'ҫур', 'авн', 'юпа', 'чӳк', 'раш'],
'weekdays' => ['вырсарникун', 'тунтикун', 'ытларикун', 'юнкун', 'кӗҫнерникун', 'эрнекун', 'шӑматкун'],
'weekdays_short' => ['выр', 'тун', 'ытл', 'юн', 'кӗҫ', 'эрн', 'шӑм'],
'weekdays_min' => ['вр', 'тн', 'ыт', 'юн', 'кҫ', 'эр', 'шм'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'list' => [', ', ' тата '],
];
PK Z?Ej src/Carbon/Lang/en_UM.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/en.php';
PK Z^َ src/Carbon/Lang/ln_CG.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ln.php', [
'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa míbalé', 'mokɔlɔ mwa mísáto', 'mokɔlɔ ya mínéi', 'mokɔlɔ ya mítáno', 'mpɔ́sɔ'],
'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],
'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'],
'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'],
]);
PK Z} src/Carbon/Lang/yo_NG.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/yo.php';
PK Z?Ej src/Carbon/Lang/en_ZW.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/en.php';
PK Z) ) src/Carbon/Lang/ar_MR.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ar.php', [
]);
PK Zi?# src/Carbon/Lang/en_AG.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Free Software Foundation, Inc. bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YY',
],
'day_of_first_week_of_year' => 1,
]);
PK Zը src/Carbon/Lang/fy_DE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandriva.com
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD.MM.YYYY',
],
'months' => ['Jaunuwoa', 'Februwoa', 'Moaz', 'Aprell', 'Mai', 'Juni', 'Juli', 'August', 'Septamba', 'Oktoba', 'Nowamba', 'Dezamba'],
'months_short' => ['Jan', 'Feb', 'Moz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Now', 'Dez'],
'weekdays' => ['Sinndag', 'Mondag', 'Dingsdag', 'Meddwäakj', 'Donnadag', 'Friedag', 'Sinnowend'],
'weekdays_short' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'],
'weekdays_min' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
]);
PK Z㼦t. . src/Carbon/Lang/lt.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Philippe Vaucher
* - Tsutomu Kuroda
* - tjku
* - valdas406
* - Justas Palumickas
* - Max Melentiev
* - Andrius Janauskas
* - Juanito Fatas
* - Akira Matsuda
* - Christopher Dell
* - Enrique Vidal
* - Simone Carletti
* - Aaron Patterson
* - Nicolás Hock Isaza
* - Laurynas Butkus
* - Sven Fuchs
* - Dominykas Tijūnaitis
* - Justinas Bolys
* - Ričardas
* - Kirill Chalkin
* - Rolandas
* - Justinas (Gamesh)
*/
return [
'year' => ':count metai|:count metai|:count metų',
'y' => ':count m.',
'month' => ':count mėnuo|:count mėnesiai|:count mėnesį',
'm' => ':count mėn.',
'week' => ':count savaitė|:count savaitės|:count savaitę',
'w' => ':count sav.',
'day' => ':count diena|:count dienos|:count dienų',
'd' => ':count d.',
'hour' => ':count valanda|:count valandos|:count valandų',
'h' => ':count val.',
'minute' => ':count minutė|:count minutės|:count minutę',
'min' => ':count min.',
'second' => ':count sekundė|:count sekundės|:count sekundžių',
's' => ':count sek.',
'year_ago' => ':count metus|:count metus|:count metų',
'month_ago' => ':count mėnesį|:count mėnesius|:count mėnesių',
'week_ago' => ':count savaitę|:count savaites|:count savaičių',
'day_ago' => ':count dieną|:count dienas|:count dienų',
'hour_ago' => ':count valandą|:count valandas|:count valandų',
'minute_ago' => ':count minutę|:count minutes|:count minučių',
'second_ago' => ':count sekundę|:count sekundes|:count sekundžių',
'year_from_now' => ':count metų',
'month_from_now' => ':count mėnesio|:count mėnesių|:count mėnesių',
'week_from_now' => ':count savaitės|:count savaičių|:count savaičių',
'day_from_now' => ':count dienos|:count dienų|:count dienų',
'hour_from_now' => ':count valandos|:count valandų|:count valandų',
'minute_from_now' => ':count minutės|:count minučių|:count minučių',
'second_from_now' => ':count sekundės|:count sekundžių|:count sekundžių',
'year_after' => ':count metų',
'month_after' => ':count mėnesio|:count mėnesių|:count mėnesių',
'week_after' => ':count savaitės|:count savaičių|:count savaičių',
'day_after' => ':count dienos|:count dienų|:count dienų',
'hour_after' => ':count valandos|:count valandų|:count valandų',
'minute_after' => ':count minutės|:count minučių|:count minučių',
'second_after' => ':count sekundės|:count sekundžių|:count sekundžių',
'ago' => 'prieš :time',
'from_now' => ':time nuo dabar',
'after' => 'po :time',
'before' => 'už :time',
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'diff_now' => 'ką tik',
'diff_today' => 'Šiandien',
'diff_yesterday' => 'vakar',
'diff_yesterday_regexp' => 'Vakar',
'diff_tomorrow' => 'rytoj',
'diff_tomorrow_regexp' => 'Rytoj',
'diff_before_yesterday' => 'užvakar',
'diff_after_tomorrow' => 'poryt',
'period_recurrences' => 'kartą|:count kartų',
'period_interval' => 'kiekvieną :interval',
'period_start_date' => 'nuo :date',
'period_end_date' => 'iki :date',
'months' => ['sausio', 'vasario', 'kovo', 'balandžio', 'gegužės', 'birželio', 'liepos', 'rugpjūčio', 'rugsėjo', 'spalio', 'lapkričio', 'gruodžio'],
'months_standalone' => ['sausis', 'vasaris', 'kovas', 'balandis', 'gegužė', 'birželis', 'liepa', 'rugpjūtis', 'rugsėjis', 'spalis', 'lapkritis', 'gruodis'],
'months_regexp' => '/(L{2,4}|D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?)/',
'months_short' => ['sau', 'vas', 'kov', 'bal', 'geg', 'bir', 'lie', 'rgp', 'rgs', 'spa', 'lap', 'gru'],
'weekdays' => ['sekmadienį', 'pirmadienį', 'antradienį', 'trečiadienį', 'ketvirtadienį', 'penktadienį', 'šeštadienį'],
'weekdays_standalone' => ['sekmadienis', 'pirmadienis', 'antradienis', 'trečiadienis', 'ketvirtadienis', 'penktadienis', 'šeštadienis'],
'weekdays_short' => ['sek', 'pir', 'ant', 'tre', 'ket', 'pen', 'šeš'],
'weekdays_min' => ['se', 'pi', 'an', 'tr', 'ke', 'pe', 'še'],
'list' => [', ', ' ir '],
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY-MM-DD',
'LL' => 'MMMM DD, YYYY',
'LLL' => 'DD MMM HH:mm',
'LLLL' => 'MMMM DD, YYYY HH:mm',
],
'calendar' => [
'sameDay' => '[Šiandien] LT',
'nextDay' => '[Rytoj] LT',
'nextWeek' => 'dddd LT',
'lastDay' => '[Vakar] LT',
'lastWeek' => '[Paskutinį] dddd LT',
'sameElse' => 'L',
],
'ordinal' => function ($number) {
switch ($number) {
case 0:
return '0-is';
case 3:
return '3-ias';
default:
return "$number-as";
}
},
'meridiem' => ['priešpiet', 'popiet'],
];
PK Z;i src/Carbon/Lang/yi_US.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - http://www.uyip.org/ Pablo Saratxaga pablo@mandrakesoft.com
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YY',
],
'months' => ['יאַנואַר', 'פֿעברואַר', 'מערץ', 'אַפּריל', 'מיי', 'יוני', 'יולי', 'אויגוסט', 'סעפּטעמבער', 'אקטאבער', 'נאוועמבער', 'דעצעמבער'],
'months_short' => ['יאַנ', 'פֿעב', 'מאַר', 'אַפּר', 'מײַ ', 'יונ', 'יול', 'אױג', 'סעפּ', 'אָקט', 'נאָװ', 'דעצ'],
'weekdays' => ['זונטיק', 'מאָנטיק', 'דינסטיק', 'מיטװאָך', 'דאָנערשטיק', 'פֿרײַטיק', 'שבת'],
'weekdays_short' => ['זונ\'', 'מאָנ\'', 'דינ\'', 'מיט\'', 'דאָנ\'', 'פֿרײַ\'', 'שבת'],
'weekdays_min' => ['זונ\'', 'מאָנ\'', 'דינ\'', 'מיט\'', 'דאָנ\'', 'פֿרײַ\'', 'שבת'],
'day_of_first_week_of_year' => 1,
'year' => ':count יאר',
'y' => ':count יאר',
'a_year' => ':count יאר',
'month' => ':count חודש',
'm' => ':count חודש',
'a_month' => ':count חודש',
'week' => ':count וואָך',
'w' => ':count וואָך',
'a_week' => ':count וואָך',
'day' => ':count טאָג',
'd' => ':count טאָג',
'a_day' => ':count טאָג',
'hour' => ':count שעה',
'h' => ':count שעה',
'a_hour' => ':count שעה',
'minute' => ':count מינוט',
'min' => ':count מינוט',
'a_minute' => ':count מינוט',
'second' => ':count סעקונדע',
's' => ':count סעקונדע',
'a_second' => ':count סעקונדע',
]);
PK ZpG G src/Carbon/Lang/en_SX.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z?b
src/Carbon/Lang/da.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Rune Mønnike
* - François B
* - codenhagen
* - JD Isaacks
* - Jens Herlevsen
* - Ulrik McArdle (mcardle)
* - Frederik Sauer (FrittenKeeZ)
* - Janus Bahs Jacquet (kokoshneta)
*/
return [
'year' => ':count år|:count år',
'a_year' => 'et år|:count år',
'y' => ':count år|:count år',
'month' => ':count måned|:count måneder',
'a_month' => 'en måned|:count måneder',
'm' => ':count mdr.',
'week' => ':count uge|:count uger',
'a_week' => 'en uge|:count uger',
'w' => ':count u.',
'day' => ':count dag|:count dage',
'a_day' => ':count dag|:count dage',
'd' => ':count d.',
'hour' => ':count time|:count timer',
'a_hour' => 'en time|:count timer',
'h' => ':count t.',
'minute' => ':count minut|:count minutter',
'a_minute' => 'et minut|:count minutter',
'min' => ':count min.',
'second' => ':count sekund|:count sekunder',
'a_second' => 'få sekunder|:count sekunder',
's' => ':count s.',
'ago' => 'for :time siden',
'from_now' => 'om :time',
'after' => ':time efter',
'before' => ':time før',
'diff_now' => 'nu',
'diff_today' => 'i dag',
'diff_today_regexp' => 'i dag(?:\\s+kl.)?',
'diff_yesterday' => 'i går',
'diff_yesterday_regexp' => 'i går(?:\\s+kl.)?',
'diff_tomorrow' => 'i morgen',
'diff_tomorrow_regexp' => 'i morgen(?:\\s+kl.)?',
'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.] D. MMMM YYYY [kl.] HH:mm',
],
'calendar' => [
'sameDay' => '[i dag kl.] LT',
'nextDay' => '[i morgen kl.] LT',
'nextWeek' => 'på dddd [kl.] LT',
'lastDay' => '[i går kl.] LT',
'lastWeek' => '[i] dddd[s kl.] LT',
'sameElse' => 'L',
],
'ordinal' => ':number.',
'months' => ['januar', 'februar', 'marts', 'april', 'maj', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'december'],
'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj.', 'jun.', 'jul.', 'aug.', 'sep.', 'okt.', 'nov.', 'dec.'],
'weekdays' => ['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag'],
'weekdays_short' => ['søn.', 'man.', 'tir.', 'ons.', 'tor.', 'fre.', 'lør.'],
'weekdays_min' => ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' og '],
];
PK Z src/Carbon/Lang/bem_ZM.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - ANLoc Martin Benjamin locales@africanlocalization.net
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'MM/DD/YYYY',
],
'months' => ['Januari', 'Februari', 'Machi', 'Epreo', 'Mei', 'Juni', 'Julai', 'Ogasti', 'Septemba', 'Oktoba', 'Novemba', 'Disemba'],
'months_short' => ['Jan', 'Feb', 'Mac', 'Epr', 'Mei', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Dis'],
'weekdays' => ['Pa Mulungu', 'Palichimo', 'Palichibuli', 'Palichitatu', 'Palichine', 'Palichisano', 'Pachibelushi'],
'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
'weekdays_min' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'meridiem' => ['uluchelo', 'akasuba'],
'year' => 'myaka :count',
'y' => 'myaka :count',
'a_year' => 'myaka :count',
'month' => 'myeshi :count',
'm' => 'myeshi :count',
'a_month' => 'myeshi :count',
'week' => 'umulungu :count',
'w' => 'umulungu :count',
'a_week' => 'umulungu :count',
'day' => 'inshiku :count',
'd' => 'inshiku :count',
'a_day' => 'inshiku :count',
'hour' => 'awala :count',
'h' => 'awala :count',
'a_hour' => 'awala :count',
'minute' => 'miniti :count',
'min' => 'miniti :count',
'a_minute' => 'miniti :count',
'second' => 'sekondi :count',
's' => 'sekondi :count',
'a_second' => 'sekondi :count',
]);
PK ZY^ ^ src/Carbon/Lang/ff_SN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Pular-Fulfulde.org Ibrahima Sarr admin@pulaar-fulfulde.org
*/
return require __DIR__.'/ff.php';
PK Z ) ) src/Carbon/Lang/jgo.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
]);
PK ZO2aN N src/Carbon/Lang/am.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/am_ET.php';
PK ZpG G src/Carbon/Lang/en_TC.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK ZC=5 src/Carbon/Lang/ru_RU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/ru.php';
PK ZO O src/Carbon/Lang/nan.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/nan_TW.php';
PK Z=Y~ ~ src/Carbon/Lang/sw_UG.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/sw.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
],
]);
PK ZpG G src/Carbon/Lang/en_TK.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z''x src/Carbon/Lang/fr_BL.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/fr.php';
PK Z" src/Carbon/Lang/de_LU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - RAP bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/de.php', [
'formats' => [
'L' => 'YYYY-MM-DD',
],
]);
PK ZhaK src/Carbon/Lang/az_AZ.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Pablo Saratxaga pablo@mandrakesoft.com
*/
return array_replace_recursive(require __DIR__.'/az.php', [
'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'],
'weekdays' => ['bazar günü', 'bazar ertəsi', 'çərşənbə axşamı', 'çərşənbə', 'cümə axşamı', 'cümə', 'şənbə'],
'weekdays_short' => ['baz', 'ber', 'çax', 'çər', 'cax', 'cüm', 'şnb'],
'weekdays_min' => ['baz', 'ber', 'çax', 'çər', 'cax', 'cüm', 'şnb'],
]);
PK ZХ src/Carbon/Lang/sr.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Josh Soref
* - François B
* - shaishavgandhi05
* - Serhan Apaydın
* - JD Isaacks
* - Glavić
* - Milos Sakovic
*/
use Carbon\CarbonInterface;
return [
'year' => ':count godina|:count godine|:count godina',
'y' => ':count g.',
'month' => ':count mesec|:count meseca|:count meseci',
'm' => ':count mj.',
'week' => ':count nedelja|:count nedelje|:count nedelja',
'w' => ':count ned.',
'day' => ':count dan|:count dana|:count dana',
'd' => ':count d.',
'hour' => ':count sat|:count sata|:count sati',
'h' => ':count č.',
'minute' => ':count minut|:count minuta|:count minuta',
'min' => ':count min.',
'second' => ':count sekundu|:count sekunde|:count sekundi',
's' => ':count sek.',
'ago' => 'pre :time',
'from_now' => 'za :time',
'after' => 'nakon :time',
'before' => 'pre :time',
'year_from_now' => ':count godinu|:count godine|:count godina',
'year_ago' => ':count godinu|:count godine|:count godina',
'week_from_now' => ':count nedelju|:count nedelje|:count nedelja',
'week_ago' => ':count nedelju|:count nedelje|:count nedelja',
'diff_now' => 'upravo sada',
'diff_today' => 'danas',
'diff_today_regexp' => 'danas(?:\\s+u)?',
'diff_yesterday' => 'juče',
'diff_yesterday_regexp' => 'juče(?:\\s+u)?',
'diff_tomorrow' => 'sutra',
'diff_tomorrow_regexp' => 'sutra(?:\\s+u)?',
'diff_before_yesterday' => 'prekjuče',
'diff_after_tomorrow' => 'preksutra',
'formats' => [
'LT' => 'H:mm',
'LTS' => 'H:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'D. MMMM YYYY',
'LLL' => 'D. MMMM YYYY H:mm',
'LLLL' => 'dddd, D. MMMM YYYY H:mm',
],
'calendar' => [
'sameDay' => '[danas u] LT',
'nextDay' => '[sutra u] LT',
'nextWeek' => function (CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[u nedelju u] LT';
case 3:
return '[u sredu u] LT';
case 6:
return '[u subotu u] LT';
default:
return '[u] dddd [u] LT';
}
},
'lastDay' => '[juče u] LT',
'lastWeek' => function (CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[prošle nedelje u] LT';
case 1:
return '[prošlog ponedeljka u] LT';
case 2:
return '[prošlog utorka u] LT';
case 3:
return '[prošle srede u] LT';
case 4:
return '[prošlog četvrtka u] LT';
case 5:
return '[prošlog petka u] LT';
default:
return '[prošle subote u] LT';
}
},
'sameElse' => 'L',
],
'ordinal' => ':number.',
'months' => ['januar', 'februar', 'mart', 'april', 'maj', 'jun', 'jul', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'],
'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj', 'jun', 'jul', 'avg.', 'sep.', 'okt.', 'nov.', 'dec.'],
'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'],
'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sre.', 'čet.', 'pet.', 'sub.'],
'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'list' => [', ', ' i '],
];
PK Z src/Carbon/Lang/sq_XK.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/sq.php', [
'formats' => [
'L' => 'D.M.YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY, HH:mm',
'LLLL' => 'dddd, D MMMM YYYY, HH:mm',
],
]);
PK Z, src/Carbon/Lang/ar_BH.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org
* - Abdullah-Alhariri
*/
return array_replace_recursive(require __DIR__.'/ar.php', [
'formats' => [
'L' => 'DD MMM, YYYY',
],
'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],
'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],
'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
'first_day_of_week' => 6,
'day_of_first_week_of_year' => 1,
'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],
]);
PK ZpG G src/Carbon/Lang/en_BE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Zj\ \ src/Carbon/Lang/vo.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
'first_day_of_week' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY-MM-dd',
'LL' => 'YYYY MMM D',
'LLL' => 'YYYY MMMM D HH:mm',
'LLLL' => 'YYYY MMMM D, dddd HH:mm',
],
'year' => ':count yel',
'y' => ':count yel',
'a_year' => ':count yel',
'month' => ':count mul',
'm' => ':count mul',
'a_month' => ':count mul',
'week' => ':count vig',
'w' => ':count vig',
'a_week' => ':count vig',
'day' => ':count del',
'd' => ':count del',
'a_day' => ':count del',
'hour' => ':count düp',
'h' => ':count düp',
'a_hour' => ':count düp',
'minute' => ':count minut',
'min' => ':count minut',
'a_minute' => ':count minut',
'second' => ':count sekun',
's' => ':count sekun',
'a_second' => ':count sekun',
]);
PK Z?Ej src/Carbon/Lang/en_KE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/en.php';
PK Zov2 2 src/Carbon/Lang/ce_RU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - ANCHR
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'YYYY.DD.MM',
],
'months' => ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'],
'months_short' => ['янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'],
'weekdays' => ['КӀиранан де', 'Оршотан де', 'Шинарин де', 'Кхаарин де', 'Еарин де', 'ПӀераскан де', 'Шот де'],
'weekdays_short' => ['КӀ', 'Ор', 'Ши', 'Кх', 'Еа', 'ПӀ', 'Шо'],
'weekdays_min' => ['КӀ', 'Ор', 'Ши', 'Кх', 'Еа', 'ПӀ', 'Шо'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'year' => ':count шо',
'y' => ':count шо',
'a_year' => ':count шо',
'month' => ':count бутт',
'm' => ':count бутт',
'a_month' => ':count бутт',
'week' => ':count кӏира',
'w' => ':count кӏира',
'a_week' => ':count кӏира',
'day' => ':count де',
'd' => ':count де',
'a_day' => ':count де',
'hour' => ':count сахьт',
'h' => ':count сахьт',
'a_hour' => ':count сахьт',
'minute' => ':count минот',
'min' => ':count минот',
'a_minute' => ':count минот',
'second' => ':count секунд',
's' => ':count секунд',
'a_second' => ':count секунд',
]);
PK ZM|UN N src/Carbon/Lang/tn.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/tn_ZA.php';
PK Z" src/Carbon/Lang/de_BE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - RAP bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/de.php', [
'formats' => [
'L' => 'YYYY-MM-DD',
],
]);
PK ZPש src/Carbon/Lang/hak_TW.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'YYYY年MM月DD日',
],
'months' => ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'],
'weekdays' => ['禮拜日', '禮拜一', '禮拜二', '禮拜三', '禮拜四', '禮拜五', '禮拜六'],
'weekdays_short' => ['日', '一', '二', '三', '四', '五', '六'],
'weekdays_min' => ['日', '一', '二', '三', '四', '五', '六'],
'day_of_first_week_of_year' => 1,
'meridiem' => ['上晝', '下晝'],
'year' => ':count ngien11',
'y' => ':count ngien11',
'a_year' => ':count ngien11',
'month' => ':count ngie̍t',
'm' => ':count ngie̍t',
'a_month' => ':count ngie̍t',
'week' => ':count lî-pai',
'w' => ':count lî-pai',
'a_week' => ':count lî-pai',
'day' => ':count ngit',
'd' => ':count ngit',
'a_day' => ':count ngit',
'hour' => ':count sṳ̀',
'h' => ':count sṳ̀',
'a_hour' => ':count sṳ̀',
'minute' => ':count fûn',
'min' => ':count fûn',
'a_minute' => ':count fûn',
'second' => ':count miéu',
's' => ':count miéu',
'a_second' => ':count miéu',
]);
PK Z<-O O src/Carbon/Lang/bho.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/bho_IN.php';
PK Z
N N src/Carbon/Lang/sa.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/sa_IN.php';
PK Z߬ src/Carbon/Lang/ts_ZA.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['Sunguti', 'Nyenyenyani', 'Nyenyankulu', 'Dzivamisoko', 'Mudyaxihi', 'Khotavuxika', 'Mawuwani', 'Mhawuri', 'Ndzhati', 'Nhlangula', 'Hukuri', 'N\'wendzamhala'],
'months_short' => ['Sun', 'Yan', 'Kul', 'Dzi', 'Mud', 'Kho', 'Maw', 'Mha', 'Ndz', 'Nhl', 'Huk', 'N\'w'],
'weekdays' => ['Sonto', 'Musumbhunuku', 'Ravumbirhi', 'Ravunharhu', 'Ravumune', 'Ravuntlhanu', 'Mugqivela'],
'weekdays_short' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'],
'weekdays_min' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'],
'day_of_first_week_of_year' => 1,
'year' => 'malembe ya :count',
'y' => 'malembe ya :count',
'a_year' => 'malembe ya :count',
'month' => 'tin’hweti ta :count',
'm' => 'tin’hweti ta :count',
'a_month' => 'tin’hweti ta :count',
'week' => 'mavhiki ya :count',
'w' => 'mavhiki ya :count',
'a_week' => 'mavhiki ya :count',
'day' => 'masiku :count',
'd' => 'masiku :count',
'a_day' => 'masiku :count',
'hour' => 'tiawara ta :count',
'h' => 'tiawara ta :count',
'a_hour' => 'tiawara ta :count',
'minute' => 'timinete ta :count',
'min' => 'timinete ta :count',
'a_minute' => 'timinete ta :count',
'second' => 'tisekoni ta :count',
's' => 'tisekoni ta :count',
'a_second' => 'tisekoni ta :count',
]);
PK ZpG G src/Carbon/Lang/en_SL.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z?Ej src/Carbon/Lang/en_AS.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/en.php';
PK ZZ src/Carbon/Lang/ro_MD.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ro.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY, HH:mm',
'LLLL' => 'dddd, D MMMM YYYY, HH:mm',
],
]);
PK ZC~sG G src/Carbon/Lang/pt_MZ.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/pt.php', [
'first_day_of_week' => 0,
]);
PK ZIV
src/Carbon/Lang/fi.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Philippe Vaucher
* - Janne Warén
* - digitalfrost
* - Tsutomu Kuroda
* - Roope Salmi
* - tjku
* - Max Melentiev
* - Sami Haahtinen
* - Teemu Leisti
* - Artem Ignatyev
* - Akira Matsuda
* - Christopher Dell
* - Enrique Vidal
* - Simone Carletti
* - Robert Bjarnason
* - Aaron Patterson
* - Nicolás Hock Isaza
* - Tom Hughes
* - Sven Fuchs
* - Petri Kivikangas
* - Nizar Jouini
* - Marko Seppae
* - Tomi Mynttinen (Pikseli)
* - Petteri (powergrip)
*/
return [
'year' => ':count vuosi|:count vuotta',
'y' => ':count v',
'month' => ':count kuukausi|:count kuukautta',
'm' => ':count kk',
'week' => ':count viikko|:count viikkoa',
'w' => ':count vk',
'day' => ':count päivä|:count päivää',
'd' => ':count pv',
'hour' => ':count tunti|:count tuntia',
'h' => ':count t',
'minute' => ':count minuutti|:count minuuttia',
'min' => ':count min',
'second' => ':count sekunti|:count sekuntia',
'a_second' => 'muutama sekunti|:count sekuntia',
's' => ':count s',
'ago' => ':time sitten',
'from_now' => ':time päästä',
'year_from_now' => ':count vuoden',
'month_from_now' => ':count kuukauden',
'week_from_now' => ':count viikon',
'day_from_now' => ':count päivän',
'hour_from_now' => ':count tunnin',
'minute_from_now' => ':count minuutin',
'second_from_now' => ':count sekunnin',
'after' => ':time sen jälkeen',
'before' => ':time ennen',
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' ja '],
'diff_now' => 'nyt',
'diff_yesterday' => 'eilen',
'diff_tomorrow' => 'huomenna',
'formats' => [
'LT' => 'HH.mm',
'LTS' => 'HH.mm:ss',
'L' => 'D.M.YYYY',
'LL' => 'dddd D. MMMM[ta] YYYY',
'll' => 'ddd D. MMM YYYY',
'LLL' => 'D.MM. HH.mm',
'LLLL' => 'D. MMMM[ta] YYYY HH.mm',
'llll' => 'D. MMM YY HH.mm',
],
'weekdays' => ['sunnuntai', 'maanantai', 'tiistai', 'keskiviikko', 'torstai', 'perjantai', 'lauantai'],
'weekdays_short' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
'weekdays_min' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
'months' => ['tammikuu', 'helmikuu', 'maaliskuu', 'huhtikuu', 'toukokuu', 'kesäkuu', 'heinäkuu', 'elokuu', 'syyskuu', 'lokakuu', 'marraskuu', 'joulukuu'],
'months_short' => ['tammi', 'helmi', 'maalis', 'huhti', 'touko', 'kesä', 'heinä', 'elo', 'syys', 'loka', 'marras', 'joulu'],
'meridiem' => ['aamupäivä', 'iltapäivä'],
];
PK Z-|K src/Carbon/Lang/es_PR.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Free Software Foundation, Inc. bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/es.php', [
'first_day_of_week' => 0,
'day_of_first_week_of_year' => 1,
]);
PK Zۨr src/Carbon/Lang/dyo.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'weekdays' => ['Dimas', 'Teneŋ', 'Talata', 'Alarbay', 'Aramisay', 'Arjuma', 'Sibiti'],
'weekdays_short' => ['Dim', 'Ten', 'Tal', 'Ala', 'Ara', 'Arj', 'Sib'],
'weekdays_min' => ['Dim', 'Ten', 'Tal', 'Ala', 'Ara', 'Arj', 'Sib'],
'months' => ['Sanvie', 'Fébirie', 'Mars', 'Aburil', 'Mee', 'Sueŋ', 'Súuyee', 'Ut', 'Settembar', 'Oktobar', 'Novembar', 'Disambar'],
'months_short' => ['Sa', 'Fe', 'Ma', 'Ab', 'Me', 'Su', 'Sú', 'Ut', 'Se', 'Ok', 'No', 'De'],
'first_day_of_week' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'D/M/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd D MMMM YYYY HH:mm',
],
]);
PK Z src/Carbon/Lang/mr_IN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/mr.php';
PK ZpR src/Carbon/Lang/zh.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - xuri
* - sycuato
* - bokideckonja
* - Luo Ning
* - William Yang (williamyang233)
*/
return array_merge(require __DIR__.'/zh_Hans.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY/MM/DD',
'LL' => 'YYYY年M月D日',
'LLL' => 'YYYY年M月D日 A h点mm分',
'LLLL' => 'YYYY年M月D日dddd A h点mm分',
],
]);
PK Zb src/Carbon/Lang/ti_ET.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Ge'ez Frontier Foundation locales@geez.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['ጃንዩወሪ', 'ፌብሩወሪ', 'ማርች', 'ኤፕረል', 'ሜይ', 'ጁን', 'ጁላይ', 'ኦገስት', 'ሴፕቴምበር', 'ኦክተውበር', 'ኖቬምበር', 'ዲሴምበር'],
'months_short' => ['ጃንዩ', 'ፌብሩ', 'ማርች', 'ኤፕረ', 'ሜይ ', 'ጁን ', 'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክተ', 'ኖቬም', 'ዲሴም'],
'weekdays' => ['ሰንበት', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],
'weekdays_short' => ['ሰንበ', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],
'weekdays_min' => ['ሰንበ', 'ሰኑይ', 'ሰሉስ', 'ረቡዕ', 'ሓሙስ', 'ዓርቢ', 'ቀዳም'],
'day_of_first_week_of_year' => 1,
'meridiem' => ['ንጉሆ ሰዓተ', 'ድሕር ሰዓት'],
]);
PK ZI I src/Carbon/Lang/as_IN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Amitakhya Phukan, Red Hat bug-glibc@gnu.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'D-MM-YYYY',
],
'months' => ['জানুৱাৰী', 'ফেব্ৰুৱাৰী', 'মাৰ্চ', 'এপ্ৰিল', 'মে', 'জুন', 'জুলাই', 'আগষ্ট', 'ছেপ্তেম্বৰ', 'অক্টোবৰ', 'নৱেম্বৰ', 'ডিচেম্বৰ'],
'months_short' => ['জানু', 'ফেব্ৰু', 'মাৰ্চ', 'এপ্ৰিল', 'মে', 'জুন', 'জুলাই', 'আগ', 'সেপ্ট', 'অক্টো', 'নভে', 'ডিসে'],
'weekdays' => ['দেওবাৰ', 'সোমবাৰ', 'মঙ্গলবাৰ', 'বুধবাৰ', 'বৃহষ্পতিবাৰ', 'শুক্ৰবাৰ', 'শনিবাৰ'],
'weekdays_short' => ['দেও', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহষ্পতি', 'শুক্ৰ', 'শনি'],
'weekdays_min' => ['দেও', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহষ্পতি', 'শুক্ৰ', 'শনি'],
'day_of_first_week_of_year' => 1,
'meridiem' => ['পূৰ্ব্বাহ্ন', 'অপৰাহ্ন'],
'year' => ':count বছৰ',
'y' => ':count বছৰ',
'a_year' => ':count বছৰ',
'month' => ':count মাহ',
'm' => ':count মাহ',
'a_month' => ':count মাহ',
'week' => ':count সপ্তাহ',
'w' => ':count সপ্তাহ',
'a_week' => ':count সপ্তাহ',
'day' => ':count বাৰ',
'd' => ':count বাৰ',
'a_day' => ':count বাৰ',
'hour' => ':count ঘণ্টা',
'h' => ':count ঘণ্টা',
'a_hour' => ':count ঘণ্টা',
'minute' => ':count মিনিট',
'min' => ':count মিনিট',
'a_minute' => ':count মিনিট',
'second' => ':count দ্বিতীয়',
's' => ':count দ্বিতীয়',
'a_second' => ':count দ্বিতীয়',
]);
PK ZpG G src/Carbon/Lang/en_ER.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK ZpG G src/Carbon/Lang/en_GY.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Z''x src/Carbon/Lang/fr_YT.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/fr.php';
PK Z7$ src/Carbon/Lang/en_ZA.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YY',
'LL' => 'MMMM DD, YYYY',
'LLL' => 'DD MMM HH:mm',
'LLLL' => 'MMMM DD, YYYY HH:mm',
],
'day_of_first_week_of_year' => 1,
]);
PK Z&$ src/Carbon/Lang/en_AU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Kunal Marwaha
* - François B
* - Mayank Badola
* - JD Isaacks
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'from_now' => 'in :time',
'formats' => [
'LT' => 'h:mm A',
'LTS' => 'h:mm:ss A',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY h:mm A',
'LLLL' => 'dddd, D MMMM YYYY h:mm A',
],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
]);
PK Z}t src/Carbon/Lang/ar_Shakl.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Abdellah Chadidi
* - Atef Ben Ali (atefBB)
* - Mohamed Sabil (mohamedsabil83)
*/
// Same for long and short
$months = [
// @TODO add shakl to months
'يناير',
'فبراير',
'مارس',
'أبريل',
'مايو',
'يونيو',
'يوليو',
'أغسطس',
'سبتمبر',
'أكتوبر',
'نوفمبر',
'ديسمبر',
];
return [
'year' => implode('|', ['{0}:count سَنَة', '{1}سَنَة', '{2}سَنَتَيْن', ']2,11[:count سَنَوَات', ']10,Inf[:count سَنَة']),
'a_year' => implode('|', ['{0}:count سَنَة', '{1}سَنَة', '{2}سَنَتَيْن', ']2,11[:count سَنَوَات', ']10,Inf[:count سَنَة']),
'month' => implode('|', ['{0}:count شَهْرَ', '{1}شَهْرَ', '{2}شَهْرَيْن', ']2,11[:count أَشْهُر', ']10,Inf[:count شَهْرَ']),
'a_month' => implode('|', ['{0}:count شَهْرَ', '{1}شَهْرَ', '{2}شَهْرَيْن', ']2,11[:count أَشْهُر', ']10,Inf[:count شَهْرَ']),
'week' => implode('|', ['{0}:count أُسْبُوع', '{1}أُسْبُوع', '{2}أُسْبُوعَيْن', ']2,11[:count أَسَابِيع', ']10,Inf[:count أُسْبُوع']),
'a_week' => implode('|', ['{0}:count أُسْبُوع', '{1}أُسْبُوع', '{2}أُسْبُوعَيْن', ']2,11[:count أَسَابِيع', ']10,Inf[:count أُسْبُوع']),
'day' => implode('|', ['{0}:count يَوْم', '{1}يَوْم', '{2}يَوْمَيْن', ']2,11[:count أَيَّام', ']10,Inf[:count يَوْم']),
'a_day' => implode('|', ['{0}:count يَوْم', '{1}يَوْم', '{2}يَوْمَيْن', ']2,11[:count أَيَّام', ']10,Inf[:count يَوْم']),
'hour' => implode('|', ['{0}:count سَاعَة', '{1}سَاعَة', '{2}سَاعَتَيْن', ']2,11[:count سَاعَات', ']10,Inf[:count سَاعَة']),
'a_hour' => implode('|', ['{0}:count سَاعَة', '{1}سَاعَة', '{2}سَاعَتَيْن', ']2,11[:count سَاعَات', ']10,Inf[:count سَاعَة']),
'minute' => implode('|', ['{0}:count دَقِيقَة', '{1}دَقِيقَة', '{2}دَقِيقَتَيْن', ']2,11[:count دَقَائِق', ']10,Inf[:count دَقِيقَة']),
'a_minute' => implode('|', ['{0}:count دَقِيقَة', '{1}دَقِيقَة', '{2}دَقِيقَتَيْن', ']2,11[:count دَقَائِق', ']10,Inf[:count دَقِيقَة']),
'second' => implode('|', ['{0}:count ثَانِيَة', '{1}ثَانِيَة', '{2}ثَانِيَتَيْن', ']2,11[:count ثَوَان', ']10,Inf[:count ثَانِيَة']),
'a_second' => implode('|', ['{0}:count ثَانِيَة', '{1}ثَانِيَة', '{2}ثَانِيَتَيْن', ']2,11[:count ثَوَان', ']10,Inf[:count ثَانِيَة']),
'ago' => 'مُنْذُ :time',
'from_now' => 'مِنَ الْآن :time',
'after' => 'بَعْدَ :time',
'before' => 'قَبْلَ :time',
// @TODO add shakl to translations below
'diff_now' => 'الآن',
'diff_today' => 'اليوم',
'diff_today_regexp' => 'اليوم(?:\\s+عند)?(?:\\s+الساعة)?',
'diff_yesterday' => 'أمس',
'diff_yesterday_regexp' => 'أمس(?:\\s+عند)?(?:\\s+الساعة)?',
'diff_tomorrow' => 'غداً',
'diff_tomorrow_regexp' => 'غدًا(?:\\s+عند)?(?:\\s+الساعة)?',
'diff_before_yesterday' => 'قبل الأمس',
'diff_after_tomorrow' => 'بعد غد',
'period_recurrences' => implode('|', ['{0}مرة', '{1}مرة', '{2}:count مرتين', ']2,11[:count مرات', ']10,Inf[:count مرة']),
'period_interval' => 'كل :interval',
'period_start_date' => 'من :date',
'period_end_date' => 'إلى :date',
'months' => $months,
'months_short' => $months,
'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
'weekdays_short' => ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],
'weekdays_min' => ['ح', 'اث', 'ثل', 'أر', 'خم', 'ج', 'س'],
'list' => ['، ', ' و '],
'first_day_of_week' => 6,
'day_of_first_week_of_year' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'D/M/YYYY',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd D MMMM YYYY HH:mm',
],
'calendar' => [
'sameDay' => '[اليوم عند الساعة] LT',
'nextDay' => '[غدًا عند الساعة] LT',
'nextWeek' => 'dddd [عند الساعة] LT',
'lastDay' => '[أمس عند الساعة] LT',
'lastWeek' => 'dddd [عند الساعة] LT',
'sameElse' => 'L',
],
'meridiem' => ['ص', 'م'],
'weekend' => [5, 6],
];
PK Z:< src/Carbon/Lang/sl.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Philippe Vaucher
* - Tsutomu Kuroda
* - tjku
* - Max Melentiev
* - Juanito Fatas
* - Akira Matsuda
* - Christopher Dell
* - Enrique Vidal
* - Simone Carletti
* - Aaron Patterson
* - Nicolás Hock Isaza
* - Miha Rebernik
* - Gal Jakič (morpheus7CS)
* - Glavić
* - Anže Časar
* - Lovro Tramšek (Lovro1107)
* - burut13
*/
use Carbon\CarbonInterface;
return [
'year' => ':count leto|:count leti|:count leta|:count let',
'y' => ':count leto|:count leti|:count leta|:count let',
'month' => ':count mesec|:count meseca|:count mesece|:count mesecev',
'm' => ':count mes.',
'week' => ':count teden|:count tedna|:count tedne|:count tednov',
'w' => ':count ted.',
'day' => ':count dan|:count dni|:count dni|:count dni',
'd' => ':count dan|:count dni|:count dni|:count dni',
'hour' => ':count ura|:count uri|:count ure|:count ur',
'h' => ':count h',
'minute' => ':count minuta|:count minuti|:count minute|:count minut',
'min' => ':count min.',
'second' => ':count sekunda|:count sekundi|:count sekunde|:count sekund',
'a_second' => '{1}nekaj sekund|:count sekunda|:count sekundi|:count sekunde|:count sekund',
's' => ':count s',
'year_ago' => ':count letom|:count letoma|:count leti|:count leti',
'y_ago' => ':count letom|:count letoma|:count leti|:count leti',
'month_ago' => ':count mesecem|:count mesecema|:count meseci|:count meseci',
'week_ago' => ':count tednom|:count tednoma|:count tedni|:count tedni',
'day_ago' => ':count dnem|:count dnevoma|:count dnevi|:count dnevi',
'd_ago' => ':count dnem|:count dnevoma|:count dnevi|:count dnevi',
'hour_ago' => ':count uro|:count urama|:count urami|:count urami',
'minute_ago' => ':count minuto|:count minutama|:count minutami|:count minutami',
'second_ago' => ':count sekundo|:count sekundama|:count sekundami|:count sekundami',
'day_from_now' => ':count dan|:count dneva|:count dni|:count dni',
'd_from_now' => ':count dan|:count dneva|:count dni|:count dni',
'hour_from_now' => ':count uro|:count uri|:count ure|:count ur',
'minute_from_now' => ':count minuto|:count minuti|:count minute|:count minut',
'second_from_now' => ':count sekundo|:count sekundi|:count sekunde|:count sekund',
'ago' => 'pred :time',
'from_now' => 'čez :time',
'after' => ':time kasneje',
'before' => ':time prej',
'diff_now' => 'ravnokar',
'diff_today' => 'danes',
'diff_today_regexp' => 'danes(?:\\s+ob)?',
'diff_yesterday' => 'včeraj',
'diff_yesterday_regexp' => 'včeraj(?:\\s+ob)?',
'diff_tomorrow' => 'jutri',
'diff_tomorrow_regexp' => 'jutri(?:\\s+ob)?',
'diff_before_yesterday' => 'predvčerajšnjim',
'diff_after_tomorrow' => 'pojutrišnjem',
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'period_start_date' => 'od :date',
'period_end_date' => 'do :date',
'formats' => [
'LT' => 'H:mm',
'LTS' => 'H:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'D. MMMM YYYY',
'LLL' => 'D. MMMM YYYY H:mm',
'LLLL' => 'dddd, D. MMMM YYYY H:mm',
],
'calendar' => [
'sameDay' => '[danes ob] LT',
'nextDay' => '[jutri ob] LT',
'nextWeek' => 'dddd [ob] LT',
'lastDay' => '[včeraj ob] LT',
'lastWeek' => function (CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[preteklo] [nedeljo] [ob] LT';
case 1:
return '[pretekli] [ponedeljek] [ob] LT';
case 2:
return '[pretekli] [torek] [ob] LT';
case 3:
return '[preteklo] [sredo] [ob] LT';
case 4:
return '[pretekli] [četrtek] [ob] LT';
case 5:
return '[pretekli] [petek] [ob] LT';
case 6:
return '[preteklo] [soboto] [ob] LT';
}
},
'sameElse' => 'L',
],
'months' => ['januar', 'februar', 'marec', 'april', 'maj', 'junij', 'julij', 'avgust', 'september', 'oktober', 'november', 'december'],
'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'],
'weekdays' => ['nedelja', 'ponedeljek', 'torek', 'sreda', 'četrtek', 'petek', 'sobota'],
'weekdays_short' => ['ned', 'pon', 'tor', 'sre', 'čet', 'pet', 'sob'],
'weekdays_min' => ['ne', 'po', 'to', 'sr', 'če', 'pe', 'so'],
'list' => [', ', ' in '],
'meridiem' => ['dopoldan', 'popoldan'],
];
PK Z(N N src/Carbon/Lang/mg.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/mg_MG.php';
PK Z&5 src/Carbon/Lang/nl_SX.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/nl.php';
PK Z㚸 src/Carbon/Lang/ml_IN.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/ml.php';
PK Zx$ src/Carbon/Lang/ee_TG.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/ee.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'LLL' => 'HH:mm MMMM D [lia] YYYY',
'LLLL' => 'HH:mm dddd, MMMM D [lia] YYYY',
],
]);
PK ZD src/Carbon/Lang/niu_NU.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - RockET Systems Emani Fakaotimanava-Lui emani@niue.nu
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YY',
],
'months' => ['Ianuali', 'Fepuali', 'Masi', 'Apelila', 'Me', 'Iuni', 'Iulai', 'Aokuso', 'Sepetema', 'Oketopa', 'Novema', 'Tesemo'],
'months_short' => ['Ian', 'Fep', 'Mas', 'Ape', 'Me', 'Iun', 'Iul', 'Aok', 'Sep', 'Oke', 'Nov', 'Tes'],
'weekdays' => ['Aho Tapu', 'Aho Gofua', 'Aho Ua', 'Aho Lotu', 'Aho Tuloto', 'Aho Falaile', 'Aho Faiumu'],
'weekdays_short' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'],
'weekdays_min' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'year' => ':count tau',
'y' => ':count tau',
'a_year' => ':count tau',
'month' => ':count mahina',
'm' => ':count mahina',
'a_month' => ':count mahina',
'week' => ':count faahi tapu',
'w' => ':count faahi tapu',
'a_week' => ':count faahi tapu',
'day' => ':count aho',
'd' => ':count aho',
'a_day' => ':count aho',
'hour' => ':count e tulā',
'h' => ':count e tulā',
'a_hour' => ':count e tulā',
'minute' => ':count minuti',
'min' => ':count minuti',
'a_minute' => ':count minuti',
'second' => ':count sekone',
's' => ':count sekone',
'a_second' => ':count sekone',
]);
PK Z\G G src/Carbon/Lang/qu_EC.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/qu.php', [
'first_day_of_week' => 1,
]);
PK Z|=} src/Carbon/Lang/yav.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'meridiem' => ['kiɛmɛ́ɛm', 'kisɛ́ndɛ'],
'weekdays' => ['sɔ́ndiɛ', 'móndie', 'muányáŋmóndie', 'metúkpíápɛ', 'kúpélimetúkpiapɛ', 'feléte', 'séselé'],
'weekdays_short' => ['sd', 'md', 'mw', 'et', 'kl', 'fl', 'ss'],
'weekdays_min' => ['sd', 'md', 'mw', 'et', 'kl', 'fl', 'ss'],
'months' => ['pikítíkítie, oólí ú kutúan', 'siɛyɛ́, oóli ú kándíɛ', 'ɔnsúmbɔl, oóli ú kátátúɛ', 'mesiŋ, oóli ú kénie', 'ensil, oóli ú kátánuɛ', 'ɔsɔn', 'efute', 'pisuyú', 'imɛŋ i puɔs', 'imɛŋ i putúk,oóli ú kátíɛ', 'makandikɛ', 'pilɔndɔ́'],
'months_short' => ['o.1', 'o.2', 'o.3', 'o.4', 'o.5', 'o.6', 'o.7', 'o.8', 'o.9', 'o.10', 'o.11', 'o.12'],
'first_day_of_week' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'D/M/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd D MMMM YYYY HH:mm',
],
]);
PK ZZ7$ $ src/Carbon/Lang/luy.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'weekdays' => ['Jumapiri', 'Jumatatu', 'Jumanne', 'Jumatano', 'Murwa wa Kanne', 'Murwa wa Katano', 'Jumamosi'],
'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],
'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],
'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
// Too unreliable
/*
'year' => ':count liliino', // less reliable
'y' => ':count liliino', // less reliable
'a_year' => ':count liliino', // less reliable
'month' => ':count kumwesi', // less reliable
'm' => ':count kumwesi', // less reliable
'a_month' => ':count kumwesi', // less reliable
'week' => ':count olutambi', // less reliable
'w' => ':count olutambi', // less reliable
'a_week' => ':count olutambi', // less reliable
'day' => ':count luno', // less reliable
'd' => ':count luno', // less reliable
'a_day' => ':count luno', // less reliable
'hour' => ':count ekengele', // less reliable
'h' => ':count ekengele', // less reliable
'a_hour' => ':count ekengele', // less reliable
'minute' => ':count omundu', // less reliable
'min' => ':count omundu', // less reliable
'a_minute' => ':count omundu', // less reliable
'second' => ':count liliino', // less reliable
's' => ':count liliino', // less reliable
'a_second' => ':count liliino', // less reliable
*/
]);
PK Z?Ej src/Carbon/Lang/en_US_Posix.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/en.php';
PK ZpG G src/Carbon/Lang/en_CM.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'first_day_of_week' => 1,
]);
PK Zr src/Carbon/Lang/tg_TJ.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/tg.php';
PK Zeѡ src/Carbon/Lang/szl_PL.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - szl_PL locale Przemyslaw Buczkowski libc-alpha@sourceware.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD.MM.YYYY',
],
'months' => ['styczyń', 'luty', 'merc', 'kwjeciyń', 'moj', 'czyrwjyń', 'lipjyń', 'siyrpjyń', 'wrzesiyń', 'październik', 'listopad', 'grudziyń'],
'months_short' => ['sty', 'lut', 'mer', 'kwj', 'moj', 'czy', 'lip', 'siy', 'wrz', 'paź', 'lis', 'gru'],
'weekdays' => ['niydziela', 'pyńdziŏek', 'wtŏrek', 'strzŏda', 'sztwortek', 'pjōntek', 'sobŏta'],
'weekdays_short' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'],
'weekdays_min' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'year' => ':count rok',
'y' => ':count rok',
'a_year' => ':count rok',
'month' => ':count mjeśůnc',
'm' => ':count mjeśůnc',
'a_month' => ':count mjeśůnc',
'week' => ':count tydźyń',
'w' => ':count tydźyń',
'a_week' => ':count tydźyń',
'day' => ':count dźyń',
'd' => ':count dźyń',
'a_day' => ':count dźyń',
'hour' => ':count godzina',
'h' => ':count godzina',
'a_hour' => ':count godzina',
'minute' => ':count minuta',
'min' => ':count minuta',
'a_minute' => ':count minuta',
'second' => ':count sekůnda',
's' => ':count sekůnda',
'a_second' => ':count sekůnda',
]);
PK Z!k src/Carbon/Lang/ru_UA.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - RFC 2319 bug-glibc-locales@gnu.org
*/
return array_replace_recursive(require __DIR__.'/ru.php', [
'weekdays' => ['воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота'],
'weekdays_short' => ['вск', 'пнд', 'вто', 'срд', 'чтв', 'птн', 'суб'],
'weekdays_min' => ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'су'],
]);
PK Z''x src/Carbon/Lang/fr_CI.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/fr.php';
PK Z, src/Carbon/Lang/ar_QA.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org
* - Abdullah-Alhariri
*/
return array_replace_recursive(require __DIR__.'/ar.php', [
'formats' => [
'L' => 'DD MMM, YYYY',
],
'months' => ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],
'months_short' => ['ينا', 'فبر', 'مار', 'أبر', 'ماي', 'يون', 'يول', 'أغس', 'سبت', 'أكت', 'نوف', 'ديس'],
'weekdays' => ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
'weekdays_short' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
'weekdays_min' => ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
'first_day_of_week' => 6,
'day_of_first_week_of_year' => 1,
'alt_numbers' => ['۰۰', '۰۱', '۰۲', '۰۳', '۰٤', '۰٥', '۰٦', '۰۷', '۰۸', '۰۹', '۱۰', '۱۱', '۱۲', '۱۳', '۱٤', '۱٥', '۱٦', '۱۷', '۱۸', '۱۹', '۲۰', '۲۱', '۲۲', '۲۳', '۲٤', '۲٥', '۲٦', '۲۷', '۲۸', '۲۹', '۳۰', '۳۱', '۳۲', '۳۳', '۳٤', '۳٥', '۳٦', '۳۷', '۳۸', '۳۹', '٤۰', '٤۱', '٤۲', '٤۳', '٤٤', '٤٥', '٤٦', '٤۷', '٤۸', '٤۹', '٥۰', '٥۱', '٥۲', '٥۳', '٥٤', '٥٥', '٥٦', '٥۷', '٥۸', '٥۹', '٦۰', '٦۱', '٦۲', '٦۳', '٦٤', '٦٥', '٦٦', '٦۷', '٦۸', '٦۹', '۷۰', '۷۱', '۷۲', '۷۳', '۷٤', '۷٥', '۷٦', '۷۷', '۷۸', '۷۹', '۸۰', '۸۱', '۸۲', '۸۳', '۸٤', '۸٥', '۸٦', '۸۷', '۸۸', '۸۹', '۹۰', '۹۱', '۹۲', '۹۳', '۹٤', '۹٥', '۹٦', '۹۷', '۹۸', '۹۹'],
]);
PK Z+v0% src/Carbon/Lang/br_FR.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/br.php';
PK Z*痖 src/Carbon/Lang/nso_ZA.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['Janaware', 'Febereware', 'Matšhe', 'Aprele', 'Mei', 'June', 'Julae', 'Agostose', 'Setemere', 'Oktobere', 'Nofemere', 'Disemere'],
'months_short' => ['Jan', 'Feb', 'Mat', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Set', 'Okt', 'Nof', 'Dis'],
'weekdays' => ['LaMorena', 'Mošupologo', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Mokibelo'],
'weekdays_short' => ['Son', 'Moš', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'],
'weekdays_min' => ['Son', 'Moš', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'],
'day_of_first_week_of_year' => 1,
'year' => ':count ngwaga',
'y' => ':count ngwaga',
'a_year' => ':count ngwaga',
'month' => ':count Kgwedi',
'm' => ':count Kgwedi',
'a_month' => ':count Kgwedi',
'week' => ':count Beke',
'w' => ':count Beke',
'a_week' => ':count Beke',
'day' => ':count Letšatši',
'd' => ':count Letšatši',
'a_day' => ':count Letšatši',
'hour' => ':count Iri',
'h' => ':count Iri',
'a_hour' => ':count Iri',
'minute' => ':count Motsotso',
'min' => ':count Motsotso',
'a_minute' => ':count Motsotso',
'second' => ':count motsotswana',
's' => ':count motsotswana',
'a_second' => ':count motsotswana',
]);
PK ZUp p src/Carbon/Lang/lv.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Carbon\CarbonInterface;
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Philippe Vaucher
* - pirminis
* - Tsutomu Kuroda
* - tjku
* - Andris Zāģeris
* - Max Melentiev
* - Edgars Beigarts
* - Juanito Fatas
* - Vitauts Stočka
* - Akira Matsuda
* - Christopher Dell
* - Enrique Vidal
* - Simone Carletti
* - Aaron Patterson
* - Kaspars Bankovskis
* - Nicolás Hock Isaza
* - Viesturs Kavacs (Kavacky)
* - zakse
* - Janis Eglitis (janiseglitis)
* - Guntars
* - Juris Sudmalis
*/
$daysOfWeek = ['svētdiena', 'pirmdiena', 'otrdiena', 'trešdiena', 'ceturtdiena', 'piektdiena', 'sestdiena'];
$daysOfWeekLocativum = ['svētdien', 'pirmdien', 'otrdien', 'trešdien', 'ceturtdien', 'piektdien', 'sestdien'];
$transformDiff = function ($input) {
return strtr($input, [
// Nominative => "pirms/pēc" Dative
'gads' => 'gada',
'gadi' => 'gadiem',
'gadu' => 'gadiem',
'mēnesis' => 'mēneša',
'mēneši' => 'mēnešiem',
'mēnešu' => 'mēnešiem',
'nedēļa' => 'nedēļas',
'nedēļas' => 'nedēļām',
'nedēļu' => 'nedēļām',
'diena' => 'dienas',
'dienas' => 'dienām',
'dienu' => 'dienām',
'stunda' => 'stundas',
'stundas' => 'stundām',
'stundu' => 'stundām',
'minūte' => 'minūtes',
'minūtes' => 'minūtēm',
'minūšu' => 'minūtēm',
'sekunde' => 'sekundes',
'sekundes' => 'sekundēm',
'sekunžu' => 'sekundēm',
]);
};
return [
'ago' => function ($time) use ($transformDiff) {
return 'pirms '.$transformDiff($time);
},
'from_now' => function ($time) use ($transformDiff) {
return 'pēc '.$transformDiff($time);
},
'year' => '0 gadu|:count gads|:count gadi',
'y' => ':count g.',
'a_year' => '{1}gads|0 gadu|:count gads|:count gadi',
'month' => '0 mēnešu|:count mēnesis|:count mēneši',
'm' => ':count mēn.',
'a_month' => '{1}mēnesis|0 mēnešu|:count mēnesis|:count mēneši',
'week' => '0 nedēļu|:count nedēļa|:count nedēļas',
'w' => ':count ned.',
'a_week' => '{1}nedēļa|0 nedēļu|:count nedēļa|:count nedēļas',
'day' => '0 dienu|:count diena|:count dienas',
'd' => ':count d.',
'a_day' => '{1}diena|0 dienu|:count diena|:count dienas',
'hour' => '0 stundu|:count stunda|:count stundas',
'h' => ':count st.',
'a_hour' => '{1}stunda|0 stundu|:count stunda|:count stundas',
'minute' => '0 minūšu|:count minūte|:count minūtes',
'min' => ':count min.',
'a_minute' => '{1}minūte|0 minūšu|:count minūte|:count minūtes',
'second' => '0 sekunžu|:count sekunde|:count sekundes',
's' => ':count sek.',
'a_second' => '{1}sekunde|0 sekunžu|:count sekunde|:count sekundes',
'after' => ':time vēlāk',
'year_after' => '0 gadus|:count gadu|:count gadus',
'a_year_after' => '{1}gadu|0 gadus|:count gadu|:count gadus',
'month_after' => '0 mēnešus|:count mēnesi|:count mēnešus',
'a_month_after' => '{1}mēnesi|0 mēnešus|:count mēnesi|:count mēnešus',
'week_after' => '0 nedēļas|:count nedēļu|:count nedēļas',
'a_week_after' => '{1}nedēļu|0 nedēļas|:count nedēļu|:count nedēļas',
'day_after' => '0 dienas|:count dienu|:count dienas',
'a_day_after' => '{1}dienu|0 dienas|:count dienu|:count dienas',
'hour_after' => '0 stundas|:count stundu|:count stundas',
'a_hour_after' => '{1}stundu|0 stundas|:count stundu|:count stundas',
'minute_after' => '0 minūtes|:count minūti|:count minūtes',
'a_minute_after' => '{1}minūti|0 minūtes|:count minūti|:count minūtes',
'second_after' => '0 sekundes|:count sekundi|:count sekundes',
'a_second_after' => '{1}sekundi|0 sekundes|:count sekundi|:count sekundes',
'before' => ':time agrāk',
'year_before' => '0 gadus|:count gadu|:count gadus',
'a_year_before' => '{1}gadu|0 gadus|:count gadu|:count gadus',
'month_before' => '0 mēnešus|:count mēnesi|:count mēnešus',
'a_month_before' => '{1}mēnesi|0 mēnešus|:count mēnesi|:count mēnešus',
'week_before' => '0 nedēļas|:count nedēļu|:count nedēļas',
'a_week_before' => '{1}nedēļu|0 nedēļas|:count nedēļu|:count nedēļas',
'day_before' => '0 dienas|:count dienu|:count dienas',
'a_day_before' => '{1}dienu|0 dienas|:count dienu|:count dienas',
'hour_before' => '0 stundas|:count stundu|:count stundas',
'a_hour_before' => '{1}stundu|0 stundas|:count stundu|:count stundas',
'minute_before' => '0 minūtes|:count minūti|:count minūtes',
'a_minute_before' => '{1}minūti|0 minūtes|:count minūti|:count minūtes',
'second_before' => '0 sekundes|:count sekundi|:count sekundes',
'a_second_before' => '{1}sekundi|0 sekundes|:count sekundi|:count sekundes',
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' un '],
'diff_now' => 'tagad',
'diff_today' => 'šodien',
'diff_yesterday' => 'vakar',
'diff_before_yesterday' => 'aizvakar',
'diff_tomorrow' => 'rīt',
'diff_after_tomorrow' => 'parīt',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD.MM.YYYY.',
'LL' => 'YYYY. [gada] D. MMMM',
'LLL' => 'DD.MM.YYYY., HH:mm',
'LLLL' => 'YYYY. [gada] D. MMMM, HH:mm',
],
'calendar' => [
'sameDay' => '[šodien] [plkst.] LT',
'nextDay' => '[rīt] [plkst.] LT',
'nextWeek' => function (CarbonInterface $current, CarbonInterface $other) use ($daysOfWeekLocativum) {
if ($current->week !== $other->week) {
return '[nākošo] ['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT';
}
return '['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT';
},
'lastDay' => '[vakar] [plkst.] LT',
'lastWeek' => function (CarbonInterface $current) use ($daysOfWeekLocativum) {
return '[pagājušo] ['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT';
},
'sameElse' => 'L',
],
'weekdays' => $daysOfWeek,
'weekdays_short' => ['Sv.', 'P.', 'O.', 'T.', 'C.', 'Pk.', 'S.'],
'weekdays_min' => ['Sv.', 'P.', 'O.', 'T.', 'C.', 'Pk.', 'S.'],
'months' => ['janvāris', 'februāris', 'marts', 'aprīlis', 'maijs', 'jūnijs', 'jūlijs', 'augusts', 'septembris', 'oktobris', 'novembris', 'decembris'],
'months_standalone' => ['janvārī', 'februārī', 'martā', 'aprīlī', 'maijā', 'jūnijā', 'jūlijā', 'augustā', 'septembrī', 'oktobrī', 'novembrī', 'decembrī'],
'months_short' => ['janv.', 'febr.', 'martā', 'apr.', 'maijā', 'jūn.', 'jūl.', 'aug.', 'sept.', 'okt.', 'nov.', 'dec.'],
'meridiem' => ['priekšpusdiena', 'pēcpusdiena'],
];
PK Z
K K src/Carbon/Lang/hsb_DE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - Information from Michael Wolf Andrzej Krzysztofowicz ankry@mif.pg.gda.pl
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'DD. MMMM YYYY',
'LLL' => 'DD. MMMM, HH:mm [hodź.]',
'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [hodź.]',
],
'months' => ['januara', 'februara', 'měrca', 'apryla', 'meje', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'],
'months_short' => ['Jan', 'Feb', 'Měr', 'Apr', 'Mej', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'],
'weekdays' => ['Njedźela', 'Póndźela', 'Wutora', 'Srjeda', 'Štvórtk', 'Pjatk', 'Sobota'],
'weekdays_short' => ['Nj', 'Pó', 'Wu', 'Sr', 'Št', 'Pj', 'So'],
'weekdays_min' => ['Nj', 'Pó', 'Wu', 'Sr', 'Št', 'Pj', 'So'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'year' => ':count lěto',
'y' => ':count lěto',
'a_year' => ':count lěto',
'month' => ':count měsac',
'm' => ':count měsac',
'a_month' => ':count měsac',
'week' => ':count tydźeń',
'w' => ':count tydźeń',
'a_week' => ':count tydźeń',
'day' => ':count dźeń',
'd' => ':count dźeń',
'a_day' => ':count dźeń',
'hour' => ':count hodźina',
'h' => ':count hodźina',
'a_hour' => ':count hodźina',
'minute' => ':count chwila',
'min' => ':count chwila',
'a_minute' => ':count chwila',
'second' => ':count druhi',
's' => ':count druhi',
'a_second' => ':count druhi',
]);
PK Z?7 src/Carbon/Lang/pl_PL.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/pl.php';
PK Z^dL src/Carbon/Lang/zh_MO.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - tarunvelli
* - Eddie
* - KID
* - shankesgk2
*/
return array_replace_recursive(require __DIR__.'/zh_Hant.php', [
'after' => ':time后',
]);
PK Z''x src/Carbon/Lang/fr_NE.phpnu W+A
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return require __DIR__.'/fr.php';
PK Z