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" => "Do",
|
|
"mo" => "Lu",
|
|
"tu" => "Ma",
|
|
"we" => "Me",
|
|
"th" => "Gi",
|
|
"fr" => "Ve",
|
|
"sa" => "Sa",
|
|
"sun" => "Dom",
|
|
"mon" => "Lun",
|
|
"tue" => "Mar",
|
|
"wed" => "Mer",
|
|
"thu" => "Gio",
|
|
"fri" => "Ven",
|
|
"sat" => "Dom",
|
|
"sunday" => "Domenica",
|
|
"monday" => "Lunedì",
|
|
"tuesday" => "Martedì",
|
|
"wednesday" => "Mercoledì",
|
|
"thursday" => "Giovedì",
|
|
"friday" => "Venerdì",
|
|
"saturday" => "Sabato",
|
|
"jan" => "Gen",
|
|
"feb" => "Feb",
|
|
"mar" => "Mar",
|
|
"apr" => "Apr",
|
|
"may" => "Mag",
|
|
"jun" => "Giu",
|
|
"jul" => "Lug",
|
|
"aug" => "Ago",
|
|
"sep" => "Set",
|
|
"oct" => "Ott",
|
|
"nov" => "Nov",
|
|
"dec" => "Dic",
|
|
"january" => "Gennaio",
|
|
"february" => "Febbraio",
|
|
"march" => "Marzo",
|
|
"april" => "Aprile",
|
|
"mayl" => "Maggio",
|
|
"june" => "Giugno",
|
|
"july" => "Luglio",
|
|
"august" => "Agosto",
|
|
"september" => "Settembre",
|
|
"october" => "Ottobre",
|
|
"november" => "Novembre",
|
|
"december" => "Dicembre",
|
|
];
|