Make WordPress Core

Changeset 1287


Ignore:
Timestamp:
05/16/2004 05:51:26 PM (22 years ago)
Author:
rboren
Message:

Oops. Keys need to be marked too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/locale.php

    r1286 r1287  
    1313// The first letter of each day.  Note that marking single characters for
    1414// 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');
    2222
    2323// 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');
    3131
    3232// The Months
     
    4545
    4646// 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');
    5959?>
Note: See TracChangeset for help on using the changeset viewer.