Skip to content

Commit b5c440f

Browse files
author
Juan Jesús
committed
Fixed order in array
1 parent ab8ba10 commit b5c440f

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

system/language/es/generic.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
// locale
44
define( "LOCALE", "es_MX.utf-8,es_MX,esp,Español" ); //define locale language
55

6-
$days = array("Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Domingo");//needed to use %l option for date()
7-
$abbrDays = array("Lun","Mar","Mié","Jue","Vie","Sáb","Dom");//needed to use %D option for date()
8-
6+
$days = array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");//needed to use %l option for date()
7+
$abbrDays = array("Dom","Lun","Mar","Mié","Jue","Vie","Sáb");//needed to use %D option for date()
98
//Time
109
define( "DATE_FORMAT" , "%d %b %Y" );
11-
define( "DATE_TIME_FORMAT" , $abbrDays[ date("%w") ] . " - %I:%M %p" );//array notation to simulate %D
10+
define( "DATE_TIME_FORMAT" , $abbrDays[ date("w") ] . " - %I:%M %p" );//array notation to simulate %D
1211
define( "TIME_FORMAT" , "%I:%M %p" );
1312
define( "MONTH_FORMAT" , "%d %b" );
1413

0 commit comments

Comments
 (0)