2024-09-25 13:59:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* File responsible for defining the event category strings.
|
|
|
|
*
|
2024-12-05 16:16:30 +01:00
|
|
|
* @package Event_Bridge_For_ActivityPub
|
2024-09-25 13:59:31 +02:00
|
|
|
* @since 1.0.0
|
|
|
|
* @license AGPL-3.0-or-later
|
|
|
|
*/
|
|
|
|
|
2024-12-05 16:16:30 +01:00
|
|
|
namespace Event_Bridge_For_ActivityPub;
|
2024-09-25 13:59:31 +02:00
|
|
|
|
|
|
|
define(
|
2024-12-05 16:16:30 +01:00
|
|
|
'EVENT_BRIDGE_FOR_ACTIVITYPUB_EVENT_CATEGORIES',
|
2024-09-25 13:59:31 +02:00
|
|
|
array(
|
2024-12-05 16:16:30 +01:00
|
|
|
'ARTS' => __( 'Arts', 'event-bridge-for-activitypub' ),
|
|
|
|
'BOOK_CLUBS' => __( 'Book clubs', 'event-bridge-for-activitypub' ),
|
|
|
|
'BUSINESS' => __( 'Business', 'event-bridge-for-activitypub' ),
|
|
|
|
'CAUSES' => __( 'Causes', 'event-bridge-for-activitypub' ),
|
|
|
|
'COMEDY' => __( 'Comedy', 'event-bridge-for-activitypub' ),
|
|
|
|
'CRAFTS' => __( 'Crafts', 'event-bridge-for-activitypub' ),
|
|
|
|
'FOOD_DRINK' => __( 'Food & Drink', 'event-bridge-for-activitypub' ),
|
|
|
|
'HEALTH' => __( 'Health', 'event-bridge-for-activitypub' ),
|
|
|
|
'MUSIC' => __( 'Music', 'event-bridge-for-activitypub' ),
|
|
|
|
'AUTO_BOAT_AIR' => __( 'Auto, boat and air', 'event-bridge-for-activitypub' ),
|
|
|
|
'COMMUNITY' => __( 'Community', 'event-bridge-for-activitypub' ),
|
|
|
|
'FAMILY_EDUCATION' => __( 'Family & Education', 'event-bridge-for-activitypub' ),
|
|
|
|
'FASHION_BEAUTY' => __( 'Fashion & Beauty', 'event-bridge-for-activitypub' ),
|
|
|
|
'FILM_MEDIA' => __( 'Film & Media', 'event-bridge-for-activitypub' ),
|
|
|
|
'GAMES' => __( 'Games', 'event-bridge-for-activitypub' ),
|
|
|
|
'LANGUAGE_CULTURE' => __( 'Language & Culture', 'event-bridge-for-activitypub' ),
|
|
|
|
'LEARNING' => __( 'Learning', 'event-bridge-for-activitypub' ),
|
|
|
|
'LGBTQ' => __( 'LGBTQ', 'event-bridge-for-activitypub' ),
|
|
|
|
'MOVEMENTS_POLITICS' => __( 'Movements and politics', 'event-bridge-for-activitypub' ),
|
|
|
|
'NETWORKING' => __( 'Networking', 'event-bridge-for-activitypub' ),
|
|
|
|
'PARTY' => __( 'Party', 'event-bridge-for-activitypub' ),
|
|
|
|
'PERFORMING_VISUAL_ARTS' => __( 'Performing & Visual Arts', 'event-bridge-for-activitypub' ),
|
|
|
|
'PETS' => __( 'Pets', 'event-bridge-for-activitypub' ),
|
|
|
|
'PHOTOGRAPHY' => __( 'Photography', 'event-bridge-for-activitypub' ),
|
|
|
|
'OUTDOORS_ADVENTURE' => __( 'Outdoors & Adventure', 'event-bridge-for-activitypub' ),
|
|
|
|
'SPIRITUALITY_RELIGION_BELIEFS' => __( 'Spirituality, Religion & Beliefs', 'event-bridge-for-activitypub' ),
|
|
|
|
'SCIENCE_TECH' => __( 'Science & Tech', 'event-bridge-for-activitypub' ),
|
|
|
|
'SPORTS' => __( 'Sports', 'event-bridge-for-activitypub' ),
|
|
|
|
'THEATRE' => __( 'Theatre', 'event-bridge-for-activitypub' ),
|
|
|
|
'MEETING' => __( 'Meeting', 'event-bridge-for-activitypub' ), // Default value in federation.
|
|
|
|
'DEFAULT' => __( 'Default', 'event-bridge-for-activitypub' ), // Internal default for overrides.
|
2024-09-25 13:59:31 +02:00
|
|
|
),
|
|
|
|
);
|