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 Payment_List_Table_Widget extends Base_List_Table {
parent::__construct(
[
'singular' => __('Payment', 'wp-ultimo'), // singular name of the listed records
'plural' => __('Payments', 'wp-ultimo'), // plural name of the listed records
'singular' => __('Payment', 'wp-multisite-waas'), // singular name of the listed records
'plural' => __('Payments', 'wp-multisite-waas'), // plural name of the listed records
'ajax' => true, // does this table support ajax?
]
);
@ -112,8 +112,8 @@ class Payment_List_Table_Widget extends Base_List_Table {
$code = sprintf('<a href="%s">%s</a>', wu_network_admin_url('wp-ultimo-edit-payment', $url_atts), $item->get_hash());
$actions = [
'edit' => sprintf('<a href="%s">%s</a>', wu_network_admin_url('wp-ultimo-edit-payment', $url_atts), __('Edit', 'wp-ultimo')),
'delete' => sprintf('<a href="%s">%s</a>', '', __('Delete', 'wp-ultimo')),
'edit' => sprintf('<a href="%s">%s</a>', wu_network_admin_url('wp-ultimo-edit-payment', $url_atts), __('Edit', 'wp-multisite-waas')),
'delete' => sprintf('<a href="%s">%s</a>', '', __('Delete', 'wp-multisite-waas')),
];
$html = "<span class='wu-font-mono'><strong>{$code}</strong></span>";
@ -152,7 +152,7 @@ class Payment_List_Table_Widget extends Base_List_Table {
$customer = $item->get_customer();
if ( ! $customer) {
$not_found = __('No customer found', 'wp-ultimo');
$not_found = __('No customer found', 'wp-multisite-waas');
return "<div class='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-bg-gray-100 wu-relative wu-overflow-hidden'>
<span class='dashicons dashicons-wu-block wu-text-gray-600 wu-px-1 wu-pr-3'>&nbsp;</span>
@ -218,10 +218,10 @@ class Payment_List_Table_Widget extends Base_List_Table {
public function get_columns() {
$columns = [
'hash' => __('Ref.', 'wp-ultimo'),
'customer' => __('Customer', 'wp-ultimo'),
'total' => __('Total', 'wp-ultimo'),
'date_created' => __('Created at', 'wp-ultimo'),
'hash' => __('Ref.', 'wp-multisite-waas'),
'customer' => __('Customer', 'wp-multisite-waas'),
'total' => __('Total', 'wp-multisite-waas'),
'date_created' => __('Created at', 'wp-multisite-waas'),
];
return $columns;