mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-09 01:47:54 -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.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
"su" => "日",
|
|
"mo" => "一",
|
|
"tu" => "二",
|
|
"we" => "三",
|
|
"th" => "四",
|
|
"fr" => "五",
|
|
"sa" => "六",
|
|
"sun" => "周日",
|
|
"mon" => "周一",
|
|
"tue" => "周二",
|
|
"wed" => "周三",
|
|
"thu" => "周四",
|
|
"fri" => "周五",
|
|
"sat" => "周六",
|
|
"sunday" => "星期日",
|
|
"monday" => "星期一",
|
|
"tuesday" => "星期二",
|
|
"wednesday" => "星期三",
|
|
"thursday" => "星期四",
|
|
"friday" => "星期五",
|
|
"saturday" => "星期六",
|
|
"jan" => "1月",
|
|
"feb" => "2月",
|
|
"mar" => "3月",
|
|
"apr" => "4月",
|
|
"may" => "5月",
|
|
"jun" => "6月",
|
|
"jul" => "7月",
|
|
"aug" => "8月",
|
|
"sep" => "9月",
|
|
"oct" => "10月",
|
|
"nov" => "11月",
|
|
"dec" => "12月",
|
|
"january" => "一月",
|
|
"february" => "二月",
|
|
"march" => "三月",
|
|
"april" => "四月",
|
|
"mayl" => "五月",
|
|
"june" => "六月",
|
|
"july" => "七月",
|
|
"august" => "八月",
|
|
"september" => "九月",
|
|
"october" => "十月",
|
|
"november" => "十一月",
|
|
"december" => "十二月",
|
|
];
|