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

@ -14,8 +14,8 @@
$data = [];
$slug = 'signup_countries';
$headers = [
__('Country', 'wp-ultimo'),
__('Customer Count', 'wp-ultimo'),
__('Country', 'wp-multisite-waas'),
__('Customer Count', 'wp-multisite-waas'),
];
foreach ($countries as $country_code => $count) {
@ -49,8 +49,8 @@ $page->render_csv_button(
<thead>
<tr>
<th><?php esc_html_e('Country', 'wp-ultimo'); ?></th>
<th class="wu-text-right"><?php esc_html_e('Customer Count', 'wp-ultimo'); ?></th>
<th><?php esc_html_e('Country', 'wp-multisite-waas'); ?></th>
<th class="wu-text-right"><?php esc_html_e('Customer Count', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -96,7 +96,7 @@ $page->render_csv_button(
<?php if ($state_list && $count - $_state_count >= 0) : ?>
<tr>
<td class="wu-text-xs">|&longrightarrow; <?php esc_html_e('Other', 'wp-ultimo'); ?></td>
<td class="wu-text-xs">|&longrightarrow; <?php esc_html_e('Other', 'wp-multisite-waas'); ?></td>
<td class="wu-text-right"><?php echo esc_html($count - $_state_count); ?></td>
</tr>
@ -114,7 +114,7 @@ $page->render_csv_button(
<div class="wu-bg-gray-100 wu-p-4 wu-rounded wu-mt-6">
<?php esc_html_e('No countries registered yet.', 'wp-ultimo'); ?>
<?php esc_html_e('No countries registered yet.', 'wp-multisite-waas'); ?>
</div>

View File

@ -15,8 +15,8 @@
$data = [];
$slug = 'signup_forms';
$headers = [
__('Checkout Form', 'wp-ultimo'),
__('Signups', 'wp-ultimo'),
__('Checkout Form', 'wp-multisite-waas'),
__('Signups', 'wp-multisite-waas'),
];
foreach ($forms as $form) {
@ -50,8 +50,8 @@ $page->render_csv_button(
<thead>
<tr>
<th><?php _e('Checkout Form', 'wp-ultimo'); ?></th>
<th class="wu-text-right"><?php _e('Signups', 'wp-ultimo'); ?></th>
<th><?php _e('Checkout Form', 'wp-multisite-waas'); ?></th>
<th class="wu-text-right"><?php _e('Signups', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -63,7 +63,7 @@ $page->render_csv_button(
<td>
<?php echo $form->signup_form; ?>
<?php if ('by-admin' === $form->signup_form) : ?>
<?php echo wu_tooltip(__('Customers created via the admin panel, by super admins.', 'wp-ultimo')); ?>
<?php echo wu_tooltip(__('Customers created via the admin panel, by super admins.', 'wp-multisite-waas')); ?>
<?php endif; ?>
</td>
<td class="wu-text-right"><?php echo $form->count; ?></td>
@ -81,7 +81,7 @@ $page->render_csv_button(
<div class="wu-bg-gray-100 wu-p-4 wu-rounded wu-mt-6">
<?php _e('No data yet.', 'wp-ultimo'); ?>
<?php _e('No data yet.', 'wp-multisite-waas'); ?>
</div>

View File

@ -15,8 +15,8 @@
$data = [];
$slug = 'most_visited_sites';
$headers = [
__('Site', 'wp-ultimo'),
__('Visits', 'wp-ultimo'),
__('Site', 'wp-multisite-waas'),
__('Visits', 'wp-multisite-waas'),
];
foreach ($sites as $site_visits) {
@ -52,8 +52,8 @@ $page->render_csv_button(
<thead>
<tr>
<th class="wu-w-8/12"><?php _e('Site', 'wp-ultimo'); ?></th>
<th class="wu-text-right"><?php _e('Visits', 'wp-ultimo'); ?></th>
<th class="wu-w-8/12"><?php _e('Site', 'wp-multisite-waas'); ?></th>
<th class="wu-text-right"><?php _e('Visits', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -69,24 +69,24 @@ $page->render_csv_button(
<div class="sm:wu-flex">
<a title="<?php _e('Homepage', 'wp-ultimo'); ?>" href="<?php echo esc_attr(get_home_url($site_visits->site->get_id())); ?>" class="wu-no-underline wu-flex wu-items-center wu-text-xs wp-ui-text-highlight">
<a title="<?php _e('Homepage', 'wp-multisite-waas'); ?>" href="<?php echo esc_attr(get_home_url($site_visits->site->get_id())); ?>" class="wu-no-underline wu-flex wu-items-center wu-text-xs wp-ui-text-highlight">
<span class="dashicons-wu-link1 wu-align-middle wu-mr-1"></span>
<?php _e('Homepage', 'wp-ultimo'); ?>
<?php _e('Homepage', 'wp-multisite-waas'); ?>
</a>
<a title="<?php _e('Dashboard', 'wp-ultimo'); ?>" href="<?php echo esc_attr(get_admin_url($site_visits->site->get_id())); ?>" class="wu-no-underline wu-flex wu-items-center wu-text-xs wp-ui-text-highlight sm:wu-mt-0 sm:wu-ml-6">
<a title="<?php _e('Dashboard', 'wp-multisite-waas'); ?>" href="<?php echo esc_attr(get_admin_url($site_visits->site->get_id())); ?>" class="wu-no-underline wu-flex wu-items-center wu-text-xs wp-ui-text-highlight sm:wu-mt-0 sm:wu-ml-6">
<span class="dashicons-wu-browser wu-align-middle wu-mr-1"></span>
<?php _e('Dashboard', 'wp-ultimo'); ?>
<?php _e('Dashboard', 'wp-multisite-waas'); ?>
</a>
</div>
</td>
<td class="wu-align-middle wu-text-right">
<?php printf(_n('%d visit', '%d visits', $site_visits->count, 'wp-ultimo'), $site_visits->count); ?>
<?php printf(_n('%d visit', '%d visits', $site_visits->count, 'wp-multisite-waas'), $site_visits->count); ?>
</td>
</tr>
@ -102,7 +102,7 @@ $page->render_csv_button(
<div class="wu-bg-gray-100 wu-p-4 wu-rounded wu-mt-6">
<?php _e('No visits registered in this period.', 'wp-ultimo'); ?>
<?php _e('No visits registered in this period.', 'wp-multisite-waas'); ?>
</div>

View File

@ -11,7 +11,7 @@
<span class="wu-blinking-animation">
<?php _e('Loading...', 'wp-ultimo'); ?>
<?php _e('Loading...', 'wp-multisite-waas'); ?>
</span>

View File

@ -20,7 +20,7 @@
</div>
<div class="wu-text-sm wu-text-gray-600">
<span class="wu-block"><?php _e('New Memberships', 'wp-ultimo'); ?></span>
<span class="wu-block"><?php _e('New Memberships', 'wp-multisite-waas'); ?></span>
</div>
</li>
@ -34,8 +34,8 @@
<thead>
<tr>
<th><?php _e('Product Name', 'wp-ultimo'); ?></th>
<th class="wu-text-right"><?php _e('New Memberships', 'wp-ultimo'); ?></th>
<th><?php _e('Product Name', 'wp-multisite-waas'); ?></th>
<th class="wu-text-right"><?php _e('New Memberships', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -60,7 +60,7 @@
<tr>
<td colspan="2">
<?php _e('No Products found.', 'wp-ultimo'); ?>
<?php _e('No Products found.', 'wp-multisite-waas'); ?>
</td>
</tr>

View File

@ -9,7 +9,7 @@
<ul class="lg:wu-flex wu-my-0 wu-mx-0">
<li class="wu-p-2 wu-w-full md:wu-w-4/12 wu-relative" <?php echo wu_tooltip_text(__('MRR stands for Monthly Recurring Revenue', 'wp-ultimo')); ?>>
<li class="wu-p-2 wu-w-full md:wu-w-4/12 wu-relative" <?php echo wu_tooltip_text(__('MRR stands for Monthly Recurring Revenue', 'wp-multisite-waas')); ?>>
<div>
@ -20,7 +20,7 @@
</div>
<div class="wu-text-md wu-text-gray-600">
<span class="wu-block"><?php _e('MRR', 'wp-ultimo'); ?></span>
<span class="wu-block"><?php _e('MRR', 'wp-multisite-waas'); ?></span>
</div>
</li>
@ -36,7 +36,7 @@
</div>
<div class="wu-text-md wu-text-gray-600">
<span class="wu-block"><?php _e('Gross Revenue', 'wp-ultimo'); ?></span>
<span class="wu-block"><?php _e('Gross Revenue', 'wp-multisite-waas'); ?></span>
</div>
</li>
@ -52,7 +52,7 @@
</div>
<div class="wu-text-md wu-text-gray-600">
<span class="wu-block"><?php _e('Refunded', 'wp-ultimo'); ?></span>
<span class="wu-block"><?php _e('Refunded', 'wp-multisite-waas'); ?></span>
</div>
</li>
@ -65,8 +65,8 @@
<thead>
<tr>
<th><?php _e('Product', 'wp-ultimo'); ?></th>
<th class="wu-text-right"><?php _e('Revenue', 'wp-ultimo'); ?></th>
<th><?php _e('Product', 'wp-multisite-waas'); ?></th>
<th class="wu-text-right"><?php _e('Revenue', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -91,7 +91,7 @@
<tr>
<td colspan="2">
<?php _e('No Products found.', 'wp-ultimo'); ?>
<?php _e('No Products found.', 'wp-multisite-waas'); ?>
</td>
</tr>

View File

@ -14,10 +14,10 @@
$data = [];
$slug = 'taxes_by_code';
$headers = [
__('Tax', 'wp-ultimo'),
__('Rate', 'wp-ultimo'),
__('Orders', 'wp-ultimo'),
__('Tax Total', 'wp-ultimo'),
__('Tax', 'wp-multisite-waas'),
__('Rate', 'wp-multisite-waas'),
__('Orders', 'wp-multisite-waas'),
__('Tax Total', 'wp-multisite-waas'),
];
foreach ($taxes_by_rate as $tax_line) {
@ -45,10 +45,10 @@
<thead>
<tr>
<th><?php _e('Tax', 'wp-ultimo'); ?></th>
<th><?php _e('Rate', 'wp-ultimo'); ?></th>
<th><?php _e('Orders', 'wp-ultimo'); ?></th>
<th><?php _e('Tax Total', 'wp-ultimo'); ?></th>
<th><?php _e('Tax', 'wp-multisite-waas'); ?></th>
<th><?php _e('Rate', 'wp-multisite-waas'); ?></th>
<th><?php _e('Orders', 'wp-multisite-waas'); ?></th>
<th><?php _e('Tax Total', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -79,7 +79,7 @@
<tr>
<td colspan="4">
<?php _e('No Taxes found.', 'wp-ultimo'); ?>
<?php _e('No Taxes found.', 'wp-multisite-waas'); ?>
</td>
</tr>

View File

@ -14,11 +14,11 @@
$data = [];
$slug = 'taxes_by_day';
$headers = [
__('Day', 'wp-ultimo'),
__('Orders', 'wp-ultimo'),
__('Total Sales', 'wp-ultimo'),
__('Tax Total', 'wp-ultimo'),
__('Net Profit', 'wp-ultimo'),
__('Day', 'wp-multisite-waas'),
__('Orders', 'wp-multisite-waas'),
__('Total Sales', 'wp-multisite-waas'),
__('Tax Total', 'wp-multisite-waas'),
__('Net Profit', 'wp-multisite-waas'),
];
foreach ($taxes_by_day as $day => $tax_line) {
@ -47,11 +47,11 @@
<thead>
<tr>
<th class="wu-w-1/3"><?php _e('Day', 'wp-ultimo'); ?></th>
<th><?php _e('Orders', 'wp-ultimo'); ?></th>
<th><?php _e('Total Sales', 'wp-ultimo'); ?></th>
<th><?php _e('Tax Total', 'wp-ultimo'); ?></th>
<th><?php _e('Net Profit', 'wp-ultimo'); ?></th>
<th class="wu-w-1/3"><?php _e('Day', 'wp-multisite-waas'); ?></th>
<th><?php _e('Orders', 'wp-multisite-waas'); ?></th>
<th><?php _e('Total Sales', 'wp-multisite-waas'); ?></th>
<th><?php _e('Tax Total', 'wp-multisite-waas'); ?></th>
<th><?php _e('Net Profit', 'wp-multisite-waas'); ?></th>
</tr>
</thead>
@ -85,7 +85,7 @@
<tr>
<td colspan="4">
<?php _e('No Taxes found.', 'wp-ultimo'); ?>
<?php _e('No Taxes found.', 'wp-multisite-waas'); ?>
</td>
</tr>

View File

@ -11,7 +11,7 @@
<span class="wu-blinking-animation">
<?php _e('Loading...', 'wp-ultimo'); ?>
<?php _e('Loading...', 'wp-multisite-waas'); ?>
</span>

View File

@ -11,7 +11,7 @@
<span class="wu-blinking-animation">
<?php _e('Loading...', 'wp-ultimo'); ?>
<?php _e('Loading...', 'wp-multisite-waas'); ?>
</span>