Version Description
Download this release
Release Info
Developer | rabbii |
Plugin | WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress |
Version | 3.1.11 |
Comparing to | |
See all releases |
Code changes from version 3.1.10 to 3.1.11
- admin/class-admin-settings.php +1 -1
- admin/class-admin-subscription.php +1 -0
- admin/html/whats-new.php +36 -0
- admin/installer.php +4 -2
- admin/posting.php +24 -10
- admin/settings-options.php +7 -0
- class/frontend-account.php +5 -5
- class/frontend-form-post.php +1 -1
- class/payment.php +7 -6
- includes/class-form.php +1 -1
- includes/class-gutenblock.php +1 -1
- includes/free/form-element.php +1 -0
- includes/setup-wizard.php +31 -2
- languages/wp-user-frontend.pot +266 -219
- lib/appsero/Insights.php +9 -9
- lib/class-wedevs-insights.php +3 -1
- readme.txt +11 -2
- templates/account.php +8 -1
- wpuf-functions.php +69 -3
- wpuf.php +27 -4
admin/class-admin-settings.php
CHANGED
@@ -405,7 +405,7 @@ class WPUF_Admin_Settings {
|
|
405 |
wp_localize_script( 'wpuf-admin-script', 'wpuf_admin_script', array(
|
406 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
407 |
'nonce' => wp_create_nonce( 'wpuf_nonce' ),
|
408 |
-
'cleared_schedule_lock' => __( '
|
409 |
) );
|
410 |
}
|
411 |
|
405 |
wp_localize_script( 'wpuf-admin-script', 'wpuf_admin_script', array(
|
406 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
407 |
'nonce' => wp_create_nonce( 'wpuf_nonce' ),
|
408 |
+
'cleared_schedule_lock' => __( 'Post lock has been cleared', 'wp-user-frontend' ),
|
409 |
) );
|
410 |
}
|
411 |
|
admin/class-admin-subscription.php
CHANGED
@@ -454,6 +454,7 @@ class WPUF_Admin_Subscription {
|
|
454 |
<th><?php _e( 'Expiration Message', 'wp-user-frontend' ); ?></th>
|
455 |
<td>
|
456 |
<textarea name="post_expiration_settings[post_expiration_message]" id="wpuf-post_expiration_message" cols="50" rows="5"><?php echo $post_expiration_message;?></textarea>
|
|
|
457 |
</td>
|
458 |
</tr>
|
459 |
|
454 |
<th><?php _e( 'Expiration Message', 'wp-user-frontend' ); ?></th>
|
455 |
<td>
|
456 |
<textarea name="post_expiration_settings[post_expiration_message]" id="wpuf-post_expiration_message" cols="50" rows="5"><?php echo $post_expiration_message;?></textarea>
|
457 |
+
<p class="description"><strong><?php echo __( 'You may use: {post_author} {post_url} {blogname} {post_title} {post_status}', 'wp-user-frontend' ); ?></strong></p>
|
458 |
</td>
|
459 |
</tr>
|
460 |
|
admin/html/whats-new.php
CHANGED
@@ -1,5 +1,41 @@
|
|
1 |
<?php
|
2 |
$changelog = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
array(
|
4 |
'version' => 'Version 3.1.10',
|
5 |
'released' => '2019-09-06',
|
1 |
<?php
|
2 |
$changelog = array(
|
3 |
+
array(
|
4 |
+
'version' => 'Version 3.1.11',
|
5 |
+
'released' => '2019-10-02',
|
6 |
+
'changes' => array(
|
7 |
+
array(
|
8 |
+
'title' => __( 'Option to set which tab shows as active on the account page', 'wp-user-frontend' ),
|
9 |
+
'type' => 'New',
|
10 |
+
'description' => __( 'Option to set which tab shows as active on the account page. To configure this setting navigate to wp-admin->User Frontend->Settings->My Account->Active Tab ', 'wp-user-frontend' ),
|
11 |
+
),
|
12 |
+
array(
|
13 |
+
'title' => __( 'Unlock option was unavailable after the post being locked', 'wp-user-frontend' ),
|
14 |
+
'type' => 'Fix',
|
15 |
+
'description' => __( 'Unlock option was unavailable after the post being locked.', 'wp-user-frontend' )
|
16 |
+
),
|
17 |
+
array(
|
18 |
+
'title' => __( "Gutenberg block of WPUF didn't work on bedrock installation", 'wp-user-frontend' ),
|
19 |
+
'type' => 'Fix',
|
20 |
+
'description' => __( "Gutenberg block of WPUF didn't work on bedrock installation.", 'wp-user-frontend' )
|
21 |
+
),
|
22 |
+
array(
|
23 |
+
'title' => __( "Sending admin payment received email twice", 'wp-user-frontend' ),
|
24 |
+
'type' => 'Fix',
|
25 |
+
'description' => __( "After processing payment admin & user was receiving payment received email twice.", 'wp-user-frontend' )
|
26 |
+
),
|
27 |
+
array(
|
28 |
+
'title' => __( "Add shortcode support to display post information in the Post Expiration Message", 'wp-user-frontend' ),
|
29 |
+
'type' => 'Improvement',
|
30 |
+
'description' => __( "Add shortcode support to display post information in the Post Expiration Message. You can use: <strong>{post_author} {post_url} {blogname} {post_title} {post_status}</strong>", 'wp-user-frontend' )
|
31 |
+
),
|
32 |
+
array(
|
33 |
+
'title' => __( "Add optin on the setup wizard", 'wp-user-frontend' ),
|
34 |
+
'type' => 'Improvement',
|
35 |
+
'description' => __( "Added optin on the setup wizard, admin can choose whether he/she wants to share server environment details (php, mysql, server, WordPress versions), Number of users, Site language, Number of active and inactive plugins, Site name and url, admin name and email address. No sensitive data is tracked", 'wp-user-frontend' )
|
36 |
+
),
|
37 |
+
)
|
38 |
+
),
|
39 |
array(
|
40 |
'version' => 'Version 3.1.10',
|
41 |
'released' => '2019-09-06',
|
admin/installer.php
CHANGED
@@ -137,8 +137,10 @@ class WPUF_Admin_Installer {
|
|
137 |
|
138 |
update_option( '_wpuf_page_created', '1' );
|
139 |
|
140 |
-
|
141 |
-
|
|
|
|
|
142 |
}
|
143 |
|
144 |
/**
|
137 |
|
138 |
update_option( '_wpuf_page_created', '1' );
|
139 |
|
140 |
+
if ( $_GET['page'] != 'wpuf-setup' ) {
|
141 |
+
wp_redirect( admin_url( 'admin.php?page=wpuf-settings&wpuf_page_installed=1' ) );
|
142 |
+
exit;
|
143 |
+
}
|
144 |
}
|
145 |
|
146 |
/**
|
admin/posting.php
CHANGED
@@ -192,10 +192,20 @@ class WPUF_Admin_Posting {
|
|
192 |
$edit_post_lock = get_post_meta( $post->ID, '_wpuf_lock_editing_post', true );
|
193 |
$edit_post_lock_time = get_post_meta( $post->ID, '_wpuf_lock_user_editing_post_time', true );
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
if( !empty( $edit_post_lock_time ) && $edit_post_lock_time > time() ) {
|
|
|
196 |
$time = date( 'Y-m-d H:i:s', $edit_post_lock_time );
|
197 |
$local_time = get_date_from_gmt( $time, get_option('date_format') . ' ' . get_option('time_format') );
|
198 |
-
$msg = sprintf( __( 'Frontend edit access for this post will be automatically locked after %s, <a id="wpuf_clear_schedule_lock" data="%s" href="#">Clear
|
199 |
}
|
200 |
|
201 |
?>
|
@@ -205,11 +215,17 @@ class WPUF_Admin_Posting {
|
|
205 |
<p><?php echo $msg; ?></p>
|
206 |
|
207 |
<label>
|
208 |
-
|
209 |
-
|
210 |
-
|
|
|
|
|
211 |
</label>
|
212 |
-
|
|
|
|
|
|
|
|
|
213 |
<?php
|
214 |
}
|
215 |
|
@@ -496,12 +512,10 @@ class WPUF_Admin_Posting {
|
|
496 |
check_ajax_referer( 'wpuf_nonce', 'nonce' );
|
497 |
|
498 |
$post_id = isset( $_POST['post_id'] ) ? $_POST['post_id'] : '';
|
499 |
-
if ( !empty( $post_id ) ) {
|
500 |
-
$edit_post_lock_time = get_post_meta( $post_id, '_wpuf_lock_user_editing_post_time', true );
|
501 |
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
}
|
506 |
exit;
|
507 |
}
|
192 |
$edit_post_lock = get_post_meta( $post->ID, '_wpuf_lock_editing_post', true );
|
193 |
$edit_post_lock_time = get_post_meta( $post->ID, '_wpuf_lock_user_editing_post_time', true );
|
194 |
|
195 |
+
if ( empty( $edit_post_lock_time ) ) {
|
196 |
+
$is_locked = false;
|
197 |
+
}
|
198 |
+
|
199 |
+
if( ( !empty( $edit_post_lock_time ) && $edit_post_lock_time < time() ) || $edit_post_lock == "yes" ) {
|
200 |
+
$is_locked = true;
|
201 |
+
$msg = sprintf( __( 'Post is locked, to allow user to edit this post <a id="wpuf_clear_schedule_lock" data="%s" href="#">Click here</a>', 'wp-user-frontend' ), $post->ID );
|
202 |
+
}
|
203 |
+
|
204 |
if( !empty( $edit_post_lock_time ) && $edit_post_lock_time > time() ) {
|
205 |
+
$is_locked = false;
|
206 |
$time = date( 'Y-m-d H:i:s', $edit_post_lock_time );
|
207 |
$local_time = get_date_from_gmt( $time, get_option('date_format') . ' ' . get_option('time_format') );
|
208 |
+
$msg = sprintf( __( 'Frontend edit access for this post will be automatically locked after %s, <a id="wpuf_clear_schedule_lock" data="%s" href="#">Clear Lock</a> Or,', 'wp-user-frontend' ), $local_time, $post->ID );
|
209 |
}
|
210 |
|
211 |
?>
|
215 |
<p><?php echo $msg; ?></p>
|
216 |
|
217 |
<label>
|
218 |
+
<?php if ( !$is_locked ): ?>
|
219 |
+
<input type="hidden" name="wpuf_lock_post" value="no">
|
220 |
+
<input type="checkbox" name="wpuf_lock_post" value="yes" <?php checked($edit_post_lock, 'yes'); ?>>
|
221 |
+
<?php _e( 'Lock Post Permanently', 'wp-user-frontend' ); ?>
|
222 |
+
<?php endif ?>
|
223 |
</label>
|
224 |
+
|
225 |
+
<?php if ( !$is_locked ): ?>
|
226 |
+
<p style="margin-top: 10px"><?php _e( 'Lock user from editing this post from the frontend dashboard', 'wp-user-frontend' ); ?></p>
|
227 |
+
<?php endif ?>
|
228 |
+
|
229 |
<?php
|
230 |
}
|
231 |
|
512 |
check_ajax_referer( 'wpuf_nonce', 'nonce' );
|
513 |
|
514 |
$post_id = isset( $_POST['post_id'] ) ? $_POST['post_id'] : '';
|
|
|
|
|
515 |
|
516 |
+
if ( !empty( $post_id ) ) {
|
517 |
+
update_post_meta( $post_id, '_wpuf_lock_user_editing_post_time', '' );
|
518 |
+
update_post_meta( $post_id, '_wpuf_lock_editing_post', 'no' );
|
519 |
}
|
520 |
exit;
|
521 |
}
|
admin/settings-options.php
CHANGED
@@ -289,6 +289,13 @@ function wpuf_settings_fields() {
|
|
289 |
'type' => 'select',
|
290 |
'options' => $pages
|
291 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
array(
|
293 |
'name' => 'show_subscriptions',
|
294 |
'label' => __( 'Show Subscriptions', 'wp-user-frontend' ),
|
289 |
'type' => 'select',
|
290 |
'options' => $pages
|
291 |
),
|
292 |
+
array(
|
293 |
+
'name' => 'account_page_active_tab',
|
294 |
+
'label' => __( 'Active Tab', 'wp-user-frontend' ),
|
295 |
+
'desc' => __( 'Which tab should be set as active by default when opening the account page', 'wp-user-frontend' ),
|
296 |
+
'type' => 'select',
|
297 |
+
'options' => wpuf_get_account_sections_list()
|
298 |
+
),
|
299 |
array(
|
300 |
'name' => 'show_subscriptions',
|
301 |
'label' => __( 'Show Subscriptions', 'wp-user-frontend' ),
|
class/frontend-account.php
CHANGED
@@ -154,10 +154,10 @@ class WPUF_Frontend_Account {
|
|
154 |
ob_start();
|
155 |
|
156 |
if ( is_user_logged_in() ) {
|
157 |
-
$
|
158 |
-
|
159 |
-
$sections
|
160 |
-
$current_section
|
161 |
|
162 |
foreach ( $sections as $account_section ) {
|
163 |
if ( $section == $account_section['slug'] ) {
|
@@ -249,7 +249,7 @@ class WPUF_Frontend_Account {
|
|
249 |
|
250 |
$billing_amount = ( intval( $pack->meta_value['billing_amount'] ) > 0 ) ? $details_meta['symbol'] . $pack->meta_value['billing_amount'] : __( 'Free', 'wp-user-frontend' );
|
251 |
if ( $pack->meta_value['recurring_pay'] == 'yes' ) {
|
252 |
-
$recurring_des = sprintf( __( 'For each
|
253 |
$recurring_des .= !empty( $pack->meta_value['billing_limit'] ) ? sprintf( __( ', for %s installments', 'wp-user-frontend' ), $pack->meta_value['billing_limit'] ) : '';
|
254 |
}
|
255 |
|
154 |
ob_start();
|
155 |
|
156 |
if ( is_user_logged_in() ) {
|
157 |
+
$default_active_tab = wpuf_get_option( 'account_page_active_tab', 'wpuf_my_account', 'dashboard' );
|
158 |
+
$section = isset( $_REQUEST['section'] ) ? $_REQUEST['section'] : $default_active_tab;
|
159 |
+
$sections = wpuf_get_account_sections();
|
160 |
+
$current_section = array();
|
161 |
|
162 |
foreach ( $sections as $account_section ) {
|
163 |
if ( $section == $account_section['slug'] ) {
|
249 |
|
250 |
$billing_amount = ( intval( $pack->meta_value['billing_amount'] ) > 0 ) ? $details_meta['symbol'] . $pack->meta_value['billing_amount'] : __( 'Free', 'wp-user-frontend' );
|
251 |
if ( $pack->meta_value['recurring_pay'] == 'yes' ) {
|
252 |
+
$recurring_des = sprintf( __( 'For each', 'wp-user-frontend' ).' %s %s', $pack->meta_value['billing_cycle_number'], WPUF_Subscription::get_cycle_label( $pack->meta_value['cycle_period'], $pack->meta_value['billing_cycle_number'] ), $pack->meta_value['trial_duration_type'] );
|
253 |
$recurring_des .= !empty( $pack->meta_value['billing_limit'] ) ? sprintf( __( ', for %s installments', 'wp-user-frontend' ), $pack->meta_value['billing_limit'] ) : '';
|
254 |
}
|
255 |
|
class/frontend-form-post.php
CHANGED
@@ -100,7 +100,7 @@ class WPUF_Frontend_Form_Post extends WPUF_Render_Form {
|
|
100 |
$user_can_post = 'yes';
|
101 |
} else {
|
102 |
$user_can_post = 'no';
|
103 |
-
$info = 'Post Limit Exceeded for your purchased subscription pack.';
|
104 |
}
|
105 |
}
|
106 |
} else {
|
100 |
$user_can_post = 'yes';
|
101 |
} else {
|
102 |
$user_can_post = 'no';
|
103 |
+
$info = __('Post Limit Exceeded for your purchased subscription pack.', 'wp-user-frontend');
|
104 |
}
|
105 |
}
|
106 |
} else {
|
class/payment.php
CHANGED
@@ -401,6 +401,7 @@ class WPUF_Payment {
|
|
401 |
*/
|
402 |
public static function insert_payment( $data, $transaction_id = 0, $recurring = false ) {
|
403 |
global $wpdb;
|
|
|
404 |
$user_id = get_current_user_id();
|
405 |
|
406 |
//check if it's already there
|
@@ -430,17 +431,17 @@ class WPUF_Payment {
|
|
430 |
$data['payer_address'] = maybe_serialize( $data['payer_address'] );
|
431 |
}
|
432 |
|
|
|
|
|
|
|
|
|
433 |
if ( !$result ) {
|
434 |
$wpdb->insert( $wpdb->prefix . 'wpuf_transaction', $data );
|
|
|
|
|
435 |
} else {
|
436 |
$wpdb->update( $wpdb->prefix . 'wpuf_transaction', $data, array('transaction_id' => $transaction_id) );
|
437 |
}
|
438 |
-
|
439 |
-
if( isset( $profile_id ) ) {
|
440 |
-
$data['profile_id'] = $profile_id;
|
441 |
-
}
|
442 |
-
|
443 |
-
do_action( 'wpuf_payment_received', $data, $recurring );
|
444 |
}
|
445 |
|
446 |
/**
|
401 |
*/
|
402 |
public static function insert_payment( $data, $transaction_id = 0, $recurring = false ) {
|
403 |
global $wpdb;
|
404 |
+
|
405 |
$user_id = get_current_user_id();
|
406 |
|
407 |
//check if it's already there
|
431 |
$data['payer_address'] = maybe_serialize( $data['payer_address'] );
|
432 |
}
|
433 |
|
434 |
+
if( isset( $profile_id ) ) {
|
435 |
+
$data['profile_id'] = $profile_id;
|
436 |
+
}
|
437 |
+
|
438 |
if ( !$result ) {
|
439 |
$wpdb->insert( $wpdb->prefix . 'wpuf_transaction', $data );
|
440 |
+
|
441 |
+
do_action( 'wpuf_payment_received', $data, $recurring );
|
442 |
} else {
|
443 |
$wpdb->update( $wpdb->prefix . 'wpuf_transaction', $data, array('transaction_id' => $transaction_id) );
|
444 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
}
|
446 |
|
447 |
/**
|
includes/class-form.php
CHANGED
@@ -232,7 +232,7 @@ class WPUF_Form {
|
|
232 |
$user_can_post = 'yes';
|
233 |
} else {
|
234 |
$user_can_post = 'no';
|
235 |
-
$info = 'Post Limit Exceeded for your purchased subscription pack.';
|
236 |
}
|
237 |
}
|
238 |
} else {
|
232 |
$user_can_post = 'yes';
|
233 |
} else {
|
234 |
$user_can_post = 'no';
|
235 |
+
$info = __('Post Limit Exceeded for your purchased subscription pack.', 'wp-user-frontend');
|
236 |
}
|
237 |
}
|
238 |
} else {
|
includes/class-gutenblock.php
CHANGED
@@ -65,7 +65,7 @@ class WPUF_Form_Block {
|
|
65 |
|
66 |
wp_localize_script( 'wpuf-forms-block', 'wpufBlock', array(
|
67 |
'forms' => $forms,
|
68 |
-
'siteUrl' =>
|
69 |
'block_logo' => $block_logo,
|
70 |
'thumbnail_logo' => $thumbnail_logo
|
71 |
) );
|
65 |
|
66 |
wp_localize_script( 'wpuf-forms-block', 'wpufBlock', array(
|
67 |
'forms' => $forms,
|
68 |
+
'siteUrl' => get_home_url(),
|
69 |
'block_logo' => $block_logo,
|
70 |
'thumbnail_logo' => $thumbnail_logo
|
71 |
) );
|
includes/free/form-element.php
CHANGED
@@ -128,6 +128,7 @@ class WPUF_form_element extends WPUF_Pro_Prompt {
|
|
128 |
<th>Post Expiration Message</th>
|
129 |
<td>
|
130 |
<textarea disabled name="" id="wpuf-post_expiration_message" cols="50" rows="5"><?php echo $post_expiration_message; ?></textarea>
|
|
|
131 |
</td>
|
132 |
</tr>
|
133 |
</table>
|
128 |
<th>Post Expiration Message</th>
|
129 |
<td>
|
130 |
<textarea disabled name="" id="wpuf-post_expiration_message" cols="50" rows="5"><?php echo $post_expiration_message; ?></textarea>
|
131 |
+
<p class="description"><strong><?php echo __( 'You may use: {post_author} {post_url} {blogname} {post_title} {post_status}', 'wp-user-frontend' ); ?></strong></p>
|
132 |
</td>
|
133 |
</tr>
|
134 |
</table>
|
includes/setup-wizard.php
CHANGED
@@ -283,8 +283,9 @@ class WPUF_Setup_Wizard {
|
|
283 |
* Selling step.
|
284 |
*/
|
285 |
public function wpuf_setup_basic() {
|
286 |
-
$enable_payment
|
287 |
$install_wpuf_pages = wpuf_get_option( 'install_wpuf_pages', 'wpuf_general', 'on' );
|
|
|
288 |
?>
|
289 |
<h1><?php _e( 'Basic Setting', 'wp-user-frontend' ); ?></h1>
|
290 |
<form method="post">
|
@@ -303,6 +304,18 @@ class WPUF_Setup_Wizard {
|
|
303 |
<label for="install_wpuf_pages"><?php _e( 'Install neccessery pages on your site frontend.', 'wp-user-frontend' ); ?></label>
|
304 |
</td>
|
305 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
</table>
|
307 |
<p class="wpuf-setup-actions step">
|
308 |
<input type="submit" class="button-primary button button-large button-next" value="<?php esc_attr_e( 'Continue', 'wp-user-frontend' ); ?>" name="save_step" />
|
@@ -310,6 +323,13 @@ class WPUF_Setup_Wizard {
|
|
310 |
<?php wp_nonce_field( 'wpuf-setup' ); ?>
|
311 |
</p>
|
312 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
<?php
|
314 |
}
|
315 |
|
@@ -318,14 +338,23 @@ class WPUF_Setup_Wizard {
|
|
318 |
*/
|
319 |
public function wpuf_setup_basic_save() {
|
320 |
check_admin_referer( 'wpuf-setup' );
|
|
|
321 |
$payment_options = get_option( 'wpuf_payment' );
|
322 |
$general_options = get_option( 'wpuf_general' );
|
323 |
-
|
|
|
324 |
$general_options['install_wpuf_pages'] = isset( $_POST['install_wpuf_pages'] ) ? 'on' : 'off';
|
|
|
325 |
|
326 |
update_option( 'wpuf_payment', $payment_options );
|
327 |
update_option( 'wpuf_general', $general_options );
|
328 |
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
if ( 'on' == $general_options['install_wpuf_pages'] ) {
|
330 |
$installer = new WPUF_Admin_Installer();
|
331 |
$installer->init_pages();
|
283 |
* Selling step.
|
284 |
*/
|
285 |
public function wpuf_setup_basic() {
|
286 |
+
$enable_payment = wpuf_get_option( 'enable_payment', 'wpuf_payment', 'on' );
|
287 |
$install_wpuf_pages = wpuf_get_option( 'install_wpuf_pages', 'wpuf_general', 'on' );
|
288 |
+
$share_wpuf_essentials = wpuf_get_option( 'share_wpuf_essentials', 'wpuf_general', 'on' );
|
289 |
?>
|
290 |
<h1><?php _e( 'Basic Setting', 'wp-user-frontend' ); ?></h1>
|
291 |
<form method="post">
|
304 |
<label for="install_wpuf_pages"><?php _e( 'Install neccessery pages on your site frontend.', 'wp-user-frontend' ); ?></label>
|
305 |
</td>
|
306 |
</tr>
|
307 |
+
<tr>
|
308 |
+
<th scope="row"><label for="share_wpuf_essentials"><?php _e( 'Share Essentials ', 'wp-user-frontend' ); ?></label></th>
|
309 |
+
<td>
|
310 |
+
<input type="checkbox" name="share_wpuf_essentials" id="share_wpuf_essentials" class="input-checkbox" value="1" <?php echo ( $share_wpuf_essentials == 'on' ) ? 'checked="checked"' : ''; ?>/>
|
311 |
+
<label for="share_wpuf_essentials"><?php _e( 'Want to help make WP User Frontend even more awesome? Allow weDevs to collect non-sensitive diagnostic data and usage information.', 'wp-user-frontend' ); ?></label>
|
312 |
+
|
313 |
+
<?php printf( '<a class="wpuf-insights-data-we-collect" href="#">%s</a>', esc_html__( 'What we collect', 'wp-user-frontend' ) ); ?>
|
314 |
+
<p id="collection-info" class="description" style="display:none;">
|
315 |
+
<?php esc_html_e( 'Server environment details (php, mysql, server, WordPress versions), Number of users in your site, Site language, Number of active and inactive plugins, Site name and url, Your name and email address. No sensitive data is tracked.', 'wp-user-frontend' ); ?>
|
316 |
+
</p>
|
317 |
+
</td>
|
318 |
+
</tr>
|
319 |
</table>
|
320 |
<p class="wpuf-setup-actions step">
|
321 |
<input type="submit" class="button-primary button button-large button-next" value="<?php esc_attr_e( 'Continue', 'wp-user-frontend' ); ?>" name="save_step" />
|
323 |
<?php wp_nonce_field( 'wpuf-setup' ); ?>
|
324 |
</p>
|
325 |
</form>
|
326 |
+
|
327 |
+
<script type="text/javascript">
|
328 |
+
jQuery('.wpuf-insights-data-we-collect').on('click', function(e) {
|
329 |
+
e.preventDefault();
|
330 |
+
jQuery('#collection-info').slideToggle('fast');
|
331 |
+
});
|
332 |
+
</script>
|
333 |
<?php
|
334 |
}
|
335 |
|
338 |
*/
|
339 |
public function wpuf_setup_basic_save() {
|
340 |
check_admin_referer( 'wpuf-setup' );
|
341 |
+
|
342 |
$payment_options = get_option( 'wpuf_payment' );
|
343 |
$general_options = get_option( 'wpuf_general' );
|
344 |
+
|
345 |
+
$payment_options['enable_payment'] = isset( $_POST['enable_payment'] ) ? 'on' : 'off';
|
346 |
$general_options['install_wpuf_pages'] = isset( $_POST['install_wpuf_pages'] ) ? 'on' : 'off';
|
347 |
+
$general_options['share_wpuf_essentials'] = isset( $_POST['share_wpuf_essentials'] ) ? 'on' : 'off';
|
348 |
|
349 |
update_option( 'wpuf_payment', $payment_options );
|
350 |
update_option( 'wpuf_general', $general_options );
|
351 |
|
352 |
+
if ( $general_options['share_wpuf_essentials'] == 'on' ) {
|
353 |
+
wpuf()->tracker->insights->optin();
|
354 |
+
} else {
|
355 |
+
wpuf()->tracker->insights->optout();
|
356 |
+
}
|
357 |
+
|
358 |
if ( 'on' == $general_options['install_wpuf_pages'] ) {
|
359 |
$installer = new WPUF_Admin_Installer();
|
360 |
$installer->init_pages();
|
languages/wp-user-frontend.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP User Frontend 3.1.
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -84,7 +84,7 @@ msgid "Number of items per page:"
|
|
84 |
msgstr ""
|
85 |
|
86 |
#: admin/class-admin-settings.php:408
|
87 |
-
msgid "
|
88 |
msgstr ""
|
89 |
|
90 |
#: admin/class-admin-subscription.php:60
|
@@ -141,7 +141,7 @@ msgid "Duration"
|
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/class-admin-subscription.php:216
|
144 |
-
#: admin/class-admin-subscription.php:
|
145 |
#: class/subscription.php:880 includes/class-user-subscription.php:307
|
146 |
#: templates/subscriptions/pack-details.php:25
|
147 |
msgid "Free"
|
@@ -157,8 +157,8 @@ msgstr ""
|
|
157 |
#: includes/fields/class-abstract-fields.php:358
|
158 |
#: includes/fields/class-abstract-fields.php:426
|
159 |
#: includes/fields/class-field-checkbox.php:94
|
160 |
-
#: includes/fields/class-field-radio.php:89 includes/free/form-element.php:
|
161 |
-
#: wpuf.php:
|
162 |
msgid "Yes"
|
163 |
msgstr ""
|
164 |
|
@@ -172,8 +172,8 @@ msgstr ""
|
|
172 |
#: includes/fields/class-abstract-fields.php:359
|
173 |
#: includes/fields/class-abstract-fields.php:427
|
174 |
#: includes/fields/class-field-checkbox.php:95
|
175 |
-
#: includes/fields/class-field-radio.php:90 includes/free/form-element.php:
|
176 |
-
#: wpuf.php:
|
177 |
msgid "No"
|
178 |
msgstr ""
|
179 |
|
@@ -207,7 +207,7 @@ msgid "Enable Post Expiration"
|
|
207 |
msgstr ""
|
208 |
|
209 |
#: admin/class-admin-subscription.php:396
|
210 |
-
#: admin/class-admin-subscription.php:
|
211 |
msgid "Post Expiration Time"
|
212 |
msgstr ""
|
213 |
|
@@ -236,73 +236,77 @@ msgstr ""
|
|
236 |
msgid "Expiration Message"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: admin/class-admin-subscription.php:
|
240 |
-
msgid "
|
241 |
msgstr ""
|
242 |
|
243 |
#: admin/class-admin-subscription.php:518
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
#: admin/class-admin-subscription.php:519
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
#: admin/class-admin-subscription.php:520
|
|
|
|
|
|
|
|
|
252 |
msgid "Year(s)"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin/class-admin-subscription.php:
|
256 |
msgid "WPUF Subscription Information"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/class-admin-subscription.php:
|
260 |
msgid "For each %s %s"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin/class-admin-subscription.php:
|
264 |
msgid ", for %s installments"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin/class-admin-subscription.php:
|
268 |
msgid "Subcription Name"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin/class-admin-subscription.php:
|
272 |
msgid "Billing Info"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin/class-admin-subscription.php:
|
276 |
msgid "This user is using recurring subscription pack"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin/class-admin-subscription.php:
|
280 |
msgid "Remaining Posting Count"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin/class-admin-subscription.php:
|
284 |
msgid "Subscription Expiration Info"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin/class-admin-subscription.php:
|
288 |
#: includes/class-user-subscription.php:361
|
289 |
#: templates/dashboard/subscription.php:40
|
290 |
msgid "Expire date:"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin/class-admin-subscription.php:
|
294 |
msgid "Post Expiration Enabled"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin/class-admin-subscription.php:
|
298 |
msgid "Allowed Taxonomy Terms"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/class-admin-subscription.php:
|
302 |
msgid "Assign Package"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/class-admin-subscription.php:
|
306 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:266
|
307 |
#: class/payment.php:202 class/subscription.php:782
|
308 |
#: includes/class-list-table-subscribers.php:128 lib/appsero/Insights.php:751
|
@@ -310,23 +314,23 @@ msgstr ""
|
|
310 |
msgid "Cancel"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin/class-admin-subscription.php:
|
314 |
msgid "Select Package:"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: admin/class-admin-subscription.php:
|
318 |
msgid "— Select —"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/class-admin-subscription.php:
|
322 |
msgid "Only non-recurring pack can be assigned"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin/class-admin-subscription.php:
|
326 |
msgid "Delete Package"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/class-admin-subscription.php:
|
330 |
msgid "Learn more about <a href=\"%s\" target=\"_blank\">Subscription</a>"
|
331 |
msgstr ""
|
332 |
|
@@ -340,7 +344,7 @@ msgstr ""
|
|
340 |
|
341 |
#: admin/class-tools.php:39 admin/class-tools.php:95
|
342 |
#: admin/post-forms-list-table.php:43 class/transactions-list-table.php:86
|
343 |
-
#: includes/class-list-table-subscribers.php:126 wpuf-functions.php:
|
344 |
msgid "All"
|
345 |
msgstr ""
|
346 |
|
@@ -419,7 +423,7 @@ msgid ""
|
|
419 |
msgstr ""
|
420 |
|
421 |
#: admin/class-tools.php:351 admin/installer.php:30
|
422 |
-
#: includes/setup-wizard.php:
|
423 |
msgid "Install WPUF Pages"
|
424 |
msgstr ""
|
425 |
|
@@ -558,12 +562,12 @@ msgid "Are you sure you want to delete this field?"
|
|
558 |
msgstr ""
|
559 |
|
560 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:263
|
561 |
-
#: admin/posting.php:70 class/asset-loader.php:55 wpuf.php:
|
562 |
msgid "Yes, delete it"
|
563 |
msgstr ""
|
564 |
|
565 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:264
|
566 |
-
#: admin/posting.php:71 class/asset-loader.php:56 wpuf.php:
|
567 |
msgid "No, cancel it"
|
568 |
msgstr ""
|
569 |
|
@@ -763,8 +767,8 @@ msgstr ""
|
|
763 |
msgid "Registration Forms"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: admin/form.php:194 includes/free/form-element.php:
|
767 |
-
#: includes/free/form-element.php:
|
768 |
msgid "Notification"
|
769 |
msgstr ""
|
770 |
|
@@ -846,8 +850,8 @@ msgstr ""
|
|
846 |
msgid "Payment Options"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: admin/html/form-settings-payment.php:25 admin/settings-options.php:
|
850 |
-
#: includes/setup-wizard.php:
|
851 |
msgid "Enable Payments"
|
852 |
msgstr ""
|
853 |
|
@@ -929,7 +933,7 @@ msgid "No Change"
|
|
929 |
msgstr ""
|
930 |
|
931 |
#: admin/html/form-settings-post-edit.php:31
|
932 |
-
#: admin/html/form-settings-post.php:132 includes/free/form-element.php:
|
933 |
msgid "Redirect To"
|
934 |
msgstr ""
|
935 |
|
@@ -939,22 +943,22 @@ msgid "Newly created post"
|
|
939 |
msgstr ""
|
940 |
|
941 |
#: admin/html/form-settings-post-edit.php:37
|
942 |
-
#: admin/html/form-settings-post.php:138 includes/free/form-element.php:
|
943 |
msgid "Same Page"
|
944 |
msgstr ""
|
945 |
|
946 |
#: admin/html/form-settings-post-edit.php:38
|
947 |
-
#: admin/html/form-settings-post.php:139 includes/free/form-element.php:
|
948 |
msgid "To a page"
|
949 |
msgstr ""
|
950 |
|
951 |
#: admin/html/form-settings-post-edit.php:39
|
952 |
-
#: admin/html/form-settings-post.php:140 includes/free/form-element.php:
|
953 |
msgid "To a custom URL"
|
954 |
msgstr ""
|
955 |
|
956 |
#: admin/html/form-settings-post-edit.php:48
|
957 |
-
#: admin/html/form-settings-post.php:149 includes/free/form-element.php:
|
958 |
msgid "After successfull submit, where the page will redirect to"
|
959 |
msgstr ""
|
960 |
|
@@ -963,12 +967,12 @@ msgid "Post Update Message"
|
|
963 |
msgstr ""
|
964 |
|
965 |
#: admin/html/form-settings-post-edit.php:61
|
966 |
-
#: admin/html/form-settings-post.php:162 includes/free/form-element.php:
|
967 |
msgid "Page"
|
968 |
msgstr ""
|
969 |
|
970 |
#: admin/html/form-settings-post-edit.php:76
|
971 |
-
#: admin/html/form-settings-post.php:177 includes/free/form-element.php:
|
972 |
msgid "Custom URL"
|
973 |
msgstr ""
|
974 |
|
@@ -1189,7 +1193,7 @@ msgid "From"
|
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: admin/html/form-submission-restriction.php:141
|
1192 |
-
#: includes/free/form-element.php:
|
1193 |
msgid "To"
|
1194 |
msgstr ""
|
1195 |
|
@@ -2091,7 +2095,7 @@ msgid ""
|
|
2091 |
msgstr ""
|
2092 |
|
2093 |
#: admin/installer.php:77 admin/settings-options.php:23
|
2094 |
-
#: includes/free/admin/shortcode-button.php:82 wpuf-functions.php:
|
2095 |
msgid "Dashboard"
|
2096 |
msgstr ""
|
2097 |
|
@@ -2107,7 +2111,7 @@ msgstr ""
|
|
2107 |
#: admin/installer.php:88 class/subscription.php:356 class/subscription.php:376
|
2108 |
#: class/subscription.php:377 class/subscription.php:378
|
2109 |
#: includes/free/admin/shortcode-button.php:102
|
2110 |
-
#: templates/dashboard/dashboard.php:19 wpuf-functions.php:
|
2111 |
msgid "Subscription"
|
2112 |
msgstr ""
|
2113 |
|
@@ -2144,11 +2148,11 @@ msgid ""
|
|
2144 |
"necessary steps to move forward."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: admin/installer.php:
|
2148 |
msgid "Registration"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: admin/installer.php:
|
2152 |
msgid "Sample Form"
|
2153 |
msgstr ""
|
2154 |
|
@@ -2203,23 +2207,23 @@ msgid "Draft"
|
|
2203 |
msgstr ""
|
2204 |
|
2205 |
#: admin/posting.php:69 class/asset-loader.php:54 class/render-form.php:1700
|
2206 |
-
#: wpuf.php:
|
2207 |
msgid "Are you sure?"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: admin/posting.php:77 class/asset-loader.php:62 wpuf.php:
|
2211 |
msgid "Allowed Files"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: admin/posting.php:80 class/asset-loader.php:65 wpuf.php:
|
2215 |
msgid "Maximum number of files reached!"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: admin/posting.php:81 class/asset-loader.php:66 wpuf.php:
|
2219 |
msgid "The file you have uploaded exceeds the file size limit. Please try again."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: admin/posting.php:82 class/asset-loader.php:67 wpuf.php:
|
2223 |
msgid "You have uploaded an incorrect file type. Please try again."
|
2224 |
msgstr ""
|
2225 |
|
@@ -2235,26 +2239,31 @@ msgstr ""
|
|
2235 |
msgid "WPUF Lock User"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: admin/posting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2239 |
msgid ""
|
2240 |
"Frontend edit access for this post will be automatically locked after %s, "
|
2241 |
-
"<a id=\"wpuf_clear_schedule_lock\" data=\"%s\" href=\"#\">Clear
|
2242 |
-
"Lock</a> Or,"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: admin/posting.php:
|
2246 |
-
msgid "Lock Post"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: admin/posting.php:
|
2250 |
msgid "Lock user from editing this post from the frontend dashboard"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: admin/posting.php:
|
2254 |
msgid "WPUF Custom Fields"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: admin/posting.php:
|
2258 |
msgid "No custom fields found."
|
2259 |
msgstr ""
|
2260 |
|
@@ -2362,7 +2371,7 @@ msgid ""
|
|
2362 |
msgstr ""
|
2363 |
|
2364 |
#: admin/premium.php:71 admin/premium.php:74 includes/class-pro-upgrades.php:99
|
2365 |
-
#: includes/free/form-element.php:
|
2366 |
msgid "Conditional Logic"
|
2367 |
msgstr ""
|
2368 |
|
@@ -2815,225 +2824,233 @@ msgid "Select the page which contains <code>[wpuf_account]</code> shortcode"
|
|
2815 |
msgstr ""
|
2816 |
|
2817 |
#: admin/settings-options.php:294
|
2818 |
-
msgid "
|
2819 |
msgstr ""
|
2820 |
|
2821 |
#: admin/settings-options.php:295
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2822 |
msgid ""
|
2823 |
"Show Subscriptions tab in \"my account\" page where "
|
2824 |
"<code>[wpuf_account]</code> is located"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: admin/settings-options.php:
|
2828 |
#: includes/class-customizer.php:68
|
2829 |
msgid "Show Billing Address"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: admin/settings-options.php:
|
2833 |
msgid "Show billing address in account page."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: admin/settings-options.php:
|
2837 |
msgid "Auto Login After Registration"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: admin/settings-options.php:
|
2841 |
msgid "If enabled, users after registration will be logged in to the system"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: admin/settings-options.php:
|
2845 |
msgid "Login/Registration override"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: admin/settings-options.php:
|
2849 |
msgid ""
|
2850 |
"If enabled, default login and registration forms will be overridden by WPUF "
|
2851 |
"with pages below"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: admin/settings-options.php:
|
2855 |
msgid "Registration Page"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: admin/settings-options.php:
|
2859 |
msgid ""
|
2860 |
"Select the page you want to use as registration page override <em>(should "
|
2861 |
"have shortcode)</em>"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: admin/settings-options.php:
|
2865 |
msgid "Login Page"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: admin/settings-options.php:
|
2869 |
msgid "Select the page which contains <code>[wpuf-login]</code> shortcode"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: admin/settings-options.php:
|
2873 |
msgid "Redirect After Login"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: admin/settings-options.php:
|
2877 |
msgid "After successfull login, where the page will redirect to"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: admin/settings-options.php:
|
2881 |
msgid "Default Login Redirect"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: admin/settings-options.php:
|
2885 |
msgid ""
|
2886 |
"If enabled, users who login using WordPress default login form will be "
|
2887 |
"redirected to the selected page."
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: admin/settings-options.php:
|
2891 |
msgid "reCAPTCHA in Login Form"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: admin/settings-options.php:
|
2895 |
msgid ""
|
2896 |
"If enabled, users have to verify reCAPTCHA in login page. Also, make sure "
|
2897 |
"that reCAPTCHA is configured properly from <b>General Options</b>"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: admin/settings-options.php:
|
2901 |
msgid "Enable payments on your site."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: admin/settings-options.php:
|
2905 |
msgid "Subscription Pack Page"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: admin/settings-options.php:
|
2909 |
msgid "Select the page where <code>[wpuf_sub_pack]</code> located."
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: admin/settings-options.php:
|
2913 |
msgid "Subscription at registration"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: admin/settings-options.php:
|
2917 |
msgid "Registration time redirect to subscription page"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: admin/settings-options.php:
|
2921 |
msgid "Currency"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: admin/settings-options.php:
|
2925 |
msgid "Currency Position"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: admin/settings-options.php:
|
2929 |
msgid "Left"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: admin/settings-options.php:
|
2933 |
msgid "Right"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: admin/settings-options.php:
|
2937 |
msgid "Left with space"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: admin/settings-options.php:
|
2941 |
msgid "Right with space"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: admin/settings-options.php:
|
2945 |
msgid "Thousand Separator"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: admin/settings-options.php:
|
2949 |
msgid "This sets the thousand separator of displayed prices."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: admin/settings-options.php:
|
2953 |
msgid "Decimal Separator"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: admin/settings-options.php:
|
2957 |
msgid "This sets the decimal separator of displayed prices."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: admin/settings-options.php:
|
2961 |
msgid "Number of Decimals"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: admin/settings-options.php:
|
2965 |
msgid "This sets the number of decimal points shown in displayed prices."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: admin/settings-options.php:
|
2969 |
msgid "Enable demo/sandbox mode"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: admin/settings-options.php:
|
2973 |
msgid "When sandbox mode is active, all payment gateway will be used in demo mode"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
#: admin/settings-options.php:
|
2977 |
msgid "Payment Page"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: admin/settings-options.php:
|
2981 |
msgid "This page will be used to process payment options"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: admin/settings-options.php:
|
2985 |
msgid "Payment Success Page"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: admin/settings-options.php:
|
2989 |
msgid "After payment users will be redirected here"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: admin/settings-options.php:
|
2993 |
msgid "Payment Gateways"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: admin/settings-options.php:
|
2997 |
msgid "Active payment gateways"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: admin/settings-options.php:
|
3001 |
msgid "<span class=\"dashicons dashicons-universal-access-alt\"></span> Guest Email"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: admin/settings-options.php:
|
3005 |
msgid "Guest mail subject"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: admin/settings-options.php:
|
3009 |
msgid "This sets the subject of the emails sent to guest users"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: admin/settings-options.php:
|
3013 |
msgid "Guest mail body"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: admin/settings-options.php:
|
3017 |
msgid ""
|
3018 |
"This sets the body of the emails sent to guest users. Please DON'T edit the "
|
3019 |
"<code>{activation_link}</code> part, you can use {sitename} too."
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: admin/settings-options.php:
|
3023 |
msgid "Post Types"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: admin/settings-options.php:
|
3027 |
msgid "Select the post types you will allow users to export."
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: admin/settings-options.php:
|
3031 |
msgid ""
|
3032 |
"Select profile/registration forms for user roles. These forms will be used "
|
3033 |
"to populate extra edit profile fields in backend."
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: admin/settings-options.php:
|
3037 |
msgid " - select - "
|
3038 |
msgstr ""
|
3039 |
|
@@ -3408,27 +3425,27 @@ msgstr ""
|
|
3408 |
msgid "Install Now"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: class/asset-loader.php:31 wpuf.php:
|
3412 |
msgid "is required"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: class/asset-loader.php:32 wpuf.php:
|
3416 |
msgid "does not match"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: class/asset-loader.php:33 wpuf.php:
|
3420 |
msgid "is not valid"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: class/asset-loader.php:45 wpuf.php:
|
3424 |
msgid "Please fix the errors to proceed"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: class/asset-loader.php:47 wpuf.php:
|
3428 |
msgid "Word limit reached"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: class/asset-loader.php:48 wpuf.php:
|
3432 |
msgid "Are you sure you want to cancel your current subscription ?"
|
3433 |
msgstr ""
|
3434 |
|
@@ -3472,6 +3489,10 @@ msgstr ""
|
|
3472 |
msgid "<p>You may processed your payment, but the pack is not activated yet.</p>"
|
3473 |
msgstr ""
|
3474 |
|
|
|
|
|
|
|
|
|
3475 |
#: class/frontend-account.php:311 class/subscription.php:73
|
3476 |
msgid "Nonce failure"
|
3477 |
msgstr ""
|
@@ -3538,6 +3559,10 @@ msgstr ""
|
|
3538 |
msgid "Payment type not selected for this form. Please contact admin."
|
3539 |
msgstr ""
|
3540 |
|
|
|
|
|
|
|
|
|
3541 |
#: class/frontend-form-post.php:171 includes/class-frontend-form-post.php:43
|
3542 |
msgid "You are not logged in"
|
3543 |
msgstr ""
|
@@ -3635,7 +3660,7 @@ msgid "You already have activated a free package previously."
|
|
3635 |
msgstr ""
|
3636 |
|
3637 |
#: class/payment.php:141 includes/class-customizer.php:59
|
3638 |
-
#: wpuf-functions.php:
|
3639 |
msgid "Billing Address"
|
3640 |
msgstr ""
|
3641 |
|
@@ -3683,11 +3708,11 @@ msgstr ""
|
|
3683 |
msgid "No Payment gateway found"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: class/payment.php:
|
3687 |
msgid "[%s] Payment Received"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: class/payment.php:
|
3691 |
msgid "New payment received at %s"
|
3692 |
msgstr ""
|
3693 |
|
@@ -3815,7 +3840,7 @@ msgid "Strength indicator"
|
|
3815 |
msgstr ""
|
3816 |
|
3817 |
#: class/render-form.php:1420 includes/fields/class-field-post-taxonomy.php:122
|
3818 |
-
#: wpuf-functions.php:
|
3819 |
msgid "-- Select --"
|
3820 |
msgstr ""
|
3821 |
|
@@ -4148,7 +4173,7 @@ msgstr ""
|
|
4148 |
|
4149 |
#: includes/class-dokan-integration.php:37
|
4150 |
#: includes/class-wc-vendors-integration.php:109
|
4151 |
-
#: templates/dashboard/dashboard.php:15 wpuf-functions.php:
|
4152 |
msgid "Posts"
|
4153 |
msgstr ""
|
4154 |
|
@@ -4288,7 +4313,7 @@ msgstr ""
|
|
4288 |
|
4289 |
#: includes/class-login-widget.php:206 includes/class-login-widget.php:238
|
4290 |
#: includes/free/class-login.php:279 includes/free/class-registration.php:124
|
4291 |
-
#: includes/free/form-element.php:
|
4292 |
msgid "Register"
|
4293 |
msgstr ""
|
4294 |
|
@@ -5308,7 +5333,7 @@ msgstr ""
|
|
5308 |
msgid "Password Strength"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: includes/free/edit-profile.php:227 includes/free/form-element.php:
|
5312 |
#: templates/dashboard/edit-profile.php:130
|
5313 |
msgid "Update Profile"
|
5314 |
msgstr ""
|
@@ -5429,99 +5454,99 @@ msgstr ""
|
|
5429 |
msgid "Send Email to Author After Exceeding Post Expiration Time"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: includes/free/form-element.php:
|
5433 |
msgid "Enable Multistep"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: includes/free/form-element.php:
|
5437 |
msgid "If checked, form will be displayed in frontend in multiple steps"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: includes/free/form-element.php:
|
5441 |
msgid " Learn more about Multistep"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: includes/free/form-element.php:
|
5445 |
msgid "Multistep Progressbar Type"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: includes/free/form-element.php:
|
5449 |
msgid "Choose how you want the progressbar"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: includes/free/form-element.php:
|
5453 |
msgid "New post created"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: includes/free/form-element.php:
|
5457 |
msgid "A post has been edited"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: includes/free/form-element.php:
|
5461 |
msgid "New Post Notification"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: includes/free/form-element.php:
|
5465 |
msgid "Enable post notification"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: includes/free/form-element.php:
|
5469 |
msgid "Learn more about Email Notification"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: includes/free/form-element.php:
|
5473 |
msgid "Subject"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: includes/free/form-element.php:
|
5477 |
msgid "Message"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: includes/free/form-element.php:
|
5481 |
msgid "Update Post Notification"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#: includes/free/form-element.php:
|
5485 |
msgid "You may use in to, subject & message:"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: includes/free/form-element.php:
|
5489 |
msgid "Toggle All"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: includes/free/form-element.php:
|
5493 |
msgid "Click on a form element to add to the editor"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#: includes/free/form-element.php:
|
5497 |
msgid "Registration successful"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
-
#: includes/free/form-element.php:
|
5501 |
msgid "Profile updated successfully"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: includes/free/form-element.php:
|
5505 |
msgid "Enable Email Verfication"
|
5506 |
msgstr ""
|
5507 |
|
5508 |
-
#: includes/free/form-element.php:
|
5509 |
msgid "New User Role"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: includes/free/form-element.php:
|
5513 |
msgid "Registration success message"
|
5514 |
msgstr ""
|
5515 |
|
5516 |
-
#: includes/free/form-element.php:
|
5517 |
msgid "Update profile message"
|
5518 |
msgstr ""
|
5519 |
|
5520 |
-
#: includes/free/form-element.php:
|
5521 |
msgid "Submit Button text"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
-
#: includes/free/form-element.php:
|
5525 |
msgid "Update Button text"
|
5526 |
msgstr ""
|
5527 |
|
@@ -5689,35 +5714,57 @@ msgstr ""
|
|
5689 |
msgid "Not right now"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#: includes/setup-wizard.php:
|
5693 |
msgid "Basic Setting"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: includes/setup-wizard.php:
|
5697 |
msgid "Make payment enable for user to add posts on frontend."
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: includes/setup-wizard.php:
|
5701 |
msgid "Install neccessery pages on your site frontend."
|
5702 |
msgstr ""
|
5703 |
|
5704 |
#: includes/setup-wizard.php:308
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5705 |
msgid "Continue"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: includes/setup-wizard.php:
|
5709 |
msgid "Skip this step"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: includes/setup-wizard.php:
|
5713 |
msgid "Thank you!"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: includes/setup-wizard.php:
|
5717 |
msgid "Welcome to Awesomeness!"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: includes/setup-wizard.php:
|
5721 |
msgid "Go to Full Settings"
|
5722 |
msgstr ""
|
5723 |
|
@@ -5997,7 +6044,7 @@ msgstr ""
|
|
5997 |
msgid "Private"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: wpuf-functions.php:213
|
6001 |
msgid "-- select --"
|
6002 |
msgstr ""
|
6003 |
|
@@ -6037,215 +6084,215 @@ msgstr ""
|
|
6037 |
msgid "Directions »"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: wpuf-functions.php:
|
6041 |
msgid "Edit Profile"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: wpuf-functions.php:
|
6045 |
msgid "United Arab Emirates Dirham"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: wpuf-functions.php:
|
6049 |
msgid "Australian Dollars"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
-
#: wpuf-functions.php:
|
6053 |
msgid "Argentine Peso"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: wpuf-functions.php:
|
6057 |
msgid "Bangladeshi Taka"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: wpuf-functions.php:
|
6061 |
msgid "Brazilian Real"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: wpuf-functions.php:
|
6065 |
msgid "Bulgarian Lev"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: wpuf-functions.php:
|
6069 |
msgid "Canadian Dollars"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: wpuf-functions.php:
|
6073 |
msgid "Chilean Peso"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: wpuf-functions.php:
|
6077 |
msgid "Chinese Yuan"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
-
#: wpuf-functions.php:
|
6081 |
msgid "Colombian Peso"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: wpuf-functions.php:
|
6085 |
msgid "Czech Koruna"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#: wpuf-functions.php:
|
6089 |
msgid "Danish Krone"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#: wpuf-functions.php:
|
6093 |
msgid "Dominican Peso"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
-
#: wpuf-functions.php:
|
6097 |
msgid "Algerian Dinar"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
-
#: wpuf-functions.php:
|
6101 |
msgid "Euros"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: wpuf-functions.php:
|
6105 |
msgid "Hong Kong Dollar"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: wpuf-functions.php:
|
6109 |
msgid "Croatia kuna"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
#: wpuf-functions.php:
|
6113 |
msgid "Hungarian Forint"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: wpuf-functions.php:
|
6117 |
msgid "Icelandic krona"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: wpuf-functions.php:
|
6121 |
msgid "Indonesia Rupiah"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: wpuf-functions.php:
|
6125 |
msgid "Indian Rupee"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: wpuf-functions.php:
|
6129 |
msgid "Nepali Rupee"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: wpuf-functions.php:
|
6133 |
msgid "Israeli Shekel"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: wpuf-functions.php:
|
6137 |
msgid "Japanese Yen"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: wpuf-functions.php:
|
6141 |
msgid "Lao Kip"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
-
#: wpuf-functions.php:
|
6145 |
msgid "South Korean Won"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: wpuf-functions.php:
|
6149 |
msgid "Malaysian Ringgits"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: wpuf-functions.php:
|
6153 |
msgid "Mexican Peso"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
-
#: wpuf-functions.php:
|
6157 |
msgid "Nigerian Naira"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: wpuf-functions.php:
|
6161 |
msgid "Norwegian Krone"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: wpuf-functions.php:
|
6165 |
msgid "New Zealand Dollar"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: wpuf-functions.php:
|
6169 |
msgid "Omani Rial"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#: wpuf-functions.php:
|
6173 |
msgid "Iranian Rial"
|
6174 |
msgstr ""
|
6175 |
|
6176 |
-
#: wpuf-functions.php:
|
6177 |
msgid "Pakistani Rupee"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
-
#: wpuf-functions.php:
|
6181 |
msgid "Paraguayan Guaraní"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
-
#: wpuf-functions.php:
|
6185 |
msgid "Philippine Pesos"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
-
#: wpuf-functions.php:
|
6189 |
msgid "Polish Zloty"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
-
#: wpuf-functions.php:
|
6193 |
msgid "Pounds Sterling"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
-
#: wpuf-functions.php:
|
6197 |
msgid "Romanian Leu"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: wpuf-functions.php:
|
6201 |
msgid "Russian Ruble"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
-
#: wpuf-functions.php:
|
6205 |
msgid "Saudi Riyal"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#: wpuf-functions.php:
|
6209 |
msgid "Singapore Dollar"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
-
#: wpuf-functions.php:
|
6213 |
msgid "South African rand"
|
6214 |
msgstr ""
|
6215 |
|
6216 |
-
#: wpuf-functions.php:
|
6217 |
msgid "Swedish Krona"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
-
#: wpuf-functions.php:
|
6221 |
msgid "Swiss Franc"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: wpuf-functions.php:
|
6225 |
msgid "Taiwan New Dollars"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
-
#: wpuf-functions.php:
|
6229 |
msgid "Thai Baht"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
-
#: wpuf-functions.php:
|
6233 |
msgid "Turkish Lira"
|
6234 |
msgstr ""
|
6235 |
|
6236 |
-
#: wpuf-functions.php:
|
6237 |
msgid "US Dollar"
|
6238 |
msgstr ""
|
6239 |
|
6240 |
-
#: wpuf-functions.php:
|
6241 |
msgid "Vietnamese Dong"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#: wpuf-functions.php:
|
6245 |
msgid "Egyptian Pound"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
-
#: wpuf-functions.php:
|
6249 |
msgid "None"
|
6250 |
msgstr ""
|
6251 |
|
@@ -6265,7 +6312,7 @@ msgstr ""
|
|
6265 |
msgid "Your Post Has Been Expired"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#: wpuf.php:
|
6269 |
msgid ""
|
6270 |
"<p style=\"font-size: 13px\">\n"
|
6271 |
" <strong class=\"highlight-text\" "
|
@@ -6278,19 +6325,19 @@ msgid ""
|
|
6278 |
" </p>"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: wpuf.php:
|
6282 |
msgid "Update WP User Frontend Pro Now"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
-
#: wpuf.php:
|
6286 |
msgid "Update WP User Frontend Pro NOW"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
-
#: wpuf.php:
|
6290 |
msgid "Please Cancel Your Currently Active Pack first!"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
-
#: wpuf.php:
|
6294 |
msgid "Error: Nonce verification failed"
|
6295 |
msgstr ""
|
6296 |
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP User Frontend 3.1.11\n"
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2019-10-02 09:17:11+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
84 |
msgstr ""
|
85 |
|
86 |
#: admin/class-admin-settings.php:408
|
87 |
+
msgid "Post lock has been cleared"
|
88 |
msgstr ""
|
89 |
|
90 |
#: admin/class-admin-subscription.php:60
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/class-admin-subscription.php:216
|
144 |
+
#: admin/class-admin-subscription.php:571 class/frontend-account.php:250
|
145 |
#: class/subscription.php:880 includes/class-user-subscription.php:307
|
146 |
#: templates/subscriptions/pack-details.php:25
|
147 |
msgid "Free"
|
157 |
#: includes/fields/class-abstract-fields.php:358
|
158 |
#: includes/fields/class-abstract-fields.php:426
|
159 |
#: includes/fields/class-field-checkbox.php:94
|
160 |
+
#: includes/fields/class-field-radio.php:89 includes/free/form-element.php:478
|
161 |
+
#: wpuf.php:731
|
162 |
msgid "Yes"
|
163 |
msgstr ""
|
164 |
|
172 |
#: includes/fields/class-abstract-fields.php:359
|
173 |
#: includes/fields/class-abstract-fields.php:427
|
174 |
#: includes/fields/class-field-checkbox.php:95
|
175 |
+
#: includes/fields/class-field-radio.php:90 includes/free/form-element.php:479
|
176 |
+
#: wpuf.php:732
|
177 |
msgid "No"
|
178 |
msgstr ""
|
179 |
|
207 |
msgstr ""
|
208 |
|
209 |
#: admin/class-admin-subscription.php:396
|
210 |
+
#: admin/class-admin-subscription.php:673 includes/free/form-element.php:66
|
211 |
msgid "Post Expiration Time"
|
212 |
msgstr ""
|
213 |
|
236 |
msgid "Expiration Message"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: admin/class-admin-subscription.php:457 includes/free/form-element.php:131
|
240 |
+
msgid "You may use: {post_author} {post_url} {blogname} {post_title} {post_status}"
|
241 |
msgstr ""
|
242 |
|
243 |
#: admin/class-admin-subscription.php:518
|
244 |
+
msgid "Day(s)"
|
245 |
msgstr ""
|
246 |
|
247 |
#: admin/class-admin-subscription.php:519
|
248 |
+
msgid "Week(s)"
|
249 |
msgstr ""
|
250 |
|
251 |
#: admin/class-admin-subscription.php:520
|
252 |
+
msgid "Month(s)"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: admin/class-admin-subscription.php:521
|
256 |
msgid "Year(s)"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/class-admin-subscription.php:562
|
260 |
msgid "WPUF Subscription Information"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/class-admin-subscription.php:575
|
264 |
msgid "For each %s %s"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: admin/class-admin-subscription.php:576 class/frontend-account.php:253
|
268 |
msgid ", for %s installments"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin/class-admin-subscription.php:588
|
272 |
msgid "Subcription Name"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin/class-admin-subscription.php:598
|
276 |
msgid "Billing Info"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: admin/class-admin-subscription.php:612
|
280 |
msgid "This user is using recurring subscription pack"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin/class-admin-subscription.php:618
|
284 |
msgid "Remaining Posting Count"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin/class-admin-subscription.php:639
|
288 |
msgid "Subscription Expiration Info"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin/class-admin-subscription.php:648
|
292 |
#: includes/class-user-subscription.php:361
|
293 |
#: templates/dashboard/subscription.php:40
|
294 |
msgid "Expire date:"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/class-admin-subscription.php:662
|
298 |
msgid "Post Expiration Enabled"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin/class-admin-subscription.php:699
|
302 |
msgid "Allowed Taxonomy Terms"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin/class-admin-subscription.php:754
|
306 |
msgid "Assign Package"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin/class-admin-subscription.php:755
|
310 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:266
|
311 |
#: class/payment.php:202 class/subscription.php:782
|
312 |
#: includes/class-list-table-subscribers.php:128 lib/appsero/Insights.php:751
|
314 |
msgid "Cancel"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin/class-admin-subscription.php:761
|
318 |
msgid "Select Package:"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin/class-admin-subscription.php:764
|
322 |
msgid "— Select —"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin/class-admin-subscription.php:768
|
326 |
msgid "Only non-recurring pack can be assigned"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/class-admin-subscription.php:777
|
330 |
msgid "Delete Package"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin/class-admin-subscription.php:826
|
334 |
msgid "Learn more about <a href=\"%s\" target=\"_blank\">Subscription</a>"
|
335 |
msgstr ""
|
336 |
|
344 |
|
345 |
#: admin/class-tools.php:39 admin/class-tools.php:95
|
346 |
#: admin/post-forms-list-table.php:43 class/transactions-list-table.php:86
|
347 |
+
#: includes/class-list-table-subscribers.php:126 wpuf-functions.php:2763
|
348 |
msgid "All"
|
349 |
msgstr ""
|
350 |
|
423 |
msgstr ""
|
424 |
|
425 |
#: admin/class-tools.php:351 admin/installer.php:30
|
426 |
+
#: includes/setup-wizard.php:301
|
427 |
msgid "Install WPUF Pages"
|
428 |
msgstr ""
|
429 |
|
562 |
msgstr ""
|
563 |
|
564 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:263
|
565 |
+
#: admin/posting.php:70 class/asset-loader.php:55 wpuf.php:741
|
566 |
msgid "Yes, delete it"
|
567 |
msgstr ""
|
568 |
|
569 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:264
|
570 |
+
#: admin/posting.php:71 class/asset-loader.php:56 wpuf.php:742
|
571 |
msgid "No, cancel it"
|
572 |
msgstr ""
|
573 |
|
767 |
msgid "Registration Forms"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: admin/form.php:194 includes/free/form-element.php:213
|
771 |
+
#: includes/free/form-element.php:251
|
772 |
msgid "Notification"
|
773 |
msgstr ""
|
774 |
|
850 |
msgid "Payment Options"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: admin/html/form-settings-payment.php:25 admin/settings-options.php:369
|
854 |
+
#: includes/setup-wizard.php:294
|
855 |
msgid "Enable Payments"
|
856 |
msgstr ""
|
857 |
|
933 |
msgstr ""
|
934 |
|
935 |
#: admin/html/form-settings-post-edit.php:31
|
936 |
+
#: admin/html/form-settings-post.php:132 includes/free/form-element.php:377
|
937 |
msgid "Redirect To"
|
938 |
msgstr ""
|
939 |
|
943 |
msgstr ""
|
944 |
|
945 |
#: admin/html/form-settings-post-edit.php:37
|
946 |
+
#: admin/html/form-settings-post.php:138 includes/free/form-element.php:382
|
947 |
msgid "Same Page"
|
948 |
msgstr ""
|
949 |
|
950 |
#: admin/html/form-settings-post-edit.php:38
|
951 |
+
#: admin/html/form-settings-post.php:139 includes/free/form-element.php:383
|
952 |
msgid "To a page"
|
953 |
msgstr ""
|
954 |
|
955 |
#: admin/html/form-settings-post-edit.php:39
|
956 |
+
#: admin/html/form-settings-post.php:140 includes/free/form-element.php:384
|
957 |
msgid "To a custom URL"
|
958 |
msgstr ""
|
959 |
|
960 |
#: admin/html/form-settings-post-edit.php:48
|
961 |
+
#: admin/html/form-settings-post.php:149 includes/free/form-element.php:393
|
962 |
msgid "After successfull submit, where the page will redirect to"
|
963 |
msgstr ""
|
964 |
|
967 |
msgstr ""
|
968 |
|
969 |
#: admin/html/form-settings-post-edit.php:61
|
970 |
+
#: admin/html/form-settings-post.php:162 includes/free/form-element.php:413
|
971 |
msgid "Page"
|
972 |
msgstr ""
|
973 |
|
974 |
#: admin/html/form-settings-post-edit.php:76
|
975 |
+
#: admin/html/form-settings-post.php:177 includes/free/form-element.php:428
|
976 |
msgid "Custom URL"
|
977 |
msgstr ""
|
978 |
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#: admin/html/form-submission-restriction.php:141
|
1196 |
+
#: includes/free/form-element.php:225 includes/free/form-element.php:262
|
1197 |
msgid "To"
|
1198 |
msgstr ""
|
1199 |
|
2095 |
msgstr ""
|
2096 |
|
2097 |
#: admin/installer.php:77 admin/settings-options.php:23
|
2098 |
+
#: includes/free/admin/shortcode-button.php:82 wpuf-functions.php:1731
|
2099 |
msgid "Dashboard"
|
2100 |
msgstr ""
|
2101 |
|
2111 |
#: admin/installer.php:88 class/subscription.php:356 class/subscription.php:376
|
2112 |
#: class/subscription.php:377 class/subscription.php:378
|
2113 |
#: includes/free/admin/shortcode-button.php:102
|
2114 |
+
#: templates/dashboard/dashboard.php:19 wpuf-functions.php:1734
|
2115 |
msgid "Subscription"
|
2116 |
msgstr ""
|
2117 |
|
2148 |
"necessary steps to move forward."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: admin/installer.php:175 includes/free/admin/shortcode-button.php:98
|
2152 |
msgid "Registration"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: admin/installer.php:184
|
2156 |
msgid "Sample Form"
|
2157 |
msgstr ""
|
2158 |
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: admin/posting.php:69 class/asset-loader.php:54 class/render-form.php:1700
|
2210 |
+
#: wpuf.php:740
|
2211 |
msgid "Are you sure?"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: admin/posting.php:77 class/asset-loader.php:62 wpuf.php:750
|
2215 |
msgid "Allowed Files"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: admin/posting.php:80 class/asset-loader.php:65 wpuf.php:756
|
2219 |
msgid "Maximum number of files reached!"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: admin/posting.php:81 class/asset-loader.php:66 wpuf.php:757
|
2223 |
msgid "The file you have uploaded exceeds the file size limit. Please try again."
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: admin/posting.php:82 class/asset-loader.php:67 wpuf.php:758
|
2227 |
msgid "You have uploaded an incorrect file type. Please try again."
|
2228 |
msgstr ""
|
2229 |
|
2239 |
msgid "WPUF Lock User"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: admin/posting.php:201
|
2243 |
+
msgid ""
|
2244 |
+
"Post is locked, to allow user to edit this post <a "
|
2245 |
+
"id=\"wpuf_clear_schedule_lock\" data=\"%s\" href=\"#\">Click here</a>"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: admin/posting.php:208
|
2249 |
msgid ""
|
2250 |
"Frontend edit access for this post will be automatically locked after %s, "
|
2251 |
+
"<a id=\"wpuf_clear_schedule_lock\" data=\"%s\" href=\"#\">Clear Lock</a> Or,"
|
|
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: admin/posting.php:221
|
2255 |
+
msgid "Lock Post Permanently"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: admin/posting.php:226
|
2259 |
msgid "Lock user from editing this post from the frontend dashboard"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: admin/posting.php:273
|
2263 |
msgid "WPUF Custom Fields"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: admin/posting.php:324
|
2267 |
msgid "No custom fields found."
|
2268 |
msgstr ""
|
2269 |
|
2371 |
msgstr ""
|
2372 |
|
2373 |
#: admin/premium.php:71 admin/premium.php:74 includes/class-pro-upgrades.php:99
|
2374 |
+
#: includes/free/form-element.php:475
|
2375 |
msgid "Conditional Logic"
|
2376 |
msgstr ""
|
2377 |
|
2824 |
msgstr ""
|
2825 |
|
2826 |
#: admin/settings-options.php:294
|
2827 |
+
msgid "Active Tab"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
#: admin/settings-options.php:295
|
2831 |
+
msgid "Which tab should be set as active by default when opening the account page"
|
2832 |
+
msgstr ""
|
2833 |
+
|
2834 |
+
#: admin/settings-options.php:301
|
2835 |
+
msgid "Show Subscriptions"
|
2836 |
+
msgstr ""
|
2837 |
+
|
2838 |
+
#: admin/settings-options.php:302
|
2839 |
msgid ""
|
2840 |
"Show Subscriptions tab in \"my account\" page where "
|
2841 |
"<code>[wpuf_account]</code> is located"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: admin/settings-options.php:308 includes/class-customizer.php:23
|
2845 |
#: includes/class-customizer.php:68
|
2846 |
msgid "Show Billing Address"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
#: admin/settings-options.php:309
|
2850 |
msgid "Show billing address in account page."
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: admin/settings-options.php:317
|
2854 |
msgid "Auto Login After Registration"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: admin/settings-options.php:318
|
2858 |
msgid "If enabled, users after registration will be logged in to the system"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: admin/settings-options.php:324
|
2862 |
msgid "Login/Registration override"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: admin/settings-options.php:325
|
2866 |
msgid ""
|
2867 |
"If enabled, default login and registration forms will be overridden by WPUF "
|
2868 |
"with pages below"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: admin/settings-options.php:331
|
2872 |
msgid "Registration Page"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: admin/settings-options.php:332
|
2876 |
msgid ""
|
2877 |
"Select the page you want to use as registration page override <em>(should "
|
2878 |
"have shortcode)</em>"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: admin/settings-options.php:338
|
2882 |
msgid "Login Page"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: admin/settings-options.php:339
|
2886 |
msgid "Select the page which contains <code>[wpuf-login]</code> shortcode"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: admin/settings-options.php:345
|
2890 |
msgid "Redirect After Login"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: admin/settings-options.php:346
|
2894 |
msgid "After successfull login, where the page will redirect to"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: admin/settings-options.php:352
|
2898 |
msgid "Default Login Redirect"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: admin/settings-options.php:353
|
2902 |
msgid ""
|
2903 |
"If enabled, users who login using WordPress default login form will be "
|
2904 |
"redirected to the selected page."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: admin/settings-options.php:359
|
2908 |
msgid "reCAPTCHA in Login Form"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: admin/settings-options.php:360
|
2912 |
msgid ""
|
2913 |
"If enabled, users have to verify reCAPTCHA in login page. Also, make sure "
|
2914 |
"that reCAPTCHA is configured properly from <b>General Options</b>"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
+
#: admin/settings-options.php:370
|
2918 |
msgid "Enable payments on your site."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: admin/settings-options.php:376
|
2922 |
msgid "Subscription Pack Page"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: admin/settings-options.php:377
|
2926 |
msgid "Select the page where <code>[wpuf_sub_pack]</code> located."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: admin/settings-options.php:383
|
2930 |
msgid "Subscription at registration"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: admin/settings-options.php:384
|
2934 |
msgid "Registration time redirect to subscription page"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: admin/settings-options.php:389
|
2938 |
msgid "Currency"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
+
#: admin/settings-options.php:396
|
2942 |
msgid "Currency Position"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: admin/settings-options.php:400
|
2946 |
msgid "Left"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
+
#: admin/settings-options.php:401
|
2950 |
msgid "Right"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: admin/settings-options.php:402
|
2954 |
msgid "Left with space"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: admin/settings-options.php:403
|
2958 |
msgid "Right with space"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: admin/settings-options.php:408
|
2962 |
msgid "Thousand Separator"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: admin/settings-options.php:409
|
2966 |
msgid "This sets the thousand separator of displayed prices."
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: admin/settings-options.php:417
|
2970 |
msgid "Decimal Separator"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: admin/settings-options.php:418
|
2974 |
msgid "This sets the decimal separator of displayed prices."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: admin/settings-options.php:425
|
2978 |
msgid "Number of Decimals"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: admin/settings-options.php:426
|
2982 |
msgid "This sets the number of decimal points shown in displayed prices."
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: admin/settings-options.php:436
|
2986 |
msgid "Enable demo/sandbox mode"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: admin/settings-options.php:437
|
2990 |
msgid "When sandbox mode is active, all payment gateway will be used in demo mode"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: admin/settings-options.php:443
|
2994 |
msgid "Payment Page"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
#: admin/settings-options.php:444
|
2998 |
msgid "This page will be used to process payment options"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: admin/settings-options.php:450
|
3002 |
msgid "Payment Success Page"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: admin/settings-options.php:451 lib/gateway/bank.php:37
|
3006 |
msgid "After payment users will be redirected here"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: admin/settings-options.php:457
|
3010 |
msgid "Payment Gateways"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
+
#: admin/settings-options.php:458
|
3014 |
msgid "Active payment gateways"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: admin/settings-options.php:466
|
3018 |
msgid "<span class=\"dashicons dashicons-universal-access-alt\"></span> Guest Email"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: admin/settings-options.php:472
|
3022 |
msgid "Guest mail subject"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: admin/settings-options.php:473
|
3026 |
msgid "This sets the subject of the emails sent to guest users"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: admin/settings-options.php:480
|
3030 |
msgid "Guest mail body"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: admin/settings-options.php:481
|
3034 |
msgid ""
|
3035 |
"This sets the body of the emails sent to guest users. Please DON'T edit the "
|
3036 |
"<code>{activation_link}</code> part, you can use {sitename} too."
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: admin/settings-options.php:498
|
3040 |
msgid "Post Types"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: admin/settings-options.php:499
|
3044 |
msgid "Select the post types you will allow users to export."
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: admin/settings-options.php:522
|
3048 |
msgid ""
|
3049 |
"Select profile/registration forms for user roles. These forms will be used "
|
3050 |
"to populate extra edit profile fields in backend."
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: admin/settings-options.php:533
|
3054 |
msgid " - select - "
|
3055 |
msgstr ""
|
3056 |
|
3425 |
msgid "Install Now"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: class/asset-loader.php:31 wpuf.php:648
|
3429 |
msgid "is required"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: class/asset-loader.php:32 wpuf.php:649
|
3433 |
msgid "does not match"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: class/asset-loader.php:33 wpuf.php:650
|
3437 |
msgid "is not valid"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: class/asset-loader.php:45 wpuf.php:727
|
3441 |
msgid "Please fix the errors to proceed"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: class/asset-loader.php:47 wpuf.php:729
|
3445 |
msgid "Word limit reached"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: class/asset-loader.php:48 wpuf.php:730
|
3449 |
msgid "Are you sure you want to cancel your current subscription ?"
|
3450 |
msgstr ""
|
3451 |
|
3489 |
msgid "<p>You may processed your payment, but the pack is not activated yet.</p>"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: class/frontend-account.php:252
|
3493 |
+
msgid "For each"
|
3494 |
+
msgstr ""
|
3495 |
+
|
3496 |
#: class/frontend-account.php:311 class/subscription.php:73
|
3497 |
msgid "Nonce failure"
|
3498 |
msgstr ""
|
3559 |
msgid "Payment type not selected for this form. Please contact admin."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: class/frontend-form-post.php:103 includes/class-form.php:235
|
3563 |
+
msgid "Post Limit Exceeded for your purchased subscription pack."
|
3564 |
+
msgstr ""
|
3565 |
+
|
3566 |
#: class/frontend-form-post.php:171 includes/class-frontend-form-post.php:43
|
3567 |
msgid "You are not logged in"
|
3568 |
msgstr ""
|
3660 |
msgstr ""
|
3661 |
|
3662 |
#: class/payment.php:141 includes/class-customizer.php:59
|
3663 |
+
#: wpuf-functions.php:1735
|
3664 |
msgid "Billing Address"
|
3665 |
msgstr ""
|
3666 |
|
3708 |
msgid "No Payment gateway found"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: class/payment.php:454 lib/gateway/bank.php:109
|
3712 |
msgid "[%s] Payment Received"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: class/payment.php:455
|
3716 |
msgid "New payment received at %s"
|
3717 |
msgstr ""
|
3718 |
|
3840 |
msgstr ""
|
3841 |
|
3842 |
#: class/render-form.php:1420 includes/fields/class-field-post-taxonomy.php:122
|
3843 |
+
#: wpuf-functions.php:1519
|
3844 |
msgid "-- Select --"
|
3845 |
msgstr ""
|
3846 |
|
4173 |
|
4174 |
#: includes/class-dokan-integration.php:37
|
4175 |
#: includes/class-wc-vendors-integration.php:109
|
4176 |
+
#: templates/dashboard/dashboard.php:15 wpuf-functions.php:1732
|
4177 |
msgid "Posts"
|
4178 |
msgstr ""
|
4179 |
|
4313 |
|
4314 |
#: includes/class-login-widget.php:206 includes/class-login-widget.php:238
|
4315 |
#: includes/free/class-login.php:279 includes/free/class-registration.php:124
|
4316 |
+
#: includes/free/form-element.php:346 templates/registration-form.php:72
|
4317 |
msgid "Register"
|
4318 |
msgstr ""
|
4319 |
|
5333 |
msgid "Password Strength"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: includes/free/edit-profile.php:227 includes/free/form-element.php:347
|
5337 |
#: templates/dashboard/edit-profile.php:130
|
5338 |
msgid "Update Profile"
|
5339 |
msgstr ""
|
5454 |
msgid "Send Email to Author After Exceeding Post Expiration Time"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: includes/free/form-element.php:149 includes/free/form-element.php:153
|
5458 |
msgid "Enable Multistep"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
+
#: includes/free/form-element.php:156
|
5462 |
msgid "If checked, form will be displayed in frontend in multiple steps"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
+
#: includes/free/form-element.php:157
|
5466 |
msgid " Learn more about Multistep"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
+
#: includes/free/form-element.php:161
|
5470 |
msgid "Multistep Progressbar Type"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: includes/free/form-element.php:171
|
5474 |
msgid "Choose how you want the progressbar"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: includes/free/form-element.php:201
|
5478 |
msgid "New post created"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: includes/free/form-element.php:206
|
5482 |
msgid "A post has been edited"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: includes/free/form-element.php:210
|
5486 |
msgid "New Post Notification"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: includes/free/form-element.php:218 includes/free/form-element.php:256
|
5490 |
msgid "Enable post notification"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
+
#: includes/free/form-element.php:221
|
5494 |
msgid "Learn more about Email Notification"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
+
#: includes/free/form-element.php:232 includes/free/form-element.php:267
|
5498 |
msgid "Subject"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
+
#: includes/free/form-element.php:237 includes/free/form-element.php:272
|
5502 |
msgid "Message"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: includes/free/form-element.php:244
|
5506 |
msgid "Update Post Notification"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: includes/free/form-element.php:280
|
5510 |
msgid "You may use in to, subject & message:"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: includes/free/form-element.php:304
|
5514 |
msgid "Toggle All"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: includes/free/form-element.php:308
|
5518 |
msgid "Click on a form element to add to the editor"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: includes/free/form-element.php:342
|
5522 |
msgid "Registration successful"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: includes/free/form-element.php:343
|
5526 |
msgid "Profile updated successfully"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: includes/free/form-element.php:355
|
5530 |
msgid "Enable Email Verfication"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: includes/free/form-element.php:363
|
5534 |
msgid "New User Role"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: includes/free/form-element.php:399
|
5538 |
msgid "Registration success message"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: includes/free/form-element.php:406
|
5542 |
msgid "Update profile message"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: includes/free/form-element.php:435
|
5546 |
msgid "Submit Button text"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: includes/free/form-element.php:442
|
5550 |
msgid "Update Button text"
|
5551 |
msgstr ""
|
5552 |
|
5714 |
msgid "Not right now"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: includes/setup-wizard.php:290
|
5718 |
msgid "Basic Setting"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: includes/setup-wizard.php:297
|
5722 |
msgid "Make payment enable for user to add posts on frontend."
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: includes/setup-wizard.php:304
|
5726 |
msgid "Install neccessery pages on your site frontend."
|
5727 |
msgstr ""
|
5728 |
|
5729 |
#: includes/setup-wizard.php:308
|
5730 |
+
msgid "Share Essentials "
|
5731 |
+
msgstr ""
|
5732 |
+
|
5733 |
+
#: includes/setup-wizard.php:311
|
5734 |
+
msgid ""
|
5735 |
+
"Want to help make WP User Frontend even more awesome? Allow weDevs to "
|
5736 |
+
"collect non-sensitive diagnostic data and usage information."
|
5737 |
+
msgstr ""
|
5738 |
+
|
5739 |
+
#: includes/setup-wizard.php:313
|
5740 |
+
msgid "What we collect"
|
5741 |
+
msgstr ""
|
5742 |
+
|
5743 |
+
#: includes/setup-wizard.php:315
|
5744 |
+
msgid ""
|
5745 |
+
"Server environment details (php, mysql, server, WordPress versions), Number "
|
5746 |
+
"of users in your site, Site language, Number of active and inactive "
|
5747 |
+
"plugins, Site name and url, Your name and email address. No sensitive data "
|
5748 |
+
"is tracked."
|
5749 |
+
msgstr ""
|
5750 |
+
|
5751 |
+
#: includes/setup-wizard.php:321
|
5752 |
msgid "Continue"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: includes/setup-wizard.php:322
|
5756 |
msgid "Skip this step"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
+
#: includes/setup-wizard.php:373
|
5760 |
msgid "Thank you!"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: includes/setup-wizard.php:378
|
5764 |
msgid "Welcome to Awesomeness!"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: includes/setup-wizard.php:382
|
5768 |
msgid "Go to Full Settings"
|
5769 |
msgstr ""
|
5770 |
|
6044 |
msgid "Private"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: wpuf-functions.php:213 wpuf-functions.php:1750
|
6048 |
msgid "-- select --"
|
6049 |
msgstr ""
|
6050 |
|
6084 |
msgid "Directions »"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: wpuf-functions.php:1733
|
6088 |
msgid "Edit Profile"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: wpuf-functions.php:1859
|
6092 |
msgid "United Arab Emirates Dirham"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: wpuf-functions.php:1860
|
6096 |
msgid "Australian Dollars"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: wpuf-functions.php:1861
|
6100 |
msgid "Argentine Peso"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: wpuf-functions.php:1862
|
6104 |
msgid "Bangladeshi Taka"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: wpuf-functions.php:1863
|
6108 |
msgid "Brazilian Real"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: wpuf-functions.php:1864
|
6112 |
msgid "Bulgarian Lev"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
+
#: wpuf-functions.php:1865
|
6116 |
msgid "Canadian Dollars"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: wpuf-functions.php:1866
|
6120 |
msgid "Chilean Peso"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: wpuf-functions.php:1867
|
6124 |
msgid "Chinese Yuan"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: wpuf-functions.php:1868
|
6128 |
msgid "Colombian Peso"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: wpuf-functions.php:1869
|
6132 |
msgid "Czech Koruna"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: wpuf-functions.php:1870
|
6136 |
msgid "Danish Krone"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
+
#: wpuf-functions.php:1871
|
6140 |
msgid "Dominican Peso"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
+
#: wpuf-functions.php:1872
|
6144 |
msgid "Algerian Dinar"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: wpuf-functions.php:1873
|
6148 |
msgid "Euros"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: wpuf-functions.php:1874
|
6152 |
msgid "Hong Kong Dollar"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
+
#: wpuf-functions.php:1875
|
6156 |
msgid "Croatia kuna"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
+
#: wpuf-functions.php:1876
|
6160 |
msgid "Hungarian Forint"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: wpuf-functions.php:1877
|
6164 |
msgid "Icelandic krona"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: wpuf-functions.php:1878
|
6168 |
msgid "Indonesia Rupiah"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: wpuf-functions.php:1879
|
6172 |
msgid "Indian Rupee"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: wpuf-functions.php:1880
|
6176 |
msgid "Nepali Rupee"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
+
#: wpuf-functions.php:1881
|
6180 |
msgid "Israeli Shekel"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: wpuf-functions.php:1882
|
6184 |
msgid "Japanese Yen"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
+
#: wpuf-functions.php:1883
|
6188 |
msgid "Lao Kip"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: wpuf-functions.php:1884
|
6192 |
msgid "South Korean Won"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: wpuf-functions.php:1885
|
6196 |
msgid "Malaysian Ringgits"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
+
#: wpuf-functions.php:1886
|
6200 |
msgid "Mexican Peso"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
+
#: wpuf-functions.php:1887
|
6204 |
msgid "Nigerian Naira"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: wpuf-functions.php:1888
|
6208 |
msgid "Norwegian Krone"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: wpuf-functions.php:1889
|
6212 |
msgid "New Zealand Dollar"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: wpuf-functions.php:1890
|
6216 |
msgid "Omani Rial"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: wpuf-functions.php:1891
|
6220 |
msgid "Iranian Rial"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
+
#: wpuf-functions.php:1892
|
6224 |
msgid "Pakistani Rupee"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: wpuf-functions.php:1893
|
6228 |
msgid "Paraguayan Guaraní"
|
6229 |
msgstr ""
|
6230 |
|
6231 |
+
#: wpuf-functions.php:1894
|
6232 |
msgid "Philippine Pesos"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: wpuf-functions.php:1895
|
6236 |
msgid "Polish Zloty"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
+
#: wpuf-functions.php:1896
|
6240 |
msgid "Pounds Sterling"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: wpuf-functions.php:1897
|
6244 |
msgid "Romanian Leu"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: wpuf-functions.php:1898
|
6248 |
msgid "Russian Ruble"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: wpuf-functions.php:1899
|
6252 |
msgid "Saudi Riyal"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: wpuf-functions.php:1900
|
6256 |
msgid "Singapore Dollar"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: wpuf-functions.php:1901
|
6260 |
msgid "South African rand"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: wpuf-functions.php:1902
|
6264 |
msgid "Swedish Krona"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: wpuf-functions.php:1903
|
6268 |
msgid "Swiss Franc"
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: wpuf-functions.php:1904
|
6272 |
msgid "Taiwan New Dollars"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
+
#: wpuf-functions.php:1905
|
6276 |
msgid "Thai Baht"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: wpuf-functions.php:1906
|
6280 |
msgid "Turkish Lira"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
+
#: wpuf-functions.php:1907
|
6284 |
msgid "US Dollar"
|
6285 |
msgstr ""
|
6286 |
|
6287 |
+
#: wpuf-functions.php:1908
|
6288 |
msgid "Vietnamese Dong"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
+
#: wpuf-functions.php:1909
|
6292 |
msgid "Egyptian Pound"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: wpuf-functions.php:2764
|
6296 |
msgid "None"
|
6297 |
msgstr ""
|
6298 |
|
6312 |
msgid "Your Post Has Been Expired"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
+
#: wpuf.php:469
|
6316 |
msgid ""
|
6317 |
"<p style=\"font-size: 13px\">\n"
|
6318 |
" <strong class=\"highlight-text\" "
|
6325 |
" </p>"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
+
#: wpuf.php:485
|
6329 |
msgid "Update WP User Frontend Pro Now"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: wpuf.php:489
|
6333 |
msgid "Update WP User Frontend Pro NOW"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
+
#: wpuf.php:736
|
6337 |
msgid "Please Cancel Your Currently Active Pack first!"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
+
#: wpuf.php:898
|
6341 |
msgid "Error: Nonce verification failed"
|
6342 |
msgstr ""
|
6343 |
|
lib/appsero/Insights.php
CHANGED
@@ -356,19 +356,19 @@ class Insights {
|
|
356 |
$optout_url = add_query_arg( $this->client->slug . '_tracker_optout', 'true' );
|
357 |
|
358 |
if ( empty( $this->notice ) ) {
|
359 |
-
$notice = sprintf( __( 'Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to collect non-sensitive diagnostic data and usage information.', '
|
360 |
} else {
|
361 |
$notice = $this->notice;
|
362 |
}
|
363 |
|
364 |
-
$notice .= ' (<a class="' . $this->client->slug . '-insights-data-we-collect" href="#">' . __( 'what we collect', '
|
365 |
$notice .= '<p class="description" style="display:none;">' . implode( ', ', $this->data_we_collect() ) . '. No sensitive data is tracked.</p>';
|
366 |
|
367 |
echo '<div class="updated"><p>';
|
368 |
echo $notice;
|
369 |
echo '</p><p class="submit">';
|
370 |
-
echo ' <a href="' . esc_url( $optin_url ) . '" class="button-primary button-large">' . __( 'Allow', '
|
371 |
-
echo ' <a href="' . esc_url( $optout_url ) . '" class="button-secondary button-large">' . __( 'No thanks', '
|
372 |
echo '</p></div>';
|
373 |
|
374 |
echo "<script type='text/javascript'>jQuery('." . $this->client->slug . "-insights-data-we-collect').on('click', function(e) {
|
@@ -567,7 +567,7 @@ class Insights {
|
|
567 |
|
568 |
$schedules['weekly'] = array(
|
569 |
'interval' => DAY_IN_SECONDS * 7,
|
570 |
-
'display' => __( 'Once Weekly', '
|
571 |
);
|
572 |
|
573 |
return $schedules;
|
@@ -732,7 +732,7 @@ class Insights {
|
|
732 |
<div class="wd-dr-modal" id="<?php echo $this->client->slug; ?>-wd-dr-modal">
|
733 |
<div class="wd-dr-modal-wrap">
|
734 |
<div class="wd-dr-modal-header">
|
735 |
-
<h3><?php _e( 'If you have a moment, please let us know why you are deactivating:', '
|
736 |
</div>
|
737 |
|
738 |
<div class="wd-dr-modal-body">
|
@@ -746,9 +746,9 @@ class Insights {
|
|
746 |
</div>
|
747 |
|
748 |
<div class="wd-dr-modal-footer">
|
749 |
-
<a href="#" class="dont-bother-me"><?php _e( 'I rather wouldn\'t say', '
|
750 |
-
<button class="button-secondary"><?php _e( 'Submit & Deactivate', '
|
751 |
-
<button class="button-primary"><?php _e( 'Cancel', '
|
752 |
</div>
|
753 |
</div>
|
754 |
</div>
|
356 |
$optout_url = add_query_arg( $this->client->slug . '_tracker_optout', 'true' );
|
357 |
|
358 |
if ( empty( $this->notice ) ) {
|
359 |
+
$notice = sprintf( __( 'Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to collect non-sensitive diagnostic data and usage information.', 'wp-user-frontend' ), $this->client->name );
|
360 |
} else {
|
361 |
$notice = $this->notice;
|
362 |
}
|
363 |
|
364 |
+
$notice .= ' (<a class="' . $this->client->slug . '-insights-data-we-collect" href="#">' . __( 'what we collect', 'wp-user-frontend' ) . '</a>)';
|
365 |
$notice .= '<p class="description" style="display:none;">' . implode( ', ', $this->data_we_collect() ) . '. No sensitive data is tracked.</p>';
|
366 |
|
367 |
echo '<div class="updated"><p>';
|
368 |
echo $notice;
|
369 |
echo '</p><p class="submit">';
|
370 |
+
echo ' <a href="' . esc_url( $optin_url ) . '" class="button-primary button-large">' . __( 'Allow', 'wp-user-frontend' ) . '</a>';
|
371 |
+
echo ' <a href="' . esc_url( $optout_url ) . '" class="button-secondary button-large">' . __( 'No thanks', 'wp-user-frontend' ) . '</a>';
|
372 |
echo '</p></div>';
|
373 |
|
374 |
echo "<script type='text/javascript'>jQuery('." . $this->client->slug . "-insights-data-we-collect').on('click', function(e) {
|
567 |
|
568 |
$schedules['weekly'] = array(
|
569 |
'interval' => DAY_IN_SECONDS * 7,
|
570 |
+
'display' => __( 'Once Weekly', 'wp-user-frontend' )
|
571 |
);
|
572 |
|
573 |
return $schedules;
|
732 |
<div class="wd-dr-modal" id="<?php echo $this->client->slug; ?>-wd-dr-modal">
|
733 |
<div class="wd-dr-modal-wrap">
|
734 |
<div class="wd-dr-modal-header">
|
735 |
+
<h3><?php _e( 'If you have a moment, please let us know why you are deactivating:', 'wp-user-frontend' ); ?></h3>
|
736 |
</div>
|
737 |
|
738 |
<div class="wd-dr-modal-body">
|
746 |
</div>
|
747 |
|
748 |
<div class="wd-dr-modal-footer">
|
749 |
+
<a href="#" class="dont-bother-me"><?php _e( 'I rather wouldn\'t say', 'wp-user-frontend' ); ?></a>
|
750 |
+
<button class="button-secondary"><?php _e( 'Submit & Deactivate', 'wp-user-frontend' ); ?></button>
|
751 |
+
<button class="button-primary"><?php _e( 'Cancel', 'wp-user-frontend' ); ?></button>
|
752 |
</div>
|
753 |
</div>
|
754 |
</div>
|
lib/class-wedevs-insights.php
CHANGED
@@ -26,8 +26,10 @@ class WPUF_WeDevs_Insights {
|
|
26 |
|
27 |
$client = new Appsero\Client( '958afc63-99f8-4b98-b321-fcbc5cf95694', 'WP User Frontend', $file );
|
28 |
|
|
|
|
|
29 |
// Active insights
|
30 |
-
$
|
31 |
}
|
32 |
|
33 |
}
|
26 |
|
27 |
$client = new Appsero\Client( '958afc63-99f8-4b98-b321-fcbc5cf95694', 'WP User Frontend', $file );
|
28 |
|
29 |
+
$this->insights = $client->insights();
|
30 |
+
|
31 |
// Active insights
|
32 |
+
$this->insights->init();
|
33 |
}
|
34 |
|
35 |
}
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: tareq1988, nizamuddinbabu, sk.shaikat, rabbii, itowhid06, wedevs
|
|
3 |
Donate link: https://tareq.co/donate/
|
4 |
Tags: Forms, registration, profile-builder, login, membership
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 5.2.
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 3.1.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -257,6 +257,15 @@ redirected to the edit page with that post id. Then you'll see the edit post for
|
|
257 |
|
258 |
== Changelog ==
|
259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
= v3.1.10 (06 September, 2019) =
|
261 |
|
262 |
* **Fix:** Posts were not assigned to the selected default post owner.
|
3 |
Donate link: https://tareq.co/donate/
|
4 |
Tags: Forms, registration, profile-builder, login, membership
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 5.2.3
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.1.11
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
257 |
|
258 |
== Changelog ==
|
259 |
|
260 |
+
= v3.1.11 (02 October, 2019) =
|
261 |
+
|
262 |
+
* **Feature:** Option to set which tab shows as active on the account page.
|
263 |
+
* **Fix:** Unlock option was unavailable after the post being locked.
|
264 |
+
* **Fix:** Gutenberg block of WPUF didn't work on bedrock installation.
|
265 |
+
* **Fix:** Sending admin payment received email twice.
|
266 |
+
* **Enhancement:** Add shortcode support to display post information in the Post Expiration Message.
|
267 |
+
* **Enhancement:** Add Appsero option checkbox on the setup wizard.
|
268 |
+
|
269 |
= v3.1.10 (06 September, 2019) =
|
270 |
|
271 |
* **Fix:** Posts were not assigned to the selected default post owner.
|
templates/account.php
CHANGED
@@ -15,9 +15,16 @@
|
|
15 |
}
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
echo sprintf(
|
19 |
'<li class="wpuf-menu-item %s"><a href="%s">%s</a></li>',
|
20 |
-
|
21 |
add_query_arg( array( 'section' => $section['slug'] ), get_permalink() ),
|
22 |
$section['label']
|
23 |
);
|
15 |
}
|
16 |
}
|
17 |
|
18 |
+
$default_active_tab = wpuf_get_option( 'account_page_active_tab', 'wpuf_my_account', 'dashboard' );
|
19 |
+
$active_tab = false;
|
20 |
+
|
21 |
+
if ( ( isset( $_GET['section'] ) && $_GET['section'] == $section['slug'] ) || ( !isset( $_GET['section'] ) && $default_active_tab == $section['slug'] ) ) {
|
22 |
+
$active_tab = true;
|
23 |
+
}
|
24 |
+
|
25 |
echo sprintf(
|
26 |
'<li class="wpuf-menu-item %s"><a href="%s">%s</a></li>',
|
27 |
+
$active_tab ? $section['slug'] . ' active' : $section['slug'],
|
28 |
add_query_arg( array( 'section' => $section['slug'] ), get_permalink() ),
|
29 |
$section['label']
|
30 |
);
|
wpuf-functions.php
CHANGED
@@ -1325,6 +1325,38 @@ function wpuf_load_template( $file, $args = array() ) {
|
|
1325 |
}
|
1326 |
}
|
1327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1328 |
/**
|
1329 |
* Helper function for formatting date field
|
1330 |
*
|
@@ -1706,6 +1738,25 @@ function wpuf_get_account_sections() {
|
|
1706 |
return apply_filters( 'wpuf_account_sections', $account_sections );
|
1707 |
}
|
1708 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1709 |
/**
|
1710 |
* Get all transactions
|
1711 |
*
|
@@ -2639,18 +2690,33 @@ function get_formatted_mail_body( $message, $subject ) {
|
|
2639 |
|
2640 |
if ( empty( $header ) ) {
|
2641 |
ob_start();
|
2642 |
-
|
|
|
|
|
|
|
|
|
|
|
2643 |
$header = ob_get_clean();
|
2644 |
}
|
2645 |
|
2646 |
if ( empty( $footer ) ) {
|
2647 |
ob_start();
|
2648 |
-
|
|
|
|
|
|
|
|
|
|
|
2649 |
$footer = ob_get_clean();
|
2650 |
}
|
2651 |
|
2652 |
ob_start();
|
2653 |
-
|
|
|
|
|
|
|
|
|
|
|
2654 |
$css = apply_filters( 'wpuf_email_style', ob_get_clean() );
|
2655 |
|
2656 |
$content = $header . '<pre>' . $message . '</pre>' . $footer;
|
1325 |
}
|
1326 |
}
|
1327 |
|
1328 |
+
/**
|
1329 |
+
* Include a template file
|
1330 |
+
*
|
1331 |
+
* Looks up first on the theme directory, if not found
|
1332 |
+
* lods from pro plugin folder
|
1333 |
+
*
|
1334 |
+
* @since 3.1.11
|
1335 |
+
*
|
1336 |
+
* @param string $file file name or path to file
|
1337 |
+
*/
|
1338 |
+
function wpuf_load_pro_template( $file, $args = array() ) {
|
1339 |
+
if ( $args && is_array( $args ) ) {
|
1340 |
+
extract( $args );
|
1341 |
+
}
|
1342 |
+
|
1343 |
+
if ( wpuf()->is_pro() ) {
|
1344 |
+
$child_theme_dir = get_stylesheet_directory() . '/wpuf/';
|
1345 |
+
$parent_theme_dir = get_template_directory() . '/wpuf/';
|
1346 |
+
$wpuf_pro_dir = WPUF_PRO_INCLUDES . '/templates/';
|
1347 |
+
|
1348 |
+
if ( file_exists( $child_theme_dir . $file ) ) {
|
1349 |
+
include $child_theme_dir . $file;
|
1350 |
+
|
1351 |
+
} else if ( file_exists( $parent_theme_dir . $file ) ) {
|
1352 |
+
include $parent_theme_dir . $file;
|
1353 |
+
|
1354 |
+
} else {
|
1355 |
+
include $wpuf_pro_dir . $file;
|
1356 |
+
}
|
1357 |
+
}
|
1358 |
+
}
|
1359 |
+
|
1360 |
/**
|
1361 |
* Helper function for formatting date field
|
1362 |
*
|
1738 |
return apply_filters( 'wpuf_account_sections', $account_sections );
|
1739 |
}
|
1740 |
|
1741 |
+
/**
|
1742 |
+
* Get account dashboard's sections in a list array
|
1743 |
+
*
|
1744 |
+
* @since 2.4.2
|
1745 |
+
*
|
1746 |
+
* @return array
|
1747 |
+
*/
|
1748 |
+
function wpuf_get_account_sections_list( $post_type = 'page' ) {
|
1749 |
+
$sections = wpuf_get_account_sections();
|
1750 |
+
$array = array( '' => __( '-- select --', 'wp-user-frontend' ) );
|
1751 |
+
|
1752 |
+
if ( $sections ) {
|
1753 |
+
foreach ($sections as $section) {
|
1754 |
+
$array[$section['slug']] = esc_attr( $section['label'] );
|
1755 |
+
}
|
1756 |
+
}
|
1757 |
+
|
1758 |
+
return $array;
|
1759 |
+
}
|
1760 |
/**
|
1761 |
* Get all transactions
|
1762 |
*
|
2690 |
|
2691 |
if ( empty( $header ) ) {
|
2692 |
ob_start();
|
2693 |
+
|
2694 |
+
wpuf_load_pro_template(
|
2695 |
+
"email/header.php",
|
2696 |
+
array( 'subject' => $subject )
|
2697 |
+
);
|
2698 |
+
|
2699 |
$header = ob_get_clean();
|
2700 |
}
|
2701 |
|
2702 |
if ( empty( $footer ) ) {
|
2703 |
ob_start();
|
2704 |
+
|
2705 |
+
wpuf_load_pro_template(
|
2706 |
+
"email/footer.php",
|
2707 |
+
array()
|
2708 |
+
);
|
2709 |
+
|
2710 |
$footer = ob_get_clean();
|
2711 |
}
|
2712 |
|
2713 |
ob_start();
|
2714 |
+
|
2715 |
+
wpuf_load_pro_template(
|
2716 |
+
"email/style.php",
|
2717 |
+
array()
|
2718 |
+
);
|
2719 |
+
|
2720 |
$css = apply_filters( 'wpuf_email_style', ob_get_clean() );
|
2721 |
|
2722 |
$content = $header . '<pre>' . $message . '</pre>' . $footer;
|
wpuf.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP User Frontend
|
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: Tareq Hasan
|
7 |
-
Version: 3.1.
|
8 |
Author URI: https://tareq.co
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -12,7 +12,7 @@ Text Domain: wp-user-frontend
|
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
-
define( 'WPUF_VERSION', '3.1.
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', dirname( __FILE__ ) );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|
@@ -152,7 +152,7 @@ final class WP_User_Frontend {
|
|
152 |
add_action( 'wp_ajax_wpuf_weforms_install', array( $this, 'install_weforms' ) );
|
153 |
|
154 |
// Insight class instentiate
|
155 |
-
$this->container['
|
156 |
}
|
157 |
|
158 |
/**
|
@@ -207,7 +207,30 @@ final class WP_User_Frontend {
|
|
207 |
|
208 |
wp_update_post( $post_to_update );
|
209 |
|
210 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
|
212 |
if ( ! empty( $message ) ) {
|
213 |
wp_mail( get_the_author_meta( 'user_email', $each_post->post_author ), $mail_subject, $message );
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: Tareq Hasan
|
7 |
+
Version: 3.1.11
|
8 |
Author URI: https://tareq.co
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
+
define( 'WPUF_VERSION', '3.1.11' );
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', dirname( __FILE__ ) );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|
152 |
add_action( 'wp_ajax_wpuf_weforms_install', array( $this, 'install_weforms' ) );
|
153 |
|
154 |
// Insight class instentiate
|
155 |
+
$this->container['tracker'] = new WPUF_WeDevs_Insights( __FILE__ );
|
156 |
}
|
157 |
|
158 |
/**
|
207 |
|
208 |
wp_update_post( $post_to_update );
|
209 |
|
210 |
+
$post_url = get_permalink( $each_post->ID );
|
211 |
+
$author_id = $each_post->post_author;
|
212 |
+
$post_author = get_the_author_meta( 'user_login', $author_id );
|
213 |
+
$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
|
214 |
+
|
215 |
+
$search = array(
|
216 |
+
'{post_author}',
|
217 |
+
'{post_url}',
|
218 |
+
'{blogname}',
|
219 |
+
'{post_title}',
|
220 |
+
'{post_status}'
|
221 |
+
);
|
222 |
+
|
223 |
+
$replace = array(
|
224 |
+
$post_author,
|
225 |
+
$post_url,
|
226 |
+
$blogname,
|
227 |
+
$each_post->post_title,
|
228 |
+
$each_post->post_status
|
229 |
+
);
|
230 |
+
|
231 |
+
$message = get_post_meta( $each_post->ID, 'wpuf-post_expiration_message', true );
|
232 |
+
$message = str_replace( $search, $replace, $message );
|
233 |
+
$message = get_formatted_mail_body( $message, $mail_subject );
|
234 |
|
235 |
if ( ! empty( $message ) ) {
|
236 |
wp_mail( get_the_author_meta( 'user_email', $each_post->post_author ), $mail_subject, $message );
|