mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-27 03:27:55 -05:00
* Improve code style and PSR-12 compliance - refactored code formatting to adhere to PSR-12 guidelines - standardized coding conventions across the codebase - added missing framework files and reverted markup changes - reformatted arrays for enhanced readability - updated language files for consistent styling and clarity - minor miscellaneous improvements
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
"su" => "Su",
|
|
"mo" => "Mo",
|
|
"tu" => "Tu",
|
|
"we" => "We",
|
|
"th" => "Th",
|
|
"fr" => "Fr",
|
|
"sa" => "Sa",
|
|
"sun" => "Sun",
|
|
"mon" => "Mon",
|
|
"tue" => "Tue",
|
|
"wed" => "Wed",
|
|
"thu" => "Thu",
|
|
"fri" => "Fri",
|
|
"sat" => "Sat",
|
|
"sunday" => "Sunday",
|
|
"monday" => "Monday",
|
|
"tuesday" => "Tuesday",
|
|
"wednesday" => "Wednesday",
|
|
"thursday" => "Thursday",
|
|
"friday" => "Friday",
|
|
"saturday" => "Saturday",
|
|
"jan" => "Jan",
|
|
"feb" => "Feb",
|
|
"mar" => "Mar",
|
|
"apr" => "Apr",
|
|
"may" => "May",
|
|
"jun" => "Jun",
|
|
"jul" => "Jul",
|
|
"aug" => "Aug",
|
|
"sep" => "Sep",
|
|
"oct" => "Oct",
|
|
"nov" => "Nov",
|
|
"dec" => "Dec",
|
|
"january" => "January",
|
|
"february" => "February",
|
|
"march" => "March",
|
|
"april" => "April",
|
|
"mayl" => "May",
|
|
"june" => "June",
|
|
"july" => "July",
|
|
"august" => "August",
|
|
"september" => "September",
|
|
"october" => "October",
|
|
"november" => "November",
|
|
"december" => "December",
|
|
];
|