Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?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:
|
||||
* - Томица Кораћ
|
||||
* - Enrique Vidal
|
||||
* - Christopher Dell
|
||||
* - dmilisic
|
||||
* - danijel
|
||||
* - Miroslav Matkovic (mikki021)
|
||||
*/
|
||||
return [
|
||||
'diff_now' => 'sada',
|
||||
'diff_yesterday' => 'juče',
|
||||
'diff_tomorrow' => 'sutra',
|
||||
'formats' => [
|
||||
'LT' => 'HH:mm',
|
||||
'LTS' => 'HH:mm:ss',
|
||||
'L' => 'DD/MM/YYYY',
|
||||
'LL' => 'MMMM D, YYYY',
|
||||
'LLL' => 'DD MMM HH:mm',
|
||||
'LLLL' => 'MMMM DD, YYYY HH:mm',
|
||||
],
|
||||
'year' => ':count godina|:count godine|:count godina',
|
||||
'y' => ':count g.',
|
||||
'month' => ':count mesec|:count meseca|:count meseci',
|
||||
'm' => ':count m.',
|
||||
'week' => ':count nedelja|:count nedelje|:count nedelja',
|
||||
'w' => ':count n.',
|
||||
'day' => ':count dan|:count dana|:count dana',
|
||||
'd' => ':count d.',
|
||||
'hour' => ':count sat|:count sata|:count sati',
|
||||
'h' => ':count č.',
|
||||
'minute' => ':count minut|:count minuta|:count minuta',
|
||||
'min' => ':count min.',
|
||||
'second' => ':count sekund|:count sekunde|:count sekundi',
|
||||
's' => ':count s.',
|
||||
'ago' => 'pre :time',
|
||||
'from_now' => 'za :time',
|
||||
'after' => 'nakon :time',
|
||||
'before' => ':time raniјe',
|
||||
'weekdays' => ['Nedelja', 'Ponedeljak', 'Utorak', 'Sreda', 'Četvrtak', 'Petak', 'Subota'],
|
||||
'weekdays_short' => ['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'],
|
||||
'weekdays_min' => ['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'],
|
||||
'months' => ['Januar', 'Februar', 'Mart', 'April', 'Maj', 'Jun', 'Jul', 'Avgust', 'Septembar', 'Oktobar', 'Novembar', 'Decembar'],
|
||||
'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'],
|
||||
'list' => [', ', ' i '],
|
||||
'meridiem' => ['pre podne', 'po podne'],
|
||||
];
|
||||
Reference in New Issue
Block a user