Sid Gifari File Manager
π Root
/
home2
/
meumer25
/
paineleubella.meumercado.app
/
vendor
/
nesbot
/
carbon
/
src
/
Carbon
/
Lang
/
Editing: bg.php
<?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranΓ§ois B * - Serhan ApaydΔ±n * - JD Isaacks * - GlaviΔ */ use Carbon\CarbonInterface; return [ 'year' => ':count Π³ΠΎΠ΄ΠΈΠ½Π°|:count Π³ΠΎΠ΄ΠΈΠ½ΠΈ', 'a_year' => 'Π³ΠΎΠ΄ΠΈΠ½Π°|:count Π³ΠΎΠ΄ΠΈΠ½ΠΈ', 'y' => ':count Π³ΠΎΠ΄ΠΈΠ½Π°|:count Π³ΠΎΠ΄ΠΈΠ½ΠΈ', 'month' => ':count ΠΌΠ΅ΡΠ΅Ρ|:count ΠΌΠ΅ΡΠ΅ΡΠ°', 'a_month' => 'ΠΌΠ΅ΡΠ΅Ρ|:count ΠΌΠ΅ΡΠ΅ΡΠ°', 'm' => ':count ΠΌΠ΅ΡΠ΅Ρ|:count ΠΌΠ΅ΡΠ΅ΡΠ°', 'week' => ':count ΡΠ΅Π΄ΠΌΠΈΡΠ°|:count ΡΠ΅Π΄ΠΌΠΈΡΠΈ', 'a_week' => 'ΡΠ΅Π΄ΠΌΠΈΡΠ°|:count ΡΠ΅Π΄ΠΌΠΈΡΠΈ', 'w' => ':count ΡΠ΅Π΄ΠΌΠΈΡΠ°|:count ΡΠ΅Π΄ΠΌΠΈΡΠΈ', 'day' => ':count Π΄Π΅Π½|:count Π΄Π½ΠΈ', 'a_day' => 'Π΄Π΅Π½|:count Π΄Π½ΠΈ', 'd' => ':count Π΄Π΅Π½|:count Π΄Π½ΠΈ', 'hour' => ':count ΡΠ°Ρ|:count ΡΠ°ΡΠ°', 'a_hour' => 'ΡΠ°Ρ|:count ΡΠ°ΡΠ°', 'h' => ':count ΡΠ°Ρ|:count ΡΠ°ΡΠ°', 'minute' => ':count ΠΌΠΈΠ½ΡΡΠ°|:count ΠΌΠΈΠ½ΡΡΠΈ', 'a_minute' => 'ΠΌΠΈΠ½ΡΡΠ°|:count ΠΌΠΈΠ½ΡΡΠΈ', 'min' => ':count ΠΌΠΈΠ½ΡΡΠ°|:count ΠΌΠΈΠ½ΡΡΠΈ', 'second' => ':count ΡΠ΅ΠΊΡΠ½Π΄Π°|:count ΡΠ΅ΠΊΡΠ½Π΄ΠΈ', 'a_second' => 'Π½ΡΠΊΠΎΠ»ΠΊΠΎ ΡΠ΅ΠΊΡΠ½Π΄ΠΈ|:count ΡΠ΅ΠΊΡΠ½Π΄ΠΈ', 's' => ':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' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'D.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY H:mm', 'LLLL' => 'dddd, D MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[ΠΠ½Π΅Ρ Π²] LT', 'nextDay' => '[Π£ΡΡΠ΅ Π²] LT', 'nextWeek' => 'dddd [Π²] LT', 'lastDay' => '[ΠΡΠ΅ΡΠ° Π²] LT', 'lastWeek' => function (CarbonInterface $current) { switch ($current->dayOfWeek) { case 0: case 3: case 6: return '[Π ΠΈΠ·ΠΌΠΈΠ½Π°Π»Π°ΡΠ°] dddd [Π²] LT'; default: return '[Π ΠΈΠ·ΠΌΠΈΠ½Π°Π»ΠΈΡ] dddd [Π²] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => function ($number) { $lastDigit = $number % 10; $last2Digits = $number % 100; if ($number === 0) { return "$number-Π΅Π²"; } if ($last2Digits === 0) { return "$number-Π΅Π½"; } if ($last2Digits > 10 && $last2Digits < 20) { return "$number-ΡΠΈ"; } if ($lastDigit === 1) { return "$number-Π²ΠΈ"; } if ($lastDigit === 2) { return "$number-ΡΠΈ"; } if ($lastDigit === 7 || $lastDigit === 8) { return "$number-ΠΌΠΈ"; } return "$number-ΡΠΈ"; }, 'months' => ['ΡΠ½ΡΠ°ΡΠΈ', 'ΡΠ΅Π²ΡΡΠ°ΡΠΈ', 'ΠΌΠ°ΡΡ', 'Π°ΠΏΡΠΈΠ»', 'ΠΌΠ°ΠΉ', 'ΡΠ½ΠΈ', 'ΡΠ»ΠΈ', 'Π°Π²Π³ΡΡΡ', 'ΡΠ΅ΠΏΡΠ΅ΠΌΠ²ΡΠΈ', 'ΠΎΠΊΡΠΎΠΌΠ²ΡΠΈ', 'Π½ΠΎΠ΅ΠΌΠ²ΡΠΈ', 'Π΄Π΅ΠΊΠ΅ΠΌΠ²ΡΠΈ'], 'months_short' => ['ΡΠ½Ρ', 'ΡΠ΅Π²', 'ΠΌΠ°Ρ', 'Π°ΠΏΡ', 'ΠΌΠ°ΠΉ', 'ΡΠ½ΠΈ', 'ΡΠ»ΠΈ', 'Π°Π²Π³', 'ΡΠ΅ΠΏ', 'ΠΎΠΊΡ', 'Π½ΠΎΠ΅', 'Π΄Π΅ΠΊ'], 'weekdays' => ['Π½Π΅Π΄Π΅Π»Ρ', 'ΠΏΠΎΠ½Π΅Π΄Π΅Π»Π½ΠΈΠΊ', 'Π²ΡΠΎΡΠ½ΠΈΠΊ', 'ΡΡΡΠ΄Π°', 'ΡΠ΅ΡΠ²ΡΡΡΡΠΊ', 'ΠΏΠ΅ΡΡΠΊ', 'ΡΡΠ±ΠΎΡΠ°'], 'weekdays_short' => ['Π½Π΅Π΄', 'ΠΏΠΎΠ½', 'Π²ΡΠΎ', 'ΡΡΡ', 'ΡΠ΅Ρ', 'ΠΏΠ΅Ρ', 'ΡΡΠ±'], 'weekdays_min' => ['Π½Π΄', 'ΠΏΠ½', 'Π²Ρ', 'ΡΡ', 'ΡΡ', 'ΠΏΡ', 'ΡΠ±'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' ΠΈ '], 'meridiem' => ['ΠΏΡΠ΅Π΄ΠΈ ΠΎΠ±ΡΠ΄', 'ΡΠ»Π΅Π΄ΠΎΠ±Π΅Π΄'], ];
Save
Cancel