Update tranlation text domain
This commit is contained in:
@ -21,7 +21,7 @@
|
||||
</style>
|
||||
|
||||
<a class="wu-fixed wu-inline-block wu-bottom-0 wu-left-1/2 wu-transform wu--translate-x-1/2 wu-bg-white wu-p-4 wu-rounded-full wu-shadow wu-m-4 wu-no-underline wu-z-10 wu-border-gray-300 wu-border-solid wu-border" href="<?php echo esc_attr(network_admin_url()); ?>">
|
||||
<?php _e('← Back to the Dashboard', 'wp-ultimo'); ?>
|
||||
<?php _e('← Back to the Dashboard', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<div id="wp-ultimo-wrap" class="wrap wu-about-content">
|
||||
|
@ -28,7 +28,7 @@
|
||||
|
||||
<select class="wu_select_icon" name="<?php echo esc_attr($field->id); ?>">
|
||||
|
||||
<option value=""><?php echo __('No Icon', 'wp-ultimo'); ?></option>
|
||||
<option value=""><?php echo __('No Icon', 'wp-multisite-waas'); ?></option>
|
||||
|
||||
<?php foreach (wu_get_icons_list() as $category_label => $category_array) : ?>
|
||||
|
||||
|
@ -81,13 +81,13 @@ $content_wrapper_classes = $field->content_wrapper_classes
|
||||
|
||||
<div class="wu-wrapper-image-field-upload-actions wu-absolute wu-top-4 wu-right-4 <?php echo $mq; ?>md:wu-top-2 <?php echo $mq; ?>md:wu-right-2 wu-scale-150 <?php echo $mq; ?>md:wu-scale-100">
|
||||
|
||||
<a title="<?php _e('Preview Image', 'wp-ultimo'); ?>" href="<?php echo $field->img; ?>" class="wubox wu-no-underline wu-text-center wu-inline-block wu-bg-black wu-opacity-60 wu-rounded-full wu-text-white wu-w-5 wu-h-5 wu-shadow-sm">
|
||||
<a title="<?php _e('Preview Image', 'wp-multisite-waas'); ?>" href="<?php echo $field->img; ?>" class="wubox wu-no-underline wu-text-center wu-inline-block wu-bg-black wu-opacity-60 wu-rounded-full wu-text-white wu-w-5 wu-h-5 wu-shadow-sm">
|
||||
|
||||
<span class="dashicons-wu-eye1 wu-align-middle" style="top: -2px;"></span>
|
||||
|
||||
</a>
|
||||
|
||||
<a title="<?php _e('Remove Image', 'wp-ultimo'); ?>" href="#" class="wu-remove-image wu-no-underline wu-text-center wu-inline-block wu-bg-black wu-opacity-60 wu-rounded-full wu-text-white wu-w-5 wu-h-5 wu-shadow-sm">
|
||||
<a title="<?php _e('Remove Image', 'wp-multisite-waas'); ?>" href="#" class="wu-remove-image wu-no-underline wu-text-center wu-inline-block wu-bg-black wu-opacity-60 wu-rounded-full wu-text-white wu-w-5 wu-h-5 wu-shadow-sm">
|
||||
|
||||
<span class="dashicons-wu-cross wu-align-middle"></span>
|
||||
|
||||
@ -103,7 +103,7 @@ $content_wrapper_classes = $field->content_wrapper_classes
|
||||
|
||||
<a class="button wu-w-full wu-text-center wu-add-image">
|
||||
|
||||
<span class="dashicons-wu-upload"></span> <?php _e('Upload Image', 'wp-ultimo'); ?>
|
||||
<span class="dashicons-wu-upload"></span> <?php _e('Upload Image', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -139,7 +139,7 @@ if (is_array($field->values)) {
|
||||
|
||||
<a class="button wu-w-full wu-text-center" href="#"
|
||||
v-on:click.prevent="duplicate_and_clean($event, '.field-repeater')">
|
||||
<?php esc_html_e('Add new Line', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Add new Line', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
@ -5,7 +5,7 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<li class="<?php echo esc_attr(trim($field->wrapper_classes)); ?>" <?php echo $field->get_wrapper_html_attributes(); ?>>
|
||||
<li class="<?php echo esc_attr(trim($field->wrapper_classes)); ?>" <?php echo esc_attr($field->get_wrapper_html_attributes()); ?>>
|
||||
|
||||
<div class="wu-block wu-w-full">
|
||||
|
||||
@ -25,13 +25,13 @@
|
||||
|
||||
?>
|
||||
|
||||
<select class="form-control wu-w-full wu-my-1" name="<?php echo esc_attr($field->id); ?><?php echo isset($field->html_attr['multiple']) && $field->html_attr['multiple'] ? '[]' : ''; ?>" <?php echo $field->get_html_attributes(); ?> placeholder="<?php echo $field->placeholder; ?>">
|
||||
<select class="form-control wu-w-full wu-my-1" name="<?php echo esc_attr($field->id); ?><?php echo isset($field->html_attr['multiple']) && $field->html_attr['multiple'] ? '[]' : ''; ?>" <?php echo esc_attr($field->get_html_attributes()); ?> placeholder="<?php echo esc_attr($field->placeholder); ?>">
|
||||
|
||||
<?php foreach ($field->options as $option_value => $option_label) : ?>
|
||||
|
||||
<option <?php selected($field->value === $option_value || (is_array($field->value) && in_array($option_value, $field->value))); ?> value="<?php echo esc_attr($option_value); ?>">
|
||||
|
||||
<?php echo $option_label; ?>
|
||||
<?php echo esc_html($option_label); ?>
|
||||
|
||||
</option>
|
||||
|
||||
@ -39,7 +39,7 @@
|
||||
|
||||
<?php if ($field->options_template) : ?>
|
||||
|
||||
<?php echo $field->options_template; ?>
|
||||
<?php echo wp_kses($field->options_template, array('option' => array('value' => array(), 'selected' => array()))); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<li class="<?php echo esc_attr(trim($field->wrapper_classes)); ?>" <?php echo $field->get_wrapper_html_attributes(); ?>>
|
||||
<li class="<?php echo esc_attr(trim($field->wrapper_classes)); ?>" <?php echo esc_attr($field->get_wrapper_html_attributes()); ?>>
|
||||
|
||||
<div class="wu-block">
|
||||
|
||||
@ -36,11 +36,11 @@
|
||||
|
||||
$formatted_value = date_i18n(get_option('date_format'), $time);
|
||||
|
||||
$placeholder = wu_get_current_time('timestamp') > $time ? __('%s ago', 'wp-ultimo') : __('In %s', 'wp-ultimo'); // phpcs:ignore
|
||||
$placeholder = wu_get_current_time('timestamp') > $time ? __('%s ago', 'wp-multisite-waas') : __('In %s', 'wp-multisite-waas'); // phpcs:ignore
|
||||
|
||||
printf('<time datetime="%3$s">%1$s</time><br><small>%2$s</small>', $formatted_value, sprintf($placeholder, human_time_diff($time, wu_get_current_time('timestamp'))), get_date_from_gmt($date));
|
||||
printf('<time datetime="%3$s">%1$s</time><br><small>%2$s</small>', esc_html($formatted_value), esc_html(sprintf($placeholder, human_time_diff($time, wu_get_current_time('timestamp')))), esc_attr(get_date_from_gmt($date)));
|
||||
} else {
|
||||
_e('None', 'wp-ultimo');
|
||||
_e('None', 'wp-multisite-waas');
|
||||
} // end if;
|
||||
|
||||
?>
|
||||
@ -53,7 +53,7 @@
|
||||
|
||||
<?php if ($field->copy) : ?>
|
||||
|
||||
<a <?php echo wu_tooltip_text(__('Copy', 'wp-ultimo')); ?> class="wu-no-underline wp-ui-text-highlight wu-copy" data-clipboard-action="copy" data-clipboard-target="#<?php echo $field->id; ?>_value">
|
||||
<a <?php echo wu_tooltip_text(__('Copy', 'wp-multisite-waas')); ?> class="wu-no-underline wp-ui-text-highlight wu-copy" data-clipboard-action="copy" data-clipboard-target="#<?php echo $field->id; ?>_value">
|
||||
|
||||
<span class="dashicons-wu-copy wu-align-middle"></span>
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
if (wu_validate_date($field->value)) {
|
||||
if (false == $field->display_value) {
|
||||
echo __('No date', 'wp-ultimo');
|
||||
echo __('No date', 'wp-multisite-waas');
|
||||
} else {
|
||||
$date = $field->value;
|
||||
|
||||
@ -39,12 +39,12 @@
|
||||
|
||||
$formatted_value = date_i18n(get_option('date_format'), $time);
|
||||
|
||||
$placeholder = wu_get_current_time('timestamp') > $time ? __('%s ago', 'wp-ultimo') : __('In %s', 'wp-ultimo'); // phpcs:ignore
|
||||
$placeholder = wu_get_current_time('timestamp') > $time ? __('%s ago', 'wp-multisite-waas') : __('In %s', 'wp-multisite-waas'); // phpcs:ignore
|
||||
|
||||
printf('<time datetime="%3$s">%1$s</time><br><small>%2$s</small>', $formatted_value, sprintf($placeholder, human_time_diff($time, wu_get_current_time('timestamp'))), get_date_from_gmt($date));
|
||||
} // end if;
|
||||
} else {
|
||||
_e('None', 'wp-ultimo');
|
||||
_e('None', 'wp-multisite-waas');
|
||||
} // end if;
|
||||
|
||||
?>
|
||||
|
@ -37,11 +37,11 @@
|
||||
|
||||
<div class="wu-ml-1 wu-my-1" v-cloak>
|
||||
<a
|
||||
v-bind:href="'<?php echo wu_get_isset($field->html_attr, 'data-base-link'); ?>' + '=' + <?php echo wu_get_isset($field->html_attr, 'v-model'); ?>"
|
||||
v-bind:href="'<?php echo esc_js(wu_get_isset($field->html_attr, 'data-base-link')); ?>' + '=' + <?php echo esc_js(wu_get_isset($field->html_attr, 'v-model')); ?>"
|
||||
target="_blank"
|
||||
class="button"
|
||||
v-show='<?php echo wu_get_isset($field->html_attr, 'v-model'); ?>'
|
||||
<?php echo wu_tooltip_text(__('View', 'wp-ultimo')); ?>
|
||||
v-show='<?php echo esc_js(wu_get_isset($field->html_attr, 'v-model')); ?>'
|
||||
<?php echo wu_tooltip_text(__('View', 'wp-multisite-waas')); ?>
|
||||
>
|
||||
<span class="dashicons-wu-popup wu-m-0 wu-p-0"></span>
|
||||
</a>
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<?php if ($field->desc) : ?>
|
||||
|
||||
<p class="description wu-text-2xs" id="<?php echo $field->id; ?>-desc">
|
||||
<p class="description wu-text-2xs" id="<?php echo esc_attr($field->id); ?>-desc">
|
||||
|
||||
<?php echo $field->desc; ?>
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
||||
|
||||
<h3 class="wu-m-0 wu-widget-title">
|
||||
|
||||
<?php _e('Change Membership', 'wp-ultimo'); ?>
|
||||
<?php _e('Change Membership', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
<tr class="no-items">
|
||||
<td :colspan="Object.keys(headers).length" class="colspanchange">
|
||||
<div class="wu-p-6 wu-text-gray-600 wu-text-base wu-text-center">
|
||||
<span><?php _e('Add the first field!', 'wp-ultimo'); ?></span>
|
||||
<span><?php _e('Add the first field!', 'wp-multisite-waas'); ?></span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@ -40,7 +40,7 @@
|
||||
|
||||
<tr v-for="(field, idx) in list" :key="field.id" :id="'wp-ultimo-field-' + field.id">
|
||||
|
||||
<td class="order column-order has-row-actions column-primary" data-colname="<?php _e('Order', 'wp-ultimo'); ?>">
|
||||
<td class="order column-order has-row-actions column-primary" data-colname="<?php _e('Order', 'wp-multisite-waas'); ?>">
|
||||
|
||||
<span
|
||||
class="wu-inline-block wu-bg-gray-100 wu-text-center wu-align-middle wu-p-1 wu-font-mono wu-px-3 wu-border wu-border-gray-300 wu-border-solid wu-rounded">
|
||||
@ -48,16 +48,16 @@
|
||||
</span>
|
||||
|
||||
<button type="button" class="toggle-row">
|
||||
<span class="screen-reader-text"><?php _e('Show more details', 'wp-ultimo'); ?></span>
|
||||
<span class="screen-reader-text"><?php _e('Show more details', 'wp-multisite-waas'); ?></span>
|
||||
</button>
|
||||
|
||||
</td>
|
||||
|
||||
<td class="name column-name" data-colname="<?php _e('Name', 'wp-ultimo'); ?>">
|
||||
<td class="name column-name" data-colname="<?php _e('Name', 'wp-multisite-waas'); ?>">
|
||||
|
||||
<span class="wu-inline-block wu-font-medium">
|
||||
|
||||
{{ field.name ? field.name : "<?php echo __('(no label)', 'wp-ultimo'); ?>" }}
|
||||
{{ field.name ? field.name : "<?php echo __('(no label)', 'wp-multisite-waas'); ?>" }}
|
||||
|
||||
<!-- Visibility -->
|
||||
<span
|
||||
@ -113,28 +113,28 @@
|
||||
title="<?php _e('Delete'); ?>"
|
||||
href="#"
|
||||
class="wu-font-bold"
|
||||
><?php _e('Confirm?', 'wp-ultimo'); ?></a>
|
||||
><?php _e('Confirm?', 'wp-multisite-waas'); ?></a>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<button type="button" class="toggle-row">
|
||||
<span class="screen-reader-text">
|
||||
<?php _e('Show more details', 'wp-ultimo'); ?>
|
||||
<?php _e('Show more details', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</button>
|
||||
|
||||
</td>
|
||||
|
||||
<td class="type column-type" data-colname="<?php _e('Type', 'wp-ultimo'); ?>">
|
||||
<td class="type column-type" data-colname="<?php _e('Type', 'wp-multisite-waas'); ?>">
|
||||
<span class="wu-bg-gray-200 wu-text-gray-700 wu-py-1 wu-px-2 wu-rounded-sm wu-text-xs wu-font-mono">{{ field.type }}</span>
|
||||
</td>
|
||||
|
||||
<td class="type column-slug" data-colname="<?php _e('Slug', 'wp-ultimo'); ?>">
|
||||
<td class="type column-slug" data-colname="<?php _e('Slug', 'wp-multisite-waas'); ?>">
|
||||
<span class="wu-bg-gray-200 wu-text-gray-700 wu-py-1 wu-px-2 wu-rounded-sm wu-text-xs wu-font-mono">{{ field.id }}</span>
|
||||
</td>
|
||||
|
||||
<td class="move column-move wu-text-right" data-colname="<?php _e('Move', 'wp-ultimo'); ?>">
|
||||
<td class="move column-move wu-text-right" data-colname="<?php _e('Move', 'wp-multisite-waas'); ?>">
|
||||
|
||||
<span class="wu-placeholder-sortable dashicons-wu-menu"></span>
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
<span class="wu-text-gray-600 wu-my-1 wu-text-2xs wu-uppercase wu-font-semibold">
|
||||
|
||||
<?php printf(__('%1$s steps and %2$s fields', 'wp-ultimo'), '{{ steps.length }}', '{{ field_count }}'); ?>
|
||||
<?php echo esc_html(sprintf(__('%1$s steps and %2$s fields', 'wp-multisite-waas'), '{{ steps.length }}', '{{ field_count }}')); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -28,36 +28,27 @@
|
||||
|
||||
<li class="wu-m-0 wu-ml-4">
|
||||
<a
|
||||
title="<?php _e('Preview', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Preview', 'wp-multisite-waas'); ?>"
|
||||
href="#"
|
||||
type="button"
|
||||
class="wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800"
|
||||
@click.prevent="get_preview()"
|
||||
>
|
||||
<span class="dashicons-wu-eye wu-align-middle"></span>
|
||||
<span v-show="!preview"><?php _e('Preview', 'wp-ultimo'); ?></span>
|
||||
<span v-cloak v-show="preview"><?php _e('Editor', 'wp-ultimo'); ?></span>
|
||||
<span v-show="!preview"><?php esc_html_e('Preview', 'wp-multisite-waas'); ?></span>
|
||||
<span v-cloak v-show="preview"><?php esc_html_e('Editor', 'wp-multisite-waas'); ?></span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="wu-m-0 wu-ml-4" v-show="!preview">
|
||||
<a
|
||||
title="<?php _e('Add new Checkout Step', 'wp-ultimo'); ?>"
|
||||
href="
|
||||
<?php
|
||||
echo wu_get_form_url(
|
||||
'add_new_form_step',
|
||||
[
|
||||
'checkout_form' => $checkout_form,
|
||||
]
|
||||
);
|
||||
?>
|
||||
"
|
||||
title="<?php esc_attr_e('Add new Checkout Step', 'wp-multisite-waas'); ?>"
|
||||
href="<?php echo esc_url(wu_get_form_url('add_new_form_step', array('checkout_form' => $checkout_form))); ?>"
|
||||
type="button"
|
||||
class="wubox wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800"
|
||||
>
|
||||
<span class="dashicons-wu-circle-with-plus wu-align-middle"></span>
|
||||
<?php _e('Add new Checkout Step', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Add new Checkout Step', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@ -100,7 +91,7 @@
|
||||
<div class="postbox-header">
|
||||
<h2 class="hndle ui-sortable-handle">
|
||||
<span class="wu-text-gray-700 ">
|
||||
<span class="wu-text-2xs wu-font-mono wu-uppercase wu-mr-4"><?php printf(__('Step %s', 'wp-ultimo'), '{{ idx + 1 }}'); ?></span> {{ step.name }}
|
||||
<span class="wu-text-2xs wu-font-mono wu-uppercase wu-mr-4"><?php printf(__('Step %s', 'wp-multisite-waas'), '{{ idx + 1 }}'); ?></span> {{ step.name }}
|
||||
</span>
|
||||
</h2>
|
||||
</div>
|
||||
@ -113,11 +104,11 @@
|
||||
<span class="dashicons-wu-eye wu-mr-1 wu-align-middle"></span>
|
||||
|
||||
<span v-if="step.logged == 'guests_only'">
|
||||
<?php _e('This step is only visible for <strong>guests</strong>', 'wp-ultimo'); ?>
|
||||
<?php _e('This step is only visible for <strong>guests</strong>', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<span v-else>
|
||||
<?php _e('This step is only visible for <strong>logged-in users</strong>', 'wp-ultimo'); ?>
|
||||
<?php _e('This step is only visible for <strong>logged-in users</strong>', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -161,14 +152,14 @@
|
||||
href="#"
|
||||
class="wu-text-red-700 wu-uppercase wu-text-2xs wu-font-bold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-p-4 md:wu-p-0 wu-inline-block"
|
||||
>
|
||||
<?php _e('Confirm?', 'wp-ultimo'); ?>
|
||||
<?php _e('Confirm?', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="wu-m-0 md:wu-ml-4 wu-text-center">
|
||||
|
||||
<a title="<?php _e('Edit Section', 'wp-ultimo'); ?>"
|
||||
<a title="<?php _e('Edit Section', 'wp-multisite-waas'); ?>"
|
||||
:href="'
|
||||
<?php
|
||||
echo wu_get_form_url(
|
||||
@ -183,14 +174,14 @@
|
||||
type="button"
|
||||
class="wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800 wubox wu-p-4 md:wu-p-0 wu-inline-block"
|
||||
>
|
||||
<?php _e('Edit Section', 'wp-ultimo'); ?>
|
||||
<?php _e('Edit Section', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="wu-m-0 md:wu-ml-4 wu-text-center">
|
||||
|
||||
<a title="<?php _e('Add new Field', 'wp-ultimo'); ?>"
|
||||
<a title="<?php _e('Add new Field', 'wp-multisite-waas'); ?>"
|
||||
:href="'
|
||||
<?php
|
||||
echo wu_get_form_url(
|
||||
@ -205,7 +196,7 @@
|
||||
=' + step.id"
|
||||
type="button" class="wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800 wubox wu-p-4 md:wu-p-0 wu-inline-block">
|
||||
<span class="dashicons-wu-circle-with-plus wu-align-text-bottom"></span>
|
||||
<?php _e('Add new Field', 'wp-ultimo'); ?>
|
||||
<?php _e('Add new Field', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
@ -227,11 +218,11 @@
|
||||
<div v-show="!loading_preview && !preview_error" class="wu-text-center wu-mt-3">
|
||||
|
||||
<a @click.prevent="get_preview('user')" href="#" class="wu-m-2 wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800">
|
||||
<?php _e('See as existing user', 'wp-ultimo'); ?>
|
||||
<?php _e('See as existing user', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<a @click.prevent="get_preview('visitor')" href="#" class="wu-m-2 wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800">
|
||||
<?php _e('See as visitor', 'wp-ultimo'); ?>
|
||||
<?php _e('See as visitor', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
@ -240,7 +231,7 @@
|
||||
<div v-show="loading_preview" class="wu-block wu-p-4 wu-py-8 wu-bg-white wu-text-center wu-my-4 wu-border wu-border-solid wu-rounded wu-border-gray-400">
|
||||
|
||||
<span class="wu-blinking-animation wu-text-gray-600 wu-my-1 wu-text-2xs wu-uppercase wu-font-semibold">
|
||||
<?php _e('Loading Preview...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading Preview...', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -250,7 +241,7 @@
|
||||
<div v-show="preview_error" class="wu-block wu-p-4 wu-py-8 wu-bg-white wu-text-center wu-my-4 wu-border wu-border-solid wu-rounded wu-border-gray-400">
|
||||
|
||||
<span class="wu-text-red-600 wu-my-1 wu-text-2xs wu-uppercase wu-font-semibold">
|
||||
<?php _e('Something wrong happened along the way =(', 'wp-ultimo'); ?>
|
||||
<?php _e('Something wrong happened along the way =(', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -261,7 +252,7 @@
|
||||
<div v-show="!loading_preview && !preview_error" id="wu-iframe-content" class="wu-w-full wu-relative">
|
||||
|
||||
<iframe id="wp-ultimo-checkout-preview" v-bind:src="iframe_preview_url" class="wu-w-full wu-h-full wu-m-0 wu-mt-4 wu-mb-2 wu-p-0 wu-overflow-hidden wu-border-radius wu-border wu-border-solid wu-rounded wu-border-gray-400">
|
||||
<?php _e('Your browser doesn\'t support iframes', 'wp-ultimo'); ?>
|
||||
<?php _e('Your browser doesn\'t support iframes', 'wp-multisite-waas'); ?>
|
||||
</iframe>
|
||||
|
||||
</div>
|
||||
@ -282,7 +273,7 @@
|
||||
|
||||
<span class="wu-text-gray-600 wu-my-1 wu-text-2xs wu-uppercase wu-font-semibold">
|
||||
|
||||
<?php printf(__('%1$s steps and %2$s fields', 'wp-ultimo'), '{{ steps.length }}', '{{ field_count }}'); ?>
|
||||
<?php echo esc_html(sprintf(__('%1$s steps and %2$s fields', 'wp-multisite-waas'), '{{ steps.length }}', '{{ field_count }}')); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -294,36 +285,27 @@
|
||||
|
||||
<li class="wu-m-0 wu-ml-4">
|
||||
<a
|
||||
title="<?php _e('Preview', 'wp-ultimo'); ?>"
|
||||
title="<?php _e('Preview', 'wp-multisite-waas'); ?>"
|
||||
href="#"
|
||||
type="button"
|
||||
class="wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800"
|
||||
@click.prevent="get_preview('user')"
|
||||
>
|
||||
<span class="dashicons-wu-eye wu-align-middle"></span>
|
||||
<span v-show="!preview"><?php _e('Preview', 'wp-ultimo'); ?></span>
|
||||
<span v-cloak v-show="preview"><?php _e('Editor', 'wp-ultimo'); ?></span>
|
||||
<span v-show="!preview"><?php _e('Preview', 'wp-multisite-waas'); ?></span>
|
||||
<span v-cloak v-show="preview"><?php _e('Editor', 'wp-multisite-waas'); ?></span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="wu-m-0 wu-ml-4" v-show="!preview">
|
||||
<a
|
||||
title="<?php _e('Add new Checkout Step', 'wp-ultimo'); ?>"
|
||||
href="
|
||||
<?php
|
||||
echo wu_get_form_url(
|
||||
'add_new_form_step',
|
||||
[
|
||||
'checkout_form' => $checkout_form,
|
||||
]
|
||||
);
|
||||
?>
|
||||
"
|
||||
title="<?php esc_attr_e('Add new Checkout Step', 'wp-multisite-waas'); ?>"
|
||||
href="<?php echo esc_url(wu_get_form_url('add_new_form_step', array('checkout_form' => $checkout_form))); ?>"
|
||||
type="button"
|
||||
class="wubox wu-uppercase wu-text-2xs wu-font-semibold wu-no-underline wu-outline-none hover:wu-shadow-none focus:wu-shadow-none wu-text-gray-600 hover:wu-text-gray-800"
|
||||
>
|
||||
<span class="dashicons-wu-circle-with-plus wu-align-middle"></span>
|
||||
<?php _e('Add new Checkout Step', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Add new Checkout Step', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
@ -11,17 +11,7 @@
|
||||
|
||||
<div
|
||||
class="wu--mt-8 wu-py-8 wu-bg-gray-100 wu-bg-cover wu-bg-center"
|
||||
style="opacity: 0.15; background-image: url(
|
||||
<?php
|
||||
echo get_avatar_url(
|
||||
$item->get_user_id(),
|
||||
[
|
||||
'default' => 'identicon',
|
||||
'size' => 320,
|
||||
]
|
||||
);
|
||||
?>
|
||||
)"
|
||||
style="opacity: 0.15; background-image: url(<?php echo esc_url(get_avatar_url($item->get_user_id(), array('default' => 'identicon', 'size' => 320))); ?>)"
|
||||
>
|
||||
|
||||
</div>
|
||||
@ -43,21 +33,21 @@
|
||||
|
||||
<div class="wu-text-base wu-mt-1">
|
||||
<div>
|
||||
<span class="wu-font-semibold"><?php echo $item->get_display_name(); ?></span>
|
||||
<small>#<?php echo $item->get_id(); ?></small>
|
||||
<span class="wu-font-semibold"><?php echo esc_html($item->get_display_name()); ?></span>
|
||||
<small>#<?php echo esc_html($item->get_id()); ?></small>
|
||||
</div>
|
||||
<div class="wu-text-xs wu-my-1">
|
||||
<?php if ($item->get_email_address()) : ?>
|
||||
<a class="wu-no-underline" href="mailto:<?php echo $item->get_email_address(); ?>">
|
||||
<?php echo $item->get_email_address(); ?>
|
||||
<a class="wu-no-underline" href="mailto:<?php echo esc_attr($item->get_email_address()); ?>">
|
||||
<?php echo esc_html($item->get_email_address()); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<?php _e('No email address', 'wp-ultimo'); ?>
|
||||
<?php _e('No email address', 'wp-multisite-waas'); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="wu-text-xs">
|
||||
<span class="<?php echo $item->is_vip() ? esc_attr('wu-font-semibold') : ''; ?>">
|
||||
<?php echo $item->is_vip() ? __('VIP Customer', 'wp-ultimo') : __('Regular Customer', 'wp-ultimo'); ?>
|
||||
<?php echo $item->is_vip() ? __('VIP Customer', 'wp-multisite-waas') : __('Regular Customer', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
@ -66,32 +56,32 @@
|
||||
|
||||
<div class="wu-flex wu-justify-between wu-border-0 wu-border-t wu-border-solid wu-border-gray-300 wu-py-2 wu-px-3">
|
||||
<span>
|
||||
<?php _e('Last Login:', 'wp-ultimo'); ?>
|
||||
<?php _e('Last Login:', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
<span class="wu-font-semibold">
|
||||
<?php
|
||||
if ($item->is_online()) {
|
||||
echo '<span class="wu-inline-block wu-mr-1 wu-rounded-full wu-h-2 wu-w-2 wu-bg-green-500"></span>' . __('Online', 'wp-ultimo');
|
||||
echo '<span class="wu-inline-block wu-mr-1 wu-rounded-full wu-h-2 wu-w-2 wu-bg-green-500"></span>' . __('Online', 'wp-multisite-waas');
|
||||
} elseif ( '0000-00-00 00:00:00' !== $item->get_last_login() ) {
|
||||
echo human_time_diff(strtotime($item->get_last_login()), time()) . ' ' . __('ago', 'wp-ultimo');
|
||||
echo human_time_diff(strtotime($item->get_last_login()), time()) . ' ' . __('ago', 'wp-multisite-waas');
|
||||
} else {
|
||||
_e('Never logged in', 'wp-ultimo');
|
||||
_e('Never logged in', 'wp-multisite-waas');
|
||||
}
|
||||
?>
|
||||
</span>
|
||||
</div>
|
||||
<div class="wu-flex wu-justify-between wu-border-0 wu-border-t wu-border-solid wu-border-gray-300 wu-py-2 wu-px-3">
|
||||
<span>
|
||||
<?php _e('Customer Since:', 'wp-ultimo'); ?>
|
||||
<?php _e('Customer Since:', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
<span class="wu-font-semibold">
|
||||
<?php echo human_time_diff(strtotime($item->get_date_registered()), time()) . ' ' . __('ago', 'wp-ultimo'); ?>
|
||||
<?php echo human_time_diff(strtotime($item->get_date_registered()), time()) . ' ' . __('ago', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="wu-flex wu-justify-between wu-border-0 wu-border-gray-300 wu-border-t wu-border-b-0 wu-border-solid wu-py-2 wu-px-3">
|
||||
<span>
|
||||
<?php _e('Memberships:', 'wp-ultimo'); ?>
|
||||
<?php _e('Memberships:', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
<div>
|
||||
<span class="wu-font-semibold">
|
||||
@ -102,7 +92,7 @@
|
||||
if ( ! empty($item->get_memberships())) {
|
||||
?>
|
||||
<a href="<?php echo wu_network_admin_url('wp-ultimo-memberships', ['customer_id' => $item->get_id()]); ?>">
|
||||
<?php _e('View', 'wp-ultimo'); ?>
|
||||
<?php _e('View', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
<?php
|
||||
}
|
||||
@ -113,7 +103,7 @@
|
||||
|
||||
<div class="wu-flex wu-justify-between wu-border-0 wu-border-gray-300 wu-border-t wu-border-b-0 wu-border-solid wu-py-2 wu-px-3">
|
||||
<span>
|
||||
<?php _e('Actions:', 'wp-ultimo'); ?>
|
||||
<?php _e('Actions:', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
<div>
|
||||
|
||||
@ -122,10 +112,10 @@
|
||||
// Concatenate switch to url
|
||||
$is_modal_switch_to = \WP_Ultimo\User_Switching::get_instance()->check_user_switching_is_activated() ? '' : 'wubox';
|
||||
|
||||
$url_switch_to = sprintf('<a title="%s" class="%s" href="%s">%s</a>', __('Switch To', 'wp-ultimo'), $is_modal_switch_to, \WP_Ultimo\User_Switching::get_instance()->render($item->get_user_id()), __('Switch To', 'wp-ultimo'));
|
||||
$url_switch_to = sprintf('<a title="%s" class="%s" href="%s">%s</a>', __('Switch To', 'wp-multisite-waas'), $is_modal_switch_to, \WP_Ultimo\User_Switching::get_instance()->render($item->get_user_id()), __('Switch To', 'wp-multisite-waas'));
|
||||
|
||||
$actions = [
|
||||
'switch-to' => $item->get_user_id() !== get_current_user_id() ? $url_switch_to : __('None', 'wp-ultimo'),
|
||||
'switch-to' => $item->get_user_id() !== get_current_user_id() ? $url_switch_to : __('None', 'wp-multisite-waas'),
|
||||
];
|
||||
|
||||
echo implode('<br />', $actions);
|
||||
@ -141,11 +131,11 @@
|
||||
|
||||
<label>
|
||||
<input class="wu-rounded-none" type="checkbox" name="bulk-delete[]" value="<?php echo $item->get_id(); ?>" />
|
||||
<?php _e('Select Customer', 'wp-ultimo'); ?>
|
||||
<?php _e('Select Customer', 'wp-multisite-waas'); ?>
|
||||
</label>
|
||||
|
||||
<a href="<?php echo wu_network_admin_url('wp-ultimo-edit-customer', ['id' => $item->get_id()]); ?>" class="button button-primary">
|
||||
<?php _e('Manage', 'wp-ultimo'); ?>
|
||||
<?php _e('Manage', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<h1 class="wp-heading-inline">
|
||||
|
||||
<?php echo $page->edit ? $labels['edit_label'] : $labels['add_new_label']; ?>
|
||||
<?php echo esc_html($page->edit ? $labels['edit_label'] : $labels['add_new_label']); ?>
|
||||
|
||||
<?php
|
||||
/**
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
?>
|
||||
|
||||
<a title="<?php echo esc_attr($action_link['label']); ?>" href="<?php echo esc_url($action_link['url']); ?>" class="page-title-action <?php echo esc_attr($action_classes); ?>" <?php echo $attrs; ?>>
|
||||
<a title="<?php echo esc_attr($action_link['label']); ?>" href="<?php echo esc_url($action_link['url']); ?>" class="page-title-action <?php echo esc_attr($action_classes); ?>" <?php echo esc_attr($attrs); ?>>
|
||||
|
||||
<?php if ($action_link['icon']) : ?>
|
||||
|
||||
@ -34,7 +34,7 @@
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $action_link['label']; ?>
|
||||
<?php echo esc_html($action_link['label']); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -11,8 +11,8 @@
|
||||
<?php
|
||||
echo wu_render_empty_state(
|
||||
[
|
||||
'message' => __('No notes yet.', 'wp-ultimo'),
|
||||
'sub_message' => __('Use the "Add new Note" to create the first one.', 'wp-ultimo'),
|
||||
'message' => __('No notes yet.', 'wp-multisite-waas'),
|
||||
'sub_message' => __('Use the "Add new Note" to create the first one.', 'wp-multisite-waas'),
|
||||
'link_url' => false,
|
||||
'display_background_image' => false,
|
||||
]
|
||||
@ -77,7 +77,7 @@
|
||||
<span class="wu-ml-2">
|
||||
|
||||
<a class="dashicons-wu-trash wu-p-0 wu-border-none wu-text-red-600 wu-button-delete wu-no-underline wubox" href="<?php echo esc_url(wu_get_form_url('delete_note', $modal_atts)); ?>"
|
||||
title="<?php echo esc_attr__('Clear Note', 'wp-ultimo'); ?>"></a>
|
||||
title="<?php echo esc_attr__('Clear Note', 'wp-multisite-waas'); ?>"></a>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
<span class="wu-self-center wu-blinking-animation wu-text-gray-600 wu-my-1 wu-text-2xs wu-uppercase wu-font-semibold">
|
||||
|
||||
<?php echo _e('Loading Preview...', 'wp-ultimo'); ?>
|
||||
<?php echo _e('Loading Preview...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
|
||||
<span class="wu-text-gray-600 wu-my-1 wu-text-2xs wu-uppercase wu-font-semibold">
|
||||
|
||||
<?php echo __('Template Preview', 'wp-ultimo'); ?>
|
||||
<?php echo __('Template Preview', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
|
||||
<div id="preview_content" class="wu-block wu-bg-gray wu-text-center wu-mb-5 wu-border wu-border-t-0 wu-border-solid wu-rounded wu-border-gray-400">
|
||||
|
||||
<iframe id="preview-stage-iframe" class="preview-stage-iframe" width="100%" style="height: <?php echo $preview_height; ?>;" frameborder="0" data-src="<?php echo esc_url($preview_iframe_url); ?>" src="<?php echo esc_url($preview_iframe_url); ?>"></iframe>
|
||||
<iframe id="preview-stage-iframe" class="preview-stage-iframe" width="100%" style="height: <?php echo esc_attr($preview_height); ?>;" frameborder="0" data-src="<?php echo esc_url($preview_iframe_url); ?>" src="<?php echo esc_url($preview_iframe_url); ?>"></iframe>
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
<div class="wu-p-12 wu-h-12 wu--mt-1 wu--mx-3 wu--mb-3 wu-bg-gray-100 wu-text-gray-500 wu-text-xs wu-text-center">
|
||||
<span class="dashicons dashicons-warning wu-h-8 wu-w-8 wu-mx-auto wu-text-center wu-text-4xl wu-block"></span>
|
||||
<span class="wu-block wu-text-sm wu-mt-2">
|
||||
<?php printf(__('%s will show up here once this item is saved.', 'wp-ultimo'), $title); ?>
|
||||
<?php printf(__('%s will show up here once this item is saved.', 'wp-multisite-waas'), $title); ?>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
<span class="wu-text-base wu-w-4 wu-h-4 wu-pt-2px wu-mr-1 dashicons dashicons-wu-chevron-with-circle-down"> </span>
|
||||
|
||||
<?php _e('All Options', 'wp-ultimo'); ?>
|
||||
<?php _e('All Options', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
<!-- End Menu Link -->
|
||||
@ -79,13 +79,13 @@
|
||||
|
||||
<span v-show="!display_all">
|
||||
|
||||
<?php _e('Display all fields', 'wp-ultimo'); ?>
|
||||
<?php _e('Display all fields', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
<span v-cloak v-show="display_all">
|
||||
|
||||
<?php _e('Hide other fields', 'wp-ultimo'); ?>
|
||||
<?php _e('Hide other fields', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -101,7 +101,7 @@
|
||||
|
||||
<span class="wu-blinking-animation">
|
||||
|
||||
<?php _e('Loading...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -7,14 +7,14 @@
|
||||
?>
|
||||
<div
|
||||
class="wu-flex wu-justify-center wu-items-center wu-text-center wu-bg-contain wu-bg-no-repeat wu--mb-12 wu-pb-12"
|
||||
style="background-image: url(<?php echo $display_background_image ? wu_get_asset('empty-state-bg.webp', 'img') : ''; ?>); <?php echo $display_background_image ? 'height: calc(100vh - 300px); background-position: center -30px;' : ''; ?>"
|
||||
style="background-image: url(<?php echo esc_url($display_background_image ? wu_get_asset('empty-state-bg.webp', 'img') : ''); ?>); <?php echo esc_attr($display_background_image ? 'height: calc(100vh - 300px); background-position: center -30px;' : ''); ?>"
|
||||
>
|
||||
|
||||
<div class="wu-block wu-p-4 md:wu-pt-12 wu-self-center">
|
||||
|
||||
<span class="wu-block wu-text-2xl wu-text-gray-600">
|
||||
|
||||
<?php echo $message; ?>
|
||||
<?php echo esc_html($message); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
|
||||
<div class="wu-block wu-text-base wu-text-gray-500 wu-py-6">
|
||||
|
||||
<?php echo $sub_message; ?>
|
||||
<?php echo esc_html($sub_message); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $link_label; ?>
|
||||
<?php echo esc_html($link_label); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -50,7 +50,7 @@
|
||||
|
||||
<div class="wu-block wu-text-base wu-text-gray-500 wu-py-6">
|
||||
|
||||
<?php echo $sub_message; ?>
|
||||
<?php echo esc_html($sub_message); ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -47,11 +47,11 @@
|
||||
class="button drawer-toggle"
|
||||
v-bind:aria-expanded="open ? 'true' : 'false'"
|
||||
>
|
||||
<?php _e('Advanced Filters', 'wp-ultimo'); ?>
|
||||
<?php _e('Advanced Filters', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
<div class="wu-py-3 wu-px-2 wu-inline-block wu-uppercase wu-font-semibold wu-text-gray-600 wu-text-xs" v-show="open" v-cloak>
|
||||
<?php _e('Advanced Filters', 'wp-ultimo'); ?>
|
||||
<?php _e('Advanced Filters', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<button
|
||||
@ -60,7 +60,7 @@
|
||||
type="button"
|
||||
class="button drawer-toggle"
|
||||
>
|
||||
<?php _e('Close', 'wp-ultimo'); ?>
|
||||
<?php _e('Close', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -110,7 +110,7 @@
|
||||
class="wu-uppercase wu-font-semibold wu-text-gray-600 wu-text-xs"
|
||||
v-if="index === 0"
|
||||
>
|
||||
<?php _e('Where', 'wp-ultimo'); ?>
|
||||
<?php _e('Where', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<select
|
||||
@ -118,16 +118,16 @@
|
||||
v-if="index === 1"
|
||||
v-model="relation"
|
||||
>
|
||||
<option value="and"><?php _e('and', 'wp-ultimo'); ?></option>
|
||||
<option value="or"><?php _e('or', 'wp-ultimo'); ?></option>
|
||||
<option value="and"><?php _e('and', 'wp-multisite-waas'); ?></option>
|
||||
<option value="or"><?php _e('or', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
<span
|
||||
class="wu-uppercase wu-font-semibold wu-text-gray-600 wu-text-xs"
|
||||
v-if="index > 1"
|
||||
>
|
||||
<span v-show="relation === 'and'"><?php _e('and', 'wp-ultimo'); ?></span>
|
||||
<span v-show="relation === 'or'"><?php _e('or', 'wp-ultimo'); ?></span>
|
||||
<span v-show="relation === 'and'"><?php _e('and', 'wp-multisite-waas'); ?></span>
|
||||
<span v-show="relation === 'or'"><?php _e('or', 'wp-multisite-waas'); ?></span>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -151,24 +151,24 @@
|
||||
<div class="wu-w-2/12 wu-mx-2">
|
||||
|
||||
<select class="form-control wu-w-full" v-if="get_filter_type(filter.field) == 'bool'" v-model="filter.value">
|
||||
<option value="1"><?php _e('is true.', 'wp-ultimo'); ?></option>
|
||||
<option value="0"><?php _e('is false.', 'wp-ultimo'); ?></option>
|
||||
<option value="1"><?php _e('is true.', 'wp-multisite-waas'); ?></option>
|
||||
<option value="0"><?php _e('is false.', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
<select class="form-control wu-w-full" v-if="get_filter_type(filter.field) == 'text'" v-bind:value="get_filter_rule(filter.field)">
|
||||
<option value="is"><?php _e('is', 'wp-ultimo'); ?></option>
|
||||
<option value="is_not"><?php _e('is not', 'wp-ultimo'); ?></option>
|
||||
<option value="contains"><?php _e('contains', 'wp-ultimo'); ?></option>
|
||||
<option value="does_not_contain"><?php _e('does not contain', 'wp-ultimo'); ?></option>
|
||||
<option value="starts_with"><?php _e('starts with', 'wp-ultimo'); ?></option>
|
||||
<option value="ends_with"><?php _e('ends with', 'wp-ultimo'); ?></option>
|
||||
<option value="is_empty"><?php _e('is empty.', 'wp-ultimo'); ?></option>
|
||||
<option value="is_not_empty"><?php _e('is not empty.', 'wp-ultimo'); ?></option>
|
||||
<option value="is"><?php _e('is', 'wp-multisite-waas'); ?></option>
|
||||
<option value="is_not"><?php _e('is not', 'wp-multisite-waas'); ?></option>
|
||||
<option value="contains"><?php _e('contains', 'wp-multisite-waas'); ?></option>
|
||||
<option value="does_not_contain"><?php _e('does not contain', 'wp-multisite-waas'); ?></option>
|
||||
<option value="starts_with"><?php _e('starts with', 'wp-multisite-waas'); ?></option>
|
||||
<option value="ends_with"><?php _e('ends with', 'wp-multisite-waas'); ?></option>
|
||||
<option value="is_empty"><?php _e('is empty.', 'wp-multisite-waas'); ?></option>
|
||||
<option value="is_not_empty"><?php _e('is not empty.', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
<select class="form-control wu-w-full" v-if="get_filter_type(filter.field) == 'date'" v-bind:value="get_filter_rule(filter.field)">
|
||||
<option value="before"><?php _e('is before', 'wp-ultimo'); ?></option>
|
||||
<option value="after"><?php _e('is after', 'wp-ultimo'); ?></option>
|
||||
<option value="before"><?php _e('is before', 'wp-multisite-waas'); ?></option>
|
||||
<option value="after"><?php _e('is after', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
@ -178,7 +178,7 @@
|
||||
<input
|
||||
type="text"
|
||||
class="form-control wu-w-full"
|
||||
placeholder="<?php esc_attr_e('Value', 'wp-ultimo'); ?>"
|
||||
placeholder="<?php esc_attr_e('Value', 'wp-multisite-waas'); ?>"
|
||||
v-if="_.contains(['text', 'date'], get_filter_type(filter.field)) && !_.contains(['is_empty', 'is_not_empty'], filter.rule)"
|
||||
v-model="filter.value"
|
||||
/>
|
||||
@ -193,7 +193,7 @@
|
||||
class="button"
|
||||
v-show="index > 0"
|
||||
>
|
||||
<?php _e('Remove Filter', 'wp-ultimo'); ?>
|
||||
<?php _e('Remove Filter', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
@ -206,7 +206,7 @@
|
||||
class="button button-primary wu-float-right"
|
||||
v-show="index === filters.length - 1"
|
||||
>
|
||||
<?php _e('Add new Filter', 'wp-ultimo'); ?>
|
||||
<?php _e('Add new Filter', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<h1 class="wp-heading-inline">
|
||||
|
||||
<?php echo $page->get_title(); ?>
|
||||
<?php echo esc_html($page->get_title()); ?>
|
||||
|
||||
<?php
|
||||
/**
|
||||
@ -32,7 +32,7 @@
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $action_link['label']; ?>
|
||||
<?php echo esc_html($action_link['label']); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -19,11 +19,11 @@
|
||||
<img
|
||||
style="opacity: 0.6; height: 16rem;"
|
||||
class="wu-w-full"
|
||||
src="<?php echo $featured_image; ?>"
|
||||
src="<?php echo esc_url($featured_image); ?>"
|
||||
/>
|
||||
|
||||
<div class="wu-my-4 wu-mx-3 wu-inline-block wu-absolute wu-bottom-0 wu-right-0 wu-rounded wu-px-2 wu-py-1 wu-uppercase wu-text-xs wu-font-bold <?php echo esc_attr($item->get_type_class()); ?>">
|
||||
<?php echo $item->get_type_label(); ?>
|
||||
<?php echo esc_html($item->get_type_label()); ?>
|
||||
</div>
|
||||
<?php
|
||||
} else {
|
||||
@ -33,7 +33,7 @@
|
||||
</div>
|
||||
|
||||
<div class="wu-my-4 wu-mx-3 wu-inline-block wu-absolute wu-bottom-0 wu-right-0 wu-rounded wu-px-2 wu-py-1 wu-uppercase wu-text-xs wu-font-bold <?php echo esc_attr($item->get_type_class()); ?>">
|
||||
<?php echo $item->get_type_label(); ?>
|
||||
<?php echo esc_html($item->get_type_label()); ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
@ -45,7 +45,7 @@
|
||||
<div class="wu-text-base wu-mt-1 wu-px-3 wu-mt-3">
|
||||
|
||||
<div>
|
||||
<span class="wu-font-semibold"><?php echo $item->get_name(); ?></span>
|
||||
<span class="wu-font-semibold"><?php echo esc_html($item->get_name()); ?></span>
|
||||
<!-- <small><?php echo $item->get_price_description(); ?></small> -->
|
||||
</div>
|
||||
|
||||
@ -61,11 +61,11 @@
|
||||
|
||||
<!-- <label>
|
||||
<input class="wu-rounded-none" type="checkbox" name="bulk-delete[]" value="<?php echo $item->get_id(); ?>" />
|
||||
<?php _e('Select Site', 'wp-ultimo'); ?>
|
||||
<?php _e('Select Site', 'wp-multisite-waas'); ?>
|
||||
</label> -->
|
||||
|
||||
<a href="<?php echo wu_network_admin_url('wp-ultimo-edit-product', ['id' => $item->get_id()]); ?>" class="button button-primary">
|
||||
<?php _e('Read More', 'wp-ultimo'); ?>
|
||||
<?php _e('Read More', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
@ -127,7 +127,7 @@ endforeach;
|
||||
|
||||
<div class="wu-flex wu-ml-5 wu-flex-shrink-0 wu-items-center wu-justify-between">
|
||||
|
||||
<a href="<?php echo esc_attr($args['url']); ?>" title="<?php esc_attr_e('View', 'wp-ultimo'); ?>">
|
||||
<a href="<?php echo esc_attr($args['url']); ?>" title="<?php esc_attr_e('View', 'wp-multisite-waas'); ?>">
|
||||
<svg class="wu-h-5 wu-w-5 wu-text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
|
||||
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
|
@ -53,7 +53,7 @@
|
||||
<?php if (wu_request('updated')) : ?>
|
||||
|
||||
<div id="message" class="updated notice wu-admin-notice notice-success is-dismissible below-h2">
|
||||
<p><?php _e('Settings successfully saved.', 'wp-ultimo'); ?></p>
|
||||
<p><?php _e('Settings successfully saved.', 'wp-multisite-waas'); ?></p>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -88,7 +88,7 @@
|
||||
|
||||
<li class="md:wu-hidden wu-p-4 wu-font-bold wu-uppercase wu-text-xs wu-text-gray-700">
|
||||
|
||||
<?php _e('Menu', 'wp-ultimo'); ?>
|
||||
<?php _e('Menu', 'wp-multisite-waas'); ?>
|
||||
|
||||
</li>
|
||||
|
||||
@ -183,7 +183,7 @@
|
||||
<ul class="wu-pt-4">
|
||||
|
||||
<li class="wu-px-4 wu-font-bold wu-uppercase wu-text-xs wu-text-gray-700">
|
||||
<?php _e('Add-ons', 'wp-ultimo'); ?>
|
||||
<?php _e('Add-ons', 'wp-multisite-waas'); ?>
|
||||
</li>
|
||||
|
||||
<?php foreach ($addons as $section_name => $section) : ?>
|
||||
|
@ -14,14 +14,14 @@
|
||||
<img
|
||||
style="opacity: 0.6;"
|
||||
class="wu-w-full wu-h-auto wu-image-preview"
|
||||
data-image="<?php echo $item->get_featured_image('large'); ?>"
|
||||
src="<?php echo $item->get_featured_image('wu-thumb-medium'); ?>"
|
||||
data-image="<?php echo esc_attr($item->get_featured_image('large')); ?>"
|
||||
src="<?php echo esc_attr($item->get_featured_image('wu-thumb-medium')); ?>"
|
||||
/>
|
||||
|
||||
<?php if (current_user_can('wu_read_sites')) : ?>
|
||||
|
||||
<div class="wu-my-4 wu-mx-3 wu-inline-block wu-absolute wu-bottom-0 wu-right-0 wu-rounded wu-px-2 wu-py-1 wu-uppercase wu-text-xs wu-font-bold <?php echo esc_attr($item->get_type_class()); ?>">
|
||||
<?php echo $item->get_type_label(); ?>
|
||||
<?php echo esc_html($item->get_type_label()); ?>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -31,12 +31,12 @@
|
||||
<div class="wu-text-base wu-px-3 wu-my-3">
|
||||
|
||||
<div>
|
||||
<span class="wu-font-semibold"><?php echo $item->get_title(); ?></span>
|
||||
<small><?php echo $item->get_id() ? '#' . $item->get_id() : ''; ?></small>
|
||||
<span class="wu-font-semibold"><?php echo esc_html($item->get_title()); ?></span>
|
||||
<small><?php echo esc_html($item->get_id() ? '#' . $item->get_id() : ''); ?></small>
|
||||
</div>
|
||||
|
||||
<div class="wu-text-xs wu-my-1">
|
||||
<a class="wu-no-underline" href="<?php echo $item->get_active_site_url(); ?>"><?php echo $item->get_active_site_url(); ?></a>
|
||||
<a class="wu-no-underline" href="<?php echo esc_url($item->get_active_site_url()); ?>"><?php echo esc_url($item->get_active_site_url()); ?></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@ -48,23 +48,23 @@
|
||||
<?php if ($item->get_type() === 'pending') : ?>
|
||||
|
||||
<label>
|
||||
<input class="wu-rounded-none" type="checkbox" name="bulk-delete[]" value="<?php echo $item->get_membership_id(); ?>" />
|
||||
<?php _e('Select Site', 'wp-ultimo'); ?>
|
||||
<input class="wu-rounded-none" type="checkbox" name="bulk-delete[]" value="<?php echo esc_attr($item->get_membership_id()); ?>" />
|
||||
<?php esc_html_e('Select Site', 'wp-multisite-waas'); ?>
|
||||
</label>
|
||||
|
||||
<a title="<?php echo esc_attr(__('Publish pending site', 'wp-ultimo')); ?>" href="<?php echo wu_get_form_url('publish_pending_site', ['membership_id' => $item->get_membership_id()]); ?>" class="wubox button button-primary">
|
||||
<?php _e('Publish Site', 'wp-ultimo'); ?>
|
||||
<a title="<?php echo esc_attr(__('Publish pending site', 'wp-multisite-waas')); ?>" href="<?php echo esc_attr(wu_get_form_url('publish_pending_site', ['membership_id' => $item->get_membership_id()])); ?>" class="wubox button button-primary">
|
||||
<?php esc_html_e('Publish Site', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<label>
|
||||
<input class="wu-rounded-none" type="checkbox" name="bulk-delete[]" value="<?php echo $item->get_id(); ?>" />
|
||||
<?php _e('Select Site', 'wp-ultimo'); ?>
|
||||
<input class="wu-rounded-none" type="checkbox" name="bulk-delete[]" value="<?php echo esc_attr($item->get_id()); ?>" />
|
||||
<?php esc_html_e('Select Site', 'wp-multisite-waas'); ?>
|
||||
</label>
|
||||
|
||||
<a href="<?php echo wu_network_admin_url('wp-ultimo-edit-site', ['id' => $item->get_id()]); ?>" class="button button-primary">
|
||||
<?php _e('Manage', 'wp-ultimo'); ?>
|
||||
<a href="<?php echo esc_attr(wu_network_admin_url('wp-ultimo-edit-site', ['id' => $item->get_id()])); ?>" class="button button-primary">
|
||||
<?php esc_html_e('Manage', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -73,8 +73,8 @@
|
||||
|
||||
<span> </span>
|
||||
|
||||
<a href="<?php echo wu_network_admin_url('wp-ultimo-edit-site', ['id' => $item->get_id()]); ?>" class="button button-primary">
|
||||
<?php _e('See Main Site', 'wp-ultimo'); ?>
|
||||
<a href="<?php echo esc_attr(wu_network_admin_url('wp-ultimo-edit-site', ['id' => $item->get_id()])); ?>" class="button button-primary">
|
||||
<?php esc_html_e('See Main Site', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<?php endif; ?>
|
||||
|
@ -9,13 +9,13 @@
|
||||
<div class="wu-flex wu-justify-between wu-bg-gray-100 wu--m-in wu-mt-4 wu-p-4 wu-overflow-hidden wu-border-t wu-border-solid wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-300">
|
||||
|
||||
<a href="<?php echo esc_url($page->get_prev_section_link()); ?>" class="wu-self-center button button-large wu-float-left">
|
||||
<?php _e('← Go Back', 'wp-ultimo'); ?>
|
||||
<?php _e('← Go Back', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<span class="wu-self-center wu-content-center wu-flex">
|
||||
|
||||
<button name="submit" value="1" class="button button-primary button-large">
|
||||
<?php _e('Continue', 'wp-ultimo'); ?>
|
||||
<?php _e('Continue', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
</span>
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
<span class='wu-block wu-py-3 wu-text-gray-600 wu-text-2xs wu-font-bold wu-uppercase'>
|
||||
|
||||
<?php echo esc_html(__('No Targets', 'wp-ultimo')); ?>
|
||||
<?php echo esc_html(__('No Targets', 'wp-multisite-waas')); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
<span id="pass-strength-result" class="wu-py-2 wu-px-4 wu-bg-gray-100 wu-block wu-text-sm">
|
||||
|
||||
<?php _e('Strength Meter', 'wp-ultimo'); ?>
|
||||
<?php _e('Strength Meter', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
<div class="wu-text-center wu-bg-gray-100 wu-rounded wu-uppercase wu-font-semibold wu-text-xs wu-text-gray-700 wu-p-4">
|
||||
|
||||
<?php _e('No Products Found.', 'wp-ultimo'); ?>
|
||||
<?php _e('No Products Found.', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -54,7 +54,7 @@
|
||||
<div class="wu-relative">
|
||||
|
||||
<a href="#wu-checkout-add-<?php echo $product->get_slug(); ?>" class="button btn wu-w-full wu-text-center wu-inline-block">
|
||||
<?php _e('Select', 'wp-ultimo'); ?>
|
||||
<?php _e('Select', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
@ -14,7 +14,7 @@ if ($is_trial_setup) {
|
||||
|
||||
$date = wp_date(get_option('date_format'), strtotime($membership->get_date_trial_end(), wu_get_current_time('timestamp', true)));
|
||||
|
||||
$notes[] = sprintf(__('Your trial period will end on %1$s.', 'wp-ultimo'), $date);
|
||||
$notes[] = sprintf(__('Your trial period will end on %1$s.', 'wp-multisite-waas'), $date);
|
||||
} // end if;
|
||||
|
||||
$original_cart = $payment->get_meta('wu_original_cart');
|
||||
@ -34,26 +34,26 @@ if ($membership->is_recurring() && $should_auto_renew) {
|
||||
if ($original_cart->get_cart_type() === 'downgrade') {
|
||||
$subtotal = wu_format_currency($payment->get_subtotal(), $payment->get_currency());
|
||||
if ($is_trial_setup) {
|
||||
$notes[] = sprintf(__('Your updated membership will start on $1$s, from that date you will be billed %2$s %3$s.', 'wp-ultimo'), $date, $subtotal, $desc);
|
||||
$notes[] = sprintf(__('Your updated membership will start on $1$s, from that date you will be billed %2$s %3$s.', 'wp-multisite-waas'), $date, $subtotal, $desc);
|
||||
} else {
|
||||
$date_renew = wp_date(get_option('date_format'), strtotime($membership->get_date_expiration(), wu_get_current_time('timestamp', true)));
|
||||
|
||||
$notes[] = sprintf(__('Your updated membership will start on %1$s, from that date you will be billed %2$s %3$s.', 'wp-ultimo'), $date_renew, $subtotal, $desc);
|
||||
$notes[] = sprintf(__('Your updated membership will start on %1$s, from that date you will be billed %2$s %3$s.', 'wp-multisite-waas'), $date_renew, $subtotal, $desc);
|
||||
} // end if;
|
||||
} elseif ($is_trial_setup) {
|
||||
$initial_amount_format = wu_format_currency($membership->get_initial_amount(), $payment->get_currency());
|
||||
|
||||
$notes[] = sprintf(__('After the first payment of %1$s you will be billed %2$s %3$s.', 'wp-ultimo'), $initial_amount_format, $recurring_total_format, $desc);
|
||||
$notes[] = sprintf(__('After the first payment of %1$s you will be billed %2$s %3$s.', 'wp-multisite-waas'), $initial_amount_format, $recurring_total_format, $desc);
|
||||
} else {
|
||||
$notes[] = sprintf(__('After this payment you will be billed %1$s %2$s.', 'wp-ultimo'), $recurring_total_format, $desc);
|
||||
$notes[] = sprintf(__('After this payment you will be billed %1$s %2$s.', 'wp-multisite-waas'), $recurring_total_format, $desc);
|
||||
} // end if;
|
||||
} else {
|
||||
$recurring_total_format = wu_format_currency($recurring_total, $payment->get_currency());
|
||||
|
||||
if ($is_trial_setup) {
|
||||
$notes[] = sprintf(__('From that date, you will be billed %1$s %2$s.', 'wp-ultimo'), $recurring_total_format, $desc);
|
||||
$notes[] = sprintf(__('From that date, you will be billed %1$s %2$s.', 'wp-multisite-waas'), $recurring_total_format, $desc);
|
||||
} else {
|
||||
$notes[] = sprintf(__('After this payment you will be billed %1$s.', 'wp-ultimo'), $desc);
|
||||
$notes[] = sprintf(__('After this payment you will be billed %1$s.', 'wp-multisite-waas'), $desc);
|
||||
} // end if;
|
||||
} // end if;
|
||||
} // end if;
|
||||
@ -66,7 +66,7 @@ $subtotal = 0;
|
||||
|
||||
<form id="wu-paypal-express-confirm-form" class="wu-styling" action="<?php echo esc_url(add_query_arg('wu-confirm', 'paypal')); ?>" method="post">
|
||||
<div class="wu-confirm-details" id="billing_info">
|
||||
<h2><?php _e('Please confirm your payment', 'wp-ultimo'); ?></h2>
|
||||
<h2><?php _e('Please confirm your payment', 'wp-multisite-waas'); ?></h2>
|
||||
|
||||
<div class="wu-text-sm wu-mb-4 wu-rounded-lg wu-border wu-border-gray-300 wu-bg-white wu-border-solid wu-shadow-sm wu-px-6 wu-py-4">
|
||||
<span class="wu-font-semibold wu-block wu-text-gray-900">
|
||||
@ -75,8 +75,8 @@ $subtotal = 0;
|
||||
|
||||
<div class="wu-text-gray-600">
|
||||
<p>
|
||||
<?php _e('PayPal Status:', 'wp-ultimo'); ?> <?php echo ucfirst(wu_get_isset($checkout_details, 'PAYERSTATUS', 'none')); ?>
|
||||
<br><?php _e('Email:', 'wp-ultimo'); ?> <?php echo wu_get_isset($checkout_details, 'EMAIL', '--'); ?>
|
||||
<?php _e('PayPal Status:', 'wp-multisite-waas'); ?> <?php echo ucfirst(wu_get_isset($checkout_details, 'PAYERSTATUS', 'none')); ?>
|
||||
<br><?php _e('Email:', 'wp-multisite-waas'); ?> <?php echo wu_get_isset($checkout_details, 'EMAIL', '--'); ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -85,8 +85,8 @@ $subtotal = 0;
|
||||
<table class="wu-w-full wu-mb-4">
|
||||
<thead class="wu-bg-gray-100">
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Product', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Total', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Product', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Total', 'wp-multisite-waas'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@ -112,21 +112,21 @@ $subtotal = 0;
|
||||
|
||||
<tfoot class="wu-bg-gray-100">
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Subtotal', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Subtotal', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php echo wu_format_currency($subtotal, $payment->get_currency()); ?></th>
|
||||
</tr>
|
||||
|
||||
<?php foreach ($payment->get_tax_breakthrough() as $rate => $total) : ?>
|
||||
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php printf(__('Tax (%s%%)', 'wp-ultimo'), $rate); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php printf(__('Tax (%s%%)', 'wp-multisite-waas'), $rate); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php echo wu_format_currency($total, $payment->get_currency()); ?></th>
|
||||
</tr>
|
||||
|
||||
<?php endforeach; ?>
|
||||
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e("Today's Grand Total", 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e("Today's Grand Total", 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php echo wu_format_currency($payment->get_total(), $payment->get_currency()); ?></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
@ -157,7 +157,7 @@ $subtotal = 0;
|
||||
|
||||
<div class="wu_submit_button">
|
||||
<button type="submit" class="button button button-primary btn-primary">
|
||||
<?php esc_attr_e('Confirm', 'wp-ultimo'); ?>
|
||||
<?php esc_attr_e('Confirm', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
'product-fields',
|
||||
$product_fields,
|
||||
[
|
||||
'title' => __('Products', 'wp-ultimo'),
|
||||
'title' => __('Products', 'wp-multisite-waas'),
|
||||
'views' => 'checkout/fields',
|
||||
]
|
||||
);
|
||||
|
@ -55,10 +55,10 @@ if (false !== $product_variation) {
|
||||
</div>
|
||||
|
||||
<div v-if="!($parent.has_product('<?php echo $product->get_id(); ?>') || $parent.has_product('<?php echo $product->get_slug(); ?>'))" class="wu-ml-2">
|
||||
<a href="#" @click.prevent="$parent.add_product('<?php echo $product->get_id(); ?>')" class="button btn"><?php _e('Add to Cart', 'wp-ultimo'); ?></a>
|
||||
<a href="#" @click.prevent="$parent.add_product('<?php echo $product->get_id(); ?>')" class="button btn"><?php _e('Add to Cart', 'wp-multisite-waas'); ?></a>
|
||||
</div>
|
||||
<div v-else class="wu-ml-2">
|
||||
<a href="#" @click.prevent="$parent.remove_product('<?php echo $product->get_id(); ?>', '<?php echo $product->get_slug(); ?>')" class="button btn"><?php _e('Remove', 'wp-ultimo'); ?></a>
|
||||
<a href="#" @click.prevent="$parent.remove_product('<?php echo $product->get_id(); ?>', '<?php echo $product->get_slug(); ?>')" class="button btn"><?php _e('Remove', 'wp-multisite-waas'); ?></a>
|
||||
<input type="hidden" name="products[]" value="<?php echo $product->get_id(); ?>">
|
||||
</div>
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<div v-show="!order" class="wu-bg-gray-100 wu-p-4 wu-text-center wu-border wu-border-solid wu-border-gray-300">
|
||||
|
||||
<?php _e('Generating Order Summary...', 'wp-ultimo'); ?>
|
||||
<?php _e('Generating Order Summary...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -22,31 +22,31 @@
|
||||
<tr class="">
|
||||
|
||||
<th class="col-description">
|
||||
<?php _e('Description', 'wp-ultimo'); ?>
|
||||
<?php _e('Description', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<?php if ('simple' === $table_columns) : ?>
|
||||
|
||||
<th class="col-total-gross">
|
||||
<?php _e('Subtotal', 'wp-ultimo'); ?>
|
||||
<?php _e('Subtotal', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<th class="col-total-net">
|
||||
<?php _e('Net Total', 'wp-ultimo'); ?>
|
||||
<?php _e('Net Total', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th class="col-total-vat-percentage">
|
||||
<?php _e('Discounts', 'wp-ultimo'); ?>
|
||||
<?php _e('Discounts', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th class="col-total-tax">
|
||||
<?php _e('Tax', 'wp-ultimo'); ?>
|
||||
<?php _e('Tax', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th class="col-total-gross">
|
||||
<?php _e('Gross Total', 'wp-ultimo'); ?>
|
||||
<?php _e('Gross Total', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -61,7 +61,7 @@
|
||||
|
||||
<td class="" colspan="<?php echo esc_attr('simple' === $table_columns) ? 2 : 5; ?>" class="col-description">
|
||||
|
||||
<?php _e('No products in shopping cart.', 'wp-ultimo'); ?>
|
||||
<?php _e('No products in shopping cart.', 'wp-multisite-waas'); ?>
|
||||
|
||||
</td>
|
||||
|
||||
@ -71,13 +71,13 @@
|
||||
|
||||
<td class="wu-py-2 col-description" v-show="line_item.recurring">
|
||||
|
||||
<?php printf(__('Subscription - %s', 'wp-ultimo'), '{{ line_item.title }}'); ?>
|
||||
<?php printf(__('Subscription - %s', 'wp-multisite-waas'), '{{ line_item.title }}'); ?>
|
||||
|
||||
<small v-if="line_item.type == 'product'" class="wu-ml-3 wu-text-xs">
|
||||
|
||||
<a href="#" class="wu-no-underline" v-on:click.prevent="remove_product(line_item.product_id, line_item.product_slug)">
|
||||
|
||||
<?php _e('Remove', 'wp-ultimo'); ?>
|
||||
<?php _e('Remove', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -93,7 +93,7 @@
|
||||
|
||||
<a href="#" class="wu-no-underline" v-on:click.prevent="remove_product(line_item.product_id, line_item.product_slug)">
|
||||
|
||||
<?php _e('Remove', 'wp-ultimo'); ?>
|
||||
<?php _e('Remove', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -167,7 +167,7 @@
|
||||
|
||||
<td>
|
||||
|
||||
<?php _e('Discounts', 'wp-ultimo'); ?>
|
||||
<?php _e('Discounts', 'wp-multisite-waas'); ?>
|
||||
|
||||
</td>
|
||||
|
||||
@ -183,7 +183,7 @@
|
||||
|
||||
<td>
|
||||
|
||||
<?php _e('Taxes', 'wp-ultimo'); ?>
|
||||
<?php _e('Taxes', 'wp-multisite-waas'); ?>
|
||||
|
||||
</td>
|
||||
|
||||
@ -201,7 +201,7 @@
|
||||
|
||||
<td class="" colspan="<?php echo esc_attr('simple' === $table_columns) ? 1 : 4; ?>">
|
||||
|
||||
<strong><?php _e("Today's Grand Total", 'wp-ultimo'); ?></strong>
|
||||
<strong><?php _e("Today's Grand Total", 'wp-multisite-waas'); ?></strong>
|
||||
|
||||
</td>
|
||||
|
||||
@ -224,7 +224,7 @@
|
||||
<td class="" colspan="<?php echo esc_attr('simple' === $table_columns) ? 1 : 4; ?>">
|
||||
|
||||
<small>
|
||||
<?php printf(__('Total in %1$s - end of trial period.', 'wp-ultimo'), '{{ $moment.unix(order.dates.date_trial_end).format(`LL`) }}'); ?>
|
||||
<?php printf(__('Total in %1$s - end of trial period.', 'wp-multisite-waas'), '{{ $moment.unix(order.dates.date_trial_end).format(`LL`) }}'); ?>
|
||||
</small>
|
||||
|
||||
</td>
|
||||
@ -245,7 +245,7 @@
|
||||
|
||||
<li v-if="!order.has_trial && order.has_recurring">
|
||||
|
||||
<?php printf(__('Next fee of %1$s will be billed in %2$s.', 'wp-ultimo'), '{{ wu_format_money(order.totals.recurring.total) }}', '{{ $moment.unix(order.dates.date_next_charge).format(`LL`) }}'); ?>
|
||||
<?php printf(__('Next fee of %1$s will be billed in %2$s.', 'wp-multisite-waas'), '{{ wu_format_money(order.totals.recurring.total) }}', '{{ $moment.unix(order.dates.date_next_charge).format(`LL`) }}'); ?>
|
||||
|
||||
</li>
|
||||
|
||||
@ -253,12 +253,12 @@
|
||||
|
||||
<?php
|
||||
// translators: 1 is the discount name (e.g. Launch Promo). 2 is the coupon code (e.g PROMO10), 3 is the coupon amount and 4 is the discount total.
|
||||
printf(__('Discount applied: %1$s - %2$s (%3$s) %4$s', 'wp-ultimo'), '{{ order.discount_code.name }}', '{{ order.discount_code.code }}', '{{ order.discount_code.discount_description }}', '{{ wu_format_money(-order.totals.total_discounts) }}');
|
||||
printf(__('Discount applied: %1$s - %2$s (%3$s) %4$s', 'wp-multisite-waas'), '{{ order.discount_code.name }}', '{{ order.discount_code.code }}', '{{ order.discount_code.discount_description }}', '{{ wu_format_money(-order.totals.total_discounts) }}');
|
||||
?>
|
||||
|
||||
<a class="wu-no-underline wu-ml-2" href="#" v-on:click.prevent="discount_code = ''">
|
||||
|
||||
<?php _e('Remove', 'wp-ultimo'); ?>
|
||||
<?php _e('Remove', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -101,7 +101,7 @@ if (null !== $first_recurring_product) {
|
||||
|
||||
<div class="wu-text-center wu-bg-gray-100 wu-rounded wu-uppercase wu-font-semibold wu-text-xs wu-text-gray-700 wu-p-4">
|
||||
|
||||
<?php _e('No Products Found.', 'wp-ultimo'); ?>
|
||||
<?php _e('No Products Found.', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -130,7 +130,7 @@ if (null !== $first_recurring_product) {
|
||||
/**
|
||||
* Featured tag.
|
||||
*/
|
||||
echo apply_filters('wu_featured_plan_label', __('Featured Plan', 'wp-ultimo'), $product);
|
||||
echo apply_filters('wu_featured_plan_label', __('Featured Plan', 'wp-multisite-waas'), $product);
|
||||
|
||||
?>
|
||||
|
||||
@ -158,7 +158,7 @@ if (null !== $first_recurring_product) {
|
||||
|
||||
<span class="plan-price">
|
||||
|
||||
<?php _e('Free!', 'wp-ultimo'); ?>
|
||||
<?php _e('Free!', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -178,7 +178,7 @@ if (null !== $first_recurring_product) {
|
||||
|
||||
<span class="plan-price">
|
||||
|
||||
<?php echo apply_filters('wu_plan_contact_us_price_line', __('--', 'wp-ultimo')); ?>
|
||||
<?php echo apply_filters('wu_plan_contact_us_price_line', __('--', 'wp-multisite-waas')); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -256,7 +256,7 @@ if (null !== $first_recurring_product) {
|
||||
/**
|
||||
* Period Unit.
|
||||
*/
|
||||
$symbol = $product->is_recurring() ? __('/mo', 'wp-ultimo') : '';
|
||||
$symbol = $product->is_recurring() ? __('/mo', 'wp-multisite-waas') : '';
|
||||
|
||||
echo (! $symbol_left ? wu_get_currency_symbol() : '') . ' ' . $symbol;
|
||||
|
||||
@ -304,8 +304,8 @@ if (null !== $first_recurring_product) {
|
||||
* Display quarterly and Annually plans, to be hidden.
|
||||
*/
|
||||
$prices_total = [
|
||||
3 => __('every 3 months', 'wp-ultimo'),
|
||||
12 => __('yearly', 'wp-ultimo'),
|
||||
3 => __('every 3 months', 'wp-multisite-waas'),
|
||||
12 => __('yearly', 'wp-multisite-waas'),
|
||||
];
|
||||
|
||||
foreach ($prices_total as $freq => $string) {
|
||||
@ -314,7 +314,7 @@ if (null !== $first_recurring_product) {
|
||||
if ( ! $price_variation || $product->get_pricing_type() == 'free' || $product->get_pricing_type() == 'contact_us') {
|
||||
echo "<li v-cloak v-show='duration == " . $freq . "' class='total-price total-price-$freq'>-</li>";
|
||||
} else {
|
||||
$text = sprintf(__('%1$s, billed %2$s', 'wp-ultimo'), wu_format_currency($price_variation['amount']), $string);
|
||||
$text = sprintf(__('%1$s, billed %2$s', 'wp-multisite-waas'), wu_format_currency($price_variation['amount']), $string);
|
||||
|
||||
$extra_check_for_annual = '';
|
||||
|
||||
@ -344,7 +344,7 @@ if (null !== $first_recurring_product) {
|
||||
value="<?php echo $product->get_id(); ?>"
|
||||
class="button button-primary button-next"
|
||||
>
|
||||
<?php _e('Select Plan', 'wp-ultimo'); ?>
|
||||
<?php _e('Select Plan', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
<button
|
||||
@ -354,7 +354,7 @@ if (null !== $first_recurring_product) {
|
||||
value="<?php echo $product->get_id(); ?>"
|
||||
class="button button-primary button-next"
|
||||
>
|
||||
<?php _e('Select Plan', 'wp-ultimo'); ?>
|
||||
<?php _e('Select Plan', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
</li>
|
||||
|
@ -22,7 +22,7 @@ if ( ! defined('ABSPATH')) {
|
||||
?>
|
||||
|
||||
<!-- This example requires Tailwind CSS v2.0+ -->
|
||||
<nav aria-label="<?php esc_attr_e('Progress', 'wp-ultimo'); ?>">
|
||||
<nav aria-label="<?php esc_attr_e('Progress', 'wp-multisite-waas'); ?>">
|
||||
<ul class="wu-clean-steps wu-list-none md:wu-flex wu-p-0 wu--mx-2 wu-my-4">
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ if ( ! defined('ABSPATH')) {
|
||||
|
||||
<li class="wu-py-0 md:wu-flex-1 wu-px-2 <?php echo esc_attr($container_class); ?>">
|
||||
<span class="wu-h-2 wu-block wu-mb-2 wu-bg-<?php echo esc_attr($color); ?>-500"> </span>
|
||||
<span class="wu-block wu-text-2xs wu-font-medium wu-tracking-wide wu-uppercase wu-text-<?php echo esc_attr($color); ?>-500"><?php printf(__('Step %d', 'wp-ultimo'), $index + 1); ?></span>
|
||||
<span class="wu-block wu-text-2xs wu-font-medium wu-tracking-wide wu-uppercase wu-text-<?php echo esc_attr($color); ?>-500"><?php printf(__('Step %d', 'wp-multisite-waas'), $index + 1); ?></span>
|
||||
<span class="wu-block wu-text-sm wu-font-medium wu-text-<?php echo esc_attr($color); ?>-600"><?php echo $step['name']; ?></span>
|
||||
</li>
|
||||
|
||||
|
@ -22,7 +22,7 @@ if ( ! defined('ABSPATH')) {
|
||||
?>
|
||||
|
||||
<!-- This example requires Tailwind CSS v2.0+ -->
|
||||
<nav aria-label="<?php esc_attr_e('Progress', 'wp-ultimo'); ?>">
|
||||
<nav aria-label="<?php esc_attr_e('Progress', 'wp-multisite-waas'); ?>">
|
||||
<ul class="wu-minimal-steps">
|
||||
|
||||
|
||||
@ -47,7 +47,7 @@ if ( ! defined('ABSPATH')) {
|
||||
|
||||
<li class="<?php echo esc_attr($class); ?>">
|
||||
<span class="wu-minimal-steps-bar"> </span>
|
||||
<span class="wu-minimal-steps-step-count"><?php printf(__('Step %d', 'wp-ultimo'), $index + 1); ?></span>
|
||||
<span class="wu-minimal-steps-step-count"><?php printf(__('Step %d', 'wp-multisite-waas'), $index + 1); ?></span>
|
||||
<span class="wu-minimal-steps-step-label"><?php echo $step['name']; ?></span>
|
||||
</li>
|
||||
|
||||
|
@ -46,7 +46,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
:class="$parent.template_category === '' ? 'current wu-font-semibold' : ''"
|
||||
v-on:click.prevent="$parent.template_category = ''"
|
||||
>
|
||||
<?php _e('All', 'wp-ultimo'); ?>
|
||||
<?php _e('All', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@ -105,7 +105,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
<div class="wu-site-template-image-container wu-relative">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('View Template Preview', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('View Template Preview', 'wp-multisite-waas'); ?>"
|
||||
class="wu-site-template-selector wu-cursor-pointer wu-no-underline"
|
||||
<?php echo $is_template ? $site_template->get_preview_url_attrs() : sprintf('href="%s" target="_blank"', $site_template->get_active_site_url()); ?>
|
||||
>
|
||||
@ -132,9 +132,9 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
|
||||
<button v-on:click.prevent="$parent.template_id = <?php echo esc_attr($site_template->get_id()); ?>" type="button" class="wu-site-template-selector button btn button-primary btn-primary wu-w-full wu-text-center wu-cursor-pointer">
|
||||
|
||||
<span v-if="$parent.template_id == <?php echo esc_attr($site_template->get_id()); ?>"><?php _e('Selected', 'wp-ultimo'); ?></span>
|
||||
<span v-if="$parent.template_id == <?php echo esc_attr($site_template->get_id()); ?>"><?php _e('Selected', 'wp-multisite-waas'); ?></span>
|
||||
|
||||
<span v-else><?php _e('Select', 'wp-ultimo'); ?></span>
|
||||
<span v-else><?php _e('Select', 'wp-multisite-waas'); ?></span>
|
||||
|
||||
</button>
|
||||
|
||||
|
@ -38,7 +38,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
class="wu-text-center wu-bg-gray-100 wu-rounded wu-uppercase wu-font-semibold wu-text-xs wu-text-gray-700 wu-p-4"
|
||||
>
|
||||
|
||||
<?php _e('No Site Templates Found.', 'wp-ultimo'); ?>
|
||||
<?php _e('No Site Templates Found.', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -59,7 +59,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
|
||||
<h2>
|
||||
|
||||
<?php _e('Pick your Template', 'wp-ultimo'); ?>
|
||||
<?php _e('Pick your Template', 'wp-multisite-waas'); ?>
|
||||
|
||||
<span class="title-count theme-count">
|
||||
|
||||
@ -75,13 +75,13 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
|
||||
<div class="wp-filter-responsive">
|
||||
|
||||
<h4><?php _e('Template Categories', 'wp-ultimo'); ?></h4>
|
||||
<h4><?php _e('Template Categories', 'wp-multisite-waas'); ?></h4>
|
||||
|
||||
<select class="">
|
||||
|
||||
<option value="">
|
||||
|
||||
<?php _e('All Templates', 'wp-ultimo'); ?>
|
||||
<?php _e('All Templates', 'wp-multisite-waas'); ?>
|
||||
|
||||
</option>
|
||||
|
||||
@ -120,7 +120,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
v-on:click.prevent="$parent.template_category = ''"
|
||||
>
|
||||
|
||||
<?php _e('All Templates', 'wp-ultimo'); ?>
|
||||
<?php _e('All Templates', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -207,7 +207,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
id="<?php echo $site->get_id(); ?>-action"
|
||||
>
|
||||
|
||||
<?php $is_template ? _e('View Template', 'wp-ultimo') : _e('View Site', 'wp-ultimo'); ?>
|
||||
<?php $is_template ? _e('View Template', 'wp-multisite-waas') : _e('View Site', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -227,9 +227,9 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
v-on:click.prevent="$parent.template_id = <?php echo esc_attr($site->get_id()); ?>"
|
||||
>
|
||||
|
||||
<span v-if="$parent.template_id == <?php echo esc_attr($site->get_id()); ?>"><?php _e('Selected', 'wp-ultimo'); ?></span>
|
||||
<span v-if="$parent.template_id == <?php echo esc_attr($site->get_id()); ?>"><?php _e('Selected', 'wp-multisite-waas'); ?></span>
|
||||
|
||||
<span v-else><?php _e('Select', 'wp-ultimo'); ?></span>
|
||||
<span v-else><?php _e('Select', 'wp-multisite-waas'); ?></span>
|
||||
|
||||
</button>
|
||||
|
||||
@ -254,7 +254,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
|
||||
<p class="no-themes">
|
||||
|
||||
<?php _e('No Templates Found', 'wp-ultimo'); ?>
|
||||
<?php _e('No Templates Found', 'wp-multisite-waas'); ?>
|
||||
|
||||
</p>
|
||||
|
||||
|
@ -42,7 +42,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
:class="$parent.template_category === '' ? 'current wu-font-semibold' : ''"
|
||||
v-on:click.prevent="$parent.template_category = ''"
|
||||
>
|
||||
<?php _e('All', 'wp-ultimo'); ?>
|
||||
<?php _e('All', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@ -115,7 +115,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
|
||||
<a class="wu-site-template-selector" <?php echo $site_template->get_preview_url_attrs(); ?>>
|
||||
|
||||
<?php _e('View Template Preview', 'wp-ultimo'); ?>
|
||||
<?php _e('View Template Preview', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -127,7 +127,7 @@ $customer_sites = isset($customer_sites) ? array_map('intval', $customer_sites)
|
||||
|
||||
<a class="wu-site-template-selector" @click.prevent="" href="#">
|
||||
|
||||
<?php _e('Select this Template', 'wp-ultimo'); ?>
|
||||
<?php _e('Select this Template', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -49,7 +49,7 @@
|
||||
|
||||
<div class="wu-block wu-my-2">
|
||||
|
||||
<a href="mailto:<?php echo esc_attr($user->user_email); ?>" class="wu-no-underline" <?php echo wu_tooltip_text(__('Send an email to this customer.', 'wp-ultimo')); ?>>
|
||||
<a href="mailto:<?php echo esc_attr($user->user_email); ?>" class="wu-no-underline" <?php echo wu_tooltip_text(__('Send an email to this customer.', 'wp-multisite-waas')); ?>>
|
||||
<?php echo $user->user_email; ?>
|
||||
</a>
|
||||
|
||||
@ -62,16 +62,16 @@
|
||||
<a
|
||||
href="<?php echo \WP_Ultimo\User_Switching::get_instance()->render($user->ID); ?>"
|
||||
class="button wu-w-full <?php echo \WP_Ultimo\User_Switching::get_instance()->check_user_switching_is_activated() ? '' : 'wubox'; ?> wu-block wu-text-center"
|
||||
title="<?php echo \WP_Ultimo\User_Switching::get_instance()->check_user_switching_is_activated() ? '' : __('Install User Switching', 'wp-ultimo'); ?>"
|
||||
title="<?php echo \WP_Ultimo\User_Switching::get_instance()->check_user_switching_is_activated() ? '' : __('Install User Switching', 'wp-multisite-waas'); ?>"
|
||||
>
|
||||
<?php _e('Switch To →', 'wp-ultimo'); ?>
|
||||
<?php _e('Switch To →', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<button class="button wu-w-full" disabled="disabled">
|
||||
<span <?php echo wu_tooltip_text(__('Switching to your own account is not possible.', 'wp-ultimo')); ?>>
|
||||
<?php _e('Switch To →', 'wp-ultimo'); ?>
|
||||
<span <?php echo wu_tooltip_text(__('Switching to your own account is not possible.', 'wp-multisite-waas')); ?>>
|
||||
<?php _e('Switch To →', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</button>
|
||||
|
||||
@ -79,7 +79,7 @@
|
||||
|
||||
<a href="<?php echo get_edit_user_link($user->ID); ?>" target="_blank" class="wu-w-full wu-block wu-text-center wu-no-underline wu-mt-4">
|
||||
|
||||
<?php _e('Visit Profile →', 'wp-ultimo'); ?>
|
||||
<?php _e('Visit Profile →', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -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">|⟶ <?php esc_html_e('Other', 'wp-ultimo'); ?></td>
|
||||
<td class="wu-text-xs">|⟶ <?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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
<span class="wu-blinking-animation">
|
||||
|
||||
<?php _e('Loading...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
<span class="wu-blinking-animation">
|
||||
|
||||
<?php _e('Loading...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
<span class="wu-blinking-animation">
|
||||
|
||||
<?php _e('Loading...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -27,12 +27,12 @@
|
||||
<div class="wu-ml-auto">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('See More', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('See More', 'wp-multisite-waas'); ?>"
|
||||
class="wu-text-sm wu-no-underline button"
|
||||
href="<?php echo $element->get_manage_url($site->get_id()); ?>"
|
||||
>
|
||||
|
||||
<?php _e('See More', 'wp-ultimo'); ?>
|
||||
<?php _e('See More', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -60,8 +60,8 @@
|
||||
</div>
|
||||
|
||||
<div class="wu-text-sm wu-text-gray-600">
|
||||
<span class="wu-block"><?php _e('Your current plan', 'wp-ultimo'); ?></span>
|
||||
<!-- <a href="#" class="wu-no-underline"><?php _e('Manage →', 'wp-ultimo'); ?></a> -->
|
||||
<span class="wu-block"><?php _e('Your current plan', 'wp-multisite-waas'); ?></span>
|
||||
<!-- <a href="#" class="wu-no-underline"><?php _e('Manage →', 'wp-multisite-waas'); ?></a> -->
|
||||
</div>
|
||||
|
||||
</li>
|
||||
@ -75,14 +75,14 @@
|
||||
<div>
|
||||
|
||||
<strong class="wu-text-gray-800 wu-text-base">
|
||||
<?php printf(_n('%s day', '%s days', $site_trial, 'wp-ultimo'), $site_trial); ?>
|
||||
<?php printf(_n('%s day', '%s days', $site_trial, 'wp-multisite-waas'), $site_trial); ?>
|
||||
</strong>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="wu-text-sm wu-text-gray-600">
|
||||
<span class="wu-block"><?php _e('Remaining time in trial', 'wp-ultimo'); ?></span>
|
||||
<!-- <a href="#" class="wu-no-underline"><?php _e('Upgrade →', 'wp-ultimo'); ?></a> -->
|
||||
<span class="wu-block"><?php _e('Remaining time in trial', 'wp-multisite-waas'); ?></span>
|
||||
<!-- <a href="#" class="wu-no-underline"><?php _e('Upgrade →', 'wp-multisite-waas'); ?></a> -->
|
||||
</div>
|
||||
|
||||
</li>
|
||||
@ -113,8 +113,8 @@
|
||||
</div>
|
||||
|
||||
<div class="wu-text-sm wu-text-gray-600">
|
||||
<span class="wu-block"><?php _e('Disk space used', 'wp-ultimo'); ?></span>
|
||||
<!-- <a href="#" class="wu-no-underline"><?php _e('Upgrade →', 'wp-ultimo'); ?></a> -->
|
||||
<span class="wu-block"><?php _e('Disk space used', 'wp-multisite-waas'); ?></span>
|
||||
<!-- <a href="#" class="wu-no-underline"><?php _e('Upgrade →', 'wp-multisite-waas'); ?></a> -->
|
||||
</div>
|
||||
|
||||
</li>
|
||||
|
@ -11,11 +11,11 @@
|
||||
|
||||
<div v-if="loading"
|
||||
class="wu-text-center wu-bg-gray-100 wu-rounded wu-uppercase wu-font-semibold wu-text-xs wu-text-gray-700 wu-p-4">
|
||||
<span class="wu-blinking-animation"><?php _e('Loading...', 'wp-ultimo'); ?></span>
|
||||
<span class="wu-blinking-animation"><?php _e('Loading...', 'wp-multisite-waas'); ?></span>
|
||||
</div>
|
||||
|
||||
<div v-if='!queried.count && !loading' v-cloak class='wu-feed-loading wu-mb-6'>
|
||||
<?php _e('No more items to display', 'wp-ultimo'); ?>
|
||||
<?php _e('No more items to display', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<div v-if="!loading" class="wu-widget-inset">
|
||||
@ -58,7 +58,7 @@
|
||||
<div class="wu-flex wu-font-medium wu-text-gray-700 wu-truncate">
|
||||
<p class="wu-m-0 wu-p-0 wu-capitalize">{{ event.object_type }}</p>
|
||||
<p class="wu-p-0 wu-m-0 wu-ml-1 wu-font-normal wu-text-gray-600">
|
||||
<?php printf(__('with %s', 'wp-ultimo'), '{{ event.slug }}'); ?>
|
||||
<?php printf(__('with %s', 'wp-multisite-waas'), '{{ event.slug }}'); ?>
|
||||
</p>
|
||||
</div>
|
||||
<div class="wu-mt-1">
|
||||
@ -67,7 +67,7 @@
|
||||
<p class="wu-p-0 wu-m-0">
|
||||
<span v-html="event.message"></span>
|
||||
<span class="wu-text-gray-700 wu-ml-2"><span class="dashicons-wu-clock wu-mr-1 wu-align-middle"></span>{{ $moment(event.date_created, "YYYYMMDD").fromNow() }}</span>
|
||||
<span v-if="event.author.display_name" class="wu-text-gray-700"><?php printf(__('by %s', 'wp-ultimo'), '{{ event.author.display_name }}'); ?></span>
|
||||
<span v-if="event.author.display_name" class="wu-text-gray-700"><?php printf(__('by %s', 'wp-multisite-waas'), '{{ event.author.display_name }}'); ?></span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -91,17 +91,17 @@
|
||||
class='wu-feed-pagination wu-m-0 wu-flex wu-justify-between'>
|
||||
<li class="wu-w-1/3 wu-m-0">
|
||||
<a href="#" class="wu-block" v-on:click.prevent="refresh">
|
||||
<?php _e('Refresh', 'wp-ultimo'); ?>
|
||||
<?php _e('Refresh', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li v-if="page > 1" class="wu-w-1/3 wu-text-center wu-m-0">
|
||||
<a href="#" v-on:click.prevent="navigatePrev" class="wu-block">
|
||||
← <?php _e('Previous Page', 'wp-ultimo'); ?>
|
||||
← <?php _e('Previous Page', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li v-if="hasMore() && !loading" class="wu-w-1/3 wu-text-right wu-m-0">
|
||||
<a href="#" v-on:click.prevent="navigateNext" class="wu-block">
|
||||
<?php _e('Next Page', 'wp-ultimo'); ?>
|
||||
<?php _e('Next Page', 'wp-multisite-waas'); ?>
|
||||
→
|
||||
</a>
|
||||
</li>
|
||||
|
@ -29,12 +29,12 @@
|
||||
<div class="wu-ml-auto">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('Update Billing Address', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Update Billing Address', 'wp-multisite-waas'); ?>"
|
||||
class="wu-text-sm wu-no-underline wubox button"
|
||||
href="<?php echo $update_billing_address_link; ?>"
|
||||
>
|
||||
|
||||
<?php _e('Update', 'wp-ultimo'); ?>
|
||||
<?php _e('Update', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -49,7 +49,7 @@
|
||||
|
||||
<div class="wu-p-4 wu-bg-gray-100 wu-rounded">
|
||||
|
||||
<?php printf(__('No billing address found. Click <a title="%1$s" href="%2$s" class="wubox wu-no-underline">here</a> to add one.', 'wp-ultimo'), __('Update Billing Address', 'wp-ultimo'), $update_billing_address_link); ?>
|
||||
<?php printf(__('No billing address found. Click <a title="%1$s" href="%2$s" class="wubox wu-no-underline">here</a> to add one.', 'wp-multisite-waas'), __('Update Billing Address', 'wp-multisite-waas'), $update_billing_address_link); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -99,7 +99,7 @@
|
||||
|
||||
<h3 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo __('Payment Method', 'wp-ultimo'); ?>
|
||||
<?php echo __('Payment Method', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
@ -108,12 +108,12 @@
|
||||
<div class="wu-ml-auto">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('Update Billing Address', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Update Billing Address', 'wp-multisite-waas'); ?>"
|
||||
class="wu-text-sm wu-no-underline wubox button"
|
||||
href="<?php echo $update_billing_address_link; ?>"
|
||||
>
|
||||
|
||||
<?php _e('Update', 'wp-ultimo'); ?>
|
||||
<?php _e('Update', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
<span class="wu-text-xs wu-uppercase wu-font-bold wu-block">
|
||||
|
||||
<?php _e('Product Description:', 'wp-ultimo'); ?>
|
||||
<?php _e('Product Description:', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
|
||||
<span class="wu-text-xs wu-uppercase wu-font-bold wu-block">
|
||||
|
||||
<?php _e('Product Characteristics:', 'wp-ultimo'); ?>
|
||||
<?php _e('Product Characteristics:', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -27,12 +27,12 @@
|
||||
<div class="wu-ml-auto">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('Update your membership', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Update your membership', 'wp-multisite-waas'); ?>"
|
||||
class="wu-text-sm wu-no-underline button"
|
||||
href="<?php echo esc_attr(wu_get_membership_update_url($membership)); ?>"
|
||||
>
|
||||
|
||||
<?php esc_html_e('Change', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Change', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -93,7 +93,7 @@
|
||||
|
||||
<div class="wu-bg-yellow-200 wu-text-yellow-700 wu-rounded wu-p-2">
|
||||
|
||||
<?php printf(__("There's a pending change for this membership, scheduled to take place on <strong>%1\$s</strong>. Changing to <strong>%2\$s</strong>.", 'wp-ultimo'), $pending_change_date, $pending_change); ?>
|
||||
<?php printf(__("There's a pending change for this membership, scheduled to take place on <strong>%1\$s</strong>. Changing to <strong>%2\$s</strong>.", 'wp-multisite-waas'), $pending_change_date, $pending_change); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<div class="sm:wu-col-span-1">
|
||||
|
||||
<div class="wu-text-sm wu-font-medium wu-text-gray-600">
|
||||
<?php _e('Status', 'wp-ultimo'); ?>
|
||||
<?php _e('Status', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<div class="wu-mt-1 wu-text-sm wu-text-gray-900 wu-mb-4">
|
||||
@ -134,7 +134,7 @@
|
||||
<div class="sm:wu-col-span-1">
|
||||
|
||||
<div class="wu-text-sm wu-font-medium wu-text-gray-600">
|
||||
<?php _e('Initial Amount', 'wp-ultimo'); ?>
|
||||
<?php _e('Initial Amount', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<div class="wu-mt-1 wu-text-sm wu-text-gray-900 wu-mb-4">
|
||||
@ -148,7 +148,7 @@
|
||||
<div class="sm:wu-col-span-1">
|
||||
|
||||
<div class="wu-text-sm wu-font-medium wu-text-gray-600">
|
||||
<?php _e('Times Billed', 'wp-ultimo'); ?>
|
||||
<?php _e('Times Billed', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<div class="wu-mt-1 wu-text-sm wu-text-gray-900 wu-mb-4">
|
||||
@ -164,7 +164,7 @@
|
||||
<div class="sm:wu-col-span-1">
|
||||
|
||||
<div class="wu-text-sm wu-font-medium wu-text-gray-600">
|
||||
<?php _e('Expires', 'wp-ultimo'); ?>
|
||||
<?php _e('Expires', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<div class="wu-mt-1 wu-text-sm wu-text-gray-900 wu-mb-4">
|
||||
@ -226,7 +226,7 @@
|
||||
|
||||
<h3 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo __('Additional Packages & Services', 'wp-ultimo'); ?>
|
||||
<?php echo __('Additional Packages & Services', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
@ -268,7 +268,7 @@
|
||||
<div class="wu-ml-4 wu-flex-shrink-0 wu-flex">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('Product Details', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Product Details', 'wp-multisite-waas'); ?>"
|
||||
href="
|
||||
<?php
|
||||
echo esc_attr(
|
||||
@ -285,14 +285,14 @@
|
||||
class="wubox wu-ml-4 wu-no-underline"
|
||||
>
|
||||
|
||||
<?php esc_html_e('Details', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Details', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
<?php if ($addon['product']->is_recurring() && (! $pending_products || wu_get_isset($pending_products, $addon['product']->get_id()))) : ?>
|
||||
|
||||
<a <?php // Translators: %s is the name of the product being canceled. ?>
|
||||
title="<?php esc_attr(sprintf(__('Cancel %s', 'wp-ultimo'), $addon['product']->get_name())); ?>"
|
||||
title="<?php esc_attr(sprintf(__('Cancel %s', 'wp-multisite-waas'), $addon['product']->get_name())); ?>"
|
||||
href="
|
||||
<?php
|
||||
echo esc_attr(
|
||||
@ -310,7 +310,7 @@
|
||||
class="wubox wu-ml-4 wu-no-underline delete wu-text-red-500 hover:wu-text-red-600"
|
||||
>
|
||||
|
||||
<?php esc_html_e('Cancel', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Cancel', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -329,7 +329,7 @@
|
||||
<?php else : ?>
|
||||
|
||||
<div class="wu-px-4 wu-py-6 wu-text-center wu-text-gray-600">
|
||||
<?php esc_html_e('No packages or services found.', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('No packages or services found.', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -344,7 +344,7 @@
|
||||
<div class="wu-text-lg">
|
||||
|
||||
<small class="wu-block wu-text-xs wu-uppercase wu-font-bold wu-text-gray-600">
|
||||
<?php esc_html_e('Total', 'wp-ultimo'); ?>
|
||||
<?php esc_html_e('Total', 'wp-multisite-waas'); ?>
|
||||
</small>
|
||||
|
||||
<!-- <span class="wu-text-gray-500 wu-line-through">$29</span> -->
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
<nav
|
||||
class="wu-border wu-rounded wu-border-solid wu-flex wu-px-4 <?php echo wu_env_picker('wu-border-gray-300', 'wu-border-gray-400'); ?>"
|
||||
aria-label="<?php esc_attr_e('Breadcrumb', 'wp-ultimo'); ?>"
|
||||
aria-label="<?php esc_attr_e('Breadcrumb', 'wp-multisite-waas'); ?>"
|
||||
>
|
||||
|
||||
<ol class="wu-p-0 wu-m-0 wu-w-full wu-mx-auto wu-flex">
|
||||
@ -42,7 +42,7 @@
|
||||
<path d="M.293 0l22 22-22 22h1.414l22-22-22-22H.293z" />
|
||||
</svg>
|
||||
<a href="<?php echo esc_url($my_sites_url); ?>" class="wu-mx-4 wu-text-sm wu-font-medium wu-text-gray-500 hover:wu-text-gray-700 wu-no-underline">
|
||||
<?php _e('Your Sites', 'wp-ultimo'); ?>
|
||||
<?php _e('Your Sites', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</div>
|
||||
</li>
|
||||
@ -78,7 +78,7 @@
|
||||
style="max-width: <?php echo esc_attr($screenshot_size); ?>px;"
|
||||
class="wu-w-full wu-rounded wu-border wu-border-solid <?php echo wu_env_picker('wu-border-gray-300', 'wu-border-gray-400'); ?>"
|
||||
src="<?php echo $current_site->get_featured_image(); ?>"
|
||||
alt="<?php printf(esc_attr__('Site Image: %s', 'wp-ultimo'), $current_site->get_title()); ?>"
|
||||
alt="<?php printf(esc_attr__('Site Image: %s', 'wp-multisite-waas'), $current_site->get_title()); ?>"
|
||||
>
|
||||
|
||||
</div>
|
||||
|
@ -24,9 +24,9 @@
|
||||
|
||||
<div class="wu-ml-auto">
|
||||
|
||||
<a title="<?php _e('Add Domain', 'wp-ultimo'); ?>" href="<?php echo $modal['url']; ?>" class="wu-text-sm wu-no-underline wubox button">
|
||||
<a title="<?php _e('Add Domain', 'wp-multisite-waas'); ?>" href="<?php echo $modal['url']; ?>" class="wu-text-sm wu-no-underline wubox button">
|
||||
|
||||
<?php _e('Add Domain', 'wp-ultimo'); ?>
|
||||
<?php _e('Add Domain', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -57,7 +57,7 @@
|
||||
$label = $item->get_stage_label();
|
||||
|
||||
if ( ! $item->is_active()) {
|
||||
$label = sprintf('%s <small>(%s)</small>', $label, __('Inactive', 'wp-ultimo'));
|
||||
$label = sprintf('%s <small>(%s)</small>', $label, __('Inactive', 'wp-multisite-waas'));
|
||||
} // end if;
|
||||
|
||||
$class = $item->get_stage_class();
|
||||
@ -72,7 +72,7 @@
|
||||
'icon' => 'dashicons-wu-edit1 wu-align-middle wu-mr-1',
|
||||
'label' => '',
|
||||
'url' => $domain['primary_link'],
|
||||
'value' => __('Make Primary', 'wp-ultimo'),
|
||||
'value' => __('Make Primary', 'wp-multisite-waas'),
|
||||
];
|
||||
} // end if;
|
||||
|
||||
@ -80,7 +80,7 @@
|
||||
'wrapper_classes' => 'wu-text-red-500 wubox',
|
||||
'icon' => 'dashicons-wu-trash-2 wu-align-middle wu-mr-1',
|
||||
'label' => '',
|
||||
'value' => __('Delete', 'wp-ultimo'),
|
||||
'value' => __('Delete', 'wp-multisite-waas'),
|
||||
'url' => $domain['delete_link'],
|
||||
];
|
||||
|
||||
@ -96,13 +96,13 @@
|
||||
'wrapper_classes' => $item->is_primary_domain() ? 'wu-text-blue-600' : '',
|
||||
'icon' => $item->is_primary_domain() ? 'dashicons-wu-filter_1 wu-align-text-bottom wu-mr-1' : 'dashicons-wu-plus-square wu-align-text-bottom wu-mr-1',
|
||||
'label' => '',
|
||||
'value' => $item->is_primary_domain() ? __('Primary', 'wp-ultimo') . wu_tooltip(__('All other mapped domains will redirect to the primary domain.', 'wp-ultimo'), 'dashicons-editor-help wu-align-middle wu-ml-1') : __('Alias', 'wp-ultimo'),
|
||||
'value' => $item->is_primary_domain() ? __('Primary', 'wp-multisite-waas') . wu_tooltip(__('All other mapped domains will redirect to the primary domain.', 'wp-multisite-waas'), 'dashicons-editor-help wu-align-middle wu-ml-1') : __('Alias', 'wp-multisite-waas'),
|
||||
],
|
||||
'secure' => [
|
||||
'wrapper_classes' => $item->is_secure() ? 'wu-text-green-500' : '',
|
||||
'icon' => $item->is_secure() ? 'dashicons-wu-lock1 wu-align-text-bottom wu-mr-1' : 'dashicons-wu-lock1 wu-align-text-bottom wu-mr-1',
|
||||
'label' => '',
|
||||
'value' => $item->is_secure() ? __('Secure (HTTPS)', 'wp-ultimo') : __('Not Secure (HTTP)', 'wp-ultimo'),
|
||||
'value' => $item->is_secure() ? __('Secure (HTTPS)', 'wp-multisite-waas') : __('Not Secure (HTTP)', 'wp-multisite-waas'),
|
||||
],
|
||||
],
|
||||
$second_row_actions
|
||||
@ -119,7 +119,7 @@
|
||||
<?php else : ?>
|
||||
|
||||
<div class="wu-text-center wu-bg-gray-100 wu-rounded wu-uppercase wu-font-semibold wu-text-xs wu-text-gray-700 wu-p-4 wu-m-4 wu-mt-6">
|
||||
<span><?php echo __('No domains added.', 'wp-ultimo'); ?></span>
|
||||
<span><?php echo __('No domains added.', 'wp-multisite-waas'); ?></span>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
|
@ -12,11 +12,11 @@
|
||||
<div class="wu-w-full sm:wu-w-8/12">
|
||||
|
||||
<span class="wu-block wu-my-1 wu-text-base wu-font-semibold wu-text-gray-700">
|
||||
<?php _e('Your network is taking shape!', 'wp-ultimo'); ?>
|
||||
<?php _e('Your network is taking shape!', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<span class="wu-block wu-my-1 wu-text-gray-600">
|
||||
<?php _e('Here are the next steps to keep you on that streak!', 'wp-ultimo'); ?>
|
||||
<?php _e('Here are the next steps to keep you on that streak!', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -24,7 +24,7 @@
|
||||
<div class="wu-w-4/12 wu-text-right wu-hidden sm:wu-inline-block">
|
||||
|
||||
<span class="wu-inline-block wu-bg-green-100 wu-text-center wu-align-middle wu-p-2 wu-font-mono wu-px-3 wu-border wu-border-green-300 wu-text-green-700 wu-border-solid wu-rounded">
|
||||
<?php echo $percentage . '% ' . __('done', 'wp-ultimo'); ?>
|
||||
<?php echo $percentage . '% ' . __('done', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -92,7 +92,7 @@ endforeach;
|
||||
class="button wu-text-center hide-postbox-tog"
|
||||
id="wp-ultimo-setup-hide"
|
||||
>
|
||||
<?php _e('Dismiss', 'wp-ultimo'); ?>
|
||||
<?php _e('Dismiss', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
@ -47,15 +47,15 @@
|
||||
|
||||
</a>',
|
||||
$payment->get_invoice_url(),
|
||||
esc_attr__('Download Invoice', 'wp-ultimo')
|
||||
esc_attr__('Download Invoice', 'wp-multisite-waas')
|
||||
);
|
||||
|
||||
$payment_column = $payment->get_status() === 'pending' ? [
|
||||
'pay_now' => [
|
||||
'url' => add_query_arg(['payment' => $payment->get_hash()], wu_get_registration_url()),
|
||||
'icon' => 'dashicons-wu-credit-card wu-align-middle wu-mr-1',
|
||||
'label' => __('Go to payment', 'wp-ultimo'),
|
||||
'value' => __('Pay Now', 'wp-ultimo'),
|
||||
'label' => __('Go to payment', 'wp-multisite-waas'),
|
||||
'value' => __('Pay Now', 'wp-multisite-waas'),
|
||||
],
|
||||
] : [];
|
||||
|
||||
|
@ -74,7 +74,7 @@
|
||||
|
||||
<?php echo $post_count; ?>
|
||||
/
|
||||
<?php echo empty($post_type_limits->{$post_type_slug}->number) ? __('Unlimited', 'wp-ultimo') : $post_type_limits->{$post_type_slug}->number; ?>
|
||||
<?php echo empty($post_type_limits->{$post_type_slug}->number) ? __('Unlimited', 'wp-multisite-waas') : $post_type_limits->{$post_type_slug}->number; ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -113,9 +113,9 @@ endforeach;
|
||||
|
||||
<div class="">
|
||||
|
||||
<?php _e('Unique Visits', 'wp-ultimo'); ?>
|
||||
<?php _e('Unique Visits', 'wp-multisite-waas'); ?>
|
||||
|
||||
<?php echo wu_tooltip(sprintf(__('Next Reset: %s', 'wp-ultimo'), date_i18n(get_option('date_format', 'd/m/Y'), strtotime('last day of this month')))); ?>
|
||||
<?php echo wu_tooltip(sprintf(__('Next Reset: %s', 'wp-multisite-waas'), date_i18n(get_option('date_format', 'd/m/Y'), strtotime('last day of this month')))); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -129,7 +129,7 @@ endforeach;
|
||||
|
||||
<?php echo number_format($visits_count); ?>
|
||||
/
|
||||
<?php echo $visit_limitations->get_limit() == 0 ? __('Unlimited', 'wp-ultimo') : number_format((int) $visit_limitations->get_limit()); ?>
|
||||
<?php echo $visit_limitations->get_limit() == 0 ? __('Unlimited', 'wp-multisite-waas') : number_format((int) $visit_limitations->get_limit()); ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
<?php
|
||||
|
||||
// translators: 1$s is the display name of the user currently logged in.
|
||||
printf(__('Not %1$s? <a href="%2$s" class="wu-no-underline">Log in</a> using your account.', 'wp-ultimo'), wp_get_current_user()->display_name, $login_url);
|
||||
printf(__('Not %1$s? <a href="%2$s" class="wu-no-underline">Log in</a> using your account.', 'wp-multisite-waas'), wp_get_current_user()->display_name, $login_url);
|
||||
|
||||
?>
|
||||
|
||||
@ -44,12 +44,12 @@
|
||||
<div class="wu-ml-auto">
|
||||
|
||||
<a
|
||||
title="<?php esc_attr_e('Update Billing Address', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Update Billing Address', 'wp-multisite-waas'); ?>"
|
||||
class="wu-text-sm wu-no-underline button"
|
||||
href="<?php echo wu_get_registration_url(); ?>"
|
||||
>
|
||||
|
||||
<?php _e('Create an Account', 'wp-ultimo'); ?>
|
||||
<?php _e('Create an Account', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -52,7 +52,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
<span
|
||||
class="wu-shadow-sm wu-inline-flex wu-items-center wu-px-2 wu-py-1 wu-rounded wu-text-sm wu-font-medium wu-bg-purple-200 wu-text-purple-700"
|
||||
>
|
||||
<?php echo __('Pending', 'wp-ultimo'); ?>
|
||||
<?php echo __('Pending', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -69,7 +69,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
|
||||
<span
|
||||
class="wu-shadow-sm wu-inline-flex wu-items-center wu-px-2 wu-py-1 wu-rounded wu-text-sm wu-font-medium wu-bg-gray-800 wu-text-gray-300">
|
||||
<?php _e('Primary', 'wp-ultimo'); ?>
|
||||
<?php _e('Primary', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -87,7 +87,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
<img
|
||||
class="wu-h-48 wu-w-full wu-object-cover wu-block"
|
||||
src="<?php echo $site->get_featured_image(); ?>"
|
||||
alt="<?php printf(esc_attr__('Site Image: %s', 'wp-ultimo'), $site->get_title()); ?>"
|
||||
alt="<?php printf(esc_attr__('Site Image: %s', 'wp-multisite-waas'), $site->get_title()); ?>"
|
||||
style="background-color: rgba(255, 255, 255, 0.5)"
|
||||
>
|
||||
|
||||
@ -106,7 +106,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
<?php if ($site->get_id()) : ?>
|
||||
<a href="<?php echo esc_attr($site->get_active_site_url()); ?>" class="wu-block wu-no-underline">
|
||||
|
||||
<span class="wu-text-base wu-font-semibold wu-text-gray-800 wu-block" <?php echo wu_tooltip_text(__('Visit Site', 'wp-ultimo')); ?>>
|
||||
<span class="wu-text-base wu-font-semibold wu-text-gray-800 wu-block" <?php echo wu_tooltip_text(__('Visit Site', 'wp-multisite-waas')); ?>>
|
||||
<?php echo $site->get_title(); ?> <span class="wu-text-sm dashicons-wu-popup"></span>
|
||||
</span>
|
||||
|
||||
@ -139,7 +139,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
<li class="wu-block wu-my-2">
|
||||
<span
|
||||
class="wu-w-full wu-no-underline <?php echo wu_env_picker('wu-text-sm', 'button button-primary button-disabled'); ?>">
|
||||
<?php _e('Current Site', 'wp-ultimo'); ?>
|
||||
<?php _e('Current Site', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
@ -148,7 +148,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
<li class="wu-block wu-my-2">
|
||||
<a href="<?php echo esc_url($element->get_manage_url($site->get_id(), $site_manage_type, $custom_manage_page)); ?>"
|
||||
class="wu-w-full wu-no-underline <?php echo wu_env_picker('wu-text-sm', 'button button-primary'); ?>">
|
||||
<?php _e('Manage', 'wp-ultimo'); ?>
|
||||
<?php _e('Manage', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@ -170,7 +170,7 @@ $show_add_new = apply_filters('wp_ultimo_my_sites_show_add_new', $show_add_new);
|
||||
|
||||
<span class="wu-text-center wu-p-8">
|
||||
<span class="wu-text-3xl dashicons-wu-circle-with-plus"></span>
|
||||
<span class="wu-text-lg wu-mt-2 wu-block"><?php _e('Add new Site', 'wp-ultimo'); ?></span>
|
||||
<span class="wu-text-lg wu-mt-2 wu-block"><?php _e('Add new Site', 'wp-multisite-waas'); ?></span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
<h3 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo __('Actions', 'wp-ultimo'); ?>
|
||||
<?php echo __('Actions', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
@ -61,7 +61,7 @@
|
||||
|
||||
<h3 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo __('Danger Zone', 'wp-ultimo'); ?>
|
||||
<?php echo __('Danger Zone', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
|
@ -20,12 +20,12 @@
|
||||
</div>
|
||||
|
||||
<div class="wu-text-md wu-text-gray-600">
|
||||
<span class="wu-block"><?php _e('Signups today', 'wp-ultimo'); ?></span>
|
||||
<span class="wu-block"><?php _e('Signups today', 'wp-multisite-waas'); ?></span>
|
||||
</div>
|
||||
|
||||
</li>
|
||||
|
||||
<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>
|
||||
|
||||
@ -36,7 +36,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>
|
||||
@ -52,7 +52,7 @@
|
||||
</div>
|
||||
|
||||
<div class="wu-text-md wu-text-gray-600">
|
||||
<span class="wu-block"><?php _e('Today\'s gross revenue', 'wp-ultimo'); ?></span>
|
||||
<span class="wu-block"><?php _e('Today\'s gross revenue', 'wp-multisite-waas'); ?></span>
|
||||
</div>
|
||||
|
||||
</li>
|
||||
|
@ -45,7 +45,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Order ID', 'wp-ultimo'); ?>
|
||||
<?php _e('Order ID', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -69,7 +69,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Email', 'wp-ultimo'); ?>
|
||||
<?php _e('Email', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -87,7 +87,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Total', 'wp-ultimo'); ?>
|
||||
<?php _e('Total', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -141,7 +141,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Order ID', 'wp-ultimo'); ?>
|
||||
<?php _e('Order ID', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -159,7 +159,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Date', 'wp-ultimo'); ?>
|
||||
<?php _e('Date', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -177,7 +177,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Email', 'wp-ultimo'); ?>
|
||||
<?php _e('Email', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -195,7 +195,7 @@
|
||||
|
||||
<span class="wu-uppercase wu-text-sm wu-block">
|
||||
|
||||
<?php _e('Total', 'wp-ultimo'); ?>
|
||||
<?php _e('Total', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -227,7 +227,7 @@
|
||||
|
||||
<h4 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo _e('Site', 'wp-ultimo'); ?>
|
||||
<?php echo _e('Site', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h4>
|
||||
|
||||
@ -277,7 +277,7 @@
|
||||
<?php else : ?>
|
||||
|
||||
<span class="wu-align-middle wu-inline-block wu-rounded wu-px-2 wu-py-1 wu-uppercase wu-text-xs wu-font-bold wu-bg-green-300 wu-text-green-700">
|
||||
<?php _e('Ready!', 'wp-ultimo'); ?>
|
||||
<?php _e('Ready!', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -302,23 +302,23 @@
|
||||
|
||||
<a v-if="!creating" href="<?php echo wu_get_current_url(); ?>" class="wu-block sm:wu-inline-block wu-no-underline">
|
||||
<span class="dashicons-wu-cycle wu-align-middle wu-mr-1"></span>
|
||||
<?php _e('Check Status', 'wp-ultimo'); ?>
|
||||
<?php _e('Check Status', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
<div v-else class="wu-block sm:wu-inline-block wu-no-underline">
|
||||
<span class="dashicons-wu-loader wu-align-middle wu-mr-1 wu-spin" style="display: inline-block;"></span>
|
||||
<?php _e('Creating', 'wp-ultimo'); ?>
|
||||
<?php _e('Creating', 'wp-multisite-waas'); ?>
|
||||
</div>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<a href="<?php echo esc_attr(get_admin_url($site->get_id())); ?>" class="wu-block sm:wu-inline-block wu-no-underline sm:wu-mr-4">
|
||||
<span class="dashicons-wu-gauge wu-align-middle wu-mr-1"></span>
|
||||
<?php _e('Admin Panel', 'wp-ultimo'); ?>
|
||||
<?php _e('Admin Panel', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<a href="<?php echo esc_attr(wu_with_sso(get_site_url($site->get_id()))); ?>" class="wu-block sm:wu-inline-block wu-no-underline" target="_blank">
|
||||
<span class="dashicons-wu-browser wu-align-middle wu-mr-1"></span>
|
||||
<?php _e('Visit', 'wp-ultimo'); ?>
|
||||
<?php _e('Visit', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -357,7 +357,7 @@
|
||||
|
||||
<h4 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo _e('Order Details', 'wp-ultimo'); ?>
|
||||
<?php echo _e('Order Details', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h4>
|
||||
|
||||
@ -374,8 +374,8 @@
|
||||
<thead class="wu-bg-gray-100">
|
||||
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Product', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Total', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Product', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Total', 'wp-multisite-waas'); ?></th>
|
||||
</tr>
|
||||
|
||||
</thead>
|
||||
@ -404,21 +404,21 @@
|
||||
<tfoot class="wu-bg-gray-100">
|
||||
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Subtotal', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Subtotal', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php echo wu_format_currency($payment->get_subtotal(), $payment->get_currency()); ?></th>
|
||||
</tr>
|
||||
|
||||
<?php foreach ($payment->get_tax_breakthrough() as $rate => $total) : ?>
|
||||
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php printf(__('Tax (%s%%)', 'wp-ultimo'), $rate); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php printf(__('Tax (%s%%)', 'wp-multisite-waas'), $rate); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php echo wu_format_currency($total, $payment->get_currency()); ?></th>
|
||||
</tr>
|
||||
|
||||
<?php endforeach; ?>
|
||||
|
||||
<tr>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Total', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php _e('Total', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-text-left wu-py-2 wu-px-4"><?php echo wu_format_currency($payment->get_total(), $payment->get_currency()); ?></th>
|
||||
</tr>
|
||||
|
||||
@ -442,7 +442,7 @@
|
||||
|
||||
<h4 class="wu-m-0 <?php echo wu_env_picker('', 'wu-widget-title'); ?>">
|
||||
|
||||
<?php echo _e('Billing Address', 'wp-ultimo'); ?>
|
||||
<?php echo _e('Billing Address', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h4>
|
||||
|
||||
|
@ -11,10 +11,10 @@
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="wu-w-4/12"><?php _e('Host', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-w-2/12"><?php _e('Type', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-w-4/12"><?php _e('IP / Target', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-w-2/12"><?php _e('TTL', 'wp-ultimo'); ?></th>
|
||||
<th class="wu-w-4/12"><?php _e('Host', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-w-2/12"><?php _e('Type', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-w-4/12"><?php _e('IP / Target', 'wp-multisite-waas'); ?></th>
|
||||
<th class="wu-w-2/12"><?php _e('TTL', 'wp-multisite-waas'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
<td colspan="4">
|
||||
|
||||
<?php _e('Loading DNS entries...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading DNS entries...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</td>
|
||||
|
||||
@ -70,7 +70,7 @@
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="2"><?php _e('Your Network IP', 'wp-ultimo'); ?></td>
|
||||
<td colspan="2"><?php _e('Your Network IP', 'wp-multisite-waas'); ?></td>
|
||||
<td colspan="2" class="wu-text-left">{{ results.network_ip }}</td>
|
||||
</tr>
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
<div id="wu-domain-log" class="">
|
||||
|
||||
<pre id="content" class="wu-overflow-auto wu-p-4 wu-m-0 wu-mt-3 wu-rounded wu-content-center wu-bg-gray-800 wu-text-white wu-font-mono wu-border wu-border-solid wu-border-gray-300 wu-max-h-screen wu-overflow-y-auto">
|
||||
<?php _e('Loading log contents...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading log contents...', 'wp-multisite-waas'); ?>
|
||||
</pre>
|
||||
|
||||
</div>
|
||||
@ -16,7 +16,7 @@
|
||||
<div class="wu-box-border wu-p-4 wu-border-t wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-300 wu-border-solid wu-bg-gray-200 wu-text-right wu--mx-3 wu-mt-3 wu--mb-3 wu-relative wu-overflow-hidden">
|
||||
|
||||
<button id="refresh-logs" type="submit" name="submit_button" value="refresh-logs" class="button wu-float-right">
|
||||
<?php _e('Refresh Logs', 'wp-ultimo'); ?>
|
||||
<?php _e('Refresh Logs', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
<div class="wu-p-2 wu-border wu-border-solid wu-border-gray-400 wu-border-t-0 wu-border-l-0 wu-border-r-0 wu-bg-gray-100">
|
||||
|
||||
<input class="wu-w-full wu-border-gray-400" type="text" placeholder="<?php _e('Search Placeholders', 'wp-ultimo'); ?>" v-model="search" />
|
||||
<input class="wu-w-full wu-border-gray-400" type="text" placeholder="<?php _e('Search Placeholders', 'wp-multisite-waas'); ?>" v-model="search" />
|
||||
|
||||
</div>
|
||||
|
||||
@ -27,13 +27,13 @@
|
||||
|
||||
<th style="width: 30%;">
|
||||
|
||||
<?php echo __('Name', 'wp-ultimo'); ?>
|
||||
<?php echo __('Name', 'wp-multisite-waas'); ?>
|
||||
|
||||
</th>
|
||||
|
||||
<th style="width: 30%;">
|
||||
|
||||
<?php echo __('Placeholder', 'wp-ultimo'); ?>
|
||||
<?php echo __('Placeholder', 'wp-multisite-waas'); ?>
|
||||
|
||||
</th>
|
||||
|
||||
@ -57,7 +57,7 @@
|
||||
|
||||
<td class="wu-align-middle wu-text-xs">
|
||||
|
||||
<a @click.prevent="" <?php echo wu_tooltip_text(__('Copy', 'wp-ultimo')); ?> class="wu-no-underline wp-ui-text-highlight wu-copy" href="#" data-clipboard-action="copy" :data-clipboard-target="'#payload_event_placeholder_' + placeholder.placeholder">
|
||||
<a @click.prevent="" <?php echo wu_tooltip_text(__('Copy', 'wp-multisite-waas')); ?> class="wu-no-underline wp-ui-text-highlight wu-copy" href="#" data-clipboard-action="copy" :data-clipboard-target="'#payload_event_placeholder_' + placeholder.placeholder">
|
||||
|
||||
<span class="dashicons-wu-copy wu-align-middle"></span>
|
||||
|
||||
|
@ -5,132 +5,132 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<p><?php _e('Hey there', 'wp-ultimo'); ?></p>
|
||||
<p><?php _e('Hey there', 'wp-multisite-waas'); ?></p>
|
||||
|
||||
<p><?php printf(__('A new domain, %2$s, was added to the site %3$s.', 'wp-ultimo'), '{{customer_name}}', '{{domain_domain}}', '{{site_title}}'); ?></p>
|
||||
<p><?php printf(__('A new domain, %2$s, was added to the site %3$s.', 'wp-multisite-waas'), '{{customer_name}}', '{{domain_domain}}', '{{site_title}}'); ?></p>
|
||||
|
||||
<h2><b><?php _e('Domain', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Domain', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Domain', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Domain', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{domain_domain}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{domain_admin_url}}" style="text-decoration: none;" rel="nofollow">{{domain_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Domain Stage', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Domain Stage', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<code>{{domain_stage}}</code>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Active', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Active', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<code>{{domain_active}}</code>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Primary', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Primary', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<code>{{domain_primary}}</code>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Secure', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Secure', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<code>{{domain_secure}}</code>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{domain_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Domain →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{domain_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Domain →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2><b><?php _e('Site', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Site', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Title', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Title', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{site_title}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow">{{site_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site URL', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site URL', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Site →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Site →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Admin Panel →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Admin Panel →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Site Management →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Site Management →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2><b><?php _e('Membership', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Membership', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Amount', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Amount', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{membership_description}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Initial Amount', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Initial Amount', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{membership_initial_amount}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow">{{membership_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow">{{membership_reference_code}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Expiration', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Expiration', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">{{membership_date_expiration}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Membership →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Membership →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -5,153 +5,153 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<p><?php _e('Hey there', 'wp-ultimo'); ?></p>
|
||||
<p><?php _e('Hey there', 'wp-multisite-waas'); ?></p>
|
||||
|
||||
<p><?php printf(__('We have great news! You received %1$s from %2$s (%3$s) for %4$s.', 'wp-ultimo'), '{{payment_total}}', '{{customer_name}}', '{{customer_user_email}}', '{{payment_product_names}}'); ?></p>
|
||||
<p><?php printf(__('We have great news! You received %1$s from %2$s (%3$s) for %4$s.', 'wp-multisite-waas'), '{{payment_total}}', '{{customer_name}}', '{{customer_user_email}}', '{{payment_product_names}}'); ?></p>
|
||||
|
||||
<p><a href="{{payment_invoice_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Download Invoice', 'wp-ultimo'); ?></a></p>
|
||||
<p><a href="{{payment_invoice_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Download Invoice', 'wp-multisite-waas'); ?></a></p>
|
||||
|
||||
<h2><b><?php _e('Payment', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Payment', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Products', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Products', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{payment_product_names}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Subtotal', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Subtotal', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_subtotal}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Tax', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Tax', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_tax_total}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Total', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Total', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_total}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Paid with', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Paid with', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">{{payment_gateway}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{payment_manage_url}}" style="text-decoration: none;" rel="nofollow">{{payment_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{payment_manage_url}}" style="text-decoration: none;" rel="nofollow">{{payment_reference_code}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Processed at', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Processed at', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">{{payment_date_created}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9;"><b><?php _e('Invoice', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9;"><b><?php _e('Invoice', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{payment_invoice_url}}" style="text-decoration: none;" rel="nofollow">
|
||||
<?php _e('Download PDF', 'wp-ultimo'); ?>
|
||||
<?php _e('Download PDF', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Type', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Type', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">Initial Payment</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{payment_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Payment →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{payment_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Payment →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2><b><?php _e('Membership', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Membership', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Amount', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Amount', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{membership_description}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Initial Amount', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Initial Amount', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{membership_initial_amount}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow">{{membership_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow">{{membership_reference_code}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Expiration', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Expiration', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">{{membership_date_expiration}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Membership →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Membership →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2><b><?php _e('Customer', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Customer', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Customer', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Customer', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{customer_avatar}}<br />
|
||||
{{customer_name}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Email Address', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Email Address', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="mailto:{{customer_user_email}}" style="text-decoration: none;" rel="nofollow">{{customer_user_email}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{customer_manage_url}}" style="text-decoration: none;" rel="nofollow">{{customer_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Billing Address', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Billing Address', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">{{customer_billing_address}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{customer_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Customer →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{customer_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Customer →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -5,119 +5,119 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<p><?php _e('Hey there', 'wp-ultimo'); ?></p>
|
||||
<p><?php _e('Hey there', 'wp-multisite-waas'); ?></p>
|
||||
|
||||
<p><?php printf(__('A new website, <b>%1$s</b> (%2$s), was created successfully on your network!', 'wp-ultimo'), '{{site_title}}', '<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow">{{site_url}}</a>'); ?></p>
|
||||
<p><?php printf(__('A new website, <b>%1$s</b> (%2$s), was created successfully on your network!', 'wp-multisite-waas'), '{{site_title}}', '<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow">{{site_url}}</a>'); ?></p>
|
||||
|
||||
<h2><b><?php _e('Site', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Site', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Title', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Title', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{site_title}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow">{{site_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site URL', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site URL', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Site →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Site →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Site Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Admin Panel →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Admin Panel →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Site Management →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Site Management →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2><b><?php _e('Membership', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Membership', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Amount', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Amount', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{membership_description}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Initial Amount', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Initial Amount', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{membership_initial_amount}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow">{{membership_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Reference Code', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow">{{membership_reference_code}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Expiration', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Expiration', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">{{membership_date_expiration}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Membership →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{membership_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Membership →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2><b><?php _e('Customer', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Customer', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Customer', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Customer', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{customer_avatar}}<br />
|
||||
{{customer_name}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Email Address', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Email Address', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="mailto:{{customer_user_email}}" style="text-decoration: none;" rel="nofollow">{{customer_user_email}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('ID', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{customer_manage_url}}" style="text-decoration: none;" rel="nofollow">{{customer_id}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Billing Address', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Billing Address', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">{{customer_billing_address}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{customer_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Customer →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{customer_manage_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Go to Customer →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -5,14 +5,14 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<p><?php printf(__('Hey %s,', 'wp-ultimo'), '{{customer_name}}'); ?></p>
|
||||
<p><?php printf(__('Hey %s,', 'wp-multisite-waas'), '{{customer_name}}'); ?></p>
|
||||
|
||||
<p><?php printf(__('Thanks for creating an account! You\'re only a step away from being ready.', 'wp-ultimo')); ?></p>
|
||||
<p><?php printf(__('Thanks for creating an account! You\'re only a step away from being ready.', 'wp-multisite-waas')); ?></p>
|
||||
|
||||
<p><?php printf(__('In order to complete the activation of your account, you need to confirm your email address by clicking on the link below.', 'wp-ultimo')); ?></p>
|
||||
<p><?php printf(__('In order to complete the activation of your account, you need to confirm your email address by clicking on the link below.', 'wp-multisite-waas')); ?></p>
|
||||
|
||||
<p>
|
||||
<a href="{{verification_link}}" style="text-decoration: none;" rel="nofollow" data-cy="email-verification-link"><?php _e('Verify Email Address →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{verification_link}}" style="text-decoration: none;" rel="nofollow" data-cy="email-verification-link"><?php _e('Verify Email Address →', 'wp-multisite-waas'); ?></a>
|
||||
<br>
|
||||
<small><?php printf(__('or copy the link %s and paste it onto your browser', 'wp-ultimo'), '<code>{{verification_link}}</code>'); ?></small>
|
||||
<small><?php printf(__('or copy the link %s and paste it onto your browser', 'wp-multisite-waas'), '<code>{{verification_link}}</code>'); ?></small>
|
||||
</p>
|
||||
|
@ -5,54 +5,54 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<p><?php printf(__('Hey %s,', 'wp-ultimo'), '{{customer_name}}'); ?></p>
|
||||
<p><?php printf(__('Hey %s,', 'wp-multisite-waas'), '{{customer_name}}'); ?></p>
|
||||
|
||||
<p><?php printf(__('We have great news! We successfully processed your payment of %1$s for %2$s.', 'wp-ultimo'), '{{payment_total}}', '{{payment_product_names}}'); ?></p>
|
||||
<p><?php printf(__('We have great news! We successfully processed your payment of %1$s for %2$s.', 'wp-multisite-waas'), '{{payment_total}}', '{{payment_product_names}}'); ?></p>
|
||||
|
||||
<p><a href="{{payment_invoice_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Download Invoice', 'wp-ultimo'); ?></a></p>
|
||||
<p><a href="{{payment_invoice_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Download Invoice', 'wp-multisite-waas'); ?></a></p>
|
||||
|
||||
<h2><b><?php _e('Payment', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Payment', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Products', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Products', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{payment_product_names}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Subtotal', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Subtotal', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_subtotal}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Tax', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Tax', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_tax_total}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Total', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Total', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_total}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Processed at', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Processed at', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">{{payment_date_created}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9;"><b><?php _e('Invoice', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9;"><b><?php _e('Invoice', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fdfdfd; border: 1px solid #eee;">
|
||||
<a href="{{payment_invoice_url}}" style="text-decoration: none;" rel="nofollow">
|
||||
<?php _e('Download PDF', 'wp-ultimo'); ?>
|
||||
<?php _e('Download PDF', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Type', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Type', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">Initial Payment</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -5,42 +5,42 @@
|
||||
* @since 2.0.19
|
||||
*/
|
||||
?>
|
||||
<p><?php printf(__('Hey %s,', 'wp-ultimo'), '{{customer_name}}'); ?></p>
|
||||
<p><?php printf(__('Hey %s,', 'wp-multisite-waas'), '{{customer_name}}'); ?></p>
|
||||
|
||||
<p><?php printf(__('You have a new pending payment of %1$s for your membership.', 'wp-ultimo'), '{{payment_total}}'); ?></p>
|
||||
<p><?php printf(__('You have a new pending payment of %1$s for your membership.', 'wp-multisite-waas'), '{{payment_total}}'); ?></p>
|
||||
|
||||
<p><a href="{{default_payment_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Pay Now', 'wp-ultimo'); ?></a></p>
|
||||
<p><a href="{{default_payment_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Pay Now', 'wp-multisite-waas'); ?></a></p>
|
||||
|
||||
<h2><b><?php _e('Payment', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Payment', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Products', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Products', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{payment_product_names}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Subtotal', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Subtotal', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_subtotal}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Tax', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Tax', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_tax_total}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Total', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Total', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
{{payment_total}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Created at', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Created at', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">{{payment_date_created}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -5,30 +5,30 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<p><?php printf(__('Hey %s,', 'wp-ultimo'), '{{customer_name}}'); ?></p>
|
||||
<p><?php printf(__('Hey %s,', 'wp-multisite-waas'), '{{customer_name}}'); ?></p>
|
||||
|
||||
<p><?php printf(__('We have great news! The site <b>%1$s</b> (%2$s) was created successfully and is ready!', 'wp-ultimo'), '{{site_title}}', '<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow">{{site_url}}</a>'); ?></p>
|
||||
<p><?php printf(__('We have great news! The site <b>%1$s</b> (%2$s) was created successfully and is ready!', 'wp-multisite-waas'), '{{site_title}}', '<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow">{{site_url}}</a>'); ?></p>
|
||||
|
||||
<h2><b><?php _e('Your Site', 'wp-ultimo'); ?></b></h2>
|
||||
<h2><b><?php _e('Your Site', 'wp-multisite-waas'); ?></b></h2>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Title', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Title', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee; border: 1px solid #eee;">
|
||||
{{site_title}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('URL', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('URL', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Site →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Site →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-ultimo'); ?></b></td>
|
||||
<td style="text-align: right; width: 160px; padding: 8px; background: #f9f9f9; border: 1px solid #eee;"><b><?php _e('Admin Panel', 'wp-multisite-waas'); ?></b></td>
|
||||
<td style="padding: 8px; background: #fff; border: 1px solid #eee;">
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Admin Panel →', 'wp-ultimo'); ?></a>
|
||||
<a href="{{site_admin_url}}" style="text-decoration: none;" rel="nofollow"><?php _e('Visit Admin Panel →', 'wp-multisite-waas'); ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
<li class="wu-p-4 wu-m-0 wu-border-t wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-400 wu-border-solid">
|
||||
|
||||
<h3 class="wu-mt-0 wu-mb-2 wu-text-2xs wu-uppercase"><?php _e('Initiator', 'wp-ultimo'); ?></h3>
|
||||
<h3 class="wu-mt-0 wu-mb-2 wu-text-2xs wu-uppercase"><?php _e('Initiator', 'wp-multisite-waas'); ?></h3>
|
||||
|
||||
<?php if ($object->get_initiator() == 'manual') : ?>
|
||||
|
||||
@ -74,7 +74,7 @@
|
||||
|
||||
<strong class='wu-block'><?php echo ucfirst($object->get_initiator()); ?></strong>
|
||||
|
||||
<small><?php _e('Automatically started', 'wp-ultimo'); ?></small>
|
||||
<small><?php _e('Automatically started', 'wp-multisite-waas'); ?></small>
|
||||
|
||||
</div>
|
||||
|
||||
@ -88,7 +88,7 @@
|
||||
|
||||
<li class="wu-p-4 wu-m-0 wu-border-t wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-300 wu-border-solid">
|
||||
|
||||
<h3 class="wu-mt-1 wu-mb-2 wu-text-2xs wu-uppercase"><?php printf(__('Target %s', 'wp-ultimo'), wu_slug_to_name($object->get_object_type())); ?></h3>
|
||||
<h3 class="wu-mt-1 wu-mb-2 wu-text-2xs wu-uppercase"><?php printf(__('Target %s', 'wp-multisite-waas'), wu_slug_to_name($object->get_object_type())); ?></h3>
|
||||
|
||||
<?php
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<li class="wu-p-4 wu-m-0 wu-border-t wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-400 wu-border-solid">
|
||||
|
||||
<h3 class="wu-my-1 wu-text-2xs wu-uppercase"><?php echo __('Message', 'wp-ultimo'); ?></h3>
|
||||
<h3 class="wu-my-1 wu-text-2xs wu-uppercase"><?php echo __('Message', 'wp-multisite-waas'); ?></h3>
|
||||
|
||||
<span class="wu-my-1 wu-inline-block">
|
||||
<?php echo $object->get_message(); ?>
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
<span>
|
||||
<button type="button" data-clipboard-action="copy" data-clipboard-target="#hidden_textarea" class="btn-clipboard button">
|
||||
<?php _e('Copy to the Clipboard', 'wp-ultimo'); ?>
|
||||
<?php _e('Copy to the Clipboard', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
</span>
|
||||
|
||||
|
@ -127,7 +127,7 @@ $has_tax_included = false;
|
||||
|
||||
.primary-color {
|
||||
padding: 10px;
|
||||
background-color: <?php echo $primary_color; ?>;
|
||||
background-color: <?php echo esc_attr($primary_color); ?>;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -140,23 +140,22 @@ $has_tax_included = false;
|
||||
<td class="title">
|
||||
<?php if ($use_custom_logo && $custom_logo) : ?>
|
||||
|
||||
<?php $image_attributes = wp_get_attachment_image_src($custom_logo, 'full'); ?>
|
||||
|
||||
<img src="<?php echo wu_get_isset($image_attributes, 0, false); ?>" width="100" height="" />
|
||||
<?php echo wp_get_attachment_image($custom_logo, 'full', false, array('style' => 'width: 100px; height: auto;')); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<img width="100" src="<?php echo $logo_url; ?>" alt="<?php echo get_network_option(null, 'site_name'); ?>">
|
||||
<img width="100" src="<?php echo esc_attr($logo_url); ?>" alt="<?php echo esc_attr(get_network_option(null, 'site_name')); ?>">
|
||||
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<strong><?php _e('Invoice #', 'wp-ultimo'); ?></strong><br>
|
||||
<?php echo $payment->get_invoice_number(); ?>
|
||||
<strong><?php _e('Invoice #', 'wp-multisite-waas'); ?></strong><br>
|
||||
<?php echo esc_html($payment->get_invoice_number()); ?>
|
||||
<br>
|
||||
<?php printf(__('Created: %s', 'wp-ultimo'), date_i18n(get_option('date_format'), strtotime($payment->get_date_created()))); ?><br>
|
||||
<?php _e('Due on Receipt', 'wp-ultimo'); ?><br>
|
||||
<?php echo esc_html(sprintf(__('Created: %s', 'wp-multisite-waas'), date_i18n(get_option('date_format'), strtotime($payment->get_date_created())))); ?><br>
|
||||
|
||||
<?php esc_html_e('Due on Receipte', 'wp-multisite-waas'); ?><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -174,7 +173,7 @@ $has_tax_included = false;
|
||||
/**
|
||||
* Displays company name.
|
||||
*/
|
||||
echo $company_name;
|
||||
echo esc_html($company_name);
|
||||
|
||||
?>
|
||||
</strong>
|
||||
@ -186,20 +185,20 @@ $has_tax_included = false;
|
||||
/**
|
||||
* Displays the company address.
|
||||
*/
|
||||
echo nl2br($company_address);
|
||||
echo wp_kses(nl2br($company_address), array('br' => array()));
|
||||
|
||||
?>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<strong><?php _e('Bill to', 'wp-ultimo'); ?></strong>
|
||||
<strong><?php _e('Bill to', 'wp-multisite-waas'); ?></strong>
|
||||
<br>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Displays the clients address.
|
||||
*/
|
||||
echo nl2br(implode(PHP_EOL, (array) $billing_address));
|
||||
echo wp_kses(nl2br(implode(PHP_EOL, (array) $billing_address)), array('br' => array()));
|
||||
|
||||
?>
|
||||
|
||||
@ -212,23 +211,23 @@ $has_tax_included = false;
|
||||
<tr class="heading">
|
||||
|
||||
<th style="text-align: left;">
|
||||
<?php _e('Item', 'wp-ultimo'); ?>
|
||||
<?php _e('Item', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th style="width: 17%;">
|
||||
<?php _e('Price', 'wp-ultimo'); ?>
|
||||
<?php _e('Price', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th style="width: 17%;">
|
||||
<?php _e('Discount', 'wp-ultimo'); ?>
|
||||
<?php _e('Discount', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th style="width: 17%;">
|
||||
<?php _e('Tax', 'wp-ultimo'); ?>
|
||||
<?php _e('Tax', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
<th style="width: 17%;">
|
||||
<?php _e('Total', 'wp-ultimo'); ?>
|
||||
<?php _e('Total', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
|
||||
</tr>
|
||||
@ -272,11 +271,11 @@ $has_tax_included = false;
|
||||
<tr class="total">
|
||||
<?php if ($has_tax_included) : ?>
|
||||
<td style="text-align: left; font-weight: normal;">
|
||||
<small>* <?php _e('Tax included in price.', 'wp-ultimo'); ?></small>
|
||||
<small>* <?php _e('Tax included in price.', 'wp-multisite-waas'); ?></small>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
<td colspan='5'>
|
||||
<?php printf(__('Total: %s', 'wp-ultimo'), wu_format_currency($payment->get_total(), $payment->get_currency())); ?>
|
||||
<?php printf(__('Total: %s', 'wp-multisite-waas'), wu_format_currency($payment->get_total(), $payment->get_currency())); ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -284,7 +283,7 @@ $has_tax_included = false;
|
||||
|
||||
<tr class="heading">
|
||||
<th colspan="5" style="text-align: left;">
|
||||
<?php _e('Payment Method', 'wp-ultimo'); ?>
|
||||
<?php _e('Payment Method', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
|
@ -172,7 +172,7 @@ if (isset($_GET['coupon']) && wu_get_coupon($_GET['coupon']) !== false && isset(
|
||||
$(this).find('.old-price').html(accounting.formatMoney(parseFloat(old_price)));
|
||||
if (!$(this).find('.off-value').get(0)) {
|
||||
|
||||
$(this).find('.old-price').after('<div class="off-value">(' + off_with_symbol + ' ' + '<?php _e('OFF', 'wp-ultimo'); ?>' + ')</div>');
|
||||
$(this).find('.old-price').after('<div class="off-value">(' + off_with_symbol + ' ' + '<?php _e('OFF', 'wp-multisite-waas'); ?>' + ')</div>');
|
||||
|
||||
}
|
||||
|
||||
@ -185,7 +185,7 @@ if (isset($_GET['coupon']) && wu_get_coupon($_GET['coupon']) !== false && isset(
|
||||
|
||||
if (!$(this).find('.setupfee-off-value').get(0)) {
|
||||
|
||||
$(this).find('.pricing-table-setupfee').after('<span class="setupfee-off-value"> (' + setupfee_off_with_symbol + ' ' + '<?php _e('OFF', 'wp-ultimo'); ?>' + ')</span>');
|
||||
$(this).find('.pricing-table-setupfee').after('<span class="setupfee-off-value"> (' + setupfee_off_with_symbol + ' ' + '<?php _e('OFF', 'wp-multisite-waas'); ?>' + ')</span>');
|
||||
|
||||
}
|
||||
|
||||
@ -241,7 +241,7 @@ if (isset($_GET['coupon']) && wu_get_coupon($_GET['coupon']) !== false && isset(
|
||||
|
||||
} else {
|
||||
|
||||
$(this).find('.total-price.total-price-' + $('#wu_plan_freq').val() ).html(' <?php esc_js(_e('Free!', 'wp-ultimo')); ?>');
|
||||
$(this).find('.total-price.total-price-' + $('#wu_plan_freq').val() ).html(' <?php esc_js(_e('Free!', 'wp-multisite-waas')); ?>');
|
||||
|
||||
}
|
||||
|
||||
@ -251,7 +251,7 @@ if (isset($_GET['coupon']) && wu_get_coupon($_GET['coupon']) !== false && isset(
|
||||
|
||||
} else {
|
||||
|
||||
$(this).find('.pricing-table-setupfee').html(' <?php esc_js(_e('No Setup Fee', 'wp-ultimo')); ?>');
|
||||
$(this).find('.pricing-table-setupfee').html(' <?php esc_js(_e('No Setup Fee', 'wp-multisite-waas')); ?>');
|
||||
|
||||
}
|
||||
|
||||
@ -268,7 +268,7 @@ if (isset($_GET['coupon']) && wu_get_coupon($_GET['coupon']) !== false && isset(
|
||||
} else {
|
||||
|
||||
let plan_price = $(this).find('.plan-price');
|
||||
plan_price.html(' <?php esc_js(_e('Free!', 'wp-ultimo')); ?>');
|
||||
plan_price.html(' <?php esc_js(_e('Free!', 'wp-multisite-waas')); ?>');
|
||||
let hagacinco = $(this).find('h5');
|
||||
hagacinco.find('sub').hide();
|
||||
hagacinco.find('.superscript').hide();
|
||||
|
@ -28,9 +28,9 @@ if ( ! defined('ABSPATH')) {
|
||||
<?php
|
||||
|
||||
$prices = [
|
||||
1 => __('Monthly', 'wp-ultimo'),
|
||||
3 => __('Quarterly', 'wp-ultimo'),
|
||||
12 => __('Yearly', 'wp-ultimo'),
|
||||
1 => __('Monthly', 'wp-multisite-waas'),
|
||||
3 => __('Quarterly', 'wp-multisite-waas'),
|
||||
12 => __('Yearly', 'wp-multisite-waas'),
|
||||
];
|
||||
|
||||
$first = true;
|
||||
|
@ -22,5 +22,5 @@ if ( ! defined('ABSPATH')) {
|
||||
?>
|
||||
|
||||
<div class="wu-setup-content-error">
|
||||
<p><?php _e('There are no Plans created in the platform.', 'wp-ultimo'); ?></p><br>
|
||||
<p><?php _e('There are no Plans created in the platform.', 'wp-multisite-waas'); ?></p><br>
|
||||
</div>
|
||||
|
@ -31,7 +31,7 @@ if ( ! defined('ABSPATH')) {
|
||||
$plan_attrs = '';
|
||||
|
||||
foreach ([1, 3, 12] as $type) {
|
||||
$price = $plan->free ? __('Free!', 'wp-ultimo') : str_replace(wu_get_currency_symbol(), '', wu_format_currency((((float) $plan->{'price_' . $type}) / $type)));
|
||||
$price = $plan->free ? __('Free!', 'wp-multisite-waas') : str_replace(wu_get_currency_symbol(), '', wu_format_currency((((float) $plan->{'price_' . $type}) / $type)));
|
||||
$plan_attrs .= " data-price-$type='$price'";
|
||||
} // end foreach;
|
||||
|
||||
@ -43,7 +43,7 @@ $plan_attrs = apply_filters('wu_pricing_table_plan', $plan_attrs, $plan);
|
||||
|
||||
<?php if ($plan->is_featured_plan()) : ?>
|
||||
|
||||
<h6><?php echo apply_filters('wu_featured_plan_label', __('Featured Plan', 'wp-ultimo'), $plan); ?></h6>
|
||||
<h6><?php echo apply_filters('wu_featured_plan_label', __('Featured Plan', 'wp-multisite-waas'), $plan); ?></h6>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
@ -53,13 +53,13 @@ $plan_attrs = apply_filters('wu_pricing_table_plan', $plan_attrs, $plan);
|
||||
<?php if ($plan->is_free()) : ?>
|
||||
|
||||
<h5>
|
||||
<span class="plan-price"><?php _e('Free!', 'wp-ultimo'); ?></span>
|
||||
<span class="plan-price"><?php _e('Free!', 'wp-multisite-waas'); ?></span>
|
||||
</h5>
|
||||
|
||||
<?php elseif ($plan->is_contact_us()) : ?>
|
||||
|
||||
<h5>
|
||||
<span class="plan-price-contact-us"><?php echo apply_filters('wu_plan_contact_us_price_line', __('--', 'wp-ultimo')); ?></span>
|
||||
<span class="plan-price-contact-us"><?php echo apply_filters('wu_plan_contact_us_price_line', __('--', 'wp-multisite-waas')); ?></span>
|
||||
</h5>
|
||||
|
||||
<?php else : ?>
|
||||
@ -71,7 +71,7 @@ $plan_attrs = apply_filters('wu_pricing_table_plan', $plan_attrs, $plan);
|
||||
?>
|
||||
<sup class="superscript"><?php echo wu_get_currency_symbol(); ?></sup><?php endif; ?>
|
||||
<span class="plan-price"><?php echo str_replace(wu_get_currency_symbol(), '', wu_format_currency($plan->price_1)); ?></span>
|
||||
<sub> <?php echo (! $symbol_left ? wu_get_currency_symbol() : '') . ' ' . __('/mo', 'wp-ultimo'); ?></sub>
|
||||
<sub> <?php echo (! $symbol_left ? wu_get_currency_symbol() : '') . ' ' . __('/mo', 'wp-multisite-waas'); ?></sub>
|
||||
</h5>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -89,12 +89,12 @@ $plan_attrs = apply_filters('wu_pricing_table_plan', $plan_attrs, $plan);
|
||||
* Display quarterly and Annually plans, to be hidden
|
||||
*/
|
||||
$prices_total = [
|
||||
3 => __('every 3 months', 'wp-ultimo'),
|
||||
12 => __('yearly', 'wp-ultimo'),
|
||||
3 => __('every 3 months', 'wp-multisite-waas'),
|
||||
12 => __('yearly', 'wp-multisite-waas'),
|
||||
];
|
||||
|
||||
foreach ($prices_total as $freq => $string) {
|
||||
$text = sprintf(__('%1$s, billed %2$s', 'wp-ultimo'), wu_format_currency($plan->{"price_$freq"}), $string);
|
||||
$text = sprintf(__('%1$s, billed %2$s', 'wp-multisite-waas'), wu_format_currency($plan->{"price_$freq"}), $string);
|
||||
|
||||
if ($plan->free || $plan->is_contact_us()) {
|
||||
echo "<li class='total-price total-price-$freq'>-</li>";
|
||||
@ -115,7 +115,7 @@ $plan_attrs = apply_filters('wu_pricing_table_plan', $plan_attrs, $plan);
|
||||
|
||||
<?php
|
||||
$button_attrubutes = apply_filters('wu_plan_select_button_attributes', '', $plan, $current_plan);
|
||||
$button_label = null != $current_plan && $plan->get_id() == $current_plan->id ? __('This is your current plan', 'wp-ultimo') : __('Select Plan', 'wp-ultimo');
|
||||
$button_label = null != $current_plan && $plan->get_id() == $current_plan->id ? __('This is your current plan', 'wp-multisite-waas') : __('Select Plan', 'wp-multisite-waas');
|
||||
$button_label = apply_filters('wu_plan_select_button_label', $button_label, $plan, $current_plan);
|
||||
?>
|
||||
|
||||
|
@ -60,7 +60,7 @@ do_action('wu_checkout_scripts');
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title>
|
||||
<?php echo apply_filters('wu_signup_page_title', sprintf(__('%s - Signup', 'wp-ultimo'), get_bloginfo('Name'), get_bloginfo('Name'))); ?>
|
||||
<?php echo apply_filters('wu_signup_page_title', sprintf(__('%s - Signup', 'wp-multisite-waas'), get_bloginfo('Name'), get_bloginfo('Name'))); ?>
|
||||
</title>
|
||||
|
||||
<?php // Signup do action, like the default ?>
|
||||
@ -97,7 +97,7 @@ do_action('wu_checkout_scripts');
|
||||
|
||||
<h1 id="wu-setup-logo">
|
||||
<a href="<?php echo get_site_url(get_current_site()->blog_id); ?>">
|
||||
<?php printf(__('%s - Signup', 'wp-ultimo'), get_bloginfo('Name')); ?>
|
||||
<?php printf(__('%s - Signup', 'wp-multisite-waas'), get_bloginfo('Name')); ?>
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
|
@ -31,8 +31,8 @@ if ( ! defined('ABSPATH')) {
|
||||
$nav_links = apply_filters(
|
||||
'wu_signup_form_nav_links',
|
||||
[
|
||||
home_url() => __('Return to Home', 'wp-ultimo'),
|
||||
wp_login_url() => sprintf('<strong>%s</strong>', __('Log In', 'wp-ultimo')),
|
||||
home_url() => __('Return to Home', 'wp-multisite-waas'),
|
||||
wp_login_url() => sprintf('<strong>%s</strong>', __('Log In', 'wp-multisite-waas')),
|
||||
]
|
||||
);
|
||||
|
||||
|
@ -72,7 +72,7 @@ $percent = 100 / $count;
|
||||
|
||||
<a class="wu-signup-back-link" href="<?php echo $prev_link; ?>">
|
||||
|
||||
<?php _e('← Go Back to Previous Step', 'wp-ultimo'); ?>
|
||||
<?php _e('← Go Back to Previous Step', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -23,7 +23,7 @@ if ( ! defined('ABSPATH')) {
|
||||
|
||||
<div id="wu-your-site-block">
|
||||
|
||||
<small><?php _e('Your URL will be', 'wp-ultimo'); ?></small><br>
|
||||
<small><?php _e('Your URL will be', 'wp-multisite-waas'); ?></small><br>
|
||||
|
||||
<?php
|
||||
/**
|
||||
@ -31,7 +31,7 @@ if ( ! defined('ABSPATH')) {
|
||||
*/
|
||||
$dynamic_part = '<strong id="wu-your-site" v-html="site_url ? site_url : \'yoursite\'">';
|
||||
// This is used on the yoursite.network.com during sign-up
|
||||
$dynamic_part .= $signup->results['blogname'] ?? __('yoursite', 'wp-ultimo');
|
||||
$dynamic_part .= $signup->results['blogname'] ?? __('yoursite', 'wp-multisite-waas');
|
||||
$dynamic_part .= '</strong>';
|
||||
|
||||
$site_url = preg_replace('#^https?://#', '', WU_Signup()->get_site_url_for_previewer());
|
||||
|
@ -25,7 +25,7 @@
|
||||
<?php if (is_plugin_active_for_network($plugin_path)) : ?>
|
||||
|
||||
<span class="wu-text-xs wu-normal-case wu-font-normal wu-ml-2 wu-text-green-600">
|
||||
<?php _e('Network Active', 'wp-ultimo'); ?>
|
||||
<?php _e('Network Active', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -43,11 +43,11 @@
|
||||
<div class="wu-block wu-mt-4">
|
||||
|
||||
<span class="wu-text-xs wu-text-gray-700 wu-my-1 wu-mr-4 wu-block">
|
||||
<?php printf(__('Version %s', 'wp-ultimo'), $plugin_data['Version']); ?>
|
||||
<?php printf(__('Version %s', 'wp-multisite-waas'), $plugin_data['Version']); ?>
|
||||
</span>
|
||||
|
||||
<span class="wu-text-xs wu-text-gray-700 wu-my-1 wu-mr-4 wu-block">
|
||||
<?php printf(__('by %s', 'wp-ultimo'), wp_strip_all_tags($plugin_data['Author'])); ?>
|
||||
<?php printf(__('by %s', 'wp-multisite-waas'), wp_strip_all_tags($plugin_data['Author'])); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -58,27 +58,27 @@
|
||||
|
||||
<h3 class="wu-mb-1 wu-text-2xs wu-uppercase wu-text-gray-600">
|
||||
|
||||
<?php _e('Visibility', 'wp-ultimo'); ?>
|
||||
<?php _e('Visibility', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
<select name="modules[plugins][limit][<?php echo esc_attr($plugin_path); ?>][visibility]" class="wu-w-full">
|
||||
<option <?php selected('visible' === $object->get_limitations()->plugins->{$plugin_path}->visibility); ?> value="visible"><?php _e('Visible', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('hidden' === $object->get_limitations()->plugins->{$plugin_path}->visibility); ?> value="hidden"><?php _e('Hidden', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('visible' === $object->get_limitations()->plugins->{$plugin_path}->visibility); ?> value="visible"><?php _e('Visible', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php selected('hidden' === $object->get_limitations()->plugins->{$plugin_path}->visibility); ?> value="hidden"><?php _e('Hidden', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
<h3 class="wu-my-1 wu-mt-4 wu-text-2xs wu-uppercase wu-text-gray-600">
|
||||
|
||||
<?php _e('Behavior', 'wp-ultimo'); ?>
|
||||
<?php _e('Behavior', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
<select name="modules[plugins][limit][<?php echo esc_attr($plugin_path); ?>][behavior]" class="wu-w-full">
|
||||
<option <?php selected('default' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="default"><?php _e('Default', 'wp-ultimo'); ?></option>
|
||||
<option <?php disabled(is_plugin_active_for_network($plugin_path)); ?> <?php selected('force_active' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_active"><?php _e('Force Activate', 'wp-ultimo'); ?></option>
|
||||
<option <?php disabled(is_plugin_active_for_network($plugin_path)); ?> <?php selected('force_inactive' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_inactive"><?php _e('Force Inactivate', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('force_active_locked' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_active_locked"><?php _e('Force Activate & Lock', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('force_inactive_locked' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_inactive_locked"><?php _e('Force Inactivate & Lock', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('default' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="default"><?php _e('Default', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php disabled(is_plugin_active_for_network($plugin_path)); ?> <?php selected('force_active' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_active"><?php _e('Force Activate', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php disabled(is_plugin_active_for_network($plugin_path)); ?> <?php selected('force_inactive' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_inactive"><?php _e('Force Inactivate', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php selected('force_active_locked' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_active_locked"><?php _e('Force Activate & Lock', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php selected('force_inactive_locked' === $object->get_limitations()->plugins->{$plugin_path}->behavior); ?> value="force_inactive_locked"><?php _e('Force Inactivate & Lock', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
@ -90,7 +90,7 @@
|
||||
<?php if ('product' !== $object->model && $object->get_limitations(false)->plugins->exists($plugin_path)) : ?>
|
||||
|
||||
<p class="wu-m-0 wu-mt-4 wu-p-2 wu-bg-blue-100 wu-text-blue-600 wu-rounded">
|
||||
<?php _e('This value is being applied only to this entity. Changes made to the membership or product permissions will not affect this particular value.', 'wp-ultimo'); ?>
|
||||
<?php _e('This value is being applied only to this entity. Changes made to the membership or product permissions will not affect this particular value.', 'wp-multisite-waas'); ?>
|
||||
</p>
|
||||
|
||||
<?php endif; ?>
|
||||
|
@ -42,7 +42,7 @@
|
||||
|
||||
<span class="wu-mt-2 wu-block wu-text-xs">
|
||||
|
||||
<?php echo ! $site_template->get_categories() ? __('No categories', 'wp-ultimo') : implode(', ', $site_template->get_categories()); ?>
|
||||
<?php echo ! $site_template->get_categories() ? __('No categories', 'wp-multisite-waas') : implode(', ', $site_template->get_categories()); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -52,7 +52,7 @@
|
||||
|
||||
<h3 class="wu-my-1 wu-text-2xs wu-uppercase wu-text-gray-600">
|
||||
|
||||
<?php _e('Behavior', 'wp-ultimo'); ?>
|
||||
<?php _e('Behavior', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
@ -61,9 +61,9 @@
|
||||
name="modules[site_templates][limit][<?php echo esc_attr($site_template->get_id()); ?>][behavior]"
|
||||
class="wu-w-full"
|
||||
>
|
||||
<option <?php selected('available' === $template_settings->behavior); ?> value="available"><?php _e('Available', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('not_available' === $template_settings->behavior); ?> value="not_available"><?php _e('Not Available', 'wp-ultimo'); ?></option>
|
||||
<option :disabled="pre_selected_template !== '' && pre_selected_template !== false && pre_selected_template != '<?php echo esc_attr($site_template->get_id()); ?>'" <?php selected('pre_selected' === $template_settings->behavior); ?> value="pre_selected"><?php _e('Pre-Selected', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('available' === $template_settings->behavior); ?> value="available"><?php _e('Available', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php selected('not_available' === $template_settings->behavior); ?> value="not_available"><?php _e('Not Available', 'wp-multisite-waas'); ?></option>
|
||||
<option :disabled="pre_selected_template !== '' && pre_selected_template !== false && pre_selected_template != '<?php echo esc_attr($site_template->get_id()); ?>'" <?php selected('pre_selected' === $template_settings->behavior); ?> value="pre_selected"><?php _e('Pre-Selected', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
|
@ -43,11 +43,11 @@
|
||||
<div class="wu-block wu-mt-4">
|
||||
|
||||
<span class="wu-text-xs wu-text-gray-700 wu-my-1 wu-mr-4 wu-block">
|
||||
<?php printf(__('Version %s', 'wp-ultimo'), $theme_data['Version']); ?>
|
||||
<?php printf(__('Version %s', 'wp-multisite-waas'), $theme_data['Version']); ?>
|
||||
</span>
|
||||
|
||||
<span class="wu-text-xs wu-text-gray-700 wu-my-1 wu-mr-4 wu-block">
|
||||
<?php printf(__('by %s', 'wp-ultimo'), $theme_data['Author']); ?>
|
||||
<?php printf(__('by %s', 'wp-multisite-waas'), $theme_data['Author']); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
@ -60,25 +60,25 @@
|
||||
|
||||
<h3 class="wu-mb-1 wu-text-2xs wu-uppercase wu-text-gray-600">
|
||||
|
||||
<?php _e('Visibility', 'wp-ultimo'); ?>
|
||||
<?php _e('Visibility', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
<select name="modules[themes][limit][<?php echo esc_attr($theme_path); ?>][visibility]" class="wu-w-full">
|
||||
<option <?php selected('visible' === $theme_settings->visibility); ?> value="visible"><?php _e('Visible', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('hidden' === $theme_settings->visibility); ?> value="hidden"><?php _e('Hidden', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('visible' === $theme_settings->visibility); ?> value="visible"><?php _e('Visible', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php selected('hidden' === $theme_settings->visibility); ?> value="hidden"><?php _e('Hidden', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
<h3 class="wu-my-1 wu-mt-4 wu-text-2xs wu-uppercase wu-text-gray-600">
|
||||
|
||||
<?php _e('Behavior', 'wp-ultimo'); ?>
|
||||
<?php _e('Behavior', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h3>
|
||||
|
||||
<select v-on:change="force_active_theme = ($event.target.value === 'force_active' ? '<?php echo esc_attr($theme_path); ?>' : '')" name="modules[themes][limit][<?php echo esc_attr($theme_path); ?>][behavior]" class="wu-w-full">
|
||||
<option <?php selected('available' === $theme_settings->behavior); ?> value="available"><?php _e('Available', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('not_available' === $theme_settings->behavior); ?> value="not_available"><?php _e('Not Available', 'wp-ultimo'); ?></option>
|
||||
<option :disabled="force_active_theme !== '' && force_active_theme != '<?php echo esc_attr($theme_path); ?>'" <?php selected('force_active' === $theme_settings->behavior); ?> value="force_active"><?php _e('Force Activate', 'wp-ultimo'); ?></option>
|
||||
<option <?php selected('available' === $theme_settings->behavior); ?> value="available"><?php _e('Available', 'wp-multisite-waas'); ?></option>
|
||||
<option <?php selected('not_available' === $theme_settings->behavior); ?> value="not_available"><?php _e('Not Available', 'wp-multisite-waas'); ?></option>
|
||||
<option :disabled="force_active_theme !== '' && force_active_theme != '<?php echo esc_attr($theme_path); ?>'" <?php selected('force_active' === $theme_settings->behavior); ?> value="force_active"><?php _e('Force Activate', 'wp-multisite-waas'); ?></option>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
@ -88,7 +88,7 @@
|
||||
<?php if ('product' !== $object->model && $object->get_limitations(false)->themes->exists($theme_path)) : ?>
|
||||
|
||||
<p class="wu-m-0 wu-mt-4 wu-p-2 wu-bg-blue-100 wu-text-blue-600 wu-rounded">
|
||||
<?php _e('This value is being applied only to this entity. Changes made to the membership or product permissions will not affect this particular value.', 'wp-ultimo'); ?>
|
||||
<?php _e('This value is being applied only to this entity. Changes made to the membership or product permissions will not affect this particular value.', 'wp-multisite-waas'); ?>
|
||||
</p>
|
||||
|
||||
<?php endif; ?>
|
||||
|
@ -13,11 +13,11 @@
|
||||
|
||||
<a
|
||||
class="button wu-ml-2 wubox"
|
||||
title="<?php esc_attr_e('Add new Product', 'wp-ultimo'); ?>"
|
||||
title="<?php esc_attr_e('Add new Product', 'wp-multisite-waas'); ?>"
|
||||
href="<?php echo esc_attr(wu_get_form_url('edit_membership_product', ['id' => $membership->get_id()])); ?>"
|
||||
>
|
||||
<span class="dashicons-wu-circle-with-plus wu-align-text-bottom"></span>
|
||||
<?php _e('Add new Product', 'wp-ultimo'); ?>
|
||||
<?php _e('Add new Product', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
<span class="wu-text-xs wu-font-bold wu-uppercase wu-text-gray-600">
|
||||
|
||||
<?php _e('Refunds:', 'wp-ultimo'); ?>
|
||||
<?php _e('Refunds:', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -57,7 +57,7 @@
|
||||
|
||||
<span class="wu-text-xs wu-font-bold wu-uppercase wu-text-gray-700">
|
||||
|
||||
<?php _e('Total:', 'wp-ultimo'); ?>
|
||||
<?php _e('Total:', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
|
||||
<?php if ( ! empty($payment)) : ?>
|
||||
<tr>
|
||||
<td><span class="wu-font-bold wu-uppercase wu-text-xs wu-text-gray-700"><?php _e('Total', 'wp-ultimo'); ?></span></td>
|
||||
<td><span class="wu-font-bold wu-uppercase wu-text-xs wu-text-gray-700"><?php _e('Total', 'wp-multisite-waas'); ?></span></td>
|
||||
<td><?php echo wu_format_currency($payment->get_tax_total()); ?></td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
@ -30,7 +30,7 @@
|
||||
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<?php _e('No tax rates.', 'wp-ultimo'); ?>
|
||||
<?php _e('No tax rates.', 'wp-multisite-waas'); ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -47,7 +47,7 @@ wp_enqueue_script('wu-field-button-upload', WP_Ultimo()->get_asset("wu-field-ima
|
||||
</a>
|
||||
|
||||
<a data-default="<?php echo $field['default']; ?>" href="#" class="button wu-field-button-upload-remove" data-target="<?php echo $field_slug; ?>">
|
||||
<?php _e('Remove Image', 'wp-ultimo'); ?>
|
||||
<?php _e('Remove Image', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
|
||||
<?php if ( ! empty($field['desc'])) : ?>
|
||||
|
@ -71,7 +71,7 @@
|
||||
|
||||
</div>
|
||||
|
||||
<button type="button" data-select-all="multiselect-<?php echo $field_slug; ?>" class="button wu-select-all"><?php _e('Check / Uncheck All', 'wp-ultimo'); ?></button>
|
||||
<button type="button" data-select-all="multiselect-<?php echo $field_slug; ?>" class="button wu-select-all"><?php _e('Check / Uncheck All', 'wp-multisite-waas'); ?></button>
|
||||
|
||||
<br>
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<div id="wp-ultimo-wrap" class="<?php wu_wrap_use_container(); ?> wrap">
|
||||
|
||||
<h1 class="wp-heading-inline"><?php _e('Available Shortcodes', 'wp-ultimo'); ?></h1>
|
||||
<h1 class="wp-heading-inline"><?php _e('Available Shortcodes', 'wp-multisite-waas'); ?></h1>
|
||||
|
||||
<div id="poststuff">
|
||||
<div id="post-body" class="">
|
||||
@ -24,10 +24,10 @@
|
||||
<a
|
||||
href="<?php echo $shortcode['generator_form_url']; ?>"
|
||||
class="wu-float-right wubox wu-no-underline wu-text-gray-600"
|
||||
title="<?php _e('Generator', 'wp-ultimo'); ?>"
|
||||
title="<?php _e('Generator', 'wp-multisite-waas'); ?>"
|
||||
>
|
||||
<span class="dashicons-wu-rocket"></span>
|
||||
<?php _e('Generator', 'wp-ultimo'); ?>
|
||||
<?php _e('Generator', 'wp-multisite-waas'); ?>
|
||||
</a>
|
||||
<div class="wu-block">
|
||||
<h3 class="wu-my-1 wu-text-base wu-text-gray-800">
|
||||
@ -43,16 +43,16 @@
|
||||
<table class="wu-table-auto striped wu-w-full">
|
||||
<tr>
|
||||
<th class="wu-px-4 wu-py-2 wu-w-3/12 wu-text-left">
|
||||
<?php _e('Parameter', 'wp-ultimo'); ?>
|
||||
<?php _e('Parameter', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
<th class="wu-px-4 wu-py-2 wu-w-4/12 wu-text-left">
|
||||
<?php _e('Description', 'wp-ultimo'); ?>
|
||||
<?php _e('Description', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
<th class="wu-px-4 wu-py-2 wu-w-3/12 wu-text-left">
|
||||
<?php _e('Accepted Values', 'wp-ultimo'); ?>
|
||||
<?php _e('Accepted Values', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
<th class="wu-px-4 wu-py-2 wu-w-2/12 wu-text-left">
|
||||
<?php _e('Default Value', 'wp-ultimo'); ?>
|
||||
<?php _e('Default Value', 'wp-multisite-waas'); ?>
|
||||
</th>
|
||||
</tr>
|
||||
<?php foreach ($shortcode['params'] as $param => $value) { ?>
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<h1 class="wp-heading-inline">
|
||||
|
||||
<?php _e('Template Placeholders', 'wp-ultimo'); ?>
|
||||
<?php _e('Template Placeholders', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h1>
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
|
||||
<span v-cloak class="displaying-num">
|
||||
|
||||
{{data.placeholders.length}} <?php _e('item(s)', 'wp-ultimo'); ?>
|
||||
{{data.placeholders.length}} <?php _e('item(s)', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -73,7 +73,7 @@
|
||||
|
||||
<div class="wu-p-4">
|
||||
|
||||
<?php _e('Loading Template Placeholders...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading Template Placeholders...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -87,7 +87,7 @@
|
||||
|
||||
<div class="wu-p-4">
|
||||
|
||||
<?php _e('No items to display', 'wp-ultimo'); ?>
|
||||
<?php _e('No items to display', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -206,13 +206,13 @@
|
||||
|
||||
<button v-on:click.prevent="add_row" class="button">
|
||||
|
||||
<?php _e('Add new Row', 'wp-ultimo'); ?>
|
||||
<?php _e('Add new Row', 'wp-multisite-waas'); ?>
|
||||
|
||||
</button>
|
||||
|
||||
<button v-on:click.prevent="delete_rows" class="button">
|
||||
|
||||
<?php _e('Delete Selected Rows', 'wp-ultimo'); ?>
|
||||
<?php _e('Delete Selected Rows', 'wp-multisite-waas'); ?>
|
||||
|
||||
</button>
|
||||
|
||||
@ -238,11 +238,11 @@
|
||||
|
||||
<span v-if="changed && !saveMessage && !saving" class="description"
|
||||
style="display: inline-block; line-height: 28px; margin-right: 10px;">
|
||||
<?php _e('Save your changes!', 'wp-ultimo'); ?>
|
||||
<?php _e('Save your changes!', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<span v-if="saving" class="description" style="display: inline-block; line-height: 28px; margin-right: 10px;">
|
||||
<?php _e('Saving...', 'wp-ultimo'); ?>
|
||||
<?php _e('Saving...', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<span v-if="saveMessage" class="description"
|
||||
|
@ -15,7 +15,7 @@ $text_no = '<span class="dashicons dashicons-no-alt wu-text-red-600"></span>';
|
||||
|
||||
<tr>
|
||||
<td colspan="2" class="wu-px-4 wu-py-2">
|
||||
<?php _e('No items found.', 'wp-ultimo'); ?>
|
||||
<?php _e('No items found.', 'wp-multisite-waas'); ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
<div id="wp-ultimo-wrap" class="<?php wu_wrap_use_container(); ?> wrap">
|
||||
|
||||
<h1 class="wp-heading-inline"><?php _e('System Info', 'wp-ultimo'); ?></h1>
|
||||
<h1 class="wp-heading-inline"><?php _e('System Info', 'wp-multisite-waas'); ?></h1>
|
||||
|
||||
<textarea cols="100" rows="40" aria-hidden="true" class="screen-reader-text" id="hidden_textarea">
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
|
||||
<span class="dashicons dashicons-admin-page wu-text-sm wu-align-middle wu-h-4 wu-w-4"> </span>
|
||||
|
||||
<?php _e('Copy Data to Clipboard', 'wp-ultimo'); ?>
|
||||
<?php _e('Copy Data to Clipboard', 'wp-multisite-waas'); ?>
|
||||
|
||||
</button>
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
|
||||
<span class="dashicons dashicons-download wu-text-sm wu-align-middle wu-h-4 wu-w-4"> </span>
|
||||
|
||||
<?php _e('Download File', 'wp-ultimo'); ?>
|
||||
<?php _e('Download File', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
|
@ -9,13 +9,13 @@
|
||||
|
||||
<h1 class="wp-heading-inline">
|
||||
|
||||
<?php _e('Tax Rates', 'wp-ultimo'); ?>
|
||||
<?php _e('Tax Rates', 'wp-multisite-waas'); ?>
|
||||
|
||||
</h1>
|
||||
|
||||
<a href="<?php echo network_admin_url('admin.php?page=wp-ultimo-settings&tab=taxes'); ?>" class="page-title-action">
|
||||
|
||||
<?php _e('Go to the Tax Settings Page', 'wp-ultimo'); ?>
|
||||
<?php _e('Go to the Tax Settings Page', 'wp-multisite-waas'); ?>
|
||||
|
||||
</a>
|
||||
|
||||
@ -31,14 +31,14 @@
|
||||
|
||||
<div v-show="creating">
|
||||
|
||||
<input type="text" style="background: white !important;" class="button wu-bg-white" v-model="create_name" placeholder="<?php _e('Tax Category Name', 'wp-ultimo'); ?>">
|
||||
<input type="text" style="background: white !important;" class="button wu-bg-white" v-model="create_name" placeholder="<?php _e('Tax Category Name', 'wp-multisite-waas'); ?>">
|
||||
|
||||
<button class="button button-primary" v-on:click.prevent="add_tax_category" v-bind:disabled="create_name.length <= 3">
|
||||
<?php _e('Create', 'wp-ultimo'); ?>
|
||||
<?php _e('Create', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
<button class="button action" v-on:click.prevent="creating = false">
|
||||
<?php _e('← Back', 'wp-ultimo'); ?>
|
||||
<?php _e('← Back', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
@ -46,7 +46,7 @@
|
||||
<div v-show="switching">
|
||||
|
||||
<button class="button action" v-on:click.prevent="switching = false">
|
||||
<?php _e('← Back', 'wp-ultimo'); ?>
|
||||
<?php _e('← Back', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
<select v-model="tax_category" class="wu-bg-white">
|
||||
@ -62,17 +62,17 @@
|
||||
<input type="text" style="background: white !important;" class="button wu-bg-white" v-model="data[tax_category].name">
|
||||
|
||||
<button class="button action" v-on:click.prevent="switching = true">
|
||||
<?php _e('Switch', 'wp-ultimo'); ?>
|
||||
<?php _e('Switch', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
<button class="button action" v-on:click.prevent="delete_tax_category">
|
||||
<?php _e('Delete', 'wp-ultimo'); ?>
|
||||
<?php _e('Delete', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
|
||||
|
||||
<button class="button action wu-ml-3" v-on:click.prevent="creating = true">
|
||||
<?php _e('Add new Tax Category', 'wp-ultimo'); ?>
|
||||
<?php _e('Add new Tax Category', 'wp-multisite-waas'); ?>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
@ -83,7 +83,7 @@
|
||||
|
||||
<span class="displaying-num">
|
||||
|
||||
{{data[tax_category].rates.length}} <?php _e('item(s)', 'wp-ultimo'); ?>
|
||||
{{data[tax_category].rates.length}} <?php _e('item(s)', 'wp-multisite-waas'); ?>
|
||||
|
||||
</span>
|
||||
|
||||
@ -130,7 +130,7 @@
|
||||
|
||||
<div class="wu-p-4">
|
||||
|
||||
<?php _e('Loading Tax Rates...', 'wp-ultimo'); ?>
|
||||
<?php _e('Loading Tax Rates...', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -144,7 +144,7 @@
|
||||
|
||||
<div class="wu-p-4">
|
||||
|
||||
<?php _e('No items to display', 'wp-ultimo'); ?>
|
||||
<?php _e('No items to display', 'wp-multisite-waas'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
@ -246,7 +246,7 @@
|
||||
:options="item.state_options"
|
||||
model="state"
|
||||
style="width: 100%;"
|
||||
placeholder="<?php esc_attr_e('Leave blank to apply to all', 'wp-ultimo'); ?>"
|
||||
placeholder="<?php esc_attr_e('Leave blank to apply to all', 'wp-multisite-waas'); ?>"
|
||||
></selectizer>
|
||||
|
||||
<?php break; ?>
|
||||
@ -261,7 +261,7 @@
|
||||
:country="item.country"
|
||||
model="city"
|
||||
style="width: 100%;"
|
||||
placeholder="<?php esc_attr_e('Leave blank to apply to all', 'wp-ultimo'); ?>"
|
||||
placeholder="<?php esc_attr_e('Leave blank to apply to all', 'wp-multisite-waas'); ?>"
|
||||
v-cloak
|
||||
></selectizer>
|
||||
|
||||
@ -345,13 +345,13 @@
|
||||
|
||||
<button v-on:click.prevent="add_row" class="button">
|
||||
|
||||
<?php _e('Add new Row', 'wp-ultimo'); ?>
|
||||
<?php _e('Add new Row', 'wp-multisite-waas'); ?>
|
||||
|
||||
</button>
|
||||
|
||||
<button v-on:click.prevent="delete_rows" class="button">
|
||||
|
||||
<?php _e('Delete Selected Rows', 'wp-ultimo'); ?>
|
||||
<?php _e('Delete Selected Rows', 'wp-multisite-waas'); ?>
|
||||
|
||||
</button>
|
||||
|
||||
@ -377,11 +377,11 @@
|
||||
|
||||
<span v-if="changed && !saveMessage && !saving" class="description"
|
||||
style="display: inline-block; line-height: 28px; margin-right: 10px;">
|
||||
<?php _e('Save your changes!', 'wp-ultimo'); ?>
|
||||
<?php _e('Save your changes!', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<span v-if="saving" class="description" style="display: inline-block; line-height: 28px; margin-right: 10px;">
|
||||
<?php _e('Saving...', 'wp-ultimo'); ?>
|
||||
<?php _e('Saving...', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
|
||||
<span v-if="saveMessage" class="description"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user