This commit is contained in:
Benjamin Takats
2022-12-21 17:14:32 +01:00
parent 38161bd19e
commit 3eaa2bc2eb
191 changed files with 9005 additions and 3442 deletions

View File

@@ -1,18 +1,20 @@
<?php
return [
'selectTime' => 'Select time',
'empty_options' => 'Empty Options',
'loading' => 'Loading...',
'searchHere' => 'Search here',
'datePicker' => [
'months' => "['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']",
'days' => "['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']",
'tomorrow' => 'Tomorrow',
'today' => 'Today',
'yesterday' => 'Yesterday',
],
'errors' => [
'title' => 'There were {errors} errors with your submission',
],
];
return array (
'datePicker' =>
array (
'days' => '[\'Sun\', \'Mon\', \'Tue\', \'Wed\', \'Thu\', \'Fri\', \'Sat\']',
'months' => '[\'January\', \'February\', \'March\', \'April\', \'May\', \'June\', \'July\', \'August\', \'September\', \'October\', \'November\', \'December\']',
'today' => 'Today',
'tomorrow' => 'Tomorrow',
'yesterday' => 'Yesterday',
),
'empty_options' => 'Empty Options',
'errors' =>
array (
'title' => 'There were {errors} errors with your submission',
),
'loading' => 'Loading...',
'searchHere' => 'Search here',
'selectTime' => 'Select time',
);