Changeset 1287
- Timestamp:
- 05/16/2004 05:51:26 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/locale.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/locale.php
r1286 r1287 13 13 // The first letter of each day. Note that marking single characters for 14 14 // translation is useless, but here it is. 15 $weekday_initial[ 'Sunday'] = __('S');16 $weekday_initial[ 'Monday'] = __('M');17 $weekday_initial[ 'Tuesday'] = __('T');18 $weekday_initial[ 'Wednesday'] = __('W');19 $weekday_initial[ 'Thursday'] = __('T');20 $weekday_initial[ 'Friday'] = __('F');21 $weekday_initial[ 'Saturday'] = __('S');15 $weekday_initial[__('Sunday')] = __('S'); 16 $weekday_initial[__('Monday')] = __('M'); 17 $weekday_initial[__('Tuesday')] = __('T'); 18 $weekday_initial[__('Wednesday')] = __('W'); 19 $weekday_initial[__('Thursday')] = __('T'); 20 $weekday_initial[__('Friday')] = __('F'); 21 $weekday_initial[__('Saturday')] = __('S'); 22 22 23 23 // Abbreviations for each day. 24 $weekday_abbrev[ 'Sunday'] = __('Sun');25 $weekday_abbrev[ 'Monday'] = __('Mon');26 $weekday_abbrev[ 'Tuesday'] = __('Tue');27 $weekday_abbrev[ 'Wednesday'] = __('Wed');28 $weekday_abbrev[ 'Thursday'] = __('Thu');29 $weekday_abbrev[ 'Friday'] = __('Fri');30 $weekday_abbrev[ 'Saturday'] = __('Sat');24 $weekday_abbrev[__('Sunday')] = __('Sun'); 25 $weekday_abbrev[__('Monday')] = __('Mon'); 26 $weekday_abbrev[__('Tuesday')] = __('Tue'); 27 $weekday_abbrev[__('Wednesday')] = __('Wed'); 28 $weekday_abbrev[__('Thursday')] = __('Thu'); 29 $weekday_abbrev[__('Friday')] = __('Fri'); 30 $weekday_abbrev[__('Saturday')] = __('Sat'); 31 31 32 32 // The Months … … 45 45 46 46 // Abbreviations for each month. 47 $month_abbrev[ 'January'] = __('Jan');48 $month_abbrev[ 'February'] = __('Feb');49 $month_abbrev[ 'March'] = __('Mar');50 $month_abbrev[ 'April'] = __('Apr');51 $month_abbrev[ 'May'] = __('May');52 $month_abbrev[ 'June'] = __('Jun');53 $month_abbrev[ 'July'] = __('Jul');54 $month_abbrev[ 'August'] = __('Aug');55 $month_abbrev[ 'September'] = __('Sep');56 $month_abbrev[ 'October'] = __('Oct');57 $month_abbrev[ 'November'] = __('Nov');58 $month_abbrev[ 'December'] = __('Dec');47 $month_abbrev[__('January')] = __('Jan'); 48 $month_abbrev[__('February')] = __('Feb'); 49 $month_abbrev[__('March')] = __('Mar'); 50 $month_abbrev[__('April')] = __('Apr'); 51 $month_abbrev[__('May')] = __('May'); 52 $month_abbrev[__('June')] = __('Jun'); 53 $month_abbrev[__('July')] = __('Jul'); 54 $month_abbrev[__('August')] = __('Aug'); 55 $month_abbrev[__('September')] = __('Sep'); 56 $month_abbrev[__('October')] = __('Oct'); 57 $month_abbrev[__('November')] = __('Nov'); 58 $month_abbrev[__('December')] = __('Dec'); 59 59 ?>
Note: See TracChangeset
for help on using the changeset viewer.