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 593 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.
*/
return require __DIR__.'/sr.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__.'/sr_Latn.php', [
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'D.M.yy.',
'LL' => 'DD.MM.YYYY.',
'LLL' => 'DD. MMMM YYYY. HH:mm',
'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm',
],
'weekdays' => ['nedjelja', 'ponedeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],
'weekdays_short' => ['ned.', 'pon.', 'ut.', 'sr.', 'čet.', 'pet.', 'sub.'],
]);
<?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:
* - Glavić
* - Milos Sakovic
*/
return array_replace_recursive(require __DIR__.'/sr.php', [
'month' => ':count mjesec|:count mjeseca|:count mjeseci',
'week' => ':count nedjelja|:count nedjelje|:count nedjelja',
'second' => ':count sekund|:count sekunde|:count sekundi',
'ago' => 'prije :time',
'from_now' => 'za :time',
'after' => ':time nakon',
'before' => ':time prije',
'week_from_now' => ':count nedjelju|:count nedjelje|:count nedjelja',
'week_ago' => ':count nedjelju|:count nedjelje|:count nedjelja',
'diff_tomorrow' => 'sjutra',
'calendar' => [
'nextDay' => '[sjutra u] LT',
'nextWeek' => function (\Carbon\CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[u nedjelju u] LT';
case 3:
return '[u srijedu u] LT';
case 6:
return '[u subotu u] LT';
default:
return '[u] dddd [u] LT';
}
},
'lastWeek' => function (\Carbon\CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[prošle nedjelje u] LT';
case 1:
return '[prošle nedjelje u] LT';
case 2:
return '[prošlog utorka u] LT';
case 3:
return '[prošle srijede 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';
}
},
],
'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'],
'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'],
]);
<?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__.'/sr_Latn_BA.php', [
'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'],
]);
<?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__.'/sr_Latn_ME.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:
* - sr_YU, sr_CS locale Danilo Segan bug-glibc-locales@gnu.org
*/
return require __DIR__.'/sr_Cyrl.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 require __DIR__.'/sr.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:
* - François B
* - Nicolai Davies
*/
return [
'year' => '{1}umnyaka|:count iminyaka',
'month' => '{1}inyanga|:count tinyanga',
'week' => '{1}:count liviki|:count emaviki',
'day' => '{1}lilanga|:count emalanga',
'hour' => '{1}lihora|:count emahora',
'minute' => '{1}umzuzu|:count emizuzu',
'second' => '{1}emizuzwana lomcane|:count mzuzwana',
'ago' => 'wenteka nga :time',
'from_now' => 'nga :time',
'diff_yesterday' => 'Itolo',
'diff_yesterday_regexp' => 'Itolo(?:\\s+nga)?',
'diff_today' => 'Namuhla',
'diff_today_regexp' => 'Namuhla(?:\\s+nga)?',
'diff_tomorrow' => 'Kusasa',
'diff_tomorrow_regexp' => 'Kusasa(?:\\s+nga)?',
'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' => '[Namuhla nga] LT',
'nextDay' => '[Kusasa nga] LT',
'nextWeek' => 'dddd [nga] LT',
'lastDay' => '[Itolo nga] LT',
'lastWeek' => 'dddd [leliphelile] [nga] LT',
'sameElse' => 'L',
],
'ordinal' => function ($number) {
$lastDigit = $number % 10;
return $number.(
(~~($number % 100 / 10) === 1) ? 'e' : (
($lastDigit === 1 || $lastDigit === 2) ? 'a' : 'e'
)
);
},
'meridiem' => function ($hour) {
if ($hour < 11) {
return 'ekuseni';
}
if ($hour < 15) {
return 'emini';
}
if ($hour < 19) {
return 'entsambama';
}
return 'ebusuku';
},
'months' => ['Bhimbidvwane', 'Indlovana', 'Indlov\'lenkhulu', 'Mabasa', 'Inkhwekhweti', 'Inhlaba', 'Kholwane', 'Ingci', 'Inyoni', 'Imphala', 'Lweti', 'Ingongoni'],
'months_short' => ['Bhi', 'Ina', 'Inu', 'Mab', 'Ink', 'Inh', 'Kho', 'Igc', 'Iny', 'Imp', 'Lwe', 'Igo'],
'weekdays' => ['Lisontfo', 'Umsombuluko', 'Lesibili', 'Lesitsatfu', 'Lesine', 'Lesihlanu', 'Umgcibelo'],
'weekdays_short' => ['Lis', 'Umb', 'Lsb', 'Les', 'Lsi', 'Lsh', 'Umg'],
'weekdays_min' => ['Li', 'Us', 'Lb', 'Lt', 'Ls', 'Lh', 'Ug'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
];
<?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__.'/ss.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__.'/st_ZA.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:
* - 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' => ['Pherekgong', 'Hlakola', 'Tlhakubele', 'Mmese', 'Motsheanong', 'Phupjane', 'Phupu', 'Phato', 'Leotse', 'Mphalane', 'Pudungwana', 'Tshitwe'],
'months_short' => ['Phe', 'Hla', 'TlH', 'Mme', 'Mot', 'Jan', 'Upu', 'Pha', 'Leo', 'Mph', 'Pud', 'Tsh'],
'weekdays' => ['Sontaha', 'Mantaha', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Moqebelo'],
'weekdays_short' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'],
'weekdays_min' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'],
'day_of_first_week_of_year' => 1,
'week' => ':count Sontaha', // less reliable
'w' => ':count Sontaha', // less reliable
'a_week' => ':count Sontaha', // less reliable
'day' => ':count letsatsi', // less reliable
'd' => ':count letsatsi', // less reliable
'a_day' => ':count letsatsi', // less reliable
'hour' => ':count sešupanako', // less reliable
'h' => ':count sešupanako', // less reliable
'a_hour' => ':count sešupanako', // less reliable
'minute' => ':count menyane', // less reliable
'min' => ':count menyane', // less reliable
'a_minute' => ':count menyane', // less reliable
'second' => ':count thusa', // less reliable
's' => ':count thusa', // less reliable
'a_second' => ':count thusa', // less reliable
'year' => ':count selemo',
'y' => ':count selemo',
'a_year' => ':count selemo',
'month' => ':count kgwedi',
'm' => ':count kgwedi',
'a_month' => ':count kgwedi',
]);
<?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
* - Kristoffer Snabb
* - JD Isaacks
* - Jens Herlevsen
* - Nightpine
* - Anders Nygren (litemerafrukt)
*/
return [
'year' => ':count år',
'a_year' => 'ett år|:count år',
'y' => ':count år',
'month' => ':count månad|:count månader',
'a_month' => 'en månad|:count månader',
'm' => ':count mån',
'week' => ':count vecka|:count veckor',
'a_week' => 'en vecka|:count veckor',
'w' => ':count v',
'day' => ':count dag|:count dagar',
'a_day' => 'en dag|:count dagar',
'd' => ':count dgr',
'hour' => ':count timme|:count timmar',
'a_hour' => 'en timme|:count timmar',
'h' => ':count tim',
'minute' => ':count minut|:count minuter',
'a_minute' => 'en minut|:count minuter',
'min' => ':count min',
'second' => ':count sekund|:count sekunder',
'a_second' => 'några sekunder|:count sekunder',
's' => ':count s',
'ago' => 'för :time sedan',
'from_now' => 'om :time',
'after' => ':time efter',
'before' => ':time före',
'diff_now' => 'nu',
'diff_today' => 'I dag',
'diff_yesterday' => 'i går',
'diff_yesterday_regexp' => 'I går',
'diff_tomorrow' => 'i morgon',
'diff_tomorrow_regexp' => 'I morgon',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'YYYY-MM-DD',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY [kl.] HH:mm',
'LLLL' => 'dddd D MMMM YYYY [kl.] HH:mm',
],
'calendar' => [
'sameDay' => '[I dag] LT',
'nextDay' => '[I morgon] LT',
'nextWeek' => '[På] dddd LT',
'lastDay' => '[I går] LT',
'lastWeek' => '[I] dddd[s] LT',
'sameElse' => 'L',
],
'ordinal' => function ($number) {
$lastDigit = $number % 10;
return $number.(
(~~($number % 100 / 10) === 1) ? 'e' : (
($lastDigit === 1 || $lastDigit === 2) ? 'a' : 'e'
)
);
},
'months' => ['januari', 'februari', 'mars', 'april', 'maj', 'juni', 'juli', 'augusti', 'september', 'oktober', 'november', 'december'],
'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
'weekdays' => ['söndag', 'måndag', 'tisdag', 'onsdag', 'torsdag', 'fredag', 'lördag'],
'weekdays_short' => ['sön', 'mån', 'tis', 'ons', 'tors', 'fre', 'lör'],
'weekdays_min' => ['sö', 'må', 'ti', 'on', 'to', 'fr', 'lö'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' och '],
'meridiem' => ['fm', 'em'],
];
<?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__.'/sv.php', [
'formats' => [
'L' => 'YYYY-MM-dd',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd D MMMM YYYY HH:mm',
],
]);
<?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__.'/sv.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 require __DIR__.'/sv.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:
* - leyluj
* - Josh Soref
* - ryanhart2
*/
return [
'year' => 'mwaka :count|miaka :count',
'a_year' => 'mwaka mmoja|miaka :count',
'y' => 'mwaka :count|miaka :count',
'month' => 'mwezi :count|miezi :count',
'a_month' => 'mwezi mmoja|miezi :count',
'm' => 'mwezi :count|miezi :count',
'week' => 'wiki :count',
'a_week' => 'wiki mmoja|wiki :count',
'w' => 'w. :count',
'day' => 'siku :count',
'a_day' => 'siku moja|masiku :count',
'd' => 'si. :count',
'hour' => 'saa :count|masaa :count',
'a_hour' => 'saa limoja|masaa :count',
'h' => 'saa :count|masaa :count',
'minute' => 'dakika :count',
'a_minute' => 'dakika moja|dakika :count',
'min' => 'd. :count',
'second' => 'sekunde :count',
'a_second' => 'hivi punde|sekunde :count',
's' => 'se. :count',
'ago' => 'tokea :time',
'from_now' => ':time baadaye',
'after' => ':time baada',
'before' => ':time kabla',
'diff_now' => 'sasa hivi',
'diff_today' => 'leo',
'diff_today_regexp' => 'leo(?:\\s+saa)?',
'diff_yesterday' => 'jana',
'diff_tomorrow' => 'kesho',
'diff_tomorrow_regexp' => 'kesho(?:\\s+saa)?',
'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' => '[leo saa] LT',
'nextDay' => '[kesho saa] LT',
'nextWeek' => '[wiki ijayo] dddd [saat] LT',
'lastDay' => '[jana] LT',
'lastWeek' => '[wiki iliyopita] dddd [saat] LT',
'sameElse' => 'L',
],
'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],
'weekdays_short' => ['Jpl', 'Jtat', 'Jnne', 'Jtan', 'Alh', 'Ijm', 'Jmos'],
'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'list' => [', ', ' na '],
];
<?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__.'/sw.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
],
]);
<?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:
* - Kamusi Project Martin Benjamin locales@kamusi.org
*/
return array_replace_recursive(require __DIR__.'/sw.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],
'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],
'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],
'day_of_first_week_of_year' => 1,
'meridiem' => ['asubuhi', 'alasiri'],
]);
<?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:
* - Kamusi Project Martin Benjamin locales@kamusi.org
*/
return array_replace_recursive(require __DIR__.'/sw.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],
'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],
'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'meridiem' => ['asubuhi', 'alasiri'],
]);
<?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__.'/sw.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
],
]);