€ƒˆфџџџџТ1€ѕ€A€ЮШфџџџџђF‡1€ˆmAAџџџџрэ|€и™FA№лhџџџџнŽщdЉРpЈфˆфџџџџ јgДа€hГWA~ˆфџџџџ”xž|€ h8A№>8AџџџџНž|€8S8A(„ˆфџџџџ80p1€HЗ?A refer to this guide: %3$sHow to Use Google Analytics 4 (GA4) Property with Rank Math%4$s." msgstr "" #. translators: WordPressџџџџџџџџџџџџџџџџџџџџ џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџР(ЧфџџџџF ›|€XY8Aш(ЧфџџџџL#1€jFA ЫШфџџџџ:и„S€•фџџџџŽ љS€0BA…ˆфџџџџТ1€ѕ€A хЧфџџџџђF‡1€ˆmAAВџџџџрэ|€и™FA№лhџџџџнŽщdЉРpЈфсˆфџџџџ јgДа€hГWAрˆфџџџџ”xž|€ h8A0?8AџџџџНž|€8S8AON:" msgstr "" msgid "This action is IRREVERSIBLE." msgstr "" msgid "Documentation" msgstr "" msgid "Add a few images and/or videos to make your content appeџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ џџџџџџџџ@…ˆфџџџџ;‰;ќиu@дPpЦф ‰ˆфџџџџУvŒ[іAАˆ~ЦфHŠˆфџџџџнЁ…‡/˜ŸТ`@…фи‰ˆфHг5Ња€@Њфh‰ˆфџџџџїzdчЫЉ5‘№@…фјˆˆфџџџџm•Љƒј0OмˆyЦфˆˆфџџџџ”RЖuЂР@…ф8‡ˆфџџџџ“ZWcrЃPA…фШ†ˆфџџџџGcЫW3Јь™ A…ф†ˆфџџџџenqueue( $id, $src, $deps, $version ); } /** * Unmarks the script module so it is no longer enqueued in the page. * * @since 6.5.0 * * @param string $id The identifier of the script module. */ function wp_dequeue_script_module( string $id ) { wp_script_modules()->dequeue( $id ); } /** * Deregisters the script module. * * @since 6.5.0 * * @param string $id The identifier of the script module. */ function wp_deregister_script_module( string $id ) { wp_script_modules()->deregister( $id ); } /** * Registers all the default WordPress Script Modules. * * @since 6.7.0 */ function wp_default_script_modules() { $suffix = defined( 'WP_RUN_CORE_TESTS' ) ? '.min' : wp_scripts_get_suffix(); /* * Expects multidimensional array like: * * 'interactivity/index.min.js' => array('dependencies' => array(т€І), 'version' => 'т€І'), * 'interactivity/debug.min.js' => array('dependencies' => array(т€І), 'version' => 'т€І'), * 'interactivity-router/index.min.js' => т€І */ $assets = include ABSPATH . WPINC . "/assets/script-modules-packages{$suffix}.php"; foreach ( $assets as $file_name => $script_module_data ) { /* * Build the WordPress Script Module ID from the file name. * Prepend `@wordpress/` and remove extensions and `/index` if present: * - interactivity/index.min.js => @wordpress/interactivity * - interactivity/debug.min.js => @wordpress/interactivity/debug * - block-library/query/view.js => @wordpress/block-library/query/view */ $script_module_id = '@wordpress/' . preg_replace( '~(?:/index)?(?:\.min)?\.js$~D', '', $file_name, 1 ); switch ( $script_module_id ) { /* * Interactivity exposes two entrypoints, "/index" and "/debug". * "/debug" should replace "/index" in development. */ case '@wordpress/interactivity/debug': if ( ! SCRIPT_DEBUG ) { continue 2; } $script_module_id = '@wordpress/interactivity'; break; case '@wordpress/interactivity': if ( SCRIPT_DEBUG ) { continue 2; } break; } $path = includes_url( "js/dist/script-modules/{$file_name}" ); wp_register_script_module( $script_module_id, $path, $script_module_data['dependencies'], $script_module_data['version'] ); } }