You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/class-fgcbg-plugin.php
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -191,14 +191,20 @@ public function enqueue_admin_scripts( $hook ) {
191
191
'fgcbg_i18n',
192
192
array(
193
193
'ajax_url' => admin_url( 'admin-ajax.php' ),
194
-
'nonce' => wp_create_nonce( 'fgcbg_ajax_nonce' ), /* translators: %d is the number of coupons to be generated */'confirm_large_batch' => __( 'You are about to generate %d coupons. This may take a while and could potentially timeout depending on your server settings. Do you want to continue?', 'free-gift-coupons-bulk-coupons-generator' ),
194
+
'nonce' => wp_create_nonce( 'fgcbg_ajax_nonce' ),
195
+
/* translators: %d is the number of coupons to be generated. */
196
+
'confirm_large_batch' => __( 'You are about to generate %d coupons. This may take a while and could potentially timeout depending on your server settings. Do you want to continue?', 'free-gift-coupons-bulk-coupons-generator' ),
'many_coupons_warning' => __( 'Generating many coupons may take some time and could timeout', 'free-gift-coupons-bulk-coupons-generator' ),
197
199
'select_product' => __( 'Please select at least one product.', 'free-gift-coupons-bulk-coupons-generator' ),
198
200
'invalid_coupon_count' => __( 'Please enter a valid number of coupons (minimum 1).', 'free-gift-coupons-bulk-coupons-generator' ),
199
201
'max_coupon_count' => __( 'Maximum number of coupons is 100.', 'free-gift-coupons-bulk-coupons-generator' ),
200
202
'prefix_too_long' => __( 'Coupon prefix must be 10 characters or less.', 'free-gift-coupons-bulk-coupons-generator' ),
201
-
'generation_in_progress' => __( 'Coupon generation is in progress. Are you sure you want to leave this page?', 'free-gift-coupons-bulk-coupons-generator' ), /* translators: %1$d is the current coupon count, %2$d is the total number of coupons to generate */'generating_progress' => __( 'Generating coupons: %1$d of %2$d', 'free-gift-coupons-bulk-coupons-generator' ), /* translators: %d is the number of successfully generated coupons */'generation_complete' => __( 'Successfully generated %d coupons.', 'free-gift-coupons-bulk-coupons-generator' ),
203
+
'generation_in_progress' => __( 'Coupon generation is in progress. Are you sure you want to leave this page?', 'free-gift-coupons-bulk-coupons-generator' ),
204
+
/* translators: %1$d is the current coupon count, %2$d is the total number of coupons to generate. */
205
+
'generating_progress' => __( 'Generating coupons: %1$d of %2$d', 'free-gift-coupons-bulk-coupons-generator' ),
206
+
/* translators: %d is the number of successfully generated coupons. */
0 commit comments