WP_Locale::_strings_for_pot() public WP 3.6.0
Register date/time format strings for general POT.
Private, unused method to add some date/time formats translated on wp-admin/options-general.php to the general POT that would otherwise be added to the admin POT.
{} It's a method of the class: WP_Locale{}
No Hooks.
Return
Null. Nothing.
Usage
global $wp_locale; $wp_locale->_strings_for_pot();
Changelog
Since 3.6.0 | Introduced. |
Code of WP_Locale::_strings_for_pot() WP Locale:: strings for pot WP 5.6
public function _strings_for_pot() {
/* translators: Localized date format, see https://www.php.net/manual/datetime.format.php */
__( 'F j, Y' );
/* translators: Localized time format, see https://www.php.net/manual/datetime.format.php */
__( 'g:i a' );
/* translators: Localized date and time format, see https://www.php.net/manual/datetime.format.php */
__( 'F j, Y g:i a' );
}