From 4cd1ef4aa0b2f662b8ee9495b99e3fd2075821e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Tue, 29 Oct 2024 15:27:27 +0100 Subject: [PATCH] Fix Text Domain Mismatch --- includes/admin/class-health-check.php | 4 ++-- includes/class-settings.php | 6 +++--- includes/class-setup.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/includes/admin/class-health-check.php b/includes/admin/class-health-check.php index 5fa3f9a..daaa0e0 100644 --- a/includes/admin/class-health-check.php +++ b/includes/admin/class-health-check.php @@ -47,7 +47,7 @@ class Health_Check { */ public static function test_event_transformation() { $result = array( - 'label' => \__( 'Transformation of Events to a valid ActivityStreams representation.', 'activitypub' ), + 'label' => \__( 'Transformation of Events to a valid ActivityStreams representation.', 'activitypub-event-bridge' ), 'status' => 'good', 'badge' => array( 'label' => \__( 'ActivityPub Event Bridge', 'activitypub-event-bridge' ), @@ -172,7 +172,7 @@ class Health_Check { 'label' => __( 'ActivityPub Event Bridge', 'activitypub-event-bridge' ), 'fields' => array( 'plugin_version' => array( - 'label' => __( 'Plugin Version', 'activitypub' ), + 'label' => __( 'Plugin Version', 'activitypub-event-bridge' ), 'value' => ACTIVITYPUB_EVENT_BRIDGE_PLUGIN_VERSION, 'private' => true, ), diff --git a/includes/class-settings.php b/includes/class-settings.php index 3367dd1..6cd7d2e 100644 --- a/includes/class-settings.php +++ b/includes/class-settings.php @@ -44,7 +44,7 @@ class Settings { 'activitypub_event_bridge_default_event_category', array( 'type' => 'string', - 'description' => \__( 'Define your own custom post template', 'activitypub' ), + 'description' => \__( 'Define your own custom post template', 'activitypub-event-bridge' ), 'show_in_rest' => true, 'default' => self::DEFAULT_EVENT_CATEGORY, 'sanitize_callback' => array( self::class, 'sanitize_mapped_event_category' ), @@ -56,7 +56,7 @@ class Settings { 'activitypub_event_bridge_event_category_mappings', array( 'type' => 'array', - 'description' => \__( 'Define your own custom post template', 'activitypub' ), + 'description' => \__( 'Define your own custom post template', 'activitypub-event-bridge' ), 'default' => array(), 'sanitize_callback' => array( self::class, 'sanitize_event_category_mappings' ), ) @@ -67,7 +67,7 @@ class Settings { 'activitypub_event_bridge_initially_activated', array( 'type' => 'boolean', - 'description' => \__( 'Whether the plugin just got activated for the first time.', 'activitypub' ), + 'description' => \__( 'Whether the plugin just got activated for the first time.', 'activitypub-event-bridge' ), 'default' => 1, ) ); diff --git a/includes/class-setup.php b/includes/class-setup.php index 966d1d3..d919708 100644 --- a/includes/class-setup.php +++ b/includes/class-setup.php @@ -285,7 +285,7 @@ class Setup { foreach ( $this->active_event_plugins as $event_plugin ) { if ( ! in_array( $event_plugin->get_post_type(), $activitypub_supported_post_types, true ) ) { $activitypub_supported_post_types[] = $event_plugin->get_post_type(); - add_post_type_support( $event_plugin->get_post_type(), 'activitypub' ); + add_post_type_support( $event_plugin->get_post_type(), 'activitypub-event-bridge' ); } } update_option( 'activitypub_support_post_types', $activitypub_supported_post_types );