Update tranlation text domain

This commit is contained in:
David Stone
2025-02-15 23:19:24 -07:00
parent 217009caab
commit f05ab77418
424 changed files with 6368 additions and 6368 deletions

View File

@ -38,8 +38,8 @@ class Event_List_Table extends Base_List_Table {
parent::__construct(
[
'singular' => __('Event', 'wp-ultimo'), // singular name of the listed records
'plural' => __('Events', 'wp-ultimo'), // plural name of the listed records
'singular' => __('Event', 'wp-multisite-waas'), // singular name of the listed records
'plural' => __('Events', 'wp-multisite-waas'), // plural name of the listed records
'ajax' => true, // does this table support ajax?
]
);
@ -93,7 +93,7 @@ class Event_List_Table extends Base_List_Table {
</div>
<div class=''>
<strong class='wu-block'>{$system_text}</strong>
<small>" . __('Automatically started', 'wp-ultimo') . "</small>
<small>" . __('Automatically started', 'wp-multisite-waas') . "</small>
</div>
</div>";
// phpcs:enable
@ -137,7 +137,7 @@ class Event_List_Table extends Base_List_Table {
</div>
</a>";
} else {
$not_found = __('No initiator found', 'wp-ultimo');
$not_found = __('No initiator found', 'wp-multisite-waas');
$html = "<div class='wu-table-card wu-text-gray-700 wu-py-1 wu-px-2 wu-flex wu-flex-grow wu-rounded wu-items-center wu-border wu-border-solid wu-border-gray-300 wu-relative wu-overflow-hidden'>
<span class='dashicons dashicons-wu-block wu-text-gray-600 wu-px-1 wu-pr-3'>&nbsp;</span>
@ -182,15 +182,15 @@ class Event_List_Table extends Base_List_Table {
];
$actions = [
'view' => sprintf('<a href="%s">%s</a>', wu_network_admin_url('wp-ultimo-view-event', $url_atts), __('View', 'wp-ultimo')),
'view' => sprintf('<a href="%s">%s</a>', wu_network_admin_url('wp-ultimo-view-event', $url_atts), __('View', 'wp-multisite-waas')),
'delete' => sprintf(
'<a title="%s" class="wubox" href="%s">%s</a>',
__('Delete', 'wp-ultimo'),
__('Delete', 'wp-multisite-waas'),
wu_get_form_url(
'delete_modal',
$url_atts
),
__('Delete', 'wp-ultimo')
__('Delete', 'wp-multisite-waas')
),
];
@ -207,12 +207,12 @@ class Event_List_Table extends Base_List_Table {
$columns = [
'cb' => '<input type="checkbox" />',
'initiator' => __('Initiator', 'wp-ultimo'),
'message' => __('Event Message', 'wp-ultimo'),
'slug' => __('SLug', 'wp-ultimo'),
'object_type' => __('Type', 'wp-ultimo'),
'date_created' => __('Created at', 'wp-ultimo'),
'id' => __('ID', 'wp-ultimo'),
'initiator' => __('Initiator', 'wp-multisite-waas'),
'message' => __('Event Message', 'wp-multisite-waas'),
'slug' => __('SLug', 'wp-multisite-waas'),
'object_type' => __('Type', 'wp-multisite-waas'),
'date_created' => __('Created at', 'wp-multisite-waas'),
'id' => __('ID', 'wp-multisite-waas'),
];
return apply_filters('wu_events_list_table_get_columns', $columns, $this);
@ -228,19 +228,19 @@ class Event_List_Table extends Base_List_Table {
return [
'filters' => [
'severity' => [
'label' => __('Severity', 'wp-ultimo'),
'label' => __('Severity', 'wp-multisite-waas'),
'options' => [
Event::SEVERITY_SUCCESS => __('Success', 'wp-ultimo'),
Event::SEVERITY_NEUTRAL => __('Neutral', 'wp-ultimo'),
Event::SEVERITY_INFO => __('Info', 'wp-ultimo'),
Event::SEVERITY_WARNING => __('Warning', 'wp-ultimo'),
Event::SEVERITY_FATAL => __('Fatal', 'wp-ultimo'),
Event::SEVERITY_SUCCESS => __('Success', 'wp-multisite-waas'),
Event::SEVERITY_NEUTRAL => __('Neutral', 'wp-multisite-waas'),
Event::SEVERITY_INFO => __('Info', 'wp-multisite-waas'),
Event::SEVERITY_WARNING => __('Warning', 'wp-multisite-waas'),
Event::SEVERITY_FATAL => __('Fatal', 'wp-multisite-waas'),
],
],
],
'date_filters' => [
'date_created' => [
'label' => __('Created At', 'wp-ultimo'),
'label' => __('Created At', 'wp-multisite-waas'),
'options' => $this->get_default_date_filter_options(),
],
],