wp/wp-includes/class-wp-locale.php
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
equal deleted inserted replaced
17:34716fd837a4 18:be944660c56a
   357 	 * otherwise be added to the admin POT.
   357 	 * otherwise be added to the admin POT.
   358 	 *
   358 	 *
   359 	 * @since 3.6.0
   359 	 * @since 3.6.0
   360 	 */
   360 	 */
   361 	public function _strings_for_pot() {
   361 	public function _strings_for_pot() {
   362 		/* translators: Localized date format, see https://www.php.net/date */
   362 		/* translators: Localized date format, see https://www.php.net/manual/datetime.format.php */
   363 		__( 'F j, Y' );
   363 		__( 'F j, Y' );
   364 		/* translators: Localized time format, see https://www.php.net/date */
   364 		/* translators: Localized time format, see https://www.php.net/manual/datetime.format.php */
   365 		__( 'g:i a' );
   365 		__( 'g:i a' );
   366 		/* translators: Localized date and time format, see https://www.php.net/date */
   366 		/* translators: Localized date and time format, see https://www.php.net/manual/datetime.format.php */
   367 		__( 'F j, Y g:i a' );
   367 		__( 'F j, Y g:i a' );
   368 	}
   368 	}
   369 }
   369 }