ots": {"label": {"de-DE": "Punkte-Navigation", "en-GB": "Dots navigation"}}, "sectionContentShoppingExperiencesAllTypes": {"label": {"de-DE": "Alle Typen (Shopseiten, Landingpages, Kategorieseiten, Produktseiten)", "en-GB": "All types (Shop pages, Landing pages, Category pages, Product pages)"}}, "sectionProductListingLayoutColumnsSidebar": {"label": {"de-DE": "Spalten pro Zeile (mit Sidebar)", "en-GB": "Columns per row (with Sidebar)"}}, "sectionProductListingProductBoxProductName": {"label": {"de-DE": "Produktname", "en-GB": "Product name"}}, "sectionProductListingSidebarBlockContainer": {"label": {"de-DE": "Sidebar Elemente", "en-GB": "Sidebar elements"}}, "sectionShoppingExperiencesNavigationArrows": {"label": {"de-DE": "Pfeile-Navigation", "en-GB": "Arrow navigation"}}, "sectionExtensionsProductBadgesDiscountBadge": {"label": {"de-DE": "Rabatt-Badge", "en-GB": "Discount badge"}}, "sectionHeaderActionButtonsAccountMenuButton": {"label": {"de-DE": "\"Mein Konto\"-Button", "en-GB": "Account button"}}, "sectionProductListingProductBoxProductImage": {"label": {"de-DE": "Artikelbild", "en-GB": "Product image"}}, "sectionProductListingProductBoxProductRating": {"label": {"de-DE": "Produkt-Bewertung", "en-GB": "Product rating"}}, "sectionContentBreadcrumbContainerCustomStyling": {"label": {"de-DE": "Benutzerdefiniertes Container-Styling", "en-GB": "Custom container styling"}}, "sectionContentShoppingExperiencesCssAnimations": {"label": {"de-DE": "CSS-Scroll-Animationen", "en-GB": "CSS scroll animations"}}, "sectionShoppingExperiencesSidebarFilterContent": {"label": {"de-DE": "Filter (above Content)", "en-GB": "Filter (above content)"}}, "sectionExtensionsProductBadgesShippingFreeBadge": {"label": {"de-DE": "Versandkostenfrei-Badge", "en-GB": "Free shipping badge"}}, "sectionShoppingExperiencesImageTextCategoryText": {"label": {"de-DE": "Kategorietext", "en-GB": "Category text"}}, "sectionShoppingExperiencesCategoryNavigationLink": {"label": {"de-DE": "Links", "en-GB": "Links"}}, "sectionShoppingExperiencesImageTextCategoryImage": {"label": {"de-DE": "Kategoriebild", "en-GB": "Category image"}}, "sectionContentShoppingExperiencesAllTypesShopPages": {"label": {"de-DE": "Shopseiten", "en-GB": "Shop pages"}}, "sectionContentShoppingExperiencesLayoutAdjustments": {"label": {"de-DE": "ThemeWare® CMS-Styling", "en-GB": "ThemeWare® CMS styling"}}, "sectionContentShoppingExperiencesAllTypesLandingPages": {"label": {"de-DE": "Landingpages", "en-GB": "Landing pages"}}, "sectionContentShoppingExperiencesAllTypesProductPages": {"label": {"de-DE": "Produktseiten", "en-GB": "Product pages"}}, "sectionContentShoppingExperiencesAllTypesCategoryPages": {"label": {"de-DE": "Kategorieseiten", "en-GB": "Category pages"}}}}es_Registry The main instance. */ public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } } /** * Registers a new pattern category. * * @since 5.5.0 * * @param string $category_name Pattern category name including namespace. * @param array $category_properties List of properties for the block pattern. * See WP_Block_Pattern_Categories_Registry::register() for * accepted arguments. * @return bool True if the pattern category was registered with success and false otherwise. */ function register_block_pattern_category( $category_name, $category_properties ) { return WP_Block_Pattern_Categories_Registry::get_instance()->register( $category_name, $category_properties ); } /** * Unregisters a pattern category. * * @since 5.5.0 * * @param string $category_name Pattern category name including namespace. * @return bool True if the pattern category was unregistered with success and false otherwise. */ function unregister_block_pattern_category( $category_name ) { return WP_Block_Pattern_Categories_Registry::get_instance()->unregister( $category_name ); }