Update tranlation text domain
This commit is contained in:
@ -5,10 +5,10 @@
|
||||
* @since 2.0.0
|
||||
*/
|
||||
?>
|
||||
<h1><?php _e('Testing the Integration', 'wp-ultimo'); ?></h1>
|
||||
<h1><?php _e('Testing the Integration', 'wp-multisite-waas'); ?></h1>
|
||||
|
||||
<p class="wu-text-lg wu-text-gray-600 wu-my-4 wu-mb-6">
|
||||
<?php printf(__('We will send a test API call to %s to make sure we are able to connect. This will confirm if everything we did so far have worked.', 'wp-ultimo'), $integration->get_title()); ?>
|
||||
<?php printf(__('We will send a test API call to %s to make sure we are able to connect. This will confirm if everything we did so far have worked.', 'wp-multisite-waas'), $integration->get_title()); ?>
|
||||
</p>
|
||||
|
||||
<div id="integration-test">
|
||||
@ -16,39 +16,39 @@
|
||||
<div v-if="loading" class="wu-flex wu-rounded wu-content-center wu-py-2 wu-px-4 wu-bg-gray-100 wu-border wu-border-solid wu-border-gray-300 wu-m-0">
|
||||
<span class="dashicons dashicons-warning wu-text-blue-400 wu-self-center wu-mr-2"></span>
|
||||
<span>
|
||||
<?php _e('Sending API call...', 'wp-ultimo'); ?>
|
||||
<?php _e('Sending API call...', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div v-cloak v-if="!loading && success" class="wu-flex wu-rounded wu-content-center wu-py-2 wu-px-4 wu-bg-gray-100 wu-border wu-border-solid wu-border-gray-300 wu-m-0">
|
||||
<span class="dashicons dashicons-yes-alt wu-text-green-400 wu-self-center wu-mr-2"></span>
|
||||
<span>
|
||||
<?php _e('Yey! Everything seems to be working!', 'wp-ultimo'); ?>
|
||||
<?php _e('Yey! Everything seems to be working!', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div v-cloak v-if="!loading && !success" class="wu-flex wu-rounded wu-content-center wu-py-2 wu-px-4 wu-bg-gray-100 wu-border wu-border-solid wu-border-gray-300 wu-m-0">
|
||||
<span class="dashicons dashicons-dismiss wu-text-red-400 wu-self-center wu-mr-2"></span>
|
||||
<span>
|
||||
<?php _e('Something wrong happened... We might need to make some adjustments to make this work.', 'wp-ultimo'); ?>
|
||||
<?php _e('Something wrong happened... We might need to make some adjustments to make this work.', 'wp-multisite-waas'); ?>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<pre class="wu-overflow-auto wu-p-4 wu-rounded wu-content-center wu-bg-gray-800 wu-text-white wu-font-mono wu-border wu-border-solid wu-border-gray-300" v-html="results"><?php _e('Waiting for results...', 'wp-ultimo'); ?></pre>
|
||||
<pre class="wu-overflow-auto wu-p-4 wu-rounded wu-content-center wu-bg-gray-800 wu-text-white wu-font-mono wu-border wu-border-solid wu-border-gray-300" v-html="results"><?php _e('Waiting for results...', 'wp-multisite-waas'); ?></pre>
|
||||
|
||||
<div v-cloak v-if="!loading && !success">
|
||||
|
||||
<h1><?php _e('Troubleshooting', 'wp-ultimo'); ?></h1>
|
||||
<h1><?php _e('Troubleshooting', 'wp-multisite-waas'); ?></h1>
|
||||
|
||||
<ol>
|
||||
<li>
|
||||
<?php _e('Go back to the <strong>Configuration</strong> step - if available - and make sure you entered all the necessary information correctly;', 'wp-ultimo'); ?>
|
||||
<?php _e('Go back to the <strong>Configuration</strong> step - if available - and make sure you entered all the necessary information correctly;', 'wp-multisite-waas'); ?>
|
||||
</li>
|
||||
<li>
|
||||
<?php _e('If you have added the constants to your wp-config.php file manually, double check to make sure you\'ve added them to the right wp-config.php file and in the right place (just above the <code>/* That\'s all, stop editing! Happy publishing. */)', 'wp-ultimo'); ?></code>);
|
||||
<?php _e('If you have added the constants to your wp-config.php file manually, double check to make sure you\'ve added them to the right wp-config.php file and in the right place (just above the <code>/* That\'s all, stop editing! Happy publishing. */)', 'wp-multisite-waas'); ?></code>);
|
||||
</li>
|
||||
<li>
|
||||
<?php _e('If you are sure everything is right, take a screenshot of this screen and contact support.', 'wp-ultimo'); ?>
|
||||
<?php _e('If you are sure everything is right, take a screenshot of this screen and contact support.', 'wp-multisite-waas'); ?>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
@ -58,7 +58,7 @@
|
||||
<div v-cloak v-if="!loading && !success" 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>
|
||||
|
||||
</div>
|
||||
@ -84,7 +84,7 @@
|
||||
data: {
|
||||
success: false,
|
||||
loading: false,
|
||||
results: '<?php echo esc_js(__('Waiting for results...', 'wp-ultimo')); ?>',
|
||||
results: '<?php echo esc_js(__('Waiting for results...', 'wp-multisite-waas')); ?>',
|
||||
},
|
||||
mounted: function() {
|
||||
|
||||
|
Reference in New Issue
Block a user