@automattic/newspack-blocks 4.26.0 → 4.26.1-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/includes/class-modal-checkout.php +1 -0
- package/includes/class-newspack-blocks-caching.php +18 -2
- package/languages/newspack-blocks-de_DE.po +47 -47
- package/languages/newspack-blocks-es_ES.po +47 -47
- package/languages/newspack-blocks-fr_BE.po +47 -47
- package/languages/newspack-blocks-nb_NO.po +47 -47
- package/languages/newspack-blocks-pt_PT.po +47 -47
- package/languages/newspack-blocks.pot +50 -50
- package/newspack-blocks.php +5 -5
- package/package.json +1 -1
- package/vendor/composer/installed.php +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [4.26.1-alpha.1](https://github.com/Automattic/newspack-blocks/compare/v4.26.0...v4.26.1-alpha.1) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **modal-checkout:** register NYP AJAX handler for logged-out users ([#2323](https://github.com/Automattic/newspack-blocks/issues/2323)) ([291223e](https://github.com/Automattic/newspack-blocks/commit/291223e5f52bf3af096a07466199d625bdd68e50))
|
|
7
|
+
* reinstate WP 7.0 enqueue_block_assets workaround ([#2319](https://github.com/Automattic/newspack-blocks/issues/2319)) ([4cff5a6](https://github.com/Automattic/newspack-blocks/commit/4cff5a625e5244e2c5b4f78e32328af956446af5))
|
|
8
|
+
* track seen blocks to prevent infinite recursion in cache checks ([#2327](https://github.com/Automattic/newspack-blocks/issues/2327)) ([9116fc0](https://github.com/Automattic/newspack-blocks/commit/9116fc0e1a9e6b4cf75cd30f3d6286f63a3d744c))
|
|
9
|
+
|
|
1
10
|
# [4.26.0](https://github.com/Automattic/newspack-blocks/compare/v4.25.4...v4.26.0) (2026-03-30)
|
|
2
11
|
|
|
3
12
|
|
|
@@ -174,6 +174,7 @@ final class Modal_Checkout {
|
|
|
174
174
|
add_action( 'option_woocommerce_default_customer_address', [ __CLASS__, 'ensure_base_default_customer_address' ] );
|
|
175
175
|
add_action( 'default_option_woocommerce_default_customer_address', [ __CLASS__, 'ensure_base_default_customer_address' ] );
|
|
176
176
|
add_action( 'wp_ajax_process_name_your_price_request', [ __CLASS__, 'process_name_your_price_request' ] );
|
|
177
|
+
add_action( 'wp_ajax_nopriv_process_name_your_price_request', [ __CLASS__, 'process_name_your_price_request' ] );
|
|
177
178
|
add_filter( 'option_woocommerce_woocommerce_payments_settings', [ __CLASS__, 'filter_woocommerce_payments_settings' ] );
|
|
178
179
|
add_action( 'init', [ __CLASS__, 'unhook_woocommerce_payments_update_billing_fields' ] );
|
|
179
180
|
add_action( 'wp_enqueue_scripts', [ __CLASS__, 'update_password_strength_message' ], 9999 );
|
|
@@ -19,6 +19,13 @@ class Newspack_Blocks_Caching {
|
|
|
19
19
|
*/
|
|
20
20
|
private static $can_serve_all_blocks_from_cache = true;
|
|
21
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Track visited reusable block IDs to spot recursion.
|
|
24
|
+
*
|
|
25
|
+
* @var array<int, bool>
|
|
26
|
+
*/
|
|
27
|
+
private static $visited_reusable_blocks = [];
|
|
28
|
+
|
|
22
29
|
/**
|
|
23
30
|
* Store the current block index. This will be incremented with each cache reading,
|
|
24
31
|
* in order to add specificity to the cache key. The cache key consists of the
|
|
@@ -73,6 +80,7 @@ class Newspack_Blocks_Caching {
|
|
|
73
80
|
if ( is_singular() ) {
|
|
74
81
|
$post = get_post();
|
|
75
82
|
if ( $post && property_exists( $post, 'post_content' ) ) {
|
|
83
|
+
self::$visited_reusable_blocks = [];
|
|
76
84
|
self::check_block_cache_status( parse_blocks( $post->post_content ) );
|
|
77
85
|
// Reset the index after initial checks.
|
|
78
86
|
self::$current_block_index = 0;
|
|
@@ -89,11 +97,19 @@ class Newspack_Blocks_Caching {
|
|
|
89
97
|
$cacheable_block_names = self::get_cacheable_blocks_names();
|
|
90
98
|
foreach ( $blocks as $block_data ) {
|
|
91
99
|
// Special treatment for reusable blocks, which are blocks stored in the posts table.
|
|
92
|
-
if ( $block_data['blockName'] === 'core/block' ) {
|
|
93
|
-
$
|
|
100
|
+
if ( $block_data['blockName'] === 'core/block' && ! empty( $block_data['attrs']['ref'] ) ) {
|
|
101
|
+
$ref = $block_data['attrs']['ref'];
|
|
102
|
+
// Skip blocks we've seen before to avoid infinite recursion.
|
|
103
|
+
// Based on core's render_block_core_block().
|
|
104
|
+
if ( isset( self::$visited_reusable_blocks[ $ref ] ) ) {
|
|
105
|
+
continue;
|
|
106
|
+
}
|
|
107
|
+
self::$visited_reusable_blocks[ $ref ] = true;
|
|
108
|
+
$reusable_block_post = get_post( $ref );
|
|
94
109
|
if ( $reusable_block_post && property_exists( $reusable_block_post, 'post_content' ) ) {
|
|
95
110
|
self::check_block_cache_status( parse_blocks( $reusable_block_post->post_content ) );
|
|
96
111
|
}
|
|
112
|
+
unset( self::$visited_reusable_blocks[ $ref ] );
|
|
97
113
|
}
|
|
98
114
|
if ( in_array( $block_data['blockName'], $cacheable_block_names, true ) ) {
|
|
99
115
|
if ( ! self::get_cached_block_data( $block_data ) ) {
|
|
@@ -2,7 +2,7 @@ msgid ""
|
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: Newspack Blocks\n"
|
|
4
4
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/newspack-blocks\n"
|
|
5
|
-
"POT-Creation-Date: 2026-
|
|
5
|
+
"POT-Creation-Date: 2026-04-01T18:21:48+00:00\n"
|
|
6
6
|
"PO-Revision-Date: 2024-08-30 08:45-0700\n"
|
|
7
7
|
"Last-Translator: \n"
|
|
8
8
|
"Language-Team: \n"
|
|
@@ -45,102 +45,102 @@ msgstr ""
|
|
|
45
45
|
msgid "Automattic"
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
|
-
#: includes/class-modal-checkout.php:
|
|
48
|
+
#: includes/class-modal-checkout.php:314 includes/class-modal-checkout.php:508
|
|
49
49
|
msgid "Invalid nonce."
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
-
#: includes/class-modal-checkout.php:
|
|
52
|
+
#: includes/class-modal-checkout.php:518
|
|
53
53
|
msgid "Cart has been emptied."
|
|
54
54
|
msgstr ""
|
|
55
55
|
|
|
56
56
|
#. Translators: %s is the maximum price.
|
|
57
|
-
#: includes/class-modal-checkout.php:
|
|
57
|
+
#: includes/class-modal-checkout.php:598
|
|
58
58
|
#, php-format
|
|
59
59
|
msgid "Adjusted price must be less than the maximum of %s."
|
|
60
60
|
msgstr ""
|
|
61
61
|
|
|
62
62
|
#. Translators: %s is the name-your-price custom price.
|
|
63
|
-
#: includes/class-modal-checkout.php:
|
|
63
|
+
#: includes/class-modal-checkout.php:622
|
|
64
64
|
#, php-format
|
|
65
65
|
msgid "Adjusted price must be greater than base price of %s."
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: includes/class-modal-checkout.php:
|
|
68
|
+
#: includes/class-modal-checkout.php:674 includes/class-modal-checkout.php:758
|
|
69
69
|
msgid "Close"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: includes/class-modal-checkout.php:
|
|
72
|
+
#: includes/class-modal-checkout.php:700
|
|
73
73
|
msgid "per"
|
|
74
74
|
msgstr ""
|
|
75
75
|
|
|
76
|
-
#: includes/class-modal-checkout.php:
|
|
76
|
+
#: includes/class-modal-checkout.php:814
|
|
77
77
|
msgid "Or"
|
|
78
78
|
msgstr ""
|
|
79
79
|
|
|
80
|
-
#: includes/class-modal-checkout.php:
|
|
81
|
-
#: includes/class-modal-checkout.php:
|
|
80
|
+
#: includes/class-modal-checkout.php:1048
|
|
81
|
+
#: includes/class-modal-checkout.php:1052
|
|
82
82
|
msgid "Processing payment..."
|
|
83
83
|
msgstr ""
|
|
84
84
|
|
|
85
|
-
#: includes/class-modal-checkout.php:
|
|
85
|
+
#: includes/class-modal-checkout.php:1056
|
|
86
86
|
msgid "Verifying details..."
|
|
87
87
|
msgstr ""
|
|
88
88
|
|
|
89
|
-
#: includes/class-modal-checkout.php:
|
|
89
|
+
#: includes/class-modal-checkout.php:1060
|
|
90
90
|
msgid "Finalizing transaction..."
|
|
91
91
|
msgstr ""
|
|
92
92
|
|
|
93
|
-
#: includes/class-modal-checkout.php:
|
|
93
|
+
#: includes/class-modal-checkout.php:1116
|
|
94
94
|
msgid ""
|
|
95
95
|
"We're sorry, there was an unexpected error. Please try again in a few "
|
|
96
96
|
"minutes."
|
|
97
97
|
msgstr ""
|
|
98
98
|
|
|
99
|
-
#: includes/class-modal-checkout.php:
|
|
99
|
+
#: includes/class-modal-checkout.php:1128
|
|
100
100
|
msgid "Go back"
|
|
101
101
|
msgstr ""
|
|
102
102
|
|
|
103
|
-
#: includes/class-modal-checkout.php:
|
|
103
|
+
#: includes/class-modal-checkout.php:1218
|
|
104
104
|
msgid "Password mismatch"
|
|
105
105
|
msgstr ""
|
|
106
106
|
|
|
107
|
-
#: includes/class-modal-checkout.php:
|
|
107
|
+
#: includes/class-modal-checkout.php:1219
|
|
108
108
|
msgid "Password strength: Very weak"
|
|
109
109
|
msgstr ""
|
|
110
110
|
|
|
111
|
-
#: includes/class-modal-checkout.php:
|
|
111
|
+
#: includes/class-modal-checkout.php:1220
|
|
112
112
|
msgid "Password strength: Weak"
|
|
113
113
|
msgstr ""
|
|
114
114
|
|
|
115
|
-
#: includes/class-modal-checkout.php:
|
|
115
|
+
#: includes/class-modal-checkout.php:1221
|
|
116
116
|
msgid "Password strength: Medium"
|
|
117
117
|
msgstr ""
|
|
118
118
|
|
|
119
|
-
#: includes/class-modal-checkout.php:
|
|
119
|
+
#: includes/class-modal-checkout.php:1222
|
|
120
120
|
msgid "Password strength: Strong"
|
|
121
121
|
msgstr ""
|
|
122
122
|
|
|
123
|
-
#: includes/class-modal-checkout.php:
|
|
123
|
+
#: includes/class-modal-checkout.php:1403
|
|
124
124
|
msgid "Please enter someone else' email address to receive this gift."
|
|
125
125
|
msgstr ""
|
|
126
126
|
|
|
127
|
-
#: includes/class-modal-checkout.php:
|
|
127
|
+
#: includes/class-modal-checkout.php:1404
|
|
128
128
|
msgid "Please enter a valid email address to receive this gift."
|
|
129
129
|
msgstr ""
|
|
130
130
|
|
|
131
|
-
#: includes/class-modal-checkout.php:
|
|
131
|
+
#: includes/class-modal-checkout.php:1500
|
|
132
132
|
msgid "Close window"
|
|
133
133
|
msgstr ""
|
|
134
134
|
|
|
135
135
|
#. translators: %s: Site name.
|
|
136
|
-
#: includes/class-modal-checkout.php:
|
|
136
|
+
#: includes/class-modal-checkout.php:1591
|
|
137
137
|
#, php-format
|
|
138
138
|
msgid ""
|
|
139
139
|
"You're already a subscriber! You can only have one active subscription at a "
|
|
140
140
|
"time. Thank you for supporting %s."
|
|
141
141
|
msgstr ""
|
|
142
142
|
|
|
143
|
-
#: includes/class-modal-checkout.php:
|
|
143
|
+
#: includes/class-modal-checkout.php:1602
|
|
144
144
|
msgid ""
|
|
145
145
|
"You're already a subscriber! You can only have one subscription at a time. "
|
|
146
146
|
"If you wish to renew an expired subscription, please sign in and visit the "
|
|
@@ -149,98 +149,98 @@ msgstr ""
|
|
|
149
149
|
|
|
150
150
|
#. translators: 1: Checkout button confirmation text. 2: Order total.
|
|
151
151
|
#. translators: 1 is the name of the item. 2 is the price of the item.
|
|
152
|
-
#: includes/class-modal-checkout.php:
|
|
152
|
+
#: includes/class-modal-checkout.php:1726
|
|
153
153
|
#: includes/modal-checkout/class-checkout-data.php:68
|
|
154
154
|
#, php-format
|
|
155
155
|
msgid "%1$s: %2$s"
|
|
156
156
|
msgstr ""
|
|
157
157
|
|
|
158
|
-
#: includes/class-modal-checkout.php:
|
|
158
|
+
#: includes/class-modal-checkout.php:2096
|
|
159
159
|
msgid "Billing details"
|
|
160
160
|
msgstr ""
|
|
161
161
|
|
|
162
|
-
#: includes/class-modal-checkout.php:
|
|
162
|
+
#: includes/class-modal-checkout.php:2097
|
|
163
163
|
msgid "Shipping details"
|
|
164
164
|
msgstr ""
|
|
165
165
|
|
|
166
|
-
#: includes/class-modal-checkout.php:
|
|
166
|
+
#: includes/class-modal-checkout.php:2098
|
|
167
167
|
msgid "Gift recipient"
|
|
168
168
|
msgstr ""
|
|
169
169
|
|
|
170
|
-
#: includes/class-modal-checkout.php:
|
|
171
|
-
#: includes/class-modal-checkout.php:
|
|
172
|
-
#: includes/class-modal-checkout.php:
|
|
170
|
+
#: includes/class-modal-checkout.php:2099
|
|
171
|
+
#: includes/class-modal-checkout.php:2100
|
|
172
|
+
#: includes/class-modal-checkout.php:2101
|
|
173
173
|
msgid "Complete your transaction"
|
|
174
174
|
msgstr ""
|
|
175
175
|
|
|
176
|
-
#: includes/class-modal-checkout.php:
|
|
176
|
+
#: includes/class-modal-checkout.php:2102
|
|
177
177
|
msgctxt "Login modal title when logged out user attempts to checkout."
|
|
178
178
|
msgid "Sign in to complete transaction"
|
|
179
179
|
msgstr ""
|
|
180
180
|
|
|
181
|
-
#: includes/class-modal-checkout.php:
|
|
181
|
+
#: includes/class-modal-checkout.php:2107
|
|
182
182
|
msgctxt "Login modal title when unregistered user attempts to checkout"
|
|
183
183
|
msgid "Register to complete transaction"
|
|
184
184
|
msgstr ""
|
|
185
185
|
|
|
186
|
-
#: includes/class-modal-checkout.php:
|
|
186
|
+
#: includes/class-modal-checkout.php:2112
|
|
187
187
|
msgid "Continue browsing"
|
|
188
188
|
msgstr ""
|
|
189
189
|
|
|
190
|
-
#: includes/class-modal-checkout.php:
|
|
190
|
+
#: includes/class-modal-checkout.php:2113
|
|
191
191
|
msgid "This donation is a gift"
|
|
192
192
|
msgstr ""
|
|
193
193
|
|
|
194
|
-
#: includes/class-modal-checkout.php:
|
|
194
|
+
#: includes/class-modal-checkout.php:2118
|
|
195
195
|
msgid "This purchase is a gift"
|
|
196
196
|
msgstr ""
|
|
197
197
|
|
|
198
|
-
#: includes/class-modal-checkout.php:
|
|
198
|
+
#: includes/class-modal-checkout.php:2120
|
|
199
199
|
msgid "Complete transaction"
|
|
200
200
|
msgstr ""
|
|
201
201
|
|
|
202
|
-
#: includes/class-modal-checkout.php:
|
|
202
|
+
#: includes/class-modal-checkout.php:2121
|
|
203
203
|
msgid "Purchase"
|
|
204
204
|
msgstr ""
|
|
205
205
|
|
|
206
|
-
#: includes/class-modal-checkout.php:
|
|
206
|
+
#: includes/class-modal-checkout.php:2122
|
|
207
207
|
msgid "Edit billing information"
|
|
208
208
|
msgstr ""
|
|
209
209
|
|
|
210
|
-
#: includes/class-modal-checkout.php:
|
|
210
|
+
#: includes/class-modal-checkout.php:2123 dist/editor.js:33
|
|
211
211
|
#: src/blocks/checkout-button/edit.js:192
|
|
212
212
|
msgid "Cancel"
|
|
213
213
|
msgstr ""
|
|
214
214
|
|
|
215
|
-
#: includes/class-modal-checkout.php:
|
|
215
|
+
#: includes/class-modal-checkout.php:2124
|
|
216
216
|
msgid "Transaction successful"
|
|
217
217
|
msgstr ""
|
|
218
218
|
|
|
219
|
-
#: includes/class-modal-checkout.php:
|
|
219
|
+
#: includes/class-modal-checkout.php:2125
|
|
220
220
|
msgid ""
|
|
221
221
|
"Your contribution directly funds our work. If you're moved to do so, you can "
|
|
222
222
|
"opt to pay more than the standard rate."
|
|
223
223
|
msgstr ""
|
|
224
224
|
|
|
225
|
-
#: includes/class-modal-checkout.php:
|
|
225
|
+
#: includes/class-modal-checkout.php:2126
|
|
226
226
|
msgid "Thank you for your generosity! We couldn't do this without you!"
|
|
227
227
|
msgstr ""
|
|
228
228
|
|
|
229
|
-
#: includes/class-modal-checkout.php:
|
|
229
|
+
#: includes/class-modal-checkout.php:2127
|
|
230
230
|
msgid "Increase your support"
|
|
231
231
|
msgstr ""
|
|
232
232
|
|
|
233
|
-
#: includes/class-modal-checkout.php:
|
|
233
|
+
#: includes/class-modal-checkout.php:2128
|
|
234
234
|
#: src/modal-checkout/templates/form-coupon.php:20
|
|
235
235
|
msgid "Apply"
|
|
236
236
|
msgstr ""
|
|
237
237
|
|
|
238
|
-
#: includes/class-modal-checkout.php:
|
|
238
|
+
#: includes/class-modal-checkout.php:2129
|
|
239
239
|
msgid "We ran into a problem processing this request. Please try again."
|
|
240
240
|
msgstr ""
|
|
241
241
|
|
|
242
242
|
#. Translators: %s is the site name.
|
|
243
|
-
#: includes/class-modal-checkout.php:
|
|
243
|
+
#: includes/class-modal-checkout.php:2266
|
|
244
244
|
#, php-format
|
|
245
245
|
msgid ""
|
|
246
246
|
"Thank you for supporting %s. Your transaction was completed successfully."
|
|
@@ -2,7 +2,7 @@ msgid ""
|
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: Newspack Blocks 1.0.0-alpha.20\n"
|
|
4
4
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/newspack-blocks\n"
|
|
5
|
-
"POT-Creation-Date: 2026-
|
|
5
|
+
"POT-Creation-Date: 2026-04-01T18:21:48+00:00\n"
|
|
6
6
|
"PO-Revision-Date: 2025-08-12T14:56:45+00:00\n"
|
|
7
7
|
"Last-Translator: \n"
|
|
8
8
|
"Language-Team: \n"
|
|
@@ -37,102 +37,102 @@ msgstr ""
|
|
|
37
37
|
msgid "Automattic"
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
40
|
-
#: includes/class-modal-checkout.php:
|
|
40
|
+
#: includes/class-modal-checkout.php:314 includes/class-modal-checkout.php:508
|
|
41
41
|
msgid "Invalid nonce."
|
|
42
42
|
msgstr ""
|
|
43
43
|
|
|
44
|
-
#: includes/class-modal-checkout.php:
|
|
44
|
+
#: includes/class-modal-checkout.php:518
|
|
45
45
|
msgid "Cart has been emptied."
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
48
|
#. Translators: %s is the maximum price.
|
|
49
|
-
#: includes/class-modal-checkout.php:
|
|
49
|
+
#: includes/class-modal-checkout.php:598
|
|
50
50
|
#, php-format
|
|
51
51
|
msgid "Adjusted price must be less than the maximum of %s."
|
|
52
52
|
msgstr ""
|
|
53
53
|
|
|
54
54
|
#. Translators: %s is the name-your-price custom price.
|
|
55
|
-
#: includes/class-modal-checkout.php:
|
|
55
|
+
#: includes/class-modal-checkout.php:622
|
|
56
56
|
#, php-format
|
|
57
57
|
msgid "Adjusted price must be greater than base price of %s."
|
|
58
58
|
msgstr ""
|
|
59
59
|
|
|
60
|
-
#: includes/class-modal-checkout.php:
|
|
60
|
+
#: includes/class-modal-checkout.php:674 includes/class-modal-checkout.php:758
|
|
61
61
|
msgid "Close"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
-
#: includes/class-modal-checkout.php:
|
|
64
|
+
#: includes/class-modal-checkout.php:700
|
|
65
65
|
msgid "per"
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: includes/class-modal-checkout.php:
|
|
68
|
+
#: includes/class-modal-checkout.php:814
|
|
69
69
|
msgid "Or"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: includes/class-modal-checkout.php:
|
|
73
|
-
#: includes/class-modal-checkout.php:
|
|
72
|
+
#: includes/class-modal-checkout.php:1048
|
|
73
|
+
#: includes/class-modal-checkout.php:1052
|
|
74
74
|
msgid "Processing payment..."
|
|
75
75
|
msgstr ""
|
|
76
76
|
|
|
77
|
-
#: includes/class-modal-checkout.php:
|
|
77
|
+
#: includes/class-modal-checkout.php:1056
|
|
78
78
|
msgid "Verifying details..."
|
|
79
79
|
msgstr ""
|
|
80
80
|
|
|
81
|
-
#: includes/class-modal-checkout.php:
|
|
81
|
+
#: includes/class-modal-checkout.php:1060
|
|
82
82
|
msgid "Finalizing transaction..."
|
|
83
83
|
msgstr ""
|
|
84
84
|
|
|
85
|
-
#: includes/class-modal-checkout.php:
|
|
85
|
+
#: includes/class-modal-checkout.php:1116
|
|
86
86
|
msgid ""
|
|
87
87
|
"We're sorry, there was an unexpected error. Please try again in a few "
|
|
88
88
|
"minutes."
|
|
89
89
|
msgstr ""
|
|
90
90
|
|
|
91
|
-
#: includes/class-modal-checkout.php:
|
|
91
|
+
#: includes/class-modal-checkout.php:1128
|
|
92
92
|
msgid "Go back"
|
|
93
93
|
msgstr ""
|
|
94
94
|
|
|
95
|
-
#: includes/class-modal-checkout.php:
|
|
95
|
+
#: includes/class-modal-checkout.php:1218
|
|
96
96
|
msgid "Password mismatch"
|
|
97
97
|
msgstr ""
|
|
98
98
|
|
|
99
|
-
#: includes/class-modal-checkout.php:
|
|
99
|
+
#: includes/class-modal-checkout.php:1219
|
|
100
100
|
msgid "Password strength: Very weak"
|
|
101
101
|
msgstr ""
|
|
102
102
|
|
|
103
|
-
#: includes/class-modal-checkout.php:
|
|
103
|
+
#: includes/class-modal-checkout.php:1220
|
|
104
104
|
msgid "Password strength: Weak"
|
|
105
105
|
msgstr ""
|
|
106
106
|
|
|
107
|
-
#: includes/class-modal-checkout.php:
|
|
107
|
+
#: includes/class-modal-checkout.php:1221
|
|
108
108
|
msgid "Password strength: Medium"
|
|
109
109
|
msgstr ""
|
|
110
110
|
|
|
111
|
-
#: includes/class-modal-checkout.php:
|
|
111
|
+
#: includes/class-modal-checkout.php:1222
|
|
112
112
|
msgid "Password strength: Strong"
|
|
113
113
|
msgstr ""
|
|
114
114
|
|
|
115
|
-
#: includes/class-modal-checkout.php:
|
|
115
|
+
#: includes/class-modal-checkout.php:1403
|
|
116
116
|
msgid "Please enter someone else' email address to receive this gift."
|
|
117
117
|
msgstr ""
|
|
118
118
|
|
|
119
|
-
#: includes/class-modal-checkout.php:
|
|
119
|
+
#: includes/class-modal-checkout.php:1404
|
|
120
120
|
msgid "Please enter a valid email address to receive this gift."
|
|
121
121
|
msgstr ""
|
|
122
122
|
|
|
123
|
-
#: includes/class-modal-checkout.php:
|
|
123
|
+
#: includes/class-modal-checkout.php:1500
|
|
124
124
|
msgid "Close window"
|
|
125
125
|
msgstr ""
|
|
126
126
|
|
|
127
127
|
#. translators: %s: Site name.
|
|
128
|
-
#: includes/class-modal-checkout.php:
|
|
128
|
+
#: includes/class-modal-checkout.php:1591
|
|
129
129
|
#, php-format
|
|
130
130
|
msgid ""
|
|
131
131
|
"You're already a subscriber! You can only have one active subscription at a "
|
|
132
132
|
"time. Thank you for supporting %s."
|
|
133
133
|
msgstr ""
|
|
134
134
|
|
|
135
|
-
#: includes/class-modal-checkout.php:
|
|
135
|
+
#: includes/class-modal-checkout.php:1602
|
|
136
136
|
msgid ""
|
|
137
137
|
"You're already a subscriber! You can only have one subscription at a time. "
|
|
138
138
|
"If you wish to renew an expired subscription, please sign in and visit the "
|
|
@@ -141,98 +141,98 @@ msgstr ""
|
|
|
141
141
|
|
|
142
142
|
#. translators: 1: Checkout button confirmation text. 2: Order total.
|
|
143
143
|
#. translators: 1 is the name of the item. 2 is the price of the item.
|
|
144
|
-
#: includes/class-modal-checkout.php:
|
|
144
|
+
#: includes/class-modal-checkout.php:1726
|
|
145
145
|
#: includes/modal-checkout/class-checkout-data.php:68
|
|
146
146
|
#, php-format
|
|
147
147
|
msgid "%1$s: %2$s"
|
|
148
148
|
msgstr ""
|
|
149
149
|
|
|
150
|
-
#: includes/class-modal-checkout.php:
|
|
150
|
+
#: includes/class-modal-checkout.php:2096
|
|
151
151
|
msgid "Billing details"
|
|
152
152
|
msgstr ""
|
|
153
153
|
|
|
154
|
-
#: includes/class-modal-checkout.php:
|
|
154
|
+
#: includes/class-modal-checkout.php:2097
|
|
155
155
|
msgid "Shipping details"
|
|
156
156
|
msgstr ""
|
|
157
157
|
|
|
158
|
-
#: includes/class-modal-checkout.php:
|
|
158
|
+
#: includes/class-modal-checkout.php:2098
|
|
159
159
|
msgid "Gift recipient"
|
|
160
160
|
msgstr ""
|
|
161
161
|
|
|
162
|
-
#: includes/class-modal-checkout.php:
|
|
163
|
-
#: includes/class-modal-checkout.php:
|
|
164
|
-
#: includes/class-modal-checkout.php:
|
|
162
|
+
#: includes/class-modal-checkout.php:2099
|
|
163
|
+
#: includes/class-modal-checkout.php:2100
|
|
164
|
+
#: includes/class-modal-checkout.php:2101
|
|
165
165
|
msgid "Complete your transaction"
|
|
166
166
|
msgstr ""
|
|
167
167
|
|
|
168
|
-
#: includes/class-modal-checkout.php:
|
|
168
|
+
#: includes/class-modal-checkout.php:2102
|
|
169
169
|
msgctxt "Login modal title when logged out user attempts to checkout."
|
|
170
170
|
msgid "Sign in to complete transaction"
|
|
171
171
|
msgstr ""
|
|
172
172
|
|
|
173
|
-
#: includes/class-modal-checkout.php:
|
|
173
|
+
#: includes/class-modal-checkout.php:2107
|
|
174
174
|
msgctxt "Login modal title when unregistered user attempts to checkout"
|
|
175
175
|
msgid "Register to complete transaction"
|
|
176
176
|
msgstr ""
|
|
177
177
|
|
|
178
|
-
#: includes/class-modal-checkout.php:
|
|
178
|
+
#: includes/class-modal-checkout.php:2112
|
|
179
179
|
msgid "Continue browsing"
|
|
180
180
|
msgstr ""
|
|
181
181
|
|
|
182
|
-
#: includes/class-modal-checkout.php:
|
|
182
|
+
#: includes/class-modal-checkout.php:2113
|
|
183
183
|
msgid "This donation is a gift"
|
|
184
184
|
msgstr ""
|
|
185
185
|
|
|
186
|
-
#: includes/class-modal-checkout.php:
|
|
186
|
+
#: includes/class-modal-checkout.php:2118
|
|
187
187
|
msgid "This purchase is a gift"
|
|
188
188
|
msgstr ""
|
|
189
189
|
|
|
190
|
-
#: includes/class-modal-checkout.php:
|
|
190
|
+
#: includes/class-modal-checkout.php:2120
|
|
191
191
|
msgid "Complete transaction"
|
|
192
192
|
msgstr ""
|
|
193
193
|
|
|
194
|
-
#: includes/class-modal-checkout.php:
|
|
194
|
+
#: includes/class-modal-checkout.php:2121
|
|
195
195
|
msgid "Purchase"
|
|
196
196
|
msgstr ""
|
|
197
197
|
|
|
198
|
-
#: includes/class-modal-checkout.php:
|
|
198
|
+
#: includes/class-modal-checkout.php:2122
|
|
199
199
|
msgid "Edit billing information"
|
|
200
200
|
msgstr ""
|
|
201
201
|
|
|
202
|
-
#: includes/class-modal-checkout.php:
|
|
202
|
+
#: includes/class-modal-checkout.php:2123 dist/editor.js:33
|
|
203
203
|
#: src/blocks/checkout-button/edit.js:192
|
|
204
204
|
msgid "Cancel"
|
|
205
205
|
msgstr ""
|
|
206
206
|
|
|
207
|
-
#: includes/class-modal-checkout.php:
|
|
207
|
+
#: includes/class-modal-checkout.php:2124
|
|
208
208
|
msgid "Transaction successful"
|
|
209
209
|
msgstr ""
|
|
210
210
|
|
|
211
|
-
#: includes/class-modal-checkout.php:
|
|
211
|
+
#: includes/class-modal-checkout.php:2125
|
|
212
212
|
msgid ""
|
|
213
213
|
"Your contribution directly funds our work. If you're moved to do so, you can "
|
|
214
214
|
"opt to pay more than the standard rate."
|
|
215
215
|
msgstr ""
|
|
216
216
|
|
|
217
|
-
#: includes/class-modal-checkout.php:
|
|
217
|
+
#: includes/class-modal-checkout.php:2126
|
|
218
218
|
msgid "Thank you for your generosity! We couldn't do this without you!"
|
|
219
219
|
msgstr ""
|
|
220
220
|
|
|
221
|
-
#: includes/class-modal-checkout.php:
|
|
221
|
+
#: includes/class-modal-checkout.php:2127
|
|
222
222
|
msgid "Increase your support"
|
|
223
223
|
msgstr ""
|
|
224
224
|
|
|
225
|
-
#: includes/class-modal-checkout.php:
|
|
225
|
+
#: includes/class-modal-checkout.php:2128
|
|
226
226
|
#: src/modal-checkout/templates/form-coupon.php:20
|
|
227
227
|
msgid "Apply"
|
|
228
228
|
msgstr ""
|
|
229
229
|
|
|
230
|
-
#: includes/class-modal-checkout.php:
|
|
230
|
+
#: includes/class-modal-checkout.php:2129
|
|
231
231
|
msgid "We ran into a problem processing this request. Please try again."
|
|
232
232
|
msgstr ""
|
|
233
233
|
|
|
234
234
|
#. Translators: %s is the site name.
|
|
235
|
-
#: includes/class-modal-checkout.php:
|
|
235
|
+
#: includes/class-modal-checkout.php:2266
|
|
236
236
|
#, php-format
|
|
237
237
|
msgid ""
|
|
238
238
|
"Thank you for supporting %s. Your transaction was completed successfully."
|