131 | | $this->month['01'] = /* translators: month name */ __('January'); |
132 | | $this->month['02'] = /* translators: month name */ __('February'); |
133 | | $this->month['03'] = /* translators: month name */ __('March'); |
134 | | $this->month['04'] = /* translators: month name */ __('April'); |
135 | | $this->month['05'] = /* translators: month name */ __('May'); |
136 | | $this->month['06'] = /* translators: month name */ __('June'); |
137 | | $this->month['07'] = /* translators: month name */ __('July'); |
138 | | $this->month['08'] = /* translators: month name */ __('August'); |
139 | | $this->month['09'] = /* translators: month name */ __('September'); |
140 | | $this->month['10'] = /* translators: month name */ __('October'); |
141 | | $this->month['11'] = /* translators: month name */ __('November'); |
142 | | $this->month['12'] = /* translators: month name */ __('December'); |
| 131 | $this->month['01'] = /* translators: month name */ __( 'January' ); |
| 132 | $this->month['02'] = /* translators: month name */ __( 'February' ); |
| 133 | $this->month['03'] = /* translators: month name */ __( 'March' ); |
| 134 | $this->month['04'] = /* translators: month name */ __( 'April' ); |
| 135 | $this->month['05'] = /* translators: month name */ __( 'May' ); |
| 136 | $this->month['06'] = /* translators: month name */ __( 'June' ); |
| 137 | $this->month['07'] = /* translators: month name */ __( 'July' ); |
| 138 | $this->month['08'] = /* translators: month name */ __( 'August' ); |
| 139 | $this->month['09'] = /* translators: month name */ __( 'September' ); |
| 140 | $this->month['10'] = /* translators: month name */ __( 'October' ); |
| 141 | $this->month['11'] = /* translators: month name */ __( 'November' ); |
| 142 | $this->month['12'] = /* translators: month name */ __( 'December' ); |
| 144 | // The Months, genitive |
| 145 | $this->month_genitive['01'] = /* translators: month name, genitive */ _x( 'January', 'genitive' ); |
| 146 | $this->month_genitive['02'] = /* translators: month name, genitive */ _x( 'February', 'genitive' ); |
| 147 | $this->month_genitive['03'] = /* translators: month name, genitive */ _x( 'March', 'genitive' ); |
| 148 | $this->month_genitive['04'] = /* translators: month name, genitive */ _x( 'April', 'genitive' ); |
| 149 | $this->month_genitive['05'] = /* translators: month name, genitive */ _x( 'May', 'genitive' ); |
| 150 | $this->month_genitive['06'] = /* translators: month name, genitive */ _x( 'June', 'genitive' ); |
| 151 | $this->month_genitive['07'] = /* translators: month name, genitive */ _x( 'July', 'genitive' ); |
| 152 | $this->month_genitive['08'] = /* translators: month name, genitive */ _x( 'August', 'genitive' ); |
| 153 | $this->month_genitive['09'] = /* translators: month name, genitive */ _x( 'September', 'genitive' ); |
| 154 | $this->month_genitive['10'] = /* translators: month name, genitive */ _x( 'October', 'genitive' ); |
| 155 | $this->month_genitive['11'] = /* translators: month name, genitive */ _x( 'November', 'genitive' ); |
| 156 | $this->month_genitive['12'] = /* translators: month name, genitive */ _x( 'December', 'genitive' ); |
| 157 | |