Changeset 35336
- Timestamp:
- 10/21/2015 05:27:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/locale.php
r34489 r35336 41 41 */ 42 42 public $weekday_abbrev; 43 44 /** 45 * Stores the default start of the week. 46 * 47 * @since 4.4.0 48 * @var string 49 */ 50 public $start_of_week; 43 51 44 52 /** … … 118 126 $this->weekday_initial[ __( 'Friday' ) ] = /* translators: one-letter abbreviation of the weekday */ _x( 'F', 'Friday initial' ); 119 127 $this->weekday_initial[ __( 'Saturday' ) ] = /* translators: one-letter abbreviation of the weekday */ _x( 'S', 'Saturday initial' ); 128 129 // Start of the week. 130 $this->start_of_week = /* translators: default start of the week. 0 = Sunday, 1 = Monday */ _x( '1', 'start of week' ); 120 131 121 132 // Abbreviations for each day.
Note: See TracChangeset
for help on using the changeset viewer.