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
This PR updates the translation template (`.pot` file) based on recent code changes.
75
-
78
+
76
79
### What Changed
77
-
The following PHP and JavaScript source files had translatable strings added or modified:
78
-
79
-
```
80
-
${{ github.event.head_commit.message }}
81
-
```
82
-
80
+
The following PHP and JavaScript source files had translatable strings added or modified.
81
+
82
+
See the diff in this PR for details.
83
+
83
84
### Next Steps
84
85
1. Review the changes in the `.pot` file
85
86
2. Approve and merge this PR
86
87
3. Translators can then use the updated `.pot` file with their translation tools
87
-
88
+
88
89
---
89
90
*This PR was automatically generated by the [Update Translation File](https://github.com/${{ github.repository }}/blob/main/.github/workflows/update-pot-file.yml) workflow.*
Copy file name to clipboardExpand all lines: includes/class-fgcbg-plugin.php
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -191,17 +191,14 @@ 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' ),
195
-
'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' ), /* 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' ),
'many_coupons_warning' => __( 'Generating many coupons may take some time and could timeout', 'free-gift-coupons-bulk-coupons-generator' ),
198
197
'select_product' => __( 'Please select at least one product.', 'free-gift-coupons-bulk-coupons-generator' ),
199
198
'invalid_coupon_count' => __( 'Please enter a valid number of coupons (minimum 1).', 'free-gift-coupons-bulk-coupons-generator' ),
200
199
'max_coupon_count' => __( 'Maximum number of coupons is 100.', 'free-gift-coupons-bulk-coupons-generator' ),
201
200
'prefix_too_long' => __( 'Coupon prefix must be 10 characters or less.', 'free-gift-coupons-bulk-coupons-generator' ),
202
-
'generation_in_progress' => __( 'Coupon generation is in progress. Are you sure you want to leave this page?', 'free-gift-coupons-bulk-coupons-generator' ),
203
-
'generating_progress' => __( 'Generating coupons: %1$d of %2$d', 'free-gift-coupons-bulk-coupons-generator' ),
'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' ),
0 commit comments