PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / Framework / Assets / I18n.php
wp-staging / Framework / Assets Last commit date
Assets.php 1 day ago I18n.php 1 day ago
I18n.php
514 lines
1 <?php
2
3 namespace WPStaging\Framework\Assets;
4
5 use WPStaging\Core\WPStaging;
6 use WPStaging\Framework\Language\Language;
7
8 /**
9 * Provide translated strings which can be used in JS part of the plugin
10 */
11 class I18n
12 {
13 public function getTranslations(): array
14 {
15 $backupCompleteMessage = __('You can restore this backup anytime or upload it to another website and restore it there.', 'wp-staging');
16 if (WPStaging::isPro() === false) {
17 $backupCompleteMessage = __('You can restore this backup anytime on this website.', 'wp-staging');
18 }
19
20 return [
21 'show_logs' => esc_html__('Show Logs', 'wp-staging'),
22 'hide_logs' => esc_html__('Hide Logs', 'wp-staging'),
23 'tables_not_selected' => esc_html__('None selected', 'wp-staging'),
24 'tables_selected_prefix' => esc_html__('{d}/{t} `{p}` prefix tables selected', 'wp-staging'),
25 'tables_selected_prefix_one_other' => esc_html__('{d}/{t} `{p}` prefix tables selected, 1 other', 'wp-staging'),
26 'tables_selected_prefix_others' => esc_html__('{d}/{t} `{p}` prefix tables selected, {o} others', 'wp-staging'),
27 'tables_selected_prefix_compact' => esc_html__('{d}/{t} `{p}`', 'wp-staging'),
28 'tables_selected_prefix_compact_one_other' => esc_html__('{d}/{t} `{p}`, 1 other', 'wp-staging'),
29 'tables_selected_prefix_compact_others' => esc_html__('{d}/{t} `{p}`, {o} others', 'wp-staging'),
30 'files_selected' => esc_html__('{t} themes, {p} plugins, {o} folders selected', 'wp-staging'),
31 'read_less' => esc_html__('Read Less', 'wp-staging'),
32 'read_more' => esc_html__('Read More', 'wp-staging'),
33 'ok' => esc_html__('OK', 'wp-staging'),
34 'warning' => esc_html__('Warning', 'wp-staging'),
35 'cancel' => esc_html__('Cancel', 'wp-staging'),
36 'next' => esc_html__('Next', 'wp-staging'),
37 'yes' => esc_html__('Yes', 'wp-staging'),
38 'no' => esc_html__('No', 'wp-staging'),
39 'success' => esc_html__('Success', 'wp-staging'),
40 'failed' => esc_html__('Failed', 'wp-staging'),
41 'error' => esc_html__('Error', 'wp-staging'),
42 'save' => esc_html__('Save', 'wp-staging'),
43 'close' => esc_html__('Close', 'wp-staging'),
44 'confirm' => esc_html__('Confirm', 'wp-staging'),
45 'delete' => esc_html__('Delete', 'wp-staging'),
46 'restore' => esc_html__('Restore', 'wp-staging'),
47 'upload' => esc_html__('Upload', 'wp-staging'),
48 'unselect_all' => esc_html__('Unselect All', 'wp-staging'),
49 'select_all' => esc_html__('Select All', 'wp-staging'),
50 'deselect_all_tables' => esc_html__('Deselect all tables', 'wp-staging'),
51 'how_to_delete_cache' => esc_html__('How to delete the cache.', 'wp-staging'),
52 'select_all_tables' => esc_html__('Select all tables', 'wp-staging'),
53 'select_wordpress_tables' => esc_html__('Select WordPress tables', 'wp-staging'),
54 'something_went_wrong' => esc_html__('Something went wrong', 'wp-staging'),
55 'error_modal' => [
56 'title' => esc_html__('Error', 'wp-staging'),
57 'confirm_button_text' => esc_html__('OK', 'wp-staging'),
58 ],
59 'session_expired_error' => esc_html__('Your session has expired or you are not logged in. Please login and try again.', 'wp-staging'),
60 'submit_error_report' => esc_html__('Please submit an error report by using the CONTACT US button.', 'wp-staging'),
61 'cancel_modal_title' => esc_html__('Cancelling & Cleaning up', 'wp-staging'),
62 'cancel_modal_text' => esc_html__('This modal will close automatically when done...', 'wp-staging'),
63 'cancel_modal_error' => esc_html__('Cancel process did not finish gracefully. Some temporary files might not have been cleaned up.', 'wp-staging'),
64 'cancel_modal_confirm_text' => esc_html__('Do you want to cancel the process?', 'wp-staging'),
65 'cancel_modal_wait_text' => esc_html__('Current job was cancelled from another page! This modal will close automatically when done...', 'wp-staging'),
66 'progress' => esc_html__('Progress', 'wp-staging'),
67 'elapsed_time' => esc_html__('Elapsed time', 'wp-staging'),
68 'failed_response' => esc_html__('Failed response', 'wp-staging'),
69 'unknown_error' => esc_html__('Unknown error', 'wp-staging'),
70 // These strings contain HTML (the `<a>` anchor injected via sprintf)
71 // and are rendered as HTML by their JS consumers (`BackgroundLogger
72 // .showErrorModal` and `WPStaging.showError`). Using `esc_html__()`
73 // here would HTML-encode `>` / `'` in the translatable text, which
74 // then display as literal entities once the combined string is
75 // embedded into `innerHTML`. Use `__()` so the translatable part
76 // stays verbatim and the whole string is ready-to-render HTML.
77 'something_went_wrong_use_low_setting_error_text' => sprintf(__('Something went wrong! No response. Go to WP Staging > Settings and lower \'File Copy Limit\' and \'DB Query Limit\'. Also set \'CPU Load Priority to low \' and try again. If that does not help, %s', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
78 'something_went_wrong_open_ticket_error_text' => sprintf(__('Something went wrong! No response. Please try again. If that does not help, %s', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
79 'contact_us_to_solve' => sprintf(esc_html__('Please get in contact with us to solve it %s', 'wp-staging'), 'support@wp-staging.com'),
80 'clone_data_save_success' => esc_html__('Clone data saved successfully.', 'wp-staging'),
81 'clone_data_save_error' => sprintf(esc_html__('Could not save clone data %s Error: ', 'wp-staging'), '<br/>'),
82 'ajax_status_code_404' => sprintf(esc_html__('Something went wrong; can\'t find ajax request URL! Please try the %s. If that does not help, %s', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>', '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
83 'status_code_500' => sprintf(esc_html__('Something went wrong; internal server error while processing the request! Please try the %s. If that does not help, %s', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>', '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
84 'small_server_settings_text' => sprintf(esc_html__('Please try the %s or submit an error report and contact us.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>'),
85 'report_this_warning' => sprintf(wp_kses(__('Please report this warning <a href="%s" target="_blank">to our support</a> and keep using WP Staging!', 'wp-staging'), [ "a" => [ "href" => "%s", "target" => "_blank" ] ]), Language::localizeSupportUrl('https://wp-staging.com/support/')),
86 'please_wait' => esc_html__('Please wait...this can take up a while.', 'wp-staging'),
87 'contact_us' => esc_html__('CONTACT US', 'wp-staging'),
88 'database_connection' => [
89 'success' => esc_html__('Database connection successful', 'wp-staging'),
90 'failed' => esc_html__('Database connection failed', 'wp-staging'),
91 'nothing_to_test' => esc_html__('Nothing to test!', 'wp-staging'),
92 ],
93 'staging_site' => [
94 'delete' => [
95 'confirmation' => esc_html__('Delete Staging Site "%s"', 'wp-staging'),
96 'confirm_button' => esc_html__('Delete Staging Site', 'wp-staging'),
97 'confirm_required' => esc_html__('Please confirm that the selected staging data will be permanently deleted.', 'wp-staging'),
98 'delete_permanently' => esc_html__('Delete Staging Site Permanently', 'wp-staging'),
99 'delete_selected_data' => esc_html__('Delete Selected Staging Data', 'wp-staging'),
100 'delete_selected_files' => esc_html__('Delete Selected Files', 'wp-staging'),
101 'delete_selected_tables' => esc_html__('Delete Selected Tables', 'wp-staging'),
102 'select_at_least_one' => esc_html__('Please select at least one item to delete.', 'wp-staging'),
103 'selected_count' => esc_html__('%d selected', 'wp-staging'),
104 'selected_count_size' => esc_html__('%1$d selected · %2$s total', 'wp-staging'),
105 'count_of' => esc_html__('%1$d of %2$d', 'wp-staging'),
106 'tables_count' => esc_html__('%1$d of %2$d tables · %3$s', 'wp-staging'),
107 'tables_count_plain' => esc_html__('%1$d of %2$d tables', 'wp-staging'),
108 'folders_count' => esc_html__('%1$d of %2$d folders · %3$s', 'wp-staging'),
109 'folders_count_plain' => esc_html__('%1$d of %2$d folders', 'wp-staging'),
110 'none' => esc_html__('None', 'wp-staging'),
111 'kept' => esc_html__('Kept', 'wp-staging'),
112 'all_selected' => esc_html__('All selected', 'wp-staging'),
113 'summary_subtitle' => esc_html__('%1$d tables · %2$d folders · %3$s', 'wp-staging'),
114 'nothing_selected' => esc_html__('Nothing selected — open to choose what to delete', 'wp-staging'),
115 'title' => esc_html__('Staging Site Deleted Successfully!', 'wp-staging'),
116 ],
117 ],
118 'cloning' => [
119 'title' => esc_html__('Staging Site Created Successfully!', 'wp-staging'),
120 'body' => esc_html__('Your staging site is ready. You can now test plugin updates, theme changes, custom code, and content edits safely before touching production.', 'wp-staging'),
121 ],
122 'update' => [
123 'title' => esc_html__('Staging Site Updated Successfully!', 'wp-staging'),
124 'body' => esc_html__('You can access it from here:', 'wp-staging'),
125 ],
126 'push_processing' => [
127 'title' => esc_html__('Staging Site Pushed Successfully!', 'wp-staging'),
128 'body' => esc_html__('Now delete the theme and the website cache if the website does not look as expected! ', 'wp-staging'),
129 'confirmTitle' => esc_html__('Do you want to push the staging site?', 'wp-staging'),
130 'confirmButtonText' => esc_html__('Push', 'wp-staging'),
131 ],
132 'reset' => [
133 'title' => esc_html__('Staging Site Reset Successfully!', 'wp-staging'),
134 'body' => esc_html__('You can access it from here:', 'wp-staging'),
135 'confirm_button' => esc_html__('Reset Staging Site', 'wp-staging'),
136 ],
137 'delete_clone' => [
138 'title' => esc_html__('Staging Site Deleted Successfully!', 'wp-staging'),
139 ],
140 'backup_success' => [
141 'scheduled' => [
142 'title' => esc_html__('Backup Schedule Created', 'wp-staging'),
143 'body' => esc_html__('Backup is scheduled according to the provided settings.', 'wp-staging'),
144 ],
145 'run_in_bg' => [
146 'title' => esc_html__('Backup Creation Triggered', 'wp-staging'),
147 'body' => esc_html__('Backup will run in background. You can close the window.', 'wp-staging'),
148 ],
149 'created' => [
150 'title' => esc_html__('Backup Complete', 'wp-staging'),
151 'body' => esc_html($backupCompleteMessage),
152 ],
153 ],
154 'admin_warn_if_closing_during_process' => esc_html__('You MUST leave this window open while cloning/pushing. Please wait...', 'wp-staging'),
155 'admin_handle_fetch_errors' => esc_html__('Please try again or contact support.', 'wp-staging'),
156 'admin_elements' => [
157 'check_clone_error' => esc_html__('Error: Please choose correct name for the staging site.', 'wp-staging'),
158 'clone_hostname_error' => esc_html__('Invalid host name. Please provide it in a format like http://example.com', 'wp-staging'),
159 ],
160 'admin_clone_actions_update_modal' => [
161 'title' => esc_html__('Do you want to update the staging site?', 'wp-staging'),
162 'body' => sprintf(esc_html__('This function overwrites the staging site at "%s" with data from the production site, making it identical to the live site and removing any changes made on the staging site. Use this only if you want to re-clone your live site. You can select specific tables and files in the next step.', 'wp-staging'), '<b>{URL}</b>'),
163 'suggestion' => sprintf(esc_html__('%sPlease back up your staging site before proceeding!%s', 'wp-staging'), '<b class="wpstg-flex-text-center">', '</b>'),
164 'confirm_button_text' => esc_html__('Select Data', 'wp-staging'),
165 ],
166 'admin_clone_actions' => [
167 'cancel_cloning_confirm' => esc_html__('Are you sure you want to cancel cloning process?', 'wp-staging'),
168 'resume_cloning_status' => esc_html__('Try to resume cloning process...', 'wp-staging'),
169 'confirm_delete_clone_title' => esc_html__('Delete staging site', 'wp-staging'),
170 'scanning_show_error' => sprintf(esc_html__('Something went wrong! Error: No response. Please try the %s or submit an error report and contact us.', 'wp-staging'), '<a href="https://wp-staging.com/docs/wp-staging-settings-for-small-servers/" target="_blank">Small Server Settings</a>'),
171 ],
172 'admin_ajax' => [
173 'error_msg_footer' => sprintf(esc_html__('Please use the %s and try again.', 'wp-staging'), '<a href="https://wp-staging.com/docs/wp-staging-settings-for-small-servers/" target="_blank">Small Server Settings</a>'),
174 'pushing_error_msg' => sprintf(esc_html__('If this issue persists, you can use the %s feature to move your staging site to live. %s', 'wp-staging'), '<strong>Backup & Migration</strong>', '<a href="' . esc_url(Language::localizeDocsUrl('https://wp-staging.com/docs/how-to-migrate-your-wordpress-site-to-a-new-host/')) . '" target="_blank">' . esc_html__("Read more", "wp-staging") . '.</a>'),
175 'contact_us_text' => esc_html__('to analyze this issue further.', 'wp-staging'),
176 'help_content_pro' => esc_html__('Please contact WP Staging support if you need further assistance.', 'wp-staging'),
177 ],
178 'admin_step_buttons' => [
179 'popup_title' => esc_html__('Do You Want to Proceed?', 'wp-staging'),
180 'popup_html' => sprintf(esc_html__('This will overwrite the staging site "%s" and will lead to loss of your staging site\'s modifications.%sThis is a final warning. Do not stop the update process once it starts, as that may break your staging site.%sClick on %scancel%s if you don\'t want to update the staging site.', 'wp-staging'), '<b>{URL}</b>', '<br><br><b>', '</b><br><br>', '<b>', '</b>'),
181 'confirm_button_text' => esc_html__('Update', 'wp-staging'),
182 ],
183 'admin_verify_external_database' => [
184 'error_no_response' => esc_html__('Something went wrong! Error: No response. Please try again. If that does not help,', 'wp-staging'),
185 'error_invalid_response' => esc_html__('Something went wrong! Error: Invalid response. Please try again. If that does not help,', 'wp-staging'),
186 'comparison_modal_html_note' => esc_html__('Note: Some MySQL/MariaDB properties do not match. You may proceed but the staging site may not work as expected.', 'wp-staging'),
187 'comparison_modal_title' => esc_html__('Different Database Properties', 'wp-staging'),
188 'comparison_modal_confirm_button_text' => esc_html__('Proceed', 'wp-staging'),
189 'error_modal_title' => esc_html__('Different Database Properties', 'wp-staging'),
190 'error_modal_confirm_button_text' => esc_html__('Proceed', 'wp-staging'),
191 'insufficient_db_privilege_title' => esc_html__('Insufficient Database Privileges', 'wp-staging'),
192 'show_full_message' => esc_html__('Show Full Message', 'wp-staging'),
193 'hide_full_message' => esc_html__('Hide Full Message', 'wp-staging'),
194 ],
195 'admin_send_cloning_ajax' => [
196 'error_general' => sprintf(esc_html__('Something went wrong!%sGo to WP Staging > Settings and lower \'File Copy Limit\' and \'DB Query Limit\'. Also set \'CPU Load Priority to low \' and try again. If that does not help, %s', 'wp-staging'), '<br/><br/>', '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
197 'error_no_response' => sprintf(esc_html__('Something went wrong! No response.%sGo to WP Staging > Settings and lower \'File Copy Limit\' and \'DB Query Limit\'. Also set \'CPU Load Priority to low \' and try again. If that does not help, %s', 'wp-staging'), '<br/><br/>', '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
198 ],
199 'admin_load_overview' => [
200 'error_no_response' => sprintf(esc_html__('Something went wrong! No response. Please try the %s or submit an error report.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>Small Server Settings</a>'),
201 ],
202 'admin_check_disk_space' => [
203 'error_disk_space' => esc_html__('Can not detect required disk space', 'wp-staging'),
204 'error_disk_space_html_1' => esc_html__('Estimated necessary disk space: ', 'wp-staging'),
205 'error_disk_space_html_2' => esc_html__('Before proceeding, make sure that your server has enough free disk space to clone the website. You can check the available disk space in your hosting customer account (e.g. cPanel).', 'wp-staging'),
206 ],
207 'admin_that_timer' => [
208 'elapsed_time' => esc_html__('Elapsed Time: ', 'wp-staging'),
209 ],
210 'admin_is_clone_destination_path_same_as_root_error' => esc_html__('The target path must be different from the root path of the production website.', 'wp-staging'),
211 'admin_check_user_db_permissions_confirm_button_text' => esc_html__('Proceed', 'wp-staging'),
212 'admin_send_issue_report_success_message' => sprintf(esc_html__('Thanks for submitting your request! You should receive an auto reply mail with your ticket ID immediately for confirmation!%sIf you do not get that mail please contact us directly at %s', 'wp-staging'), '<br/><br/>', '<strong>support@wp-staging.com</strong>'),
213 'common' => [
214 'firewall_error_text' => sprintf(esc_html__('WP Staging is blocked by a security plugin or firewall setting. Please whitelist all ajax requests coming from %s. If possible put your firewall into learning mode and try again.%sPlease ask your hosting provider or security plugin to permanently whitelist WP Staging requests. If it still fails, please contact us.', 'wp-staging'), '<code>action=wpstg_</code>', '<br><br>'),
215 'fetch_errors_error_text' => esc_html__('Please try again or contact support.', 'wp-staging'),
216 'ajax_error_fatal_error' => esc_html__('Fatal Error: ', 'wp-staging'),
217 'ajax_error_error_text' => sprintf(esc_html__('Please try the %s or submit an error report and contact us.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>'),
218 'ajax_status_code_504' => sprintf(esc_html__('Error 504 - It looks like your server is rate limiting ajax requests. Please try to resume after a minute. If this still not works try the %s or submit an error report and contact us.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>'),
219 'ajax_status_code_502' => sprintf(esc_html__('Error 502 - It looks like your server is rate limiting ajax requests. Please try to resume after a minute. If this still not works try the %s or submit an error report and contact us.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>'),
220 'ajax_status_code_503' => sprintf(esc_html__('Error 503 - It looks like your server is rate limiting ajax requests. Please try to resume after a minute. If this still not works try the %s or submit an error report and contact us.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>'),
221 'ajax_status_code_429' => sprintf(esc_html__('Error 429 - It looks like your server is rate limiting ajax requests. Please try to resume after a minute. If this still not works try the %s or submit an error report and contact us.', 'wp-staging'), '<a href=\'https://wp-staging.com/docs/wp-staging-settings-for-small-servers/\' target=\'_blank\'>WP Staging Small Server Settings</a>'),
222 'ajax_error_error_text_backup' => sprintf(esc_html__('Please submit an error report and %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
223 'ajax_status_code_404_backup' => sprintf(esc_html__('Something went wrong; can\'t find ajax request URL! Please %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
224 'status_code_500_backup' => sprintf(esc_html__('Something went wrong; internal server error while processing the request! Please %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
225 'ajax_status_code_504_backup' => sprintf(esc_html__('Error 504 - Server timeout while processing the request. Please try to resume after a minute. If this still not works, %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
226 'ajax_status_code_502_backup' => sprintf(esc_html__('Error 502 - Server error while processing the request. Please try to resume after a minute. If this still not works, %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
227 'ajax_status_code_503_backup' => sprintf(esc_html__('Error 503 - Server error while processing the request. Please try to resume after a minute. If this still not works, %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
228 'ajax_status_code_429_backup' => sprintf(esc_html__('Error 429 - Server is rate limiting requests. Please try to resume after a minute. If this still not works, %s.', 'wp-staging'), '<a href=\'' . Language::localizeSupportUrl('https://wp-staging.com/support/') . '\' target=\'_blank\'>open a support ticket</a>'),
229 ],
230 'pro_admin_pro' => [
231 'start_process_modal_html' => sprintf(esc_html__('This will overwrite the production/live site and its plugins, themes and media assets with data from the staging site: %sDatabase data will be overwritten for each selected table. Take care if you use a shop system like WooCommerce and read the %s. %s %sImportant:%s Before you proceed make sure that you have a full site backup. If the pushing process is not successful contact us at %s or use the Contact Us button.', 'wp-staging'), '%cloneName', '<a href="https://wp-staging.com/docs/skip-woocommerce-orders-and-products/" target="_blank">FAQ</a>', '<br/><br/>', '<b>', '</b>', '<a href=\'mailto:support@wp-staging.com\'>support@wp-staging.com</a>'),
232 'connect_database_ajax_success_notify' => esc_html__('Database connection successful', 'wp-staging'),
233 ],
234 'module_process_modal' => [
235 'cancel_process_confirm' => esc_html__('Are you sure you want to cancel cloning process?', 'wp-staging'),
236 'cancel_process_text' => esc_html__('Canceling Please wait...', 'wp-staging'),
237 'set_title_copying_database' => esc_html__('Copying Database', 'wp-staging'),
238 'set_title_processing_data' => esc_html__('Processing Data', 'wp-staging'),
239 'set_title_preserve_data' => esc_html__('Preserve Data', 'wp-staging'),
240 'set_title_scanning_files' => esc_html__('Scanning Files', 'wp-staging'),
241 'set_title_copying_files' => esc_html__('Copying Files', 'wp-staging'),
242 'set_title_backup_files_scanning' => esc_html__('Backup Files Scanning', 'wp-staging'),
243 'set_title_process_finished' => esc_html__('Process Finished', 'wp-staging'),
244 'set_title_renaming_database' => esc_html__('Renaming Database', 'wp-staging'),
245 'set_title_updating_database_data' => esc_html__('Updating Database Data', 'wp-staging'),
246 'set_title_search_replace' => esc_html__('Search Replace', 'wp-staging'),
247 ],
248 'system_info' => [
249 'confirm_and_proceed_purge_html' => esc_html__('This cleans up the database table %s. Only use this function for debugging purposes, or if the scheduled backups do not work as expected.', 'wp-staging'),
250 'confirm_button_text' => esc_html__('Clean Backup Queue', 'wp-staging'),
251 'confirm_title' => esc_html__('Are You Sure?', 'wp-staging'),
252 'delete_log_files' => esc_html__('This will permanently remove the %s logs from your system.', 'wp-staging'),
253
254 ],
255 'clone_edit' => [
256 'check_database_error' => esc_html__('Warning: Database table prefix can not be empty!', 'wp-staging'),
257 ],
258 'edit_staging_site' => [
259 'required_error' => esc_html__('This field is required.', 'wp-staging'),
260 'slug_error' => esc_html__('Use lowercase letters, numbers, hyphens, or underscores only.', 'wp-staging'),
261 'absolutePath_error' => esc_html__('Enter an absolute server path.', 'wp-staging'),
262 'url_error' => esc_html__('Enter a valid http or https URL.', 'wp-staging'),
263 'prefix_error' => esc_html__('Use letters, numbers, or underscores and end with an underscore.', 'wp-staging'),
264 'high_risk_confirm_title' => esc_html__('Review connection changes before saving.', 'wp-staging'),
265 'high_risk_confirm_body' => esc_html__('Changing these values can break push-to-live functionality.', 'wp-staging'),
266 ],
267 'backup_remote_upload' => [
268 'backup_successfully_uploaded' => esc_html__('Backup successfully uploaded!', 'wp-staging'),
269 'backup_upload_complete' => esc_html__('Backup Upload Complete', 'wp-staging'),
270 ],
271 'backup_explore' => [
272 'extract_selected' => esc_html__('Extract Selected', 'wp-staging'),
273 'loading_files' => esc_html__('Loading files...', 'wp-staging'),
274 'select_files_warning' => esc_html__('Select at least one file to extract.', 'wp-staging'),
275 'selected_count' => esc_html__('%d file(s) selected', 'wp-staging'),
276 'extracting' => esc_html__('Extracting files...', 'wp-staging'),
277 'extract_success' => esc_html__('Your files are ready', 'wp-staging'),
278 'extract_success_singular' => esc_html__('Your file is ready', 'wp-staging'),
279 'extract_subtitle_singular' => esc_html__('%s file was processed and is now stored in this directory:', 'wp-staging'),
280 'extract_subtitle_plural' => esc_html__('%s files were processed and are now stored in this directory:', 'wp-staging'),
281 'extract_error' => esc_html__('Failed to extract files.', 'wp-staging'),
282 'files_extracted_summary' => esc_html__('%1$d files extracted, %2$d files skipped.', 'wp-staging'),
283 'files_extracted_only' => esc_html__('%d files extracted.', 'wp-staging'),
284 'file_extracted_summary' => esc_html__('%1$d file extracted, %2$d file skipped.', 'wp-staging'),
285 'file_extracted_only' => esc_html__('%d file extracted.', 'wp-staging'),
286 'selected_none' => esc_html__('No items selected', 'wp-staging'),
287 'items_label' => esc_html__('items', 'wp-staging'),
288 'modal_title' => esc_html__('Extract Files from: %s', 'wp-staging'),
289 'search_results' => esc_html__('%1$d results for %2$s', 'wp-staging'),
290 'selected_count_size' => esc_html__('%1$s · %2$s', 'wp-staging'),
291 'clear_selection' => esc_html__('Clear selection', 'wp-staging'),
292 'root_label' => esc_html__('Backup Contents', 'wp-staging'),
293 'root_folder' => esc_html__('Root', 'wp-staging'),
294 'extract_upsell_badge' => esc_html__('File Extraction', 'wp-staging'),
295 'extract_upsell_title' => esc_html__('This selection can\'t be extracted with your current plan', 'wp-staging'),
296 'extract_upsell_subtitle' => esc_html__('Single-file extraction is available on all paid plans. Multiple files or folders require the Developer or Agency plan.', 'wp-staging'),
297 'extract_upsell_feature1_title' => esc_html__('Single files', 'wp-staging'),
298 'extract_upsell_feature1_desc' => esc_html__('Available on all premium paid plans.', 'wp-staging'),
299 'extract_upsell_feature2_title' => esc_html__('Multiple files or folders', 'wp-staging'),
300 'extract_upsell_feature2_desc' => esc_html__('Available on the Developer and Agency plans.', 'wp-staging'),
301 'extract_upsell_feature3_title' => esc_html__('Without changing your live site', 'wp-staging'),
302 'extract_upsell_feature3_desc' => esc_html__('Extract and review backup contents without affecting your website.', 'wp-staging'),
303 'extract_upsell_callout' => esc_html__('The Developer or Agency plan is required for extracting multiple files or folders.', 'wp-staging'),
304 'extract_upsell_compare' => esc_html__('Compare plans', 'wp-staging'),
305 'extract_upsell_cta' => esc_html__('Upgrade to Developer', 'wp-staging'),
306 'extract_upsell_cta_secondary' => esc_html__('Choose Personal or Business for single-file extraction', 'wp-staging'),
307 'extract_upsell_cta_activate' => esc_html__('Activate your license for single-file extraction', 'wp-staging'),
308 'extract_upsell_dismiss' => esc_html__('Maybe later', 'wp-staging'),
309 'single_file_limit' => esc_html__('Your plan allows extracting 1 file at a time.', 'wp-staging'),
310 'directory_extract_upgrade' => esc_html__('Directory extraction requires Developer or Agency plan.', 'wp-staging'),
311 'upgrade_banner' => esc_html__('To extract more than one file at a time, upgrade to a Developer or Agency license.', 'wp-staging'),
312 'upgrade_btn' => esc_html__('Upgrade', 'wp-staging'),
313 'browse_title' => esc_html__('Browse Backup Contents:', 'wp-staging'),
314 'extract_title' => esc_html__('Extract Files from:', 'wp-staging'),
315 'search' => esc_html__('Search files...', 'wp-staging'),
316 'folders' => esc_html__('Folders', 'wp-staging'),
317 'search_results_label' => esc_html__('results for', 'wp-staging'),
318 'name' => esc_html__('Name', 'wp-staging'),
319 'size' => esc_html__('Items / Size', 'wp-staging'),
320 'empty' => esc_html__('No files found in this folder.', 'wp-staging'),
321 'drag_select_hint' => esc_html__('Click and drag to select multiple files at once.', 'wp-staging'),
322 'load_more' => esc_html__('Load more', 'wp-staging'),
323 'selected_one' => esc_html__('1 file selected', 'wp-staging'),
324 'selected_folder' => esc_html__('Folder', 'wp-staging'),
325 ],
326 'backup_storages' => [
327 'delete_cloud_file_modal_html' => esc_html__('Do you want to delete this backup file from the remote storage server?', 'wp-staging'),
328 'delete_cloud_file_modal_title' => esc_html__('Delete Remote Backup?', 'wp-staging'),
329 'delete_cloud_file_ajax_response_success_modal_title' => esc_html__('Backup Deleted!', 'wp-staging'),
330 'delete_cloud_file_ajax_response_success_modal_text' => esc_html__('Backup has been deleted from remote storage.', 'wp-staging'),
331 'delete_cloud_file_ajax_response_error_modal_text' => esc_html__('Failed to delete the backup', 'wp-staging'),
332 'clicked_cloud_restore_download_body_text' => esc_html__('The backup file has been saved to your website server.', 'wp-staging'),
333 'clicked_cloud_restore_download_modal_title' => esc_html__('Remote Backup Retrieved Successfully.', 'wp-staging'),
334 'file_size_label' => esc_html__('File Size:', 'wp-staging'),
335 'download_to_local_device' => esc_html__('Download to Local Device', 'wp-staging'),
336 'download_body_template' => '{bodyText}<br><br>{fileSizeLabel} {fileSize}<div class="wpstg-download-action-buttons"><a href="{downloadUrl}" class="wpstg-button wpstg-blue-primary wpstg-download-to-computer">{downloadButtonText}</a></div>',
337 'setup_download_modal_title' => esc_html__('Downloading backup from remote', 'wp-staging'),
338 'provider_failed_to_save_settings' => esc_html__('Could not save settings. Ensure that storage provider\'s credentials are correct!', 'wp-staging'),
339 'connection_test_failed_title' => esc_html__('Connection Failed', 'wp-staging'),
340 'log_instruction' => esc_html__('Open System Info > Logs', 'wp-staging'),
341 'connection_test_has_warning_title' => esc_html__('Warning', 'wp-staging'),
342 'refresh_remote_backups' => esc_html__('Refresh Remote Backups', 'wp-staging'),
343 ],
344 'backup_create' => [
345 'create_backup_fetch_listing_error_md5' => sprintf(esc_html__('Failed to get backup md5 from response!%sResponse content:', 'wp-staging'), '<br/>'),
346 ],
347 'backup_delete' => [
348 'delete_html' => esc_html__('Do you want to delete the backup', 'wp-staging'),
349 'delete_title' => esc_html__('Delete Backup', 'wp-staging'),
350 ],
351 'backup_download' => [
352 'render_part_html_file_size' => esc_html__('File Size', 'wp-staging'),
353 'render_part_html_download' => esc_html__('Download', 'wp-staging'),
354 'download_modal_title' => esc_html__('Download Backup', 'wp-staging'),
355 ],
356 'backup_edit' => [
357 'edit_html_name' => esc_html__('Backup Name', 'wp-staging'),
358 'edit_html_notes' => esc_html__('Additional Notes', 'wp-staging'),
359 ],
360 'backup_manage_schedules' => [
361 'show_alert_for_basic_alert' => esc_html__('Please upgrade to WP Staging Pro to edit existing backup plans. You can delete this plan and create a new one if you want to change it.', 'wp-staging'),
362 ],
363 'backup_restore' => [
364 'import_modal_progress_status' => esc_html__('Backup successfully imported!', 'wp-staging'),
365 'import_modal_login_text' => esc_html__('You will be redirected to the login page after closing this modal.', 'wp-staging'),
366 'import_modal_modal_title' => esc_html__('Finished Successfully', 'wp-staging'),
367 'import_modal_modal_html' => esc_html__('Site has been restored from backup. ', 'wp-staging'),
368 ],
369 'backup_upload_url' => [
370 'handle_success_response_success' => esc_html__('Upload finished', 'wp-staging'),
371 'handle_success_response_error' => esc_html__('Invalid request data', 'wp-staging'),
372 'handle_error_response_confirm' => esc_html__('An error occurred during the download. Do you want to resume the download?', 'wp-staging'),
373 'handle_cancel_process_confirm' => esc_html__('Do you want to abort the upload?', 'wp-staging'),
374 'upload_backup_from_url_empty_error' => esc_html__('Backup file URL is empty', 'wp-staging'),
375 'upload_backup_from_url_valid_url_error' => esc_html__('Please enter a valid backup file url.', 'wp-staging'),
376 'upload_backup_from_url_correct_url_error' => esc_html__('Please enter correct backup file url', 'wp-staging'),
377 'upload_backup_from_url_unknown_size_progress' => esc_html__(
378 'Downloaded {downloadedBytes}',
379 'wp-staging'
380 ),
381 ],
382 'backup_upload' => [
383 'upload_not_supported_error' => sprintf(esc_html__('Your browser do not support the File API, needed for the uploads. Please try a different/updated browser, or upload the Backup using FTP to the folder %s', 'wp-staging'), '<strong>wp-content/uploads/wp-staging/backups</strong>'),
384 'event_listener_confirm_cancel_upload_confirm' => esc_html__('Do you want to abort the upload?', 'wp-staging'),
385 'handle_error_modal' => sprintf(esc_html__('We could not upload the backup file, please try uploading it directly using FTP to the folder %s. Please also make sure you have enough free disk space on the server.', 'wp-staging'), '<strong>wp-content/uploads/wp-staging/backups</strong>'),
386 'upload_error' => sprintf(esc_html__('The backup file could not be uploaded. The server blocked the request. Please try uploading the file directly using FTP to the folder %s.', 'wp-staging'), '<strong>wp-content/uploads/wp-staging/backups</strong>'),
387 'error_code' => esc_html__('Error Code:', 'wp-staging'),
388 ],
389 'create_text' => esc_html__('Create', 'wp-staging'),
390 'update_text' => esc_html__('Update', 'wp-staging'),
391 'openStagingSite' => esc_html__('Open Staging Site', 'wp-staging'),
392 'manageStagingSites' => esc_html__('Manage Staging Sites', 'wp-staging'),
393 'temporary_logins' => [
394 'not_allowed' => esc_html__('You are not allowed to create a temporary login link.', 'wp-staging'),
395 'invalid_email' => esc_html__('Please enter the email address of the person you wish to grant access to.', 'wp-staging'),
396 'invalid_expiry' => esc_html__('Please select an expiry date to create a temporary login.', 'wp-staging'),
397 'delete_success' => esc_html__('Login link removed successfully!', 'wp-staging'),
398 'confirm_delete' => esc_html__('Do you really want to delete this temporary login link?', 'wp-staging'),
399 'confirm_delete_title' => esc_html__('Are you sure?', 'wp-staging'),
400 ],
401 'cannot_generate_otp_error' => wp_kses(__('We couldn\'t create the verification code. This might be caused by a firewall blocking the request. The verification code is necessary for security before you can upload a backup to this site. To proceed, you can temporarily <a href="%s" target="_blank">disable the verification code generation</a> or contact WP Staging support for assistance.', 'wp-staging'), ["a" => ["href" => [], "target" => []]]),
402 'memory_exhaust_error' => wp_kses(__('Read <a target="_blank" href="%s">this article</a> for solving this issue. Please contact WP Staging support if you need further assistance.', 'wp-staging'), ["a" => ["href" => [], "target" => []]]),
403 'contact_us_for_help' => esc_html__('[button]CONTACT US[/button] for help in solving this issue.', 'wp-staging'),
404 'connection_key_copied_to_clipboard' => esc_html__('Connection Key copied to clipboard', 'wp-staging'),
405 'resetConnectionKey' => esc_html__('Reset Connection Key?', 'wp-staging'),
406 'resetKeyWarningTitle' => esc_html__('This action cannot be undone', 'wp-staging'),
407 'resetKeyWarningText' => esc_html__('The current key will be permanently invalidated. Any site using this key will no longer be able to import data from this site.', 'wp-staging'),
408 'resetKey' => esc_html__('Reset Key', 'wp-staging'),
409 'enabled' => esc_html__('Enabled', 'wp-staging'),
410 'disabled' => esc_html__('Disabled', 'wp-staging'),
411 'remote_storage' => [
412 'host_required' => esc_html__('Host field is required.', 'wp-staging'),
413 'port_required' => esc_html__('Port field is required.', 'wp-staging'),
414 'username_required' => esc_html__('Username field is required.', 'wp-staging'),
415 'password_required' => esc_html__('Password field is required.', 'wp-staging'),
416 'password_key_required' => esc_html__('Either password or key is required.', 'wp-staging'),
417 'location_required' => esc_html__('Location field is required.', 'wp-staging'),
418 'access_key_required' => esc_html__('Access key field is required.', 'wp-staging'),
419 'secret_key_required' => esc_html__('Secret key field is required.', 'wp-staging'),
420 'bucket_location_required' => esc_html__('Bucket field is required.', 'wp-staging'),
421 'custom_region_required' => esc_html__('Custom region is required.', 'wp-staging'),
422 'backup_location_no_spaces' => esc_html__('Backup location must not contain spaces.', 'wp-staging'),
423 'save_settings_abort_error' => esc_html__('Could not save settings. Ensure credentials are correct! Please try again!', 'wp-staging'),
424 'test_connection_abort_error' => esc_html__('No response from server! Ensure credentials are correct. Please try again.', 'wp-staging'),
425 'delete_storage_provider_settings_confirm' => esc_html__('Deleting %s settings will permanently remove all saved settings and data related to this storage provider from the database. You will need to reconfigure all settings if you want to use this storage provider again.', 'wp-staging'),
426 'logout_storage_provider_settings_confirm' => esc_html__('Logging out from %s will permanently remove all saved settings and data related to this storage provider from the database. You will need to re-authenticate and reconfigure all settings if you want to use this storage provider again.', 'wp-staging'),
427 'enter_drive_id_for_shared_drive' => esc_html__('Please enter the Drive ID for the shared drive.', 'wp-staging'),
428 'empty_folder_error' => esc_html__('Please enter folder path where backups will be stored.', 'wp-staging'),
429 ],
430 'background_logger_wait' => esc_html__('Initializing. Please wait, process is starting...', 'wp-staging'),
431 'cannot_generate_login_link' => esc_html__('Fail to create a temporary login link. Please make sure your staging site is properly configured and try again. If the issue persists, contact WP STAGING support for assistance.', 'wp-staging'),
432 'sync_connection_one_way' => esc_html__('Successfully established one way connection to %s.', 'wp-staging'),
433 'sync_connection_two_way' => esc_html__('Successfully established two way connection to %s.', 'wp-staging'),
434 'sync_connection_expired' => esc_html__('Connection has expired. Please connect again.', 'wp-staging'),
435 'sync_connection_expires_in' => esc_html__('Expires in %s', 'wp-staging'),
436 'remote_sync_already_synced' => esc_html__('Site is already synced.', 'wp-staging'),
437 'remote_site' => esc_html__('remote site.', 'wp-staging'),
438 /* translators: %s is the remote source site URL; placement is flexible so non-SVO languages can reorder. */
439 'pull_from_template' => esc_html__('Pull from %s', 'wp-staging'),
440 'http_auth_badge' => esc_html__('HTTP Auth', 'wp-staging'),
441 'nothing_to_sync_title' => esc_html__('Nothing to sync', 'wp-staging'),
442 'nothing_to_sync_body' => esc_html__('The source site has no content to sync for the items you selected. Try adjusting your selection or adding content on the remote site first.', 'wp-staging'),
443 /* translators: %s is the original server-side reason, kept verbatim under a small "Details" line for support diagnostics. */
444 'details_label' => esc_html__('Details: %s', 'wp-staging'),
445 'reset_settings_confirmation' => esc_html__('Are you sure you want to reset all settings to default values?', 'wp-staging'),
446 'directory_not_writable' => esc_html__('The directory isn\'t writable. This might be caused by incorrect folder permissions or server configuration restrictions (such as open_basedir).', 'wp-staging'),
447 'install_wp_staging_cli' => esc_html__('Install WP Staging CLI', 'wp-staging'),
448 'solid_components' => [
449 'error_boundary' => [
450 'title' => esc_html__('Something went wrong', 'wp-staging'),
451 'retry' => esc_html__('Try Again', 'wp-staging'),
452 'message' => esc_html__('An error occurred while loading this component.', 'wp-staging'),
453 ],
454 ],
455 'createLocalSite' => esc_html__('Create Local Site', 'wp-staging'),
456 'localViaDocker' => esc_html__('Local via Docker', 'wp-staging'),
457 'back' => esc_html__('Back', 'wp-staging'),
458 'run_in_background' => esc_html__('Run in background', 'wp-staging'),
459 'cancel_sync' => esc_html__('Cancel sync', 'wp-staging'),
460 'cancel_remote_sync_title' => esc_html__('Cancel Remote Sync?', 'wp-staging'),
461 'cancel_remote_sync_body' => esc_html__('This will stop the current pull.', 'wp-staging'),
462 'keep_running' => esc_html__('Keep running', 'wp-staging'),
463 'remote_sync_completed' => esc_html__('Remote Sync completed', 'wp-staging'),
464 'remote_sync_pulled_successfully' => esc_html__('The site was pulled successfully.', 'wp-staging'),
465 'remote_sync_user_changed_login_hint' => esc_html__('The site was pulled successfully. Your current account may have changed. Login with username and password from the source site.', 'wp-staging'),
466 'remote_sync_kept_user_login_hint' => esc_html__('The site was pulled successfully. Your current username and password are still valid. Please log in again.', 'wp-staging'),
467 'keep_current_user_note' => esc_html__('Your current username and password will still be valid, but you will need to log in again after sync.', 'wp-staging'),
468 // Remote Sync sync item labels
469 'mediaLibrary' => esc_html__('Media Library', 'wp-staging'),
470 'themes' => esc_html__('Themes', 'wp-staging'),
471 'plugins' => esc_html__('Plugins', 'wp-staging'),
472 'muPlugins' => esc_html__('MU-Plugins', 'wp-staging'),
473 'database' => esc_html__('Database', 'wp-staging'),
474 'otherFiles' => esc_html__('Other Files', 'wp-staging'),
475 // Remote Sync password prompt
476 'passwordRequiredTitle' => esc_html__('Password Required', 'wp-staging'),
477 'passwordRequiredText' => esc_html__('The remote site requires a password to connect.', 'wp-staging'),
478 'passwordInvalidText' => esc_html__('The password you entered is incorrect. Please try again.', 'wp-staging'),
479 'passwordMaxAttempts' => esc_html__('Too many failed password attempts. Please verify the password on the remote site and try again.', 'wp-staging'),
480 'enterPassword' => esc_html__('Enter password', 'wp-staging'),
481 // Remote Sync overwrite terminology (button labels — modal body lives in confirm-overwrite.php)
482 'confirm_overwrite_btn' => esc_html__('Confirm overwrite', 'wp-staging'),
483 'gotIt' => esc_html__('Got it', 'wp-staging'),
484 'whatsNewIn' => esc_html__("What's New in %s", 'wp-staging'),
485 'remoteSyncExpiredHeadline' => esc_html__('Your Pro features are paused', 'wp-staging'),
486 'remoteSyncExpiredBody' => esc_html__('Your license has expired. Renew to re-enable Remote Sync and other Pro features.', 'wp-staging'),
487 'renewLicense' => esc_html__('Renew License', 'wp-staging'),
488 'remoteSyncDemoHeadline' => esc_html__('Same site. New server?', 'wp-staging'),
489 'remoteSyncDemoAlt' => esc_html__('Remote Sync demo', 'wp-staging'),
490 'videoPrivacy' => esc_html__('Video hosted on Vimeo. Loaded only after click.', 'wp-staging'),
491 'playVideo' => esc_html__('Play video', 'wp-staging'),
492 'demo' => esc_html__('Demo', 'wp-staging'),
493 'viewFullChangelog' => esc_html__('View full changelog', 'wp-staging'),
494 'planIncludesRemoteSyncReady' => esc_html__('Your plan includes Remote Sync. Use it right away.', 'wp-staging'),
495 'startRemoteSync' => esc_html__('Start Remote Sync', 'wp-staging'),
496 'remoteSyncAvailableIn' => esc_html__('Remote Sync is available in Developer and Agency plans.', 'wp-staging'),
497 'remoteSyncAvailableShort' => esc_html__('Available in Developer and Agency plans.', 'wp-staging'),
498 'remoteSyncYourCurrentPlan' => esc_html__('Your current plan: %s.', 'wp-staging'),
499 'remoteSyncSocialProof' => esc_html__('Popular with agencies and developers.', 'wp-staging'),
500 'unlockRemoteSync' => esc_html__('Unlock Remote Sync', 'wp-staging'),
501 'remoteSyncAvailableInPro' => esc_html__('Remote Sync is available in WP Staging Pro.', 'wp-staging'),
502 'remoteSyncSubline' => esc_html__('Move sites between servers with one secure key.', 'wp-staging'),
503 'seeProFeatures' => esc_html__('See Pro Features', 'wp-staging'),
504 'spotlightFeaturePro' => esc_html__('Spotlight Feature (Pro)', 'wp-staging'),
505 'remoteSyncMicrocopy25Sites' => esc_html__('Includes up to 25 sites. You only pay the prorated difference.', 'wp-staging'),
506 'upgradeProrated' => esc_html__('You only pay the prorated difference to your current plan.', 'wp-staging'),
507 'whatsNewDemoVideo' => esc_html__("What's New demo video", 'wp-staging'),
508 'pro' => esc_html__('PRO', 'wp-staging'),
509 'documentation' => esc_html__('Documentation', 'wp-staging'),
510 'testingConnection' => esc_html__('Testing connection...', 'wp-staging'),
511 ];
512 }
513 }
514