Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • sibidharan/api-development-course-apr-2021
  • krithikramraja/api-development-course-apr-2021
  • monish-palanikumar/api-development-course-apr-2021
  • Pranesh/api-development-course-apr-2021
  • ganesha005/api-development-course-apr-2021
  • selva1011/api-development-course-apr-2021
  • hema/api-development-course-apr-2021
  • Kartheeekn/api-development-course-apr-2021
  • GopiKrishnan/api-development-course-apr-2021
  • Mhd_khalid/api-development-course-apr-2021
  • sibivarma/api-development-course-apr-2021
  • ramanajsr1/api-development-course-apr-2021
  • rahulprem2k2910/api-development-course-apr-2021
  • sabarinathanfb/api-development-course-apr-2021
  • hariharanrd/api-development-course-apr-2021
  • Akram24/api-development-course-apr-2021
  • At_muthu__/api-development-course-apr-2021
  • rii/api-development-course-apr-2021
  • harishvarmaj7/api-development-course-apr-2021
  • moovendhan/rest-api
  • k3XD16/api-development-course-apr-2021
  • vimal/api-development-course-apr-2021
  • shiva007/api-development-course-apr-2021
  • Amudhan/api-development-course-apr-2021
  • abinayacyber604/api-development-course-apr-2021
  • subash_19/api
  • Saransaran/api-development-course-apr-2021
27 results
Show changes
Showing
with 717 additions and 0 deletions
<?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:
* - Philippe Vaucher
* - Tsutomu Kuroda
* - dan-nl
* - Simon Lelorrain (slelorrain)
*/
return [
'year' => ':count Joer',
'y' => ':countJ',
'month' => ':count Mount|:count Méint',
'm' => ':countMo',
'week' => ':count Woch|:count Wochen',
'w' => ':countWo|:countWo',
'day' => ':count Dag|:count Deeg',
'd' => ':countD',
'hour' => ':count Stonn|:count Stonnen',
'h' => ':countSto',
'minute' => ':count Minutt|:count Minutten',
'min' => ':countM',
'second' => ':count Sekonn|:count Sekonnen',
's' => ':countSek',
'ago' => 'virun :time',
'from_now' => 'an :time',
'before' => ':time virdrun',
'after' => ':time duerno',
'diff_today' => 'Haut',
'diff_yesterday' => 'Gëschter',
'diff_yesterday_regexp' => 'Gëschter(?:\\s+um)?',
'diff_tomorrow' => 'Muer',
'diff_tomorrow_regexp' => 'Muer(?:\\s+um)?',
'diff_today_regexp' => 'Haut(?:\\s+um)?',
'formats' => [
'LT' => 'H:mm [Auer]',
'LTS' => 'H:mm:ss [Auer]',
'L' => 'DD.MM.YYYY',
'LL' => 'D. MMMM YYYY',
'LLL' => 'D. MMMM YYYY H:mm [Auer]',
'LLLL' => 'dddd, D. MMMM YYYY H:mm [Auer]',
],
'calendar' => [
'sameDay' => '[Haut um] LT',
'nextDay' => '[Muer um] LT',
'nextWeek' => 'dddd [um] LT',
'lastDay' => '[Gëschter um] LT',
'lastWeek' => function (\Carbon\CarbonInterface $date) {
// Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule
switch ($date->dayOfWeek) {
case 2:
case 4:
return '[Leschten] dddd [um] LT';
default:
return '[Leschte] dddd [um] LT';
}
},
'sameElse' => 'L',
],
'months' => ['Januar', 'Februar', 'Mäerz', 'Abrëll', 'Mee', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],
'months_short' => ['Jan.', 'Febr.', 'Mrz.', 'Abr.', 'Mee', 'Jun.', 'Jul.', 'Aug.', 'Sept.', 'Okt.', 'Nov.', 'Dez.'],
'weekdays' => ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'],
'weekdays_short' => ['So.', 'Mé.', 'Dë.', 'Më.', 'Do.', 'Fr.', 'Sa.'],
'weekdays_min' => ['So', 'Mé', 'Dë', 'Më', 'Do', 'Fr', 'Sa'],
'ordinal' => ':number.',
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' an '],
'meridiem' => ['moies', 'mëttes'],
'weekdays_short_standalone' => ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'],
'months_short_standalone' => ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
];
<?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.
*/
return require __DIR__.'/lb.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.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/lg_UG.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:
* - Akademe ya Luganda Kizito Birabwa kompyuta@kizito.uklinux.net
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YY',
],
'months' => ['Janwaliyo', 'Febwaliyo', 'Marisi', 'Apuli', 'Maayi', 'Juuni', 'Julaayi', 'Agusito', 'Sebuttemba', 'Okitobba', 'Novemba', 'Desemba'],
'months_short' => ['Jan', 'Feb', 'Mar', 'Apu', 'Maa', 'Juu', 'Jul', 'Agu', 'Seb', 'Oki', 'Nov', 'Des'],
'weekdays' => ['Sabiiti', 'Balaza', 'Lwakubiri', 'Lwakusatu', 'Lwakuna', 'Lwakutaano', 'Lwamukaaga'],
'weekdays_short' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'],
'weekdays_min' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'month' => ':count njuba', // less reliable
'm' => ':count njuba', // less reliable
'a_month' => ':count njuba', // less reliable
'year' => ':count mwaaka',
'y' => ':count mwaaka',
'a_year' => ':count mwaaka',
'week' => ':count sabbiiti',
'w' => ':count sabbiiti',
'a_week' => ':count sabbiiti',
'day' => ':count lunaku',
'd' => ':count lunaku',
'a_day' => ':count lunaku',
'hour' => 'saawa :count',
'h' => 'saawa :count',
'a_hour' => 'saawa :count',
'minute' => 'ddakiika :count',
'min' => 'ddakiika :count',
'a_minute' => 'ddakiika :count',
'second' => ':count kyʼokubiri',
's' => ':count kyʼokubiri',
'a_second' => ':count kyʼokubiri',
]);
<?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.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/li_NL.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:
* - 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' => ['jannewarie', 'fibberwarie', 'miert', 'eprèl', 'meij', 'junie', 'julie', 'augustus', 'september', 'oktober', 'november', 'desember'],
'months_short' => ['jan', 'fib', 'mie', 'epr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],
'weekdays' => ['zóndig', 'maondig', 'daensdig', 'goonsdig', 'dónderdig', 'vriedig', 'zaoterdig'],
'weekdays_short' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'],
'weekdays_min' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'minute' => ':count momênt', // less reliable
'min' => ':count momênt', // less reliable
'a_minute' => ':count momênt', // less reliable
'year' => ':count jaor',
'y' => ':count jaor',
'a_year' => ':count jaor',
'month' => ':count maond',
'm' => ':count maond',
'a_month' => ':count maond',
'week' => ':count waek',
'w' => ':count waek',
'a_week' => ':count waek',
'day' => ':count daag',
'd' => ':count daag',
'a_day' => ':count daag',
'hour' => ':count oer',
'h' => ':count oer',
'a_hour' => ':count oer',
'second' => ':count Secónd',
's' => ':count Secónd',
'a_second' => ':count Secónd',
]);
<?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.
*/
/*
* Unknown default region, use the first alphabetically.
*/
return require __DIR__.'/lij_IT.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:
* - Gastaldi alessio.gastaldi@libero.it
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['zenâ', 'fevrâ', 'marzo', 'avrî', 'mazzo', 'zûgno', 'lûggio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dixembre'],
'months_short' => ['zen', 'fev', 'mar', 'arv', 'maz', 'zûg', 'lûg', 'ago', 'set', 'ött', 'nov', 'dix'],
'weekdays' => ['domenega', 'lûnedì', 'martedì', 'mercUrdì', 'zêggia', 'venardì', 'sabbo'],
'weekdays_short' => ['dom', 'lûn', 'mar', 'mer', 'zêu', 'ven', 'sab'],
'weekdays_min' => ['dom', 'lûn', 'mar', 'mer', 'zêu', 'ven', 'sab'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'year' => ':count etæ', // less reliable
'y' => ':count etæ', // less reliable
'a_year' => ':count etæ', // less reliable
'month' => ':count meize',
'm' => ':count meize',
'a_month' => ':count meize',
'week' => ':count settemannha',
'w' => ':count settemannha',
'a_week' => ':count settemannha',
'day' => ':count giorno',
'd' => ':count giorno',
'a_day' => ':count giorno',
'hour' => ':count reléuio', // less reliable
'h' => ':count reléuio', // less reliable
'a_hour' => ':count reléuio', // less reliable
'minute' => ':count menûo',
'min' => ':count menûo',
'a_minute' => ':count menûo',
'second' => ':count segondo',
's' => ':count segondo',
'a_second' => ':count segondo',
]);
<?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.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'month' => ':count haŋwí', // less reliable
'm' => ':count haŋwí', // less reliable
'a_month' => ':count haŋwí', // less reliable
'week' => ':count šakówiŋ', // less reliable
'w' => ':count šakówiŋ', // less reliable
'a_week' => ':count šakówiŋ', // less reliable
'hour' => ':count maza škaŋškaŋ', // less reliable
'h' => ':count maza škaŋškaŋ', // less reliable
'a_hour' => ':count maza škaŋškaŋ', // less reliable
'minute' => ':count číkʼala', // less reliable
'min' => ':count číkʼala', // less reliable
'a_minute' => ':count číkʼala', // less reliable
'year' => ':count waníyetu',
'y' => ':count waníyetu',
'a_year' => ':count waníyetu',
'day' => ':count aŋpétu',
'd' => ':count aŋpétu',
'a_day' => ':count aŋpétu',
'second' => ':count icinuŋpa',
's' => ':count icinuŋpa',
'a_second' => ':count icinuŋpa',
]);
<?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:
* - Ubuntu René Manassé GALEKWA renemanasse@gmail.com
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'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',
],
'months' => ['sánzá ya yambo', 'sánzá ya míbalé', 'sánzá ya mísáto', 'sánzá ya mínei', 'sánzá ya mítáno', 'sánzá ya motóbá', 'sánzá ya nsambo', 'sánzá ya mwambe', 'sánzá ya libwa', 'sánzá ya zómi', 'sánzá ya zómi na mɔ̌kɔ́', 'sánzá ya zómi na míbalé'],
'months_short' => ['yan', 'fbl', 'msi', 'apl', 'mai', 'yun', 'yul', 'agt', 'stb', 'ɔtb', 'nvb', 'dsb'],
'weekdays' => ['Lomíngo', 'Mosálá mɔ̌kɔ́', 'Misálá míbalé', 'Misálá mísáto', 'Misálá mínei', 'Misálá mítáno', 'Mpɔ́sɔ'],
'weekdays_short' => ['m1.', 'm2.', 'm3.', 'm4.', 'm5.', 'm6.', 'm7.'],
'weekdays_min' => ['m1.', 'm2.', 'm3.', 'm4.', 'm5.', 'm6.', 'm7.'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'year' => 'mbula :count',
'y' => 'mbula :count',
'a_year' => 'mbula :count',
'month' => 'sánzá :count',
'm' => 'sánzá :count',
'a_month' => 'sánzá :count',
'week' => 'mpɔ́sɔ :count',
'w' => 'mpɔ́sɔ :count',
'a_week' => 'mpɔ́sɔ :count',
'day' => 'mokɔlɔ :count',
'd' => 'mokɔlɔ :count',
'a_day' => 'mokɔlɔ :count',
'hour' => 'ngonga :count',
'h' => 'ngonga :count',
'a_hour' => 'ngonga :count',
'minute' => 'miniti :count',
'min' => 'miniti :count',
'a_minute' => 'miniti :count',
'second' => 'segɔnde :count',
's' => 'segɔnde :count',
'a_second' => 'segɔnde :count',
]);
<?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.
*/
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'],
]);
<?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:
* - Ubuntu René Manassé GALEKWA renemanasse@gmail.com
*/
return require __DIR__.'/ln.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.
*/
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'],
]);
<?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.
*/
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'],
]);
<?php
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* Authors:
* - François B
* - ryanhart2
*/
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' => '{1}ບໍ່ເທົ່າໃດວິນາທີ|]1,Inf[:count ວິນາທີ',
's' => ':count ວິ. ',
'ago' => ':timeຜ່ານມາ',
'from_now' => 'ອີກ :time',
'diff_now' => 'ຕອນນີ້',
'diff_today' => 'ມື້ນີ້ເວລາ',
'diff_yesterday' => 'ມື້ວານນີ້ເວລາ',
'diff_tomorrow' => 'ມື້ອື່ນເວລາ',
'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' => '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',
'sameElse' => 'L',
],
'ordinal' => 'ທີ່:number',
'meridiem' => ['ຕອນເຊົ້າ', 'ຕອນແລງ'],
'months' => ['ມັງກອນ', 'ກຸມພາ', 'ມີນາ', 'ເມສາ', 'ພຶດສະພາ', 'ມິຖຸນາ', 'ກໍລະກົດ', 'ສິງຫາ', 'ກັນຍາ', 'ຕຸລາ', 'ພະຈິກ', 'ທັນວາ'],
'months_short' => ['ມັງກອນ', 'ກຸມພາ', 'ມີນາ', 'ເມສາ', 'ພຶດສະພາ', 'ມິຖຸນາ', 'ກໍລະກົດ', 'ສິງຫາ', 'ກັນຍາ', 'ຕຸລາ', 'ພະຈິກ', 'ທັນວາ'],
'weekdays' => ['ອາທິດ', 'ຈັນ', 'ອັງຄານ', 'ພຸດ', 'ພະຫັດ', 'ສຸກ', 'ເສົາ'],
'weekdays_short' => ['ທິດ', 'ຈັນ', 'ອັງຄານ', 'ພຸດ', 'ພະຫັດ', 'ສຸກ', 'ເສົາ'],
'weekdays_min' => ['ທ', 'ຈ', 'ອຄ', 'ພ', 'ພຫ', 'ສກ', 'ສ'],
'list' => [', ', 'ແລະ '],
];
<?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.
*/
return require __DIR__.'/lo.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.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'minute' => ':count هنر', // less reliable
'min' => ':count هنر', // less reliable
'a_minute' => ':count هنر', // less reliable
]);
<?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.
*/
return array_replace_recursive(require __DIR__.'/lrc.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:
* - 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'],
];
<?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.
*/
return require __DIR__.'/lt.php';