Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
||
|
||
/**
|
||
* ⚠️ Editing not allowed except for 'en' language.
|
||
*
|
||
* @see https://github.com/monicahq/monica/blob/main/docs/contribute/translate.md for translations.
|
||
*/
|
||
|
||
return [
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Formats for dates, hours, etc.
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| The following language lines are used for date formatting.
|
||
| Be careful to translate it to the right format.
|
||
|
|
||
| We use Carbon to format dates, see http://carbon.nesbot.com/docs/#api-commonformats
|
||
| Format parameters are describe here http://www.php.net/manual/en/function.date.php
|
||
|
|
||
*/
|
||
|
||
'short_date_year_time' => 'd בM, Y H:i',
|
||
'short_date_year' => 'd בM, Y',
|
||
'short_date' => 'd בM',
|
||
'short_month' => 'M',
|
||
'short_month_year' => 'M Y',
|
||
'short_day' => 'D',
|
||
'full_date_year' => 'd בF, Y',
|
||
'full_month' => 'F',
|
||
'full_month_year' => 'F Y',
|
||
'full_hour' => 'H.i',
|
||
|
||
'short_text' => '{text}…',
|
||
];
|