<?php
/**
* This file is part of Aksara CMS, both framework and publishing
* platform.
*
* @author Aby Dahana <abydahana@gmail.com>
* @copyright (c) Aksara Laboratory <https://aksaracms.com>
* @license MIT License
*
* This source file is subject to the MIT license that is bundled
* with this source code in the LICENSE.txt file.
*
* When the signs come, those who don't believe at "that time"
* will have only two choices, commit suicide or become brutal.
*/
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
// Time language settings
return [
'invalidFormat' => '"{0}" is kein gültiges Format für `datetime`.',
'invalidMonth' => 'Monat muss zwischen 1 und 12 sein. Eingabe: {0}',
'invalidDay' => 'Tag muss zwischen 1 und 31 sein. Eingabe: {0}',
'invalidOverDay' => 'Tag muss zwischen 1 und {0} sein. Eingabe: {1}',
'invalidHours' => 'Stunde muss zwischen 0 und 23 sein. Eingabe: {0}',
'invalidMinutes' => 'Minute muss zwischen 0 und 59 sein. Eingabe: {0}',
'invalidSeconds' => 'Sekunde muss zwischen 0 und 59 sein. Eingabe: {0}',
'years' => '{0, plural, =1{# Jahr} other{# Jahre}}',
'months' => '{0, plural, =1{# Monat} other{# Monate}}',
'weeks' => '{0, plural, =1{# Woche} other{# Wochen}}',
'days' => '{0, plural, =1{# Tag} other{# Tage}}',
'hours' => '{0, plural, =1{# Stunde} other{# Stunden}}',
'minutes' => '{0, plural, =1{# Minute} other{# Minuten}}',
'seconds' => '{0, plural, =1{# Sekunde} other{# Sekunden}}',
'ago' => 'vor {0}',
'inFuture' => 'in {0}',
'yesterday' => 'Gestern',
'tomorrow' => 'Morgen',
'now' => 'Jetzt',
];
|