Changeset 47122 for trunk/src/wp-includes/class-wp-locale.php
- Timestamp:
- 01/29/2020 12:43:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-locale.php
r47088 r47122 119 119 */ 120 120 public function init() { 121 // The Weekdays121 // The weekdays. 122 122 $this->weekday[0] = /* translators: Weekday. */ __( 'Sunday' ); 123 123 $this->weekday[1] = /* translators: Weekday. */ __( 'Monday' ); … … 146 146 $this->weekday_abbrev[ __( 'Saturday' ) ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Sat' ); 147 147 148 // The Months148 // The months. 149 149 $this->month['01'] = /* translators: Month name. */ __( 'January' ); 150 150 $this->month['02'] = /* translators: Month name. */ __( 'February' ); … … 160 160 $this->month['12'] = /* translators: Month name. */ __( 'December' ); 161 161 162 // The Months, genitive162 // The months, genitive. 163 163 $this->month_genitive['01'] = /* translators: Month name, genitive. */ _x( 'January', 'genitive' ); 164 164 $this->month_genitive['02'] = /* translators: Month name, genitive. */ _x( 'February', 'genitive' ); … … 188 188 $this->month_abbrev[ __( 'December' ) ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Dec', 'December abbreviation' ); 189 189 190 // The Meridiems190 // The meridiems. 191 191 $this->meridiem['am'] = __( 'am' ); 192 192 $this->meridiem['pm'] = __( 'pm' ); … … 194 194 $this->meridiem['PM'] = __( 'PM' ); 195 195 196 // Numbers formatting 196 // Numbers formatting. 197 197 // See https://www.php.net/number_format 198 198
Note: See TracChangeset
for help on using the changeset viewer.