New Controllers added. Added Charts

This commit is contained in:
2017-09-19 22:01:00 +02:00
parent ccc5b07ddf
commit 930311b550
400 changed files with 30686 additions and 8 deletions

View File

@@ -0,0 +1,508 @@
<?php namespace Jenssegers\Date;
use Carbon\Carbon;
use DateInterval;
use DateTimeZone;
use Symfony\Component\Translation\Loader\ArrayLoader;
use Symfony\Component\Translation\Translator;
use Symfony\Component\Translation\TranslatorInterface;
class Date extends Carbon
{
/**
* The Translator implementation.
*
* @var Translator
*/
protected static $translator;
/**
* The fallback locale when a locale is not available.
*
* @var string
*/
protected static $fallbackLocale = 'en';
/**
* The errors that can occur.
*
* @var array
*/
protected static $lastErrors;
/**
* Returns new DateTime object.
*
* @param string $time
* @param string|DateTimeZone $timezone
* @return Date
*/
public function __construct($time = null, $timezone = null)
{
if (is_int($time)) {
$timestamp = $time;
$time = null;
} else {
$timestamp = null;
}
parent::__construct($time, $timezone);
if ($timestamp !== null) {
$this->setTimestamp($timestamp);
}
}
/**
* Create and return new Date instance.
*
* @param string $time
* @param string|DateTimeZone $timezone
* @return Date
*/
public static function make($time = null, $timezone = null)
{
return static::parse($time, $timezone);
}
/**
* Create a Date instance from a string.
*
* @param string $time
* @param string|DateTimeZone $timezone
* @return Date
*/
public static function parse($time = null, $timezone = null)
{
if ($time instanceof Carbon) {
return new static(
$time->toDateTimeString(),
$timezone ?: $time->getTimezone()
);
}
if (! is_int($time)) {
$time = static::translateTimeString($time);
}
return new static($time, $timezone);
}
/**
* @inheritdoc
*/
public static function createFromFormat($format, $time, $timezone = null)
{
$time = static::translateTimeString($time);
return parent::createFromFormat($format, $time, $timezone);
}
/**
* @inheritdoc
*/
public function diffForHumans(Carbon $since = null, $absolute = false, $short = false)
{
// Are we comparing against another date?
$relative = ! is_null($since);
if (is_null($since)) {
$since = new static('now', $this->getTimezone());
}
// Are we comparing to a date in the future?
$future = $since->getTimestamp() < $this->getTimestamp();
// Calculate difference between the 2 dates.
$diff = $this->diff($since);
switch (true) {
case $diff->y > 0:
$unit = $short ? 'y' : 'year';
$count = $diff->y;
break;
case $diff->m > 0:
$unit = $short ? 'm' : 'month';
$count = $diff->m;
break;
case $diff->d > 0:
$unit = $short ? 'd' : 'day';
$count = $diff->d;
if ($count >= static::DAYS_PER_WEEK) {
$unit = $short ? 'w' : 'week';
$count = (int) ($count / static::DAYS_PER_WEEK);
}
break;
case $diff->h > 0:
$unit = $short ? 'h' : 'hour';
$count = $diff->h;
break;
case $diff->i > 0:
$unit = $short ? 'min' : 'minute';
$count = $diff->i;
break;
default:
$count = $diff->s;
$unit = $short ? 's' : 'second';
break;
}
if ($count === 0) {
$count = 1;
}
// Select the suffix.
if ($relative) {
$suffix = $future ? 'after' : 'before';
} else {
$suffix = $future ? 'from_now' : 'ago';
}
// Get translator instance.
$lang = $this->getTranslator();
// Some languages have different unit translations when used in combination
// with a specific suffix. Here we will check if there is an optional
// translation for that specific suffix and use it if it exists.
if ($lang->trans("${unit}_diff") != "${unit}_diff") {
$ago = $lang->transChoice("${unit}_diff", $count, [':count' => $count]);
} elseif ($lang->trans("${unit}_${suffix}") != "${unit}_${suffix}") {
$ago = $lang->transChoice("${unit}_${suffix}", $count, [':count' => $count]);
} else {
$ago = $lang->transChoice($unit, $count, [':count' => $count]);
}
if ($absolute) {
return $ago;
}
return $lang->transChoice($suffix, $count, [':time' => $ago]);
}
/**
* Alias for diffForHumans.
*
* @param Date $since
* @param bool $absolute Removes time difference modifiers ago, after, etc
* @return string
*/
public function ago($since = null, $absolute = false)
{
return $this->diffForHumans($since, $absolute);
}
/**
* Alias for diffForHumans.
*
* @param Date $since
* @return string
*/
public function until($since = null)
{
return $this->ago($since);
}
/**
* @inheritdoc
*/
public function format($format)
{
$replace = [];
// Loop all format characters and check if we can translate them.
for ($i = 0; $i < strlen($format); $i++) {
$character = $format[$i];
// Check if we can replace it with a translated version.
if (in_array($character, ['D', 'l', 'F', 'M'])) {
// Check escaped characters.
if ($i > 0 and $format[$i - 1] == '\\') {
continue;
}
switch ($character) {
case 'D':
$key = parent::format('l');
break;
case 'M':
$key = parent::format('F');
break;
default:
$key = parent::format($character);
}
// The original result.
$original = parent::format($character);
// Translate.
$lang = $this->getTranslator();
// For declension support, we need to check if the month is lead by a numeric number.
// If so, we will use the second translation choice if it is available.
if (in_array($character, ['F', 'M'])) {
$choice = (($i - 2) >= 0 and in_array($format[$i - 2], ['d', 'j'])) ? 1 : 0;
$translated = $lang->transChoice(mb_strtolower($key), $choice);
} else {
$translated = $lang->trans(mb_strtolower($key));
}
// Short notations.
if (in_array($character, ['D', 'M'])) {
$toTranslate = mb_strtolower($original);
$shortTranslated = $lang->trans($toTranslate);
if ($shortTranslated === $toTranslate) {
// use the first 3 characters as short notation
$translated = mb_substr($translated, 0, 3);
} else {
// use translated version
$translated = $shortTranslated;
}
}
// Add to replace list.
if ($translated and $original != $translated) {
$replace[$original] = $translated;
}
}
}
// Replace translations.
if ($replace) {
return str_replace(array_keys($replace), array_values($replace), parent::format($format));
}
return parent::format($format);
}
/**
* Gets the timespan between this date and another date.
*
* @param Date $time
* @param string|DateTimeZone $timezone
* @return int
*/
public function timespan($time = null, $timezone = null)
{
// Get translator
$lang = $this->getTranslator();
// Create Date instance if needed
if (! $time instanceof static) {
$time = Date::parse($time, $timezone);
}
$units = [
'y' => 'year',
'm' => 'month',
'w' => 'week',
'd' => 'day',
'h' => 'hour',
'i' => 'minute',
's' => 'second',
];
// Get DateInterval and cast to array
$interval = (array) $this->diff($time);
// Get weeks
$interval['w'] = (int) ($interval['d'] / 7);
$interval['d'] = $interval['d'] % 7;
// Get ready to build
$str = [];
// Loop all units and build string
foreach ($units as $k => $unit) {
if ($interval[$k]) {
$str[] = $lang->transChoice($unit, $interval[$k], [':count' => $interval[$k]]);
}
}
return implode(', ', $str);
}
/**
* Adds an amount of days, months, years, hours, minutes and seconds to a Date object.
*
* @param DateInterval|string $interval
* @return Date|bool
*/
public function add($interval)
{
if (is_string($interval)) {
// Check for ISO 8601
if (strtoupper(substr($interval, 0, 1)) == 'P') {
$interval = new DateInterval($interval);
} else {
$interval = DateInterval::createFromDateString($interval);
}
}
return parent::add($interval) ? $this : false;
}
/**
* Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object.
*
* @param DateInterval|string $interval
* @return Date|bool
*/
public function sub($interval)
{
if (is_string($interval)) {
// Check for ISO 8601
if (strtoupper(substr($interval, 0, 1)) == 'P') {
$interval = new DateInterval($interval);
} else {
$interval = DateInterval::createFromDateString($interval);
}
}
return parent::sub($interval) ? $this : false;
}
/**
* @inheritdoc
*/
public static function getLocale()
{
return static::getTranslator()->getLocale();
}
/**
* @inheritdoc
*/
public static function setLocale($locale)
{
// Use RFC 5646 for filenames.
$resource = __DIR__.'/Lang/'.str_replace('_', '-', $locale).'.php';
if (! file_exists($resource)) {
static::setLocale(static::getFallbackLocale());
return;
}
// Symfony locale format.
$locale = str_replace('-', '_', $locale);
// Set locale and load translations.
static::getTranslator()->setLocale($locale);
static::getTranslator()->addResource('array', require $resource, $locale);
}
/**
* Set the fallback locale.
*
* @param string $locale
* @return void
*/
public static function setFallbackLocale($locale)
{
static::$fallbackLocale = $locale;
static::getTranslator()->setFallbackLocales([$locale]);
}
/**
* Get the fallback locale.
*
* @return string
*/
public static function getFallbackLocale()
{
return static::$fallbackLocale;
}
/**
* @inheritdoc
*/
public static function getTranslator()
{
if (static::$translator === null) {
static::$translator = new Translator('en');
static::$translator->addLoader('array', new ArrayLoader());
static::setLocale('en');
}
return static::$translator;
}
/**
* @inheritdoc
*/
public static function setTranslator(TranslatorInterface $translator)
{
static::$translator = $translator;
}
/**
* Translate a locale based time string to its english equivalent.
*
* @param string $time
* @return string
*/
public static function translateTimeString($time)
{
// Don't run translations for english.
if (static::getLocale() == 'en') {
return $time;
}
// All the language file items we can translate.
$keys = [
'january',
'february',
'march',
'april',
'may',
'june',
'july',
'august',
'september',
'october',
'november',
'december',
'monday',
'tuesday',
'wednesday',
'thursday',
'friday',
'saturday',
'sunday',
];
// Get all the language lines of the current locale.
$all = static::getTranslator()->getCatalogue()->all();
$terms = array_intersect_key($all['messages'], array_flip((array) $keys));
// Split terms with a | sign.
foreach ($terms as $i => $term) {
if (strpos($term, '|') === false) {
continue;
}
// Split term options.
$options = explode('|', $term);
// Remove :count and {count} placeholders.
$options = array_map(function ($option) {
$option = trim(str_replace(':count', '', $option));
$option = preg_replace('/({\d+(,(\d+|Inf))?}|\[\d+(,(\d+|Inf))?\])/', '', $option);
return $option;
}, $options);
$terms[$i] = $options;
}
// Replace the localized words with English words.
$translated = $time;
foreach ($terms as $english => $localized) {
$translated = str_ireplace($localized, $english, $translated);
}
return $translated;
}
}

View File

@@ -0,0 +1,58 @@
<?php namespace Jenssegers\Date;
use Illuminate\Support\ServiceProvider;
class DateServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
$this->app['events']->listen('locale.changed', function () {
$this->setLocale();
});
$this->setLocale();
}
/**
* Set the locale.
*
*/
protected function setLocale()
{
$locale = $this->app['translator']->getLocale();
Date::setLocale($locale);
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
// Nothing.
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return ['Date'];
}
}

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'منذ :time',
'from_now' => ':time من الآن',
'after' => 'بعد :time',
'before' => 'قبل :time',
'year' => '{0}سنة|{1}سنة|{2}سنتين|[3,10]:count سنوات|[11,Inf]:count سنة',
'month' => '{0}شهر|{1}شهر|{2}شهرين|[3,10]:count أشهر|[11,Inf]:count شهر',
'week' => '{0}أسبوع|{1}أسبوع|{2}أسبوعين|[3,10]:count أسابيع|[11,Inf]:count أسبوع',
'day' => '{0}يوم|{1}يوم|{2}يومين|[3,10]:count أيام|[11,Inf]:count يوم',
'hour' => '{0}ساعة|{1}ساعة|{2}ساعتين|[3,10]:count ساعات|[11,Inf]:count ساعة',
'minute' => '{0}دقيقة|{1}دقيقة|{2}دقيقتين|[3,10]:count دقائق|[11,Inf]:count دقيقة',
'second' => '{0}ثانية|{1}ثانية|{2}ثانيتين|[3,10]:count ثوان|[11,Inf]:count ثانية',
'january' => 'يناير',
'february' => 'فبراير',
'march' => 'مارس',
'april' => 'إبريل',
'may' => 'مايو',
'june' => 'يونيو',
'july' => 'يوليو',
'august' => 'أغسطس',
'september' => 'سبتمبر',
'october' => 'أكتوبر',
'november' => 'نوفمبر',
'december' => 'ديسمبر',
'monday' => 'الاثنين',
'tuesday' => 'الثلاثاء',
'wednesday' => 'الأربعاء',
'thursday' => 'الخميس',
'friday' => 'الجمعة',
'saturday' => 'السبت',
'sunday' => 'الأحد',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time öncə',
'from_now' => ':time sonra',
'after' => ':time sonra',
'before' => ':time öncə',
'year' => ':count il',
'month' => ':count ay',
'week' => ':count həftə',
'day' => ':count gün',
'hour' => ':count saat',
'minute' => ':count dəqiqə',
'second' => ':count saniyə',
'january' => 'Yanvar',
'february' => 'Fevral',
'march' => 'Mart',
'april' => 'Aprel',
'may' => 'May',
'june' => 'İyun',
'july' => 'İyul',
'august' => 'Avqust',
'september' => 'Sentyabr',
'october' => 'Oktyabr',
'november' => 'Noyabr',
'december' => 'Dekabr',
'monday' => 'Bazar ertəsi',
'tuesday' => 'Çərşənbə axşamı',
'wednesday' => 'Çərşənbə',
'thursday' => 'Cümə axşamı',
'friday' => 'Cümə',
'saturday' => 'Şənbə',
'sunday' => 'Bazar',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time পূর্বে',
'from_now' => ':time এখন থেকে',
'after' => ':time পরে',
'before' => ':time আগে',
'year' => ':count বছর',
'month' => ':count মাস',
'week' => ':count সপ্তাহ',
'day' => ':count দিন',
'hour' => ':count ঘন্টা',
'minute' => ':count মিনিট',
'second' => ':count সেকেন্ড',
'january' => 'জানুয়ারী',
'february' => 'ফেব্রুয়ারি',
'march' => 'মার্চ',
'april' => 'এপ্রিল',
'may' => 'মে',
'june' => 'জুন',
'july' => 'জুলাই',
'august' => 'আগস্ট',
'september' => 'সেপ্টেম্বর',
'october' => 'অক্টোবর',
'november' => 'নভেম্বর',
'december' => 'ডিসেম্বর',
'monday' => 'সোমবার',
'tuesday' => 'মঙ্গলবার',
'wednesday' => 'বুধবার',
'thursday' => 'বৃহস্পতিবার',
'friday' => 'শুক্রবার',
'saturday' => 'শনিবার',
'sunday' => 'রবিবার',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'преди :time',
'from_now' => ':time от сега',
'after' => 'след :time',
'before' => 'преди :time',
'year' => '1 година|:count години',
'month' => '1 месец|:count месеца',
'week' => '1 седмица|:count седмици',
'day' => '1 ден|:count дни',
'hour' => '1 час|:count часа',
'minute' => '1 минута|:count минути',
'second' => '1 секунда|:count секунди',
'january' => 'януари',
'february' => 'февруари',
'march' => 'март',
'april' => 'април',
'may' => 'май',
'june' => 'юни',
'july' => 'юли',
'august' => 'август',
'september' => 'септември',
'october' => 'октомври',
'november' => 'ноември',
'december' => 'декември',
'monday' => 'понеделник',
'tuesday' => 'вторник',
'wednesday' => 'сряда',
'thursday' => 'четвъртък',
'friday' => 'петък',
'saturday' => 'събота',
'sunday' => 'неделя',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'Fa :time',
'from_now' => 'Dins de :time',
'after' => ':time després',
'before' => ':time abans',
'year' => '1 any|:count anys',
'month' => '1 mes|:count mesos',
'week' => '1 setmana|:count setmanes',
'day' => '1 dia|:count díes',
'hour' => '1 hora|:count hores',
'minute' => '1 minut|:count minuts',
'second' => '1 segon|:count segons',
'january' => 'gener',
'february' => 'febrer',
'march' => 'març',
'april' => 'abril',
'may' => 'maig',
'june' => 'juny',
'july' => 'juliol',
'august' => 'agost',
'september' => 'setembre',
'october' => 'octubre',
'november' => 'novembre',
'december' => 'desembre',
'monday' => 'dilluns',
'tuesday' => 'dimarts',
'wednesday' => 'dimecres',
'thursday' => 'dijous',
'friday' => 'divendres',
'saturday' => 'dissabte',
'sunday' => 'diumenge',
];

View File

@@ -0,0 +1,55 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'před :time',
'from_now' => 'za :time',
'after' => ':time později',
'before' => ':time předtím',
'year' => 'rok|:count roky|:count let',
'month' => 'měsíc|:count měsíce|:count měsíců',
'week' => 'týden|:count týdny|:count týdnů',
'day' => 'den|:count dny|:count dní',
'hour' => 'hodinu|:count hodiny|:count hodin',
'minute' => 'minutu|:count minuty|:count minut',
'second' => 'sekundu|:count sekundy|:count sekund',
'january' => 'leden',
'february' => 'únor',
'march' => 'březen',
'april' => 'duben',
'may' => 'květen',
'june' => 'červen',
'july' => 'červenec',
'august' => 'srpen',
'september' => 'září',
'october' => 'říjen',
'november' => 'listopad',
'december' => 'prosinec',
'monday' => 'pondělí',
'tuesday' => 'uterý',
'wednesday' => 'středa',
'thursday' => 'čtvrtek',
'friday' => 'pátek',
'saturday' => 'sobota',
'sunday' => 'neděle',
'year_ago' => 'rokem|[2,Inf]:count lety',
'month_ago' => 'měsícem|[2,Inf]:count měsíci',
'week_ago' => 'týdnem|[2,Inf]:count týdny',
'day_ago' => 'jedním dnem|[2,Inf]:count dny',
'hour_ago' => 'hodinou|[2,Inf]:count hodinami',
'minute_ago' => 'minutou|[2,Inf]:count minutami',
'second_ago' => '{0}0 sekundami|{1}sekundou|[2,Inf]:count sekundami',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time yn ôl',
'from_now' => 'mewn :time',
'after' => ':time ar ôl',
'before' => ':time cyn',
'year' => '1 blwyddyn|:count flynedd|:count mlynedd|:count mlynedd',
'month' => '1 mis|:count fis|:count mis|:count mis',
'week' => '1 wythnos|:count wythnos|:count wythnos|:count wythnos',
'day' => '1 diwrnod|:count ddiwrnod|:count diwrnod|:count diwrnod',
'hour' => ':count awr',
'minute' => '1 munud|:count funud|:count munud|:count munud',
'second' => ':count eiliad',
'january' => 'Ionawr',
'february' => 'Chwefror',
'march' => 'Mawrth',
'april' => 'Ebrill',
'may' => 'Mai',
'june' => 'Mehefin',
'july' => 'Gorffenaf',
'august' => 'Awst',
'september' => 'Medi',
'october' => 'Hydref',
'november' => 'Tachwedd',
'december' => 'Rhagfyr',
'monday' => 'Dydd Llun',
'tuesday' => 'Dydd Mawrth',
'wednesday' => 'Dydd Mercher',
'thursday' => 'Dydd Iau',
'friday' => 'Dydd Gwener',
'saturday' => 'Dydd Sadwrn',
'sunday' => 'Dydd Sul',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time siden',
'from_now' => 'om :time',
'after' => ':time efter',
'before' => ':time før',
'year' => '1 år|:count år',
'month' => '1 måned|:count måneder',
'week' => '1 uge|:count uger',
'day' => '1 dag|:count dage',
'hour' => '1 time|:count timer',
'minute' => '1 minut|:count minutter',
'second' => '1 sekund|:count sekunder',
'january' => 'januar',
'february' => 'februar',
'march' => 'marts',
'april' => 'april',
'may' => 'maj',
'june' => 'juni',
'july' => 'juli',
'august' => 'august',
'september' => 'september',
'october' => 'oktober',
'november' => 'november',
'december' => 'december',
'monday' => 'mandag',
'tuesday' => 'tirsdag',
'wednesday' => 'onsdag',
'thursday' => 'torsdag',
'friday' => 'fredag',
'saturday' => 'lørdag',
'sunday' => 'søndag',
];

View File

@@ -0,0 +1,77 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'vor :time',
'from_now' => 'in :time',
'after' => ':time später',
'before' => ':time vorher',
'year' => '1 Jahr|:count Jahre',
'month' => '1 Monat|:count Monate',
'week' => '1 Woche|:count Wochen',
'day' => '1 Tag|:count Tage',
'hour' => '1 Stunde|:count Stunden',
'minute' => '1 Minute|:count Minuten',
'second' => '1 Sekunde|:count Sekunden',
'january' => 'Januar',
'february' => 'Februar',
'march' => 'März',
'april' => 'April',
'may' => 'Mai',
'june' => 'Juni',
'july' => 'Juli',
'august' => 'August',
'september' => 'September',
'october' => 'Oktober',
'november' => 'November',
'december' => 'Dezember',
'jan' => 'Jan',
'feb' => 'Feb',
'mar' => 'Mär',
'apr' => 'Apr',
'may' => 'Mai',
'jun' => 'Jun',
'jul' => 'Jul',
'aug' => 'Aug',
'sep' => 'Sep',
'oct' => 'Okt',
'nov' => 'Nov',
'dec' => 'Dez',
'monday' => 'Montag',
'tuesday' => 'Dienstag',
'wednesday' => 'Mittwoch',
'thursday' => 'Donnerstag',
'friday' => 'Freitag',
'saturday' => 'Samstag',
'sunday' => 'Sonntag',
'mon' => 'Mo',
'tue' => 'Di',
'wed' => 'Mi',
'thu' => 'Do',
'fri' => 'Fr',
'sat' => 'Sa',
'sun' => 'So',
'year_diff' => '1 Jahr|:count Jahren',
'month_diff' => '1 Monat|:count Monaten',
'week_diff' => '1 Woche|:count Wochen',
'day_diff' => '1 Tag|:count Tagen',
'hour_diff' => '1 Stunde|:count Stunden',
'minute_diff' => '1 Minute|:count Minuten',
'second_diff' => '1 Sekunde|:count Sekunden',
];

View File

@@ -0,0 +1,51 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'πριν από :time',
'from_now' => 'σε :time από τώρα',
'after' => ':time μετά',
'before' => ':time πριν',
'year' => '1 χρόνο|:count χρόνια',
'month' => '1 μήνα|:count μήνες',
'week' => '1 εβδομάδα|:count εβδομάδες',
'day' => '1 μέρα|:count μέρες',
'hour' => '1 ώρα|:count ώρες',
'minute' => '1 λεπτό|:count λεπτά',
'second' => '1 δευτερόλεπτο|:count δευτερόλεπτα',
'january' => '{0}Ιανουάριος|{1}Ιανουαρίου',
'february' => '{0}Φεβρουάριος|{1}Φεβρουαρίου',
'march' => '{0}Μάρτιος|{1}Μαρτίου',
'april' => '{0}Απρίλιος|{1}Απριλίου',
'may' => '{0}Μάιος|{1}Μαΐου',
'june' => '{0}Ιούνιος|{1}Ιουνίου',
'july' => '{0}Ιούλιος|{1}Ιουλίου',
'august' => '{0}Αύγουστος|{1}Αυγούστου',
'september' => '{0}Σεπτέμβριος|{1}Σεπτεμβρίου',
'october' => '{0}Οκτώβριος|{1}Οκτωβρίου',
'november' => '{0}Νοέμβριος|{1}Νοεμβρίου',
'december' => '{0}Δεκέμβριος|{1}Δεκεμβρίου',
'monday' => 'Δευτέρα',
'tuesday' => 'Τρίτη',
'wednesday' => 'Τετάρτη',
'thursday' => 'Πέμπτη',
'friday' => 'Παρασκευή',
'saturday' => 'Σάββατο',
'sunday' => 'Κυριακή',
'am' => 'πμ',
'pm' => 'μμ',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time ago',
'from_now' => ':time from now',
'after' => ':time after',
'before' => ':time before',
'year' => '1 year|:count years',
'month' => '1 month|:count months',
'week' => '1 week|:count weeks',
'day' => '1 day|:count days',
'hour' => '1 hour|:count hours',
'minute' => '1 minute|:count minutes',
'second' => '1 second|:count seconds',
'january' => 'January',
'february' => 'February',
'march' => 'March',
'april' => 'April',
'may' => 'May',
'june' => 'June',
'july' => 'July',
'august' => 'August',
'september' => 'September',
'october' => 'October',
'november' => 'November',
'december' => 'December',
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thursday' => 'Thursday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sunday' => 'Sunday',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'antaŭ :time',
'from_now' => 'je :time',
'after' => ':time poste',
'before' => ':time antaŭe',
'year' => '1 jaro|:count jaroj',
'month' => '1 monato|:count monatoj',
'week' => '1 semajno|:count semajnoj',
'day' => '1 tago|:count tagoj',
'hour' => '1 horo|:count horoj',
'minute' => '1 minuto|:count minutoj',
'second' => '1 sekundo|:count sekundoj',
'january' => 'januaro',
'february' => 'februaro',
'march' => 'marto',
'april' => 'aprilo',
'may' => 'majo',
'june' => 'junio',
'july' => 'julio',
'august' => 'aŭgusto',
'september' => 'septembro',
'october' => 'oktobro',
'november' => 'novembro',
'december' => 'decembro',
'monday' => 'lundo',
'tuesday' => 'mardo',
'wednesday' => 'merkredo',
'thursday' => 'ĵaŭdo',
'friday' => 'vendredo',
'saturday' => 'sabato',
'sunday' => 'dimanĉo',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'hace :time',
'from_now' => 'dentro de :time',
'after' => ':time después',
'before' => ':time antes',
'year' => '1 año|:count años',
'month' => '1 mes|:count meses',
'week' => '1 semana|:count semanas',
'day' => '1 día|:count días',
'hour' => '1 hora|:count horas',
'minute' => '1 minuto|:count minutos',
'second' => '1 segundo|:count segundos',
'january' => 'enero',
'february' => 'febrero',
'march' => 'marzo',
'april' => 'abril',
'may' => 'mayo',
'june' => 'junio',
'july' => 'julio',
'august' => 'agosto',
'september' => 'septiembre',
'october' => 'octubre',
'november' => 'noviembre',
'december' => 'diciembre',
'monday' => 'lunes',
'tuesday' => 'martes',
'wednesday' => 'miércoles',
'thursday' => 'jueves',
'friday' => 'viernes',
'saturday' => 'sábado',
'sunday' => 'domingo',
];

View File

@@ -0,0 +1,59 @@
<?php
return [
'ago' => ':time tagasi',
'from_now' => 'alates :time',
'after' => 'pärast :time ',
'before' => 'enne :time',
'year' => '1 aasta|:count aastat',
'month' => '1 kuu|:count kuud',
'week' => '1 nädal|:count nädalat',
'day' => '1 päev|:count päeva',
'hour' => '1 tund|:count tundi',
'minute' => '1 minut|:count minutit',
'second' => '1 sekund|:count sekundit',
'january' => 'jaanuar',
'february' => 'veebruar',
'march' => 'märts',
'april' => 'aprill',
'may' => 'mai',
'june' => 'juuni',
'july' => 'juuli',
'august' => 'august',
'september' => 'september',
'october' => 'oktoober',
'november' => 'november',
'december' => 'detsember',
'jan' => 'jaan',
'feb' => 'veebr',
'mar' => 'märts',
'apr' => 'apr',
'may' => 'mai',
'jun' => 'juuni',
'jul' => 'juuli',
'aug' => 'aug',
'sep' => 'sept',
'oct' => 'okt',
'nov' => 'nov',
'dec' => 'dets',
'monday' => 'esmaspäev',
'tuesday' => 'teisipäev',
'wednesday' => 'kolmapäev',
'thursday' => 'neljapäev',
'friday' => 'reede',
'saturday' => 'laupäev',
'sunday' => 'pühapäev',
'mon' => 'E',
'tue' => 'T',
'wed' => 'K',
'thu' => 'N',
'fri' => 'R',
'sat' => 'L',
'sun' => 'P',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'Orain dela :time',
'from_now' => ':time barru',
'after' => ':time geroago',
'before' => ':time lehenago',
'year' => 'Urte 1|:count urte',
'month' => 'Hile 1|:count hile',
'week' => 'Aste 1|:count aste',
'day' => 'Egun 1|:count egun',
'hour' => 'Ordu 1|:count ordu',
'minute' => 'Minutu 1|:count minutu',
'second' => 'Segundu 1|:count segundu',
'january' => 'Urtarrila',
'february' => 'Otsaila',
'march' => 'Martxoa',
'april' => 'Apirila',
'may' => 'Maiatza',
'june' => 'Ekaina',
'july' => 'Uztaila',
'august' => 'Abuztua',
'september' => 'Iraila',
'october' => 'Urria',
'november' => 'Azaroa',
'december' => 'Abendua',
'monday' => 'Astelehena',
'tuesday' => 'Asteartea',
'wednesday' => 'Asteazkena',
'thursday' => 'Osteguna',
'friday' => 'Ostirala',
'saturday' => 'Larunbata',
'sunday' => 'Igandea',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time پیش',
'from_now' => ':time از الآن',
'after' => ':time بعد',
'before' => ':time قبل',
'year' => ':count سال',
'month' => ':count ماه',
'week' => ':count هفته',
'day' => ':count روز',
'hour' => ':count ساعت',
'minute' => ':count دقیقه',
'second' => ':count ثانیه',
'january' => 'ژانویه',
'february' => 'فوریه',
'march' => 'مارس',
'april' => 'آوریل',
'may' => 'مه',
'june' => 'ژوئن',
'july' => 'جولای',
'august' => 'اوت',
'september' => 'سپتامبر',
'october' => 'اکتبر',
'november' => 'نوامبر',
'december' => 'دسامبر',
'monday' => 'دوشنبه',
'tuesday' => 'سه‌شنبه',
'wednesday' => 'چهارشنبه',
'thursday' => 'پنج‌شنبه',
'friday' => 'جمعه',
'saturday' => 'شنبه',
'sunday' => 'یک‌شنبه',
];

View File

@@ -0,0 +1,69 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time sitten',
'from_now' => ':time tästä hetkestä',
'after' => ':time sen jälkeen',
'before' => ':time ennen',
'year' => '1 vuosi|:count vuotta',
'month' => '1 kuukausi|:count kuukautta',
'week' => '1 viikko|:count viikkoa',
'day' => '1 päivä|:count päivää',
'hour' => '1 tunti|:count tuntia',
'minute' => '1 minuutti|:count minuuttia',
'second' => '1 sekunti|:count sekuntia',
'january' => 'tammikuu',
'february' => 'helmikuu',
'march' => 'maaliskuu',
'april' => 'huhtikuu',
'may' => 'toukokuu',
'june' => 'kesäkuu',
'july' => 'heinäkuu',
'august' => 'elokuu',
'september' => 'syyskuu',
'october' => 'lokakuu',
'november' => 'marraskuu',
'december' => 'joulukuu',
'jan' => 'tammi',
'feb' => 'helmi',
'mar' => 'maalis',
'apr' => 'huhti',
'may' => 'touko',
'jun' => 'kesä',
'jul' => 'heinä',
'aug' => 'elo',
'sep' => 'syys',
'oct' => 'loka',
'nov' => 'marras',
'dec' => 'joulu',
'monday' => 'maanantai',
'tuesday' => 'tiistai',
'wednesday' => 'keskiviikko',
'thursday' => 'torstai',
'friday' => 'perjantai',
'saturday' => 'lauantai',
'sunday' => 'sunnuntai',
'mon' => 'ma',
'tue' => 'ti',
'wed' => 'ke',
'thu' => 'to',
'fri' => 'pe',
'sat' => 'la',
'sun' => 'su',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'il y a :time',
'from_now' => 'dans :time',
'after' => ':time après',
'before' => ':time avant',
'year' => '1 an|:count ans',
'month' => '1 mois|:count mois',
'week' => '1 semaine|:count semaines',
'day' => '1 jour|:count jours',
'hour' => '1 heure|:count heures',
'minute' => '1 minute|:count minutes',
'second' => '1 seconde|:count secondes',
'january' => 'janvier',
'february' => 'février',
'march' => 'mars',
'april' => 'avril',
'may' => 'mai',
'june' => 'juin',
'july' => 'juillet',
'august' => 'août',
'september' => 'septembre',
'october' => 'octobre',
'november' => 'novembre',
'december' => 'décembre',
'monday' => 'lundi',
'tuesday' => 'mardi',
'wednesday' => 'mercredi',
'thursday' => 'jeudi',
'friday' => 'vendredi',
'saturday' => 'samedi',
'sunday' => 'dimanche',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'hai :time',
'from_now' => 'dentro de :time',
'after' => ':time despois',
'before' => ':time antes',
'year' => '1 ano|:count anos',
'month' => '1 mes|:count meses',
'week' => '1 semana|:count semanas',
'day' => '1 día|:count días',
'hour' => '1 hora|:count horas',
'minute' => '1 minuto|:count minutos',
'second' => '1 segundo|:count segundos',
'january' => 'xaneiro',
'february' => 'febreiro',
'march' => 'marzo',
'april' => 'abril',
'may' => 'maio',
'june' => 'xuño',
'july' => 'xullo',
'august' => 'agosto',
'september' => 'setembro',
'october' => 'outubro',
'november' => 'novembro',
'december' => 'decembro',
'monday' => 'luns',
'tuesday' => 'martes',
'wednesday' => 'mércores',
'thursday' => 'xoves',
'friday' => 'venres',
'saturday' => 'sábado',
'sunday' => 'domingo',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'לפני :time',
'from_now' => 'בעוד :time',
'after' => ':time אחרי',
'before' => ':time לפני',
'year' => '[0,1]שנה|{2}שנתיים|[3,Inf]:count שנים',
'month' => '[0,1]חודש|{2}חודשיים|[3,Inf]:count חודשים',
'week' => '[0,1]שבוע|{2}שבועיים|[3,Inf]:count שבועות',
'day' => '[0,1]יום|{2}יומיים|[3,Inf]:count ימים',
'hour' => '[0,1]שעה|{2}שעתיים|[3,Inf]:count שעות',
'minute' => 'דקה|:count דקות',
'second' => 'שנייה|:count שניות',
'january' => 'ינואר',
'february' => 'פברואר',
'march' => 'מרץ',
'april' => 'אפריל',
'may' => 'מאי',
'june' => 'יוני',
'july' => 'יולי',
'august' => 'אוגוסט',
'september' => 'ספטמבר',
'october' => 'אוקטובר',
'november' => 'נובמבר',
'december' => 'דצמבר',
'monday' => 'שני',
'tuesday' => 'שלישי',
'wednesday' => 'רביעי',
'thursday' => 'חמישי',
'friday' => 'שישי',
'saturday' => 'שבת',
'sunday' => 'ראשון',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time पूर्व',
'from_now' => ':time से',
'after' => ':time के बाद',
'before' => ':time के पहले',
'year' => '1 वर्ष|:count वर्षों',
'month' => '1 माह|:count महीने',
'week' => '1 सप्ताह|:count सप्ताह',
'day' => '1 दिन|:count दिनों',
'hour' => '1 घंटा|:count घंटे',
'minute' => '1 मिनट|:count मिनटों',
'second' => '1 सेकंड|:count सेकंड',
'january' => 'जनवरी',
'february' => 'फरवरी',
'march' => 'मार्च',
'april' => 'अप्रैल',
'may' => 'मई',
'june' => 'जून',
'july' => 'जुलाई',
'august' => 'अगस्त',
'september' => 'सितंबर',
'october' => 'अक्टूबर',
'november' => 'नवंबर',
'december' => 'दिसंबर',
'monday' => 'सोमवार',
'tuesday' => 'मंगलवार',
'wednesday' => 'बुधवार',
'thursday' => 'गुरूवार',
'friday' => 'शुक्रवार',
'saturday' => 'शनिवार',
'sunday' => 'रविवार',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'prije :time',
'from_now' => 'za :time',
'after' => 'za :time',
'before' => 'prije :time',
'year' => ':count godinu|:count godine|:count godina',
'month' => ':count mjesec|:count mjeseca|:count mjeseci',
'week' => ':count tjedan|:count tjedna|:count tjedana',
'day' => ':count dan|:count dana|:count dana',
'hour' => ':count sat|:count sata|:count sati',
'minute' => ':count minutu|:count minute |:count minuta',
'second' => ':count sekundu|:count sekunde|:count sekundi',
'january' => 'siječanj',
'february' => 'veljača',
'march' => 'ožujak',
'april' => 'travanj',
'may' => 'svibanj',
'june' => 'lipanj',
'july' => 'srpanj',
'august' => 'kolovoz',
'september' => 'rujan',
'october' => 'listopad',
'november' => 'studeni',
'december' => 'prosinac',
'monday' => 'ponedjeljak',
'tuesday' => 'utorak',
'wednesday' => 'srijeda',
'thursday' => 'cetvrtak',
'friday' => 'petak',
'saturday' => 'subota',
'sunday' => 'nedjelja',
];

View File

@@ -0,0 +1,80 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'year' => ':count év',
'month' => ':count hónap',
'week' => ':count hét',
'day' => ':count nap',
'hour' => ':count óra',
'minute' => ':count perc',
'second' => ':count másodperc',
'ago' => ':time',
'from_now' => ':time múlva',
'after' => ':time később',
'before' => ':time korábban',
'year_ago' => ':count éve',
'month_ago' => ':count hónapja',
'week_ago' => ':count hete',
'day_ago' => ':count napja',
'hour_ago' => ':count órája',
'minute_ago' => ':count perce',
'second_ago' => ':count másodperce',
'year_after' => ':count évvel',
'month_after' => ':count hónappal',
'week_after' => ':count héttel',
'day_after' => ':count nappal',
'hour_after' => ':count órával',
'minute_after' => ':count perccel',
'second_after' => ':count másodperccel',
'year_before' => ':count évvel',
'month_before' => ':count hónappal',
'week_before' => ':count héttel',
'day_before' => ':count nappal',
'hour_before' => ':count órával',
'minute_before' => ':count perccel',
'second_before' => ':count másodperccel',
'january' => 'január',
'february' => 'február',
'march' => 'március',
'april' => 'április',
'may' => 'május',
'june' => 'június',
'july' => 'július',
'august' => 'augusztus',
'september' => 'szeptember',
'october' => 'október',
'november' => 'november',
'december' => 'december',
'monday' => 'hétfő',
'tuesday' => 'kedd',
'wednesday' => 'szerda',
'thursday' => 'csütörtök',
'friday' => 'péntek',
'saturday' => 'szombat',
'sunday' => 'vasárnap',
'mon' => 'H',
'tue' => 'K',
'wed' => 'Sze',
'thu' => 'Cs',
'fri' => 'P',
'sat' => 'Szo',
'sun' => 'V',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time yang lalu',
'from_now' => ':time dari sekarang',
'after' => ':time setelah',
'before' => ':time sebelum',
'year' => ':count tahun',
'month' => ':count bulan',
'week' => ':count minggu',
'day' => ':count hari',
'hour' => ':count jam',
'minute' => ':count menit',
'second' => ':count detik',
'january' => 'Januari',
'february' => 'Februari',
'march' => 'Maret',
'april' => 'April',
'may' => 'Mei',
'june' => 'Juni',
'july' => 'Juli',
'august' => 'Agustus',
'september' => 'September',
'october' => 'Oktober',
'november' => 'November',
'december' => 'Desember',
'monday' => 'Senin',
'tuesday' => 'Selasa',
'wednesday' => 'Rabu',
'thursday' => 'Kamis',
'friday' => 'Jumat',
'saturday' => 'Sabtu',
'sunday' => 'Minggu',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time síðan',
'from_now' => ':time síðan',
'after' => ':time eftir',
'before' => ':time fyrir',
'year' => '1 ár|:count ár',
'month' => '1 mánuður|:count mánuðir',
'week' => '1 vika|:count vikur',
'day' => '1 dagur|:count dagar',
'hour' => '1 klukkutími|:count klukkutímar',
'minute' => '1 mínúta|:count mínútur',
'second' => '1 sekúnda|:count sekúndur',
'january' => 'janúar',
'february' => 'febrúar',
'march' => 'mars',
'april' => 'apríl',
'may' => 'maí',
'june' => 'júní',
'july' => 'júlí',
'august' => 'ágúst',
'september' => 'september',
'october' => 'október',
'november' => 'nóvember',
'december' => 'desember',
'monday' => 'mánudagur',
'tuesday' => 'þriðjudagur',
'wednesday' => 'miðvikudagur',
'thursday' => 'fimmtudagur',
'friday' => 'föstudagur',
'saturday' => 'laugardagur',
'sunday' => 'sunnudagur',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time fa',
'from_now' => 'tra :time',
'after' => ':time dopo',
'before' => ':time prima',
'year' => '1 anno|:count anni',
'month' => '1 mese|:count mesi',
'week' => '1 settimana|:count settimane',
'day' => '1 giorno|:count giorni',
'hour' => '1 ora|:count ore',
'minute' => '1 minuto|:count minuti',
'second' => '1 secondo|:count secondi',
'january' => 'gennaio',
'february' => 'febbraio',
'march' => 'marzo',
'april' => 'aprile',
'may' => 'maggio',
'june' => 'giugno',
'july' => 'luglio',
'august' => 'agosto',
'september' => 'settembre',
'october' => 'ottobre',
'november' => 'novembre',
'december' => 'dicembre',
'monday' => 'lunedì',
'tuesday' => 'martedì',
'wednesday' => 'mercoledì',
'thursday' => 'giovedì',
'friday' => 'venerdì',
'saturday' => 'sabato',
'sunday' => 'domenica',
];

View File

@@ -0,0 +1,55 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time 前',
'from_now' => '今から :time',
'after' => ':time 後',
'before' => ':time 前',
'year' => ':count 年',
'month' => ':count ヶ月',
'week' => ':count 週間',
'day' => ':count 日',
'hour' => ':count 時間',
'minute' => ':count 分',
'second' => ':count 秒',
'january' => '1月',
'february' => '2月',
'march' => '3月',
'april' => '4月',
'may' => '5月',
'june' => '6月',
'july' => '7月',
'august' => '8月',
'september' => '9月',
'october' => '10月',
'november' => '11月',
'december' => '12月',
'monday' => '月曜日',
'tuesday' => '火曜日',
'wednesday' => '水曜日',
'thursday' => '木曜日',
'friday' => '金曜日',
'saturday' => '土曜日',
'sunday' => '日曜日',
'mon' => '月',
'tue' => '火',
'wed' => '水',
'thu' => '木',
'fri' => '金',
'sat' => '土',
'sun' => '日',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time წინ',
'from_now' => ':time შემდეგ',
'after' => ':time შემდეგ',
'before' => ':time წინ',
'year' => ':count წლის',
'month' => ':count თვის',
'week' => ':count კვირის',
'day' => ':count დღის',
'hour' => ':count საათის',
'minute' => ':count წუთის',
'second' => ':count წამის',
'january' => 'იანვარი',
'february' => 'თებერვალი',
'march' => 'მარტი',
'april' => 'აპრილი',
'may' => 'მაისი',
'june' => 'ივნისი',
'july' => 'ივლისი',
'august' => 'აგვისტო',
'september' => 'სექტემბერი',
'october' => 'ოქტომბერი',
'november' => 'ნოემბერი',
'december' => 'დეკემბერი',
'monday' => 'ორშაბათი',
'tuesday' => 'სამშაბათი',
'wednesday' => 'ოთხშაბათი',
'thursday' => 'ხუთშაბათი',
'friday' => 'პარასკევი',
'saturday' => 'შაბათი',
'sunday' => 'კვირა',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time бұрын',
'from_now' => ':time кейін',
'after' => ':time кейін',
'before' => ':time бұрын',
'year' => ':count жыл',
'month' => ':count ай',
'week' => ':count апта',
'day' => ':count күн',
'hour' => ':count сағат',
'minute' => ':count минут',
'second' => ':count секунд',
'january' => 'қаңтар',
'february' => 'ақпан',
'march' => 'наурыз',
'april' => 'сәуір',
'may' => 'мамыр',
'june' => 'маусым',
'july' => 'шілде',
'august' => 'тамыз',
'september' => 'қыркүйек',
'october' => 'қазан',
'november' => 'қараша',
'december' => 'желтоқсан',
'monday' => 'Дүйсенбі',
'tuesday' => 'Сейсенбі',
'wednesday' => 'Сәрсенбі',
'thursday' => 'Бейсенбі',
'friday' => 'Жұма',
'saturday' => 'Сенбі',
'sunday' => 'Жексенбі',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time 전',
'from_now' => ':time 후',
'after' => ':time 뒤',
'before' => ':time 앞',
'year' => ':count 년',
'month' => ':count 개월',
'week' => ':count 주일',
'day' => ':count 일',
'hour' => ':count 시간',
'minute' => ':count 분',
'second' => ':count 초',
'january' => '1월',
'february' => '2월',
'march' => '3월',
'april' => '4월',
'may' => '5월',
'june' => '6월',
'july' => '7월',
'august' => '8월',
'september' => '9월',
'october' => '10월',
'november' => '11월',
'december' => '12월',
'monday' => '월요일',
'tuesday' => '화요일',
'wednesday' => '수요일',
'thursday' => '목요일',
'friday' => '금요일',
'saturday' => '토요일',
'sunday' => '일요일',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'prieš :time',
'from_now' => ':time nuo dabar',
'after' => 'po :time',
'before' => 'prieš :time',
'year' => '0 metų|:count metai|:count metai',
'month' => '0 mėnesių|:count mėnesis|:count mėnesiai',
'week' => '0 savaičių|:count savaitė|:count savaitės',
'day' => '0 dienų|:count diena|:count dienos',
'hour' => '0 valandų|:count valanda|:count valandos',
'minute' => '0 minučių|:count minutė|:count minutės',
'second' => '0 sekundžių|:count sekundė|:count sekundės',
'january' => 'Sausis',
'february' => 'Vasaris',
'march' => 'Kovas',
'april' => 'Balandis',
'may' => 'Gegužė',
'june' => 'Birželis',
'july' => 'Liepa',
'august' => 'Rugpjūtis',
'september' => 'Rugsėjis',
'october' => 'Spalis',
'november' => 'Lapkritis',
'december' => 'Gruodis',
'monday' => 'Pirmadienis',
'tuesday' => 'Antradienis',
'wednesday' => 'Trečiadienis',
'thursday' => 'Ketvirtadienis',
'friday' => 'Penktadienis',
'saturday' => 'Šeštadienis',
'sunday' => 'Sekmadienis',
];

View File

@@ -0,0 +1,69 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'pirms :time',
'from_now' => 'pēc :time',
'after' => ':time vēlāk',
'before' => ':time pirms',
'year' => '0 gadiem|:count gada|:count gadiem',
'month' => '0 mēnešiem|:count mēneša|:count mēnešiem',
'week' => '0 nedēļām|:count nedēļas|:count nedēļām',
'day' => '0 dienām|:count dienas|:count dienām',
'hour' => '0 stundām|:count stundas|:count stundām',
'minute' => '0 minūtēm|:count minūtes|:count minūtēm',
'second' => '0 sekundēm|:count sekundes|:count sekundēm',
'january' => 'janvāris',
'february' => 'februāris',
'march' => 'marts',
'april' => 'aprīlis',
'may' => 'maijs',
'june' => 'jūnijs',
'july' => 'jūlijs',
'august' => 'augusts',
'september' => 'septembris',
'october' => 'oktobris',
'november' => 'novembris',
'december' => 'decembris',
'jan' => 'jan',
'feb' => 'feb',
'mar' => 'mar',
'apr' => 'apr',
'may' => 'mai',
'jun' => 'jūn',
'jul' => 'jūl',
'aug' => 'aug',
'sep' => 'sep',
'oct' => 'okt',
'nov' => 'nov',
'dec' => 'dec',
'monday' => 'pirmdiena',
'tuesday' => 'otrdiena',
'wednesday' => 'trešdiena',
'thursday' => 'ceturtdiena',
'friday' => 'piektdiena',
'saturday' => 'sestdiena',
'sunday' => 'svētdiena',
'mon' => 'pr',
'tue' => 'ot',
'wed' => 'tr',
'thu' => 'ce',
'fri' => 'pk',
'sat' => 'se',
'sun' => 'sv',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'пред :time',
'from_now' => 'за :time',
'after' => 'после :time',
'before' => 'пред :time',
'year' => '1 година|:count години',
'month' => '1 месец|:count месеци',
'week' => '1 седмица|:count седмици',
'day' => '1 ден|:count денови',
'hour' => '1 час|:count часови',
'minute' => '1 минута|:count минути',
'second' => '1 секунда|:count секунди',
'january' => 'јануари',
'february' => 'фебруари',
'march' => 'март',
'april' => 'април',
'may' => 'мај',
'june' => 'јуни',
'july' => 'јули',
'august' => 'август',
'september' => 'септември',
'october' => 'октомври',
'november' => 'ноември',
'december' => 'декември',
'monday' => 'понеделник',
'tuesday' => 'вторник',
'wednesday' => 'среда',
'thursday' => 'четврток',
'friday' => 'петок',
'saturday' => 'сабота',
'sunday' => 'недела',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time yang lalu',
'from_now' => ':time dari sekarang',
'after' => ':time selepas',
'before' => ':time sebelum',
'year' => ':count tahun',
'month' => ':count bulan',
'week' => ':count minggu',
'day' => ':count hari',
'hour' => ':count jam',
'minute' => ':count minit',
'second' => ':count saat',
'january' => 'Januari',
'february' => 'Februari',
'march' => 'Mac',
'april' => 'April',
'may' => 'Mei',
'june' => 'Jun',
'july' => 'Julai',
'august' => 'Ogos',
'september' => 'September',
'october' => 'Oktober',
'november' => 'November',
'december' => 'Disember',
'monday' => 'Isnin',
'tuesday' => 'Selasa',
'wednesday' => 'Rabu',
'thursday' => 'Khamis',
'friday' => 'Jumaat',
'saturday' => 'Sabtu',
'sunday' => 'Ahad',
];

View File

@@ -0,0 +1,69 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time geleden',
'from_now' => ':time vanaf nu',
'after' => ':time na',
'before' => ':time voor',
'year' => ':count jaar',
'month' => '1 maand|:count maanden',
'week' => '1 week|:count weken',
'day' => '1 dag|:count dagen',
'hour' => ':count uur',
'minute' => '1 minuut|:count minuten',
'second' => '1 seconde|:count seconden',
'january' => 'januari',
'february' => 'februari',
'march' => 'maart',
'april' => 'april',
'may' => 'mei',
'june' => 'juni',
'july' => 'juli',
'august' => 'augustus',
'september' => 'september',
'october' => 'oktober',
'november' => 'november',
'december' => 'december',
'jan' => 'jan',
'feb' => 'feb',
'mar' => 'mrt',
'apr' => 'apr',
'may' => 'mei',
'jun' => 'jun',
'jul' => 'jul',
'aug' => 'aug',
'sep' => 'sep',
'oct' => 'okt',
'nov' => 'nov',
'dec' => 'dec',
'monday' => 'maandag',
'tuesday' => 'dinsdag',
'wednesday' => 'woensdag',
'thursday' => 'donderdag',
'friday' => 'vrijdag',
'saturday' => 'zaterdag',
'sunday' => 'zondag',
'mon' => 'ma',
'tue' => 'di',
'wed' => 'wo',
'thu' => 'do',
'fri' => 'vr',
'sat' => 'za',
'sun' => 'zo',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time siden',
'from_now' => 'om :time',
'after' => ':time etter',
'before' => ':time før',
'year' => '1 år|:count år',
'month' => '1 måned|:count måneder',
'week' => '1 uke|:count uker',
'day' => '1 dag|:count dager',
'hour' => '1 time|:count timer',
'minute' => '1 minutt|:count minutter',
'second' => '1 sekund|:count sekunder',
'january' => 'januar',
'february' => 'februar',
'march' => 'mars',
'april' => 'april',
'may' => 'mai',
'june' => 'juni',
'july' => 'juli',
'august' => 'august',
'september' => 'september',
'october' => 'oktober',
'november' => 'november',
'december' => 'desember',
'monday' => 'mandag',
'tuesday' => 'tirsdag',
'wednesday' => 'onsdag',
'thursday' => 'torsdag',
'friday' => 'fredag',
'saturday' => 'lørdag',
'sunday' => 'søndag',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time temu',
'from_now' => ':time od teraz',
'after' => ':time przed',
'before' => ':time po',
'year' => 'rok|:count lata|:count lat',
'month' => 'miesiąc|:count miesiące|:count miesięcy',
'week' => 'tydzień|:count tygodnie|:count tygodni',
'day' => 'dzień|:count dni|:count dni',
'hour' => 'godzinę|:count godziny|:count godzin',
'minute' => 'minutę|:count minuty|:count minut',
'second' => 'sekundę|:count sekundy|:count sekund',
'january' => 'stycznia',
'february' => 'lutego',
'march' => 'marca',
'april' => 'kwietnia',
'may' => 'maja',
'june' => 'czerwca',
'july' => 'lipca',
'august' => 'sierpnia',
'september' => 'września',
'october' => 'października',
'november' => 'listopada',
'december' => 'grudnia',
'monday' => 'poniedziałek',
'tuesday' => 'wtorek',
'wednesday' => 'środa',
'thursday' => 'czwartek',
'friday' => 'piątek',
'saturday' => 'sobota',
'sunday' => 'niedziela',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'há :time',
'from_now' => 'dentro de :time',
'after' => ':time depois',
'before' => ':time antes',
'year' => '1 ano|:count anos',
'month' => '1 mês|:count meses',
'week' => '1 semana|:count semanas',
'day' => '1 dia|:count dias',
'hour' => '1 hora|:count horas',
'minute' => '1 minuto|:count minutos',
'second' => '1 segundo|:count segundos',
'january' => 'janeiro',
'february' => 'fevereiro',
'march' => 'março',
'april' => 'abril',
'may' => 'maio',
'june' => 'junho',
'july' => 'julho',
'august' => 'agosto',
'september' => 'setembro',
'october' => 'outubro',
'november' => 'novembro',
'december' => 'dezembro',
'monday' => 'segunda-feira',
'tuesday' => 'terça-feira',
'wednesday' => 'quarta-feira',
'thursday' => 'quinta-feira',
'friday' => 'sexta-feira',
'saturday' => 'sábado',
'sunday' => 'domingo',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time atrás',
'from_now' => 'em :time',
'after' => ':time depois',
'before' => ':time antes',
'year' => '1 ano|:count anos',
'month' => '1 mês|:count meses',
'week' => '1 semana|:count semanas',
'day' => '1 dia|:count dias',
'hour' => '1 hora|:count horas',
'minute' => '1 minuto|:count minutos',
'second' => '1 segundo|:count segundos',
'january' => 'janeiro',
'february' => 'fevereiro',
'march' => 'março',
'april' => 'abril',
'may' => 'maio',
'june' => 'junho',
'july' => 'julho',
'august' => 'agosto',
'september' => 'setembro',
'october' => 'outubro',
'november' => 'novembro',
'december' => 'dezembro',
'monday' => 'segunda-feira',
'tuesday' => 'terça-feira',
'wednesday' => 'quarta-feira',
'thursday' => 'quinta-feira',
'friday' => 'sexta-feira',
'saturday' => 'sábado',
'sunday' => 'domingo',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'acum :time',
'from_now' => ':time de acum',
'after' => 'peste :time',
'before' => 'acum :time',
'year' => 'un an|:count ani|:count ani',
'month' => 'o lună|:count luni|:count luni',
'week' => 'o săptămână|:count săptămâni|:count săptămâni',
'day' => 'o zi|:count zile|:count zile',
'hour' => 'o oră|:count ore|:count ore',
'minute' => 'un minut|:count minute|:count minute',
'second' => 'o secundă|:count secunde|:count secunde',
'january' => 'ianuarie',
'february' => 'februarie',
'march' => 'martie',
'april' => 'aprilie',
'may' => 'mai',
'june' => 'iunie',
'july' => 'iulie',
'august' => 'august',
'september' => 'septembrie',
'october' => 'octombrie',
'november' => 'noiembrie',
'december' => 'decembrie',
'monday' => 'luni',
'tuesday' => 'marţi',
'wednesday' => 'miercuri',
'thursday' => 'joi',
'friday' => 'vineri',
'saturday' => 'sâmbătă',
'sunday' => 'duminică',
];

View File

@@ -0,0 +1,68 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time назад',
'from_now' => 'через :time',
'after' => ':time после',
'before' => ':time до',
'year' => ':count год|:count года|:count лет',
'month' => ':count месяц|:count месяца|:count месяцев',
'week' => ':count неделю|:count недели|:count недель',
'day' => ':count день|:count дня|:count дней',
'hour' => ':count час|:count часа|:count часов',
'minute' => ':count минуту|:count минуты|:count минут',
'second' => ':count секунду|:count секунды|:count секунд',
'january' => '{0}январь|{1}января',
'february' => '{0}февраль|{1}февраля',
'march' => '{0}март|{1}мартa',
'april' => '{0}апрель|{1}апреля',
'may' => '{0}май|{1}мая',
'june' => '{0}июнь|{1}июня',
'july' => '{0}июль|{1}июля',
'august' => '{0}август|{1}августа',
'september' => '{0}сентябрь|{1}сентября',
'october' => '{0}октябрь|{1}октября',
'november' => '{0}ноябрь|{1}ноября',
'december' => '{0}декабрь|{1}декабря',
'jan' => 'янв',
'feb' => 'фев',
'mar' => 'мар',
'apr' => 'апр',
'may' => 'май',
'jun' => 'июн',
'jul' => 'июл',
'aug' => 'авг',
'sep' => 'сен',
'oct' => 'окт',
'nov' => 'ноя',
'dec' => 'дек',
'monday' => 'понедельник',
'tuesday' => 'вторник',
'wednesday' => 'среда',
'thursday' => 'четверг',
'friday' => 'пятница',
'saturday' => 'суббота',
'sunday' => 'воскресенье',
'mon' => 'пн',
'tue' => 'вт',
'wed' => 'ср',
'thu' => 'чт',
'fri' => 'пт',
'sat' => 'сб',
'sun' => 'вс',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'pre :time',
'from_now' => 'za :time',
'after' => 'nakon :time',
'before' => ':time raniјe',
'year' => ':count godina|:count godine|:count godina',
'month' => ':count mesec|:count meseca|:count meseci',
'week' => ':count nedelja|:count nedelje|:count nedelja',
'day' => ':count dan|:count dana|:count dana',
'hour' => ':count čas|:count časa|:count časova',
'minute' => ':count minut|:count minuta|:count minuta',
'second' => ':count sekund|:count sekunda|:count sekundi',
'january' => 'јanuar',
'february' => 'februar',
'march' => 'mart',
'april' => 'april',
'may' => 'maј',
'june' => 'јun',
'july' => 'јul',
'august' => 'avgust',
'september' => 'septembar',
'october' => 'oktobar',
'november' => 'novembar',
'december' => 'decembar',
'monday' => 'ponedeljak',
'tuesday' => 'utorak',
'wednesday' => 'sreda',
'thursday' => 'četvrtak',
'friday' => 'petak',
'saturday' => 'subota',
'sunday' => 'nedelja',
];

View File

@@ -0,0 +1,56 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'pred :time',
'from_now' => 'za :time',
'after' => ':time neskôr',
'before' => ':time predtým',
'year' => 'rok|:count roky|:count rokov',
'month' => 'mesiac|:count mesiace|:count mesiacov',
'week' => 'týždeň|:count týždne|:count týždňov',
'day' => 'deň|:count dni|:count dní',
'hour' => 'hodinu|:count hodiny|:count hodín',
'minute' => 'minútu|:count minúty|:count minút',
'second' => 'sekundu|:count sekundy|:count sekúnd',
'january' => 'január',
'february' => 'február',
'march' => 'marec',
'april' => 'apríl',
'may' => 'máj',
'june' => 'jún',
'july' => 'júl',
'august' => 'august',
'september' => 'september',
'october' => 'október',
'november' => 'november',
'december' => 'december',
'monday' => 'pondelok',
'tuesday' => 'utorok',
'wednesday' => 'streda',
'thursday' => 'štvrtok',
'friday' => 'piatok',
'saturday' => 'sobota',
'sunday' => 'nedeľa',
'year_ago' => 'rokom|[2,Inf]:count rokmi',
'month_ago' => 'mesiacom|[2,Inf]:count mesiacmi',
'week_ago' => 'týždňom|[2,Inf]:count týždňami',
'day_ago' => 'dňom|[2,Inf]:count dňami',
'hour_ago' => 'hodinou|[2,Inf]:count hodinami',
'minute_ago' => 'minútou|[2,Inf]:count minútami',
'second_ago' => '{0}0 sekundami|{1}sekundou|[2,Inf]:count sekundami',
];

View File

@@ -0,0 +1,55 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'pred :time',
'from_now' => 'čez :time',
'after' => 'čez :time',
'before' => 'pred :time',
'year' => '1 leto|:count leti|:count leta|:count let',
'month' => '1 mesec|:count meseca|:count mesece|:count mesecev',
'week' => '1 teden|:count tedna|:count tedne|:count tednov',
'day' => '1 dan|:count dni|:count dni|:count dni',
'hour' => '1 uro|:count uri|:count ure|:count ur',
'minute' => '1 minuto|:count minuti|:count minute|:count minut',
'second' => '1 sekundo|:count sekundi|:count sekunde|:count sekund',
'year_ago' => '1 letom|:count leti|:count leti|:count leti',
'month_ago' => '1 mesecem|:count meseci|:count meseci|:count meseci',
'week_ago' => '1 tednom|:count tedni|:count tedni',
'day_ago' => '1 dnem|:count dnevoma|:count dnevi|:count dnevi',
'hour_ago' => '1 uro|:count urama|:count urami|:count urami',
'minute_ago' => '1 minuto|:count minutama|:count minutami|:count minutami',
'second_ago' => '1 sekundo|:count sekundama|:count sekundami|:count sekundami',
'january' => 'januar',
'february' => 'februar',
'march' => 'marec',
'april' => 'april',
'may' => 'maj',
'june' => 'junij',
'july' => 'julij',
'august' => 'avgust',
'september' => 'september',
'october' => 'oktober',
'november' => 'november',
'december' => 'december',
'monday' => 'ponedeljek',
'tuesday' => 'torek',
'wednesday' => 'sreda',
'thursday' => 'četrtek',
'friday' => 'petek',
'saturday' => 'sobota',
'sunday' => 'nedelja',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time më parë',
'from_now' => ':time nga tani',
'after' => ':time pas',
'before' => ':time para',
'year' => '1 vit|:count vite',
'month' => '1 muaj|:count muaj',
'week' => '1 javë|:count javë',
'day' => '1 ditë|:count ditë',
'hour' => '1 orë|:count orë',
'minute' => '1 minutë|:count minuta',
'second' => '1 sekondë|:count sekonda',
'january' => 'Janar',
'february' => 'Shkurt',
'march' => 'Mars',
'april' => 'Prill',
'may' => 'Maj',
'june' => 'Qershor',
'july' => 'Korrik',
'august' => 'Gusht',
'september' => 'Shtator',
'october' => 'Tetor',
'november' => 'Nëntor',
'december' => 'Dhjetor',
'monday' => 'E Hënë',
'tuesday' => 'E Martë',
'wednesday' => 'E Mërkurë',
'thursday' => 'E Enjte',
'friday' => 'E Premte',
'saturday' => 'E Shtunë',
'sunday' => 'E Diel',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'pre :time',
'from_now' => 'za :time',
'after' => 'nakon :time',
'before' => ':time ranije',
'year' => ':count godina|:count godine|:count godina',
'month' => ':count mesec|:count meseca|:count meseci',
'week' => ':count nedelja|:count nedelje|:count nedelja',
'day' => ':count dan|:count dana|:count dana',
'hour' => ':count čas|:count časa|:count časova',
'minute' => ':count minut|:count minuta|:count minuta',
'second' => ':count sekund|:count sekunda|:count sekundi',
'january' => 'januar',
'february' => 'februar',
'march' => 'mart',
'april' => 'april',
'may' => 'maj',
'june' => 'jun',
'july' => 'jul',
'august' => 'avgust',
'september' => 'septembar',
'october' => 'oktobar',
'november' => 'novembar',
'december' => 'decembar',
'monday' => 'ponedeljak',
'tuesday' => 'utorak',
'wednesday' => 'sreda',
'thursday' => 'četvrtak',
'friday' => 'petak',
'saturday' => 'subota',
'sunday' => 'nedelja',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => 'пре :time',
'from_now' => 'за :time',
'after' => 'након :time',
'before' => ':time раније',
'year' => ':count година|:count године|:count година',
'month' => ':count месец|:count месеца|:count месеци',
'week' => ':count недеља|:count недеље|:count недеља',
'day' => ':count дан|:count дана|:count дана',
'hour' => ':count час|:count часа|:count часова',
'minute' => ':count минут|:count минута|:count минута',
'second' => ':count секунд|:count секунда|:count секунди',
'january' => 'јануар',
'february' => 'фебруар',
'march' => 'март',
'april' => 'април',
'may' => 'мај',
'june' => 'јун',
'july' => 'јул',
'august' => 'август',
'september' => 'септембар',
'october' => 'октобар',
'november' => 'новембар',
'december' => 'децембар',
'monday' => 'понедељак',
'tuesday' => 'уторак',
'wednesday' => 'среда',
'thursday' => 'четвртак',
'friday' => 'петак',
'saturday' => 'субота',
'sunday' => 'недеља',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time sedan',
'from_now' => 'om :time',
'after' => ':time efter',
'before' => ':time före',
'year' => ':count år',
'month' => '1 månad|:count månader',
'week' => '1 vecka|:count veckor',
'day' => '1 dag|:count dagar',
'hour' => '1 timme|:count timmar',
'minute' => '1 minut|:count minuter',
'second' => '1 sekund|:count sekunder',
'january' => 'januari',
'february' => 'februari',
'march' => 'mars',
'april' => 'april',
'may' => 'maj',
'june' => 'juni',
'july' => 'juli',
'august' => 'augusti',
'september' => 'september',
'october' => 'oktober',
'november' => 'november',
'december' => 'december',
'monday' => 'måndag',
'tuesday' => 'tisdag',
'wednesday' => 'onsdag',
'thursday' => 'torsdag',
'friday' => 'fredag',
'saturday' => 'lördag',
'sunday' => 'söndag',
];

View File

@@ -0,0 +1,45 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time ziliyopita',
'from_now' => ':time kwanzia sasa',
'after' => ':time baada',
'before' => ':time kabla',
'year' => 'mwaka 1|miaka :count',
'month' => 'mwezi 1|miezi :count',
'week' => 'wiki 1|wiki :count',
'day' => 'siku 1|siku :count',
'hour' => 'saa 1|masaa :count',
'minute' => 'dakika 1|dakika :count',
'second' => 'sekunde 1|sekunde :count',
'january' => 'Januari',
'february' => 'Febuari',
'march' => 'Machi',
'april' => 'Aprili',
'may' => 'Mei',
'june' => 'Juni',
'july' => 'Julai',
'august' => 'Agosti',
'september' => 'Septemba',
'october' => 'Oktoba',
'november' => 'Novemba',
'december' => 'Disemba',
'monday' => 'Jumatatu',
'tuesday' => 'Jumanne',
'wednesday' => 'Jumatano',
'thursday' => 'Alhamisi',
'friday' => 'Ijumaa',
'saturday' => 'Jumamosi',
'sunday' => 'Jumapili',
];

View File

@@ -0,0 +1,69 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time முன்பு',
'from_now' => ':time|:time',
'after' => ':time கழித்து',
'before' => ':time முன்னால்',
'year' => '1 ஆண்டு|:count ஆண்டுகள்',
'month' => '1 மாதம்|:count மாதங்கள்',
'week' => '1 வாரம்|:count வாரங்கள்',
'day' => '1 நாள்|:count நாட்கள்',
'hour' => '1 மணி நேரம்|:count மணி நேரம்',
'minute' => '1 நிமிடம்|:count நிமிடங்கள்',
'second' => '1 நொடி|:count நொடிகல்',
'january' => 'தை',
'february' => 'மாசி',
'march' => 'பங்குனி',
'april' => 'சித்திரை',
'may' => 'வைகாசி',
'june' => 'ஆனி',
'july' => 'ஆடி',
'august' => 'ஆவணி',
'september' => 'புரட்டாசி',
'october' => 'ஐப்பசி',
'november' => 'கார்த்திகை',
'december' => 'மார்கழி',
'monday' => 'திங்கட்கிழமை',
'tuesday' => 'செவ்வாய்க்கிழமை',
'wednesday' => 'புதன்கிழமை',
'thursday' => 'வியாழக்கிழமை',
'friday' => 'வெள்ளிக்கிழமை',
'saturday' => 'சனிக்கிழமை',
'sunday' => 'ஞாயிற்றுக்கிழமை',
'mon' => 'திங்கள்',
'tue' => 'செவ்வாய்',
'wed' => 'புதன்',
'thu' => 'வியாழன்',
'fri' => 'வெள்ளி',
'sat' => 'சனி',
'sun' => 'ஞாயிறு',
'day_ago' => '1 நாள்|:count நாட்களுக்கு',
'week_ago' => '1 வாரத்திற்கு|:count வாரங்களுக்கு',
'month_ago' => '1 மாதம்|:count மாதங்களுக்கு',
'year_ago' => '1 ஆண்டு|:count ஆண்டுகளுக்கு',
'second_from_now' => ':count வினாடியில்|:count வினாடிகளில்',
'minute_from_now' => ':count நிமிடத்தில்|:count நிமிடங்களில்',
'hour_from_now' => ':count மணி நேரத்தில்|:count மணி நேரத்தில்',
'day_from_now' => ':count நாளில்|:count நாட்களில்',
'week_from_now' => ':count வாரத்தில்|:count வாரங்களில்',
'month_from_now' => ':count மாதத்தில்|:count மாதங்களில்',
'year_from_now' => ':count ஆண்டில்|:count ஆண்டுகளில்'
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':timeที่แล้ว',
'from_now' => ':timeจากนี้',
'after' => 'หลัง :time',
'before' => 'ก่อน :time',
'year' => ':count ปี',
'month' => ':count เดือน',
'week' => ':count สัปดาห์',
'day' => ':count วัน',
'hour' => ':count ชั่วโมง',
'minute' => ':count นาที',
'second' => ':count วินาที',
'january' => 'มกราคม',
'february' => 'กุมภาพันธ์',
'march' => 'มีนาคม',
'april' => 'เมษายน',
'may' => 'พฤษภาคม',
'june' => 'มิถุนายน',
'july' => 'กรกฎาคม',
'august' => 'สิงหาคม',
'september' => 'กันยายน',
'october' => 'ตุลาคม',
'november' => 'พฤศจิกายน',
'december' => 'ธันวาคม',
'monday' => 'จันทร์',
'tuesday' => 'อังคาร',
'wednesday' => 'พุธ',
'thursday' => 'พฤหัสบดี',
'friday' => 'ศุกร์',
'saturday' => 'เสาร์',
'sunday' => 'อาทิตย์',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time ozal',
'from_now' => ':time soňra',
'after' => ':time soň',
'before' => ':time öň',
'year' => '1 ýyl|:count ýyl',
'month' => '1 aý|:count aý',
'week' => '1 hepde|:count hepde',
'day' => '1 gün|:count gün',
'hour' => '1 sagat|:count sagat',
'minute' => '1 minut|:count minut',
'second' => '1 sekunt|:count sekunt',
'january' => 'Ýanwar',
'february' => 'Fewral',
'march' => 'Mart',
'april' => 'Aprel',
'may' => 'Maý',
'june' => 'Iýun',
'july' => 'Iýul',
'august' => 'Awgust',
'september' => 'Sentýabr',
'october' => 'Oktýabr',
'november' => 'Noýabr',
'december' => 'Dekabr',
'monday' => 'Duşenbe',
'tuesday' => 'Sişenbe',
'wednesday' => 'Çarşenbe',
'thursday' => 'Penşenbe',
'friday' => 'Anna',
'saturday' => 'Şenbe',
'sunday' => 'Ýekşenbe',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time önce',
'from_now' => ':time sonra',
'after' => ':time sonra',
'before' => ':time önce',
'year' => ':count yıl',
'month' => ':count ay',
'week' => ':count hafta',
'day' => ':count gün',
'hour' => ':count saat',
'minute' => ':count dakika',
'second' => ':count saniye',
'january' => 'Ocak',
'february' => 'Şubat',
'march' => 'Mart',
'april' => 'Nisan',
'may' => 'Mayıs',
'june' => 'Haziran',
'july' => 'Temmuz',
'august' => 'Ağustos',
'september' => 'Eylül',
'october' => 'Ekim',
'november' => 'Kasım',
'december' => 'Aralık',
'monday' => 'Pazartesi',
'tuesday' => 'Salı',
'wednesday' => 'Çarşamba',
'thursday' => 'Perşembe',
'friday' => 'Cuma',
'saturday' => 'Cumartesi',
'sunday' => 'Pazar',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time назад',
'from_now' => 'через :time',
'after' => ':time після',
'before' => ':time до',
'year' => ':count рік|:count роки|:count років',
'month' => ':count місяць|:count місяці|:count місяців',
'week' => ':count тиждень|:count тижні|:count тижнів',
'day' => ':count день|:count дні|:count днів',
'hour' => ':count година|:count години|:count годин',
'minute' => ':count хвилину|:count хвилини|:count хвилин',
'second' => ':count секунду|:count секунди|:count секунд',
'january' => '{0}січень|{1}січня',
'february' => '{0}лютий|{1}лютого',
'march' => '{0}березень|{1}березня',
'april' => '{0}квітень|{1}квітня',
'may' => '{0}травень|{1}травня',
'june' => '{0}червень|{1}червня',
'july' => '{0}липень|{1}липня',
'august' => '{0}серпень|{1}серпня',
'september' => '{0}вересень|{1}вересня',
'october' => '{0}жовтень|{1}жовтня',
'november' => '{0}листопад|{1}листопада',
'december' => '{0}грудень|{1}грудня',
'monday' => 'понедiлок',
'tuesday' => 'вiвторок',
'wednesday' => 'середа',
'thursday' => 'четвер',
'friday' => 'п\'ятниця',
'saturday' => 'субота',
'sunday' => 'неділя',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time trước',
'from_now' => ':time từ bây giờ',
'after' => ':time sau',
'before' => ':time trước',
'year' => ':count năm',
'month' => ':count tháng',
'week' => ':count tuần',
'day' => ':count ngày',
'hour' => ':count giờ',
'minute' => ':count phút',
'second' => ':count giây',
'january' => 'Tháng một',
'february' => 'Tháng hai',
'march' => 'Tháng ba',
'april' => 'Tháng tư',
'may' => 'Tháng năm',
'june' => 'Tháng sáu',
'july' => 'Tháng bảy',
'august' => 'Tháng tám',
'september' => 'Tháng chín',
'october' => 'Tháng mười',
'november' => 'Tháng mười một',
'december' => 'Tháng mười hai',
'monday' => 'Thứ hai',
'tuesday' => 'Thứ ba',
'wednesday' => 'Thứ tư',
'thursday' => 'Thứ năm',
'friday' => 'Thứ sáu',
'saturday' => 'Thứ bảy',
'sunday' => 'Chủ nhật',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time前',
'from_now' => ':time距现在',
'after' => ':time后',
'before' => ':time前',
'year' => ':count年',
'month' => ':count月',
'week' => ':count周',
'day' => ':count天',
'hour' => ':count小时',
'minute' => ':count分钟',
'second' => ':count秒',
'january' => '一月',
'february' => '二月',
'march' => '三月',
'april' => '四月',
'may' => '五月',
'june' => '六月',
'july' => '七月',
'august' => '八月',
'september' => '九月',
'october' => '十月',
'november' => '十一月',
'december' => '十二月',
'monday' => '星期一',
'tuesday' => '星期二',
'wednesday' => '星期三',
'thursday' => '星期四',
'friday' => '星期五',
'saturday' => '星期六',
'sunday' => '星期日',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time前',
'from_now' => '距現在 :time',
'after' => ':time後',
'before' => ':time前',
'year' => ':count 年',
'month' => ':count 月',
'week' => ':count 周',
'day' => ':count 天',
'hour' => ':count 小時',
'minute' => ':count 分鐘',
'second' => ':count 秒',
'january' => '一月',
'february' => '二月',
'march' => '三月',
'april' => '四月',
'may' => '五月',
'june' => '六月',
'july' => '七月',
'august' => '八月',
'september' => '九月',
'october' => '十月',
'november' => '十一月',
'december' => '十二月',
'monday' => '星期一',
'tuesday' => '星期二',
'wednesday' => '星期三',
'thursday' => '星期四',
'friday' => '星期五',
'saturday' => '星期六',
'sunday' => '星期日',
];

View File

@@ -0,0 +1,48 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/
'ago' => ':time前',
'from_now' => ':time距现在',
'after' => ':time后',
'before' => ':time前',
'year' => ':count年',
'month' => ':count月',
'week' => ':count周',
'day' => ':count天',
'hour' => ':count小时',
'minute' => ':count分钟',
'second' => ':count秒',
'january' => '一月',
'february' => '二月',
'march' => '三月',
'april' => '四月',
'may' => '五月',
'june' => '六月',
'july' => '七月',
'august' => '八月',
'september' => '九月',
'october' => '十月',
'november' => '十一月',
'december' => '十二月',
'monday' => '星期一',
'tuesday' => '星期二',
'wednesday' => '星期三',
'thursday' => '星期四',
'friday' => '星期五',
'saturday' => '星期六',
'sunday' => '星期日',
];