81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'week_start_select' => 'Select Day of Week',
|
|
'week_start' => 'Day the Week Starts On',
|
|
'today' => 'Today',
|
|
'clear' => 'Clear',
|
|
'days' => [
|
|
'sunday' => 'Sunday',
|
|
'monday' => 'Monday',
|
|
'tuesday' => 'Tuesday',
|
|
'wednesday' => 'Wednesday',
|
|
'thursday' => 'Thursday',
|
|
'friday' => 'Friday',
|
|
'saturday' => 'Saturday',
|
|
],
|
|
|
|
'short_days' => [
|
|
'sunday' => 'Sun',
|
|
'monday' => 'Mon',
|
|
'tuesday' => 'Tue',
|
|
'wednesday' => 'Wed',
|
|
'thursday' => 'Thu',
|
|
'friday' => 'Fri',
|
|
'saturday' => 'Sat',
|
|
],
|
|
|
|
'min_days' => [
|
|
'sunday' => 'Su',
|
|
'monday' => 'Mo',
|
|
'tuesday' => 'Tu',
|
|
'wednesday' => 'We',
|
|
'thursday' => 'Th',
|
|
'friday' => 'Fr',
|
|
'saturday' => 'Sa',
|
|
],
|
|
|
|
'months' => [
|
|
'january' => 'January',
|
|
'february' => 'February',
|
|
'march' => 'March',
|
|
'april' => 'April',
|
|
'may' => 'May',
|
|
'june' => 'June',
|
|
'july' => 'July',
|
|
'august' => 'August',
|
|
'september' => 'September',
|
|
'october' => 'October',
|
|
'november' => 'November',
|
|
'december' => 'December',
|
|
],
|
|
|
|
'months_short' => [
|
|
'january' => 'Jan',
|
|
'february' => 'Feb',
|
|
'march' => 'Mar',
|
|
'april' => 'Apr',
|
|
'may' => 'May',
|
|
'june' => 'Jun',
|
|
'july' => 'Jul',
|
|
'august' => 'Aug',
|
|
'september' => 'Sep',
|
|
'october' => 'Oct',
|
|
'november' => 'Nov',
|
|
'december' => 'Dec',
|
|
],
|
|
|
|
);
|