Skip to content
Permalink
Newer
Older
100644 468 lines (428 sloc) 21.7 KB
1
<?php
2
/**
3
* Localize JS strings
May 2, 2018
4
* This file should not be edited directly
5
* It is compiled automatically via the gulp task `js:pot`
6
* See the lifterlms-lib-tasks package for more information
Oct 19, 2018
7
*
8
* @package LifterLMS/Classes/Localization
9
* @since 3.17.8
Oct 19, 2018
10
* @version 3.24.0
11
*/
12
13
defined( 'ABSPATH' ) || exit;
14
15
/**
16
* Localize JS strings
17
*/
18
class LLMS_L10n_JS {
19
20
/**
21
* Constructor
Oct 19, 2018
22
*
23
* @since 3.17.8
24
* @version 3.17.8
25
*/
26
public function __construct() {
27
add_filter( 'lifterlms_js_l10n', array( $this, 'get_strings' ) );
28
}
29
30
/**
31
* Get strings to be passed to LifterLMS l10n class
Oct 19, 2018
32
*
33
* @param array $strings existing strings from core / 3rd parties.
34
* @return array
35
* @since 3.17.8
Oct 19, 2018
36
* @version 3.24.0
37
*/
38
public function get_strings( $strings ) {
Oct 19, 2018
39
// phpcs:disable
40
return array_merge( $strings, array(
May 4, 2018
41
42
/**
Oct 19, 2018
43
* File: assets/js/app/llms-l10n.js.
44
*
45
* @since 2.7.3
46
* @version 3.16.0
47
*/
48
'This is a %2$s %1$s String' => esc_html__( 'This is a %2$s %1$s String', 'lifterlms' ),
49
50
/**
Oct 19, 2018
51
* File: assets/js/app/llms-lesson-preview.js.
52
*
53
* @since 3.0.0
54
* @version 3.16.12
55
*/
56
'You do not have permission to access this content' => esc_html__( 'You do not have permission to access this content', 'lifterlms' ),
57
58
/**
Oct 19, 2018
59
* File: assets/js/app/llms-password-strength.js.
60
*
61
* @since 3.0.0
62
* @version 3.7.0
63
*/
64
'There is an issue with your chosen password.' => esc_html__( 'There is an issue with your chosen password.', 'lifterlms' ),
65
'Too Short' => esc_html__( 'Too Short', 'lifterlms' ),
66
'Very Weak' => esc_html__( 'Very Weak', 'lifterlms' ),
67
'Weak' => esc_html__( 'Weak', 'lifterlms' ),
68
'Medium' => esc_html__( 'Medium', 'lifterlms' ),
69
'Strong' => esc_html__( 'Strong', 'lifterlms' ),
70
'Mismatch' => esc_html__( 'Mismatch', 'lifterlms' ),
71
72
/**
Oct 19, 2018
73
* File: assets/js/app/llms-pricing-tables.js.
74
*
75
* @since 3.0.0
76
* @version 3.9.1
77
*/
78
'Members Only Pricing' => esc_html__( 'Members Only Pricing', 'lifterlms' ),
79
80
/**
Oct 19, 2018
81
* File: assets/js/app/llms-student-dashboard.js.
82
*
83
* @since 3.7.0
84
* @version 3.10.0
85
*/
86
'Are you sure you want to cancel your subscription?' => esc_html__( 'Are you sure you want to cancel your subscription?', 'lifterlms' ),
87
88
/**
Oct 19, 2018
89
* File: assets/js/builder/Models/Lesson.js.
90
*
91
* @since 3.13.0
Oct 19, 2018
92
* @version 3.24.0
93
*/
94
'New Lesson' => esc_html__( 'New Lesson', 'lifterlms' ),
95
'lessons' => esc_html__( 'lessons', 'lifterlms' ),
96
'lesson' => esc_html__( 'lesson', 'lifterlms' ),
97
'Section %1$d: %2$s' => esc_html__( 'Section %1$d: %2$s', 'lifterlms' ),
98
'Lesson %1$d: %2$s' => esc_html__( 'Lesson %1$d: %2$s', 'lifterlms' ),
99
'%1$s Quiz' => esc_html__( '%1$s Quiz', 'lifterlms' ),
100
101
/**
Oct 19, 2018
102
* File: assets/js/builder/Models/Quiz.js.
103
*
104
* @since 3.16.0
Oct 19, 2018
105
* @version 3.24.0
106
*/
107
'New Quiz' => esc_html__( 'New Quiz', 'lifterlms' ),
108
'quizzes' => esc_html__( 'quizzes', 'lifterlms' ),
109
'quiz' => esc_html__( 'quiz', 'lifterlms' ),
110
111
/**
Oct 19, 2018
112
* File: assets/js/builder/Models/Section.js.
113
*
114
* @since 3.16.0
115
* @version 3.16.12
116
*/
117
'New Section' => esc_html__( 'New Section', 'lifterlms' ),
118
'sections' => esc_html__( 'sections', 'lifterlms' ),
119
'section' => esc_html__( 'section', 'lifterlms' ),
120
121
/**
Oct 19, 2018
122
* File: assets/js/builder/Schemas/Lesson.js.
123
*
124
* @since 3.17.0
Oct 19, 2018
125
* @version 3.24.0
126
*/
127
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
128
'Video Embed URL' => esc_html__( 'Video Embed URL', 'lifterlms' ),
129
'Audio Embed URL' => esc_html__( 'Audio Embed URL', 'lifterlms' ),
130
'Free Lesson' => esc_html__( 'Free Lesson', 'lifterlms' ),
131
'Require Passing Grade on Quiz' => esc_html__( 'Require Passing Grade on Quiz', 'lifterlms' ),
132
'Require Passing Grade on Assignment' => esc_html__( 'Require Passing Grade on Assignment', 'lifterlms' ),
Oct 19, 2018
133
'Lesson Weight' => esc_html__( 'Lesson Weight', 'lifterlms' ),
134
'POINTS' => esc_html__( 'POINTS', 'lifterlms' ),
135
'Determines the weight of the lesson when calculating the overall grade of the course.' => esc_html__( 'Determines the weight of the lesson when calculating the overall grade of the course.', 'lifterlms' ),
136
'Prerequisite' => esc_html__( 'Prerequisite', 'lifterlms' ),
137
'Drip Method' => esc_html__( 'Drip Method', 'lifterlms' ),
138
'None' => esc_html__( 'None', 'lifterlms' ),
139
'On a specific date' => esc_html__( 'On a specific date', 'lifterlms' ),
140
'# of days after course enrollment' => esc_html__( '# of days after course enrollment', 'lifterlms' ),
141
'# of days after course start date' => esc_html__( '# of days after course start date', 'lifterlms' ),
142
'# of days after prerequisite lesson completion' => esc_html__( '# of days after prerequisite lesson completion', 'lifterlms' ),
143
'# of days' => esc_html__( '# of days', 'lifterlms' ),
144
'Date' => esc_html__( 'Date', 'lifterlms' ),
145
'Time' => esc_html__( 'Time', 'lifterlms' ),
146
147
/**
Oct 19, 2018
148
* File: assets/js/builder/Schemas/Quiz.js.
149
*
150
* @since 3.17.6
Oct 19, 2018
151
* @version 3.24.0
152
*/
153
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
154
'Description' => esc_html__( 'Description', 'lifterlms' ),
155
'Passing Percentage' => esc_html__( 'Passing Percentage', 'lifterlms' ),
156
'Minimum percentage of total points required to pass the quiz' => esc_html__( 'Minimum percentage of total points required to pass the quiz', 'lifterlms' ),
157
'Limit Attempts' => esc_html__( 'Limit Attempts', 'lifterlms' ),
158
'Limit the maximum number of times a student can take this quiz' => esc_html__( 'Limit the maximum number of times a student can take this quiz', 'lifterlms' ),
159
'Time Limit' => esc_html__( 'Time Limit', 'lifterlms' ),
160
'Enforce a maximum number of minutes a student can spend on each attempt' => esc_html__( 'Enforce a maximum number of minutes a student can spend on each attempt', 'lifterlms' ),
161
'Show Correct Answers' => esc_html__( 'Show Correct Answers', 'lifterlms' ),
162
'When enabled, students will be shown the correct answer to any question they answered incorrectly.' => esc_html__( 'When enabled, students will be shown the correct answer to any question they answered incorrectly.', 'lifterlms' ),
163
'Randomize Question Order' => esc_html__( 'Randomize Question Order', 'lifterlms' ),
164
'Display questions in a random order for each attempt. Content questions are locked into their defined positions.' => esc_html__( 'Display questions in a random order for each attempt. Content questions are locked into their defined positions.', 'lifterlms' ),
165
166
/**
Oct 19, 2018
167
* File: assets/js/builder/Views/_Detachable.js.
168
*
169
* @since 3.16.12
170
* @version 3.16.12
171
*/
172
'Are you sure you want to detach this %s?' => esc_html__( 'Are you sure you want to detach this %s?', 'lifterlms' ),
173
174
/**
Oct 19, 2018
175
* File: assets/js/builder/Views/_Editable.js.
176
*
177
* @since 3.16.0
178
* @version 3.17.8
179
*/
180
'Select an image' => esc_html__( 'Select an image', 'lifterlms' ),
181
'Use this image' => esc_html__( 'Use this image', 'lifterlms' ),
182
183
/**
Oct 19, 2018
184
* File: assets/js/builder/Views/_Trashable.js.
185
*
186
* @since 3.16.12
187
* @version 3.16.12
188
*/
189
'Are you sure you want to move this %s to the trash?' => esc_html__( 'Are you sure you want to move this %s to the trash?', 'lifterlms' ),
190
191
/**
Oct 19, 2018
192
* File: assets/js/builder/Views/Assignment.js.
193
*
194
* @since 3.17.0
195
* @version 3.17.7
196
*/
197
'%1$s Assignment' => esc_html__( '%1$s Assignment', 'lifterlms' ),
198
'Add Existing Assignment' => esc_html__( 'Add Existing Assignment', 'lifterlms' ),
199
'Search for existing assignments...' => esc_html__( 'Search for existing assignments...', 'lifterlms' ),
200
'Get Your Students Taking Action' => esc_html__( 'Get Your Students Taking Action', 'lifterlms' ),
201
'Get Assignments Now!' => esc_html__( 'Get Assignments Now!', 'lifterlms' ),
202
'Unlock LifterLMS Assignments' => esc_html__( 'Unlock LifterLMS Assignments', 'lifterlms' ),
203
204
/**
Oct 19, 2018
205
* File: assets/js/builder/Views/Elements.js.
206
*
207
* @since 3.16.0
208
* @version 3.16.12
209
*/
210
'Add Existing Lesson' => esc_html__( 'Add Existing Lesson', 'lifterlms' ),
211
'Search for existing lessons...' => esc_html__( 'Search for existing lessons...', 'lifterlms' ),
212
213
/**
Oct 19, 2018
214
* File: assets/js/builder/Views/PostSearch.js.
215
*
216
* @since 3.16.0
217
* @version 3.17.0
218
*/
219
'Searching...' => esc_html__( 'Searching...', 'lifterlms' ),
220
'Attach' => esc_html__( 'Attach', 'lifterlms' ),
221
'Clone' => esc_html__( 'Clone', 'lifterlms' ),
222
'ID' => esc_html__( 'ID', 'lifterlms' ),
223
224
/**
Oct 19, 2018
225
* File: assets/js/builder/Views/Question.js.
226
*
227
* @since 3.16.0
228
* @version 3.16.0
229
*/
230
'Are you sure you want to delete this question?' => esc_html__( 'Are you sure you want to delete this question?', 'lifterlms' ),
231
232
/**
Oct 19, 2018
233
* File: assets/js/builder/Views/Quiz.js.
234
*
235
* @since 3.16.0
Oct 19, 2018
236
* @version 3.24.0
237
*/
Jun 14, 2018
238
'An error occurred while trying to load the questions. Please refresh the page and try again.' => esc_html__( 'An error occurred while trying to load the questions. Please refresh the page and try again.', 'lifterlms' ),
239
'Add Existing Quiz' => esc_html__( 'Add Existing Quiz', 'lifterlms' ),
240
'Search for existing quizzes...' => esc_html__( 'Search for existing quizzes...', 'lifterlms' ),
241
'Add a Question' => esc_html__( 'Add a Question', 'lifterlms' ),
242
243
/**
Oct 19, 2018
244
* File: assets/js/builder/Views/SettingsFields.js.
245
*
246
* @since 3.17.0
Oct 19, 2018
247
* @version 3.24.0
248
*/
249
'Use SoundCloud or Spotify audio URLS.' => esc_html__( 'Use SoundCloud or Spotify audio URLS.', 'lifterlms' ),
250
'Permalink' => esc_html__( 'Permalink', 'lifterlms' ),
251
'Use YouTube, Vimeo, or Wistia video URLS.' => esc_html__( 'Use YouTube, Vimeo, or Wistia video URLS.', 'lifterlms' ),
252
Jul 26, 2018
253
/**
Oct 19, 2018
254
* File: assets/js/llms-admin-addons.js.
255
*
Aug 2, 2018
256
* @since 3.22.0
257
* @version 3.22.0
Jul 26, 2018
258
*/
259
'%d add-ons' => esc_html__( '%d add-ons', 'lifterlms' ),
260
'1 add-on' => esc_html__( '1 add-on', 'lifterlms' ),
261
262
/**
Oct 19, 2018
263
* File: assets/js/llms-admin-settings.js.
264
*
265
* @since 3.7.3
May 16, 2018
266
* @version 3.18.0
267
*/
268
'Select an Image' => esc_html__( 'Select an Image', 'lifterlms' ),
269
'Select Image' => esc_html__( 'Select Image', 'lifterlms' ),
270
271
/**
Oct 19, 2018
272
* File: assets/js/llms-admin.js.
273
*
274
* @since ??
Jul 5, 2018
275
* @version 3.19.5
276
*/
Jul 2, 2018
277
'Select a Course/Membership' => esc_html__( 'Select a Course/Membership', 'lifterlms' ),
278
'Select a student' => esc_html__( 'Select a student', 'lifterlms' ),
279
280
/**
Oct 19, 2018
281
* File: assets/js/llms-analytics.js.
282
*
283
* @since 3.0.0
284
* @version 3.17.6
285
*/
286
'Filter by Student(s)' => esc_html__( 'Filter by Student(s)', 'lifterlms' ),
287
'Error' => esc_html__( 'Error', 'lifterlms' ),
288
'Request timed out' => esc_html__( 'Request timed out', 'lifterlms' ),
289
'Retry' => esc_html__( 'Retry', 'lifterlms' ),
290
'Date' => esc_html__( 'Date', 'lifterlms' ),
291
292
/**
Oct 19, 2018
293
* File: assets/js/llms-builder.js.
294
*
295
* @since 3.16.0
296
* @version 3.16.0
297
*/
298
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
299
'Description' => esc_html__( 'Description', 'lifterlms' ),
300
'Passing Percentage' => esc_html__( 'Passing Percentage', 'lifterlms' ),
301
'Minimum percentage of total points required to pass the quiz' => esc_html__( 'Minimum percentage of total points required to pass the quiz', 'lifterlms' ),
302
'Limit Attempts' => esc_html__( 'Limit Attempts', 'lifterlms' ),
303
'Limit the maximum number of times a student can take this quiz' => esc_html__( 'Limit the maximum number of times a student can take this quiz', 'lifterlms' ),
304
'Time Limit' => esc_html__( 'Time Limit', 'lifterlms' ),
305
'Enforce a maximum number of minutes a student can spend on each attempt' => esc_html__( 'Enforce a maximum number of minutes a student can spend on each attempt', 'lifterlms' ),
306
'Show Correct Answers' => esc_html__( 'Show Correct Answers', 'lifterlms' ),
307
'When enabled, students will be shown the correct answer to any question they answered incorrectly.' => esc_html__( 'When enabled, students will be shown the correct answer to any question they answered incorrectly.', 'lifterlms' ),
308
'Randomize Question Order' => esc_html__( 'Randomize Question Order', 'lifterlms' ),
309
'Display questions in a random order for each attempt. Content questions are locked into their defined positions.' => esc_html__( 'Display questions in a random order for each attempt. Content questions are locked into their defined positions.', 'lifterlms' ),
310
'New Quiz' => esc_html__( 'New Quiz', 'lifterlms' ),
311
'quizzes' => esc_html__( 'quizzes', 'lifterlms' ),
312
'quiz' => esc_html__( 'quiz', 'lifterlms' ),
313
'Video Embed URL' => esc_html__( 'Video Embed URL', 'lifterlms' ),
314
'Audio Embed URL' => esc_html__( 'Audio Embed URL', 'lifterlms' ),
315
'Free Lesson' => esc_html__( 'Free Lesson', 'lifterlms' ),
316
'Require Passing Grade on Quiz' => esc_html__( 'Require Passing Grade on Quiz', 'lifterlms' ),
317
'Require Passing Grade on Assignment' => esc_html__( 'Require Passing Grade on Assignment', 'lifterlms' ),
Oct 19, 2018
318
'Lesson Weight' => esc_html__( 'Lesson Weight', 'lifterlms' ),
319
'POINTS' => esc_html__( 'POINTS', 'lifterlms' ),
320
'Determines the weight of the lesson when calculating the overall grade of the course.' => esc_html__( 'Determines the weight of the lesson when calculating the overall grade of the course.', 'lifterlms' ),
321
'Prerequisite' => esc_html__( 'Prerequisite', 'lifterlms' ),
322
'Drip Method' => esc_html__( 'Drip Method', 'lifterlms' ),
323
'None' => esc_html__( 'None', 'lifterlms' ),
324
'On a specific date' => esc_html__( 'On a specific date', 'lifterlms' ),
325
'# of days after course enrollment' => esc_html__( '# of days after course enrollment', 'lifterlms' ),
326
'# of days after course start date' => esc_html__( '# of days after course start date', 'lifterlms' ),
327
'# of days after prerequisite lesson completion' => esc_html__( '# of days after prerequisite lesson completion', 'lifterlms' ),
328
'# of days' => esc_html__( '# of days', 'lifterlms' ),
329
'Date' => esc_html__( 'Date', 'lifterlms' ),
330
'Time' => esc_html__( 'Time', 'lifterlms' ),
331
'New Lesson' => esc_html__( 'New Lesson', 'lifterlms' ),
332
'lessons' => esc_html__( 'lessons', 'lifterlms' ),
333
'lesson' => esc_html__( 'lesson', 'lifterlms' ),
334
'Section %1$d: %2$s' => esc_html__( 'Section %1$d: %2$s', 'lifterlms' ),
335
'Lesson %1$d: %2$s' => esc_html__( 'Lesson %1$d: %2$s', 'lifterlms' ),
336
'%1$s Quiz' => esc_html__( '%1$s Quiz', 'lifterlms' ),
337
'New Section' => esc_html__( 'New Section', 'lifterlms' ),
338
'sections' => esc_html__( 'sections', 'lifterlms' ),
339
'section' => esc_html__( 'section', 'lifterlms' ),
340
'Are you sure you want to detach this %s?' => esc_html__( 'Are you sure you want to detach this %s?', 'lifterlms' ),
341
'Select an image' => esc_html__( 'Select an image', 'lifterlms' ),
342
'Use this image' => esc_html__( 'Use this image', 'lifterlms' ),
343
'Are you sure you want to move this %s to the trash?' => esc_html__( 'Are you sure you want to move this %s to the trash?', 'lifterlms' ),
344
'Use SoundCloud or Spotify audio URLS.' => esc_html__( 'Use SoundCloud or Spotify audio URLS.', 'lifterlms' ),
345
'Permalink' => esc_html__( 'Permalink', 'lifterlms' ),
346
'Use YouTube, Vimeo, or Wistia video URLS.' => esc_html__( 'Use YouTube, Vimeo, or Wistia video URLS.', 'lifterlms' ),
347
'Searching...' => esc_html__( 'Searching...', 'lifterlms' ),
348
'Attach' => esc_html__( 'Attach', 'lifterlms' ),
349
'Clone' => esc_html__( 'Clone', 'lifterlms' ),
350
'ID' => esc_html__( 'ID', 'lifterlms' ),
351
'Are you sure you want to delete this question?' => esc_html__( 'Are you sure you want to delete this question?', 'lifterlms' ),
Jun 14, 2018
352
'An error occurred while trying to load the questions. Please refresh the page and try again.' => esc_html__( 'An error occurred while trying to load the questions. Please refresh the page and try again.', 'lifterlms' ),
353
'Add Existing Quiz' => esc_html__( 'Add Existing Quiz', 'lifterlms' ),
354
'Search for existing quizzes...' => esc_html__( 'Search for existing quizzes...', 'lifterlms' ),
355
'Add a Question' => esc_html__( 'Add a Question', 'lifterlms' ),
356
'%1$s Assignment' => esc_html__( '%1$s Assignment', 'lifterlms' ),
357
'Add Existing Assignment' => esc_html__( 'Add Existing Assignment', 'lifterlms' ),
358
'Search for existing assignments...' => esc_html__( 'Search for existing assignments...', 'lifterlms' ),
359
'Get Your Students Taking Action' => esc_html__( 'Get Your Students Taking Action', 'lifterlms' ),
360
'Get Assignments Now!' => esc_html__( 'Get Assignments Now!', 'lifterlms' ),
361
'Unlock LifterLMS Assignments' => esc_html__( 'Unlock LifterLMS Assignments', 'lifterlms' ),
362
'Add Existing Lesson' => esc_html__( 'Add Existing Lesson', 'lifterlms' ),
363
'Search for existing lessons...' => esc_html__( 'Search for existing lessons...', 'lifterlms' ),
364
365
/**
Oct 19, 2018
366
* File: assets/js/llms-metabox-product.js.
367
*
368
* @since 3.0.0
Aug 27, 2018
369
* @version 3.23.0
370
*/
371
'There was an error loading the necessary resources. Please try again.' => esc_html__( 'There was an error loading the necessary resources. Please try again.', 'lifterlms' ),
372
373
/**
Oct 19, 2018
374
* File: assets/js/llms-metabox-students.js.
375
*
376
* @since 3.0.0
377
* @version 3.0.0
378
*/
379
'Please select a student to enroll' => esc_html__( 'Please select a student to enroll', 'lifterlms' ),
380
381
/**
Oct 19, 2018
382
* File: assets/js/llms-metaboxes.js.
383
*
384
* @since 3.0.0
Jul 19, 2018
385
* @version 3.21.0
386
*/
387
'Are you sure you want to delete this row? This cannot be undone.' => esc_html__( 'Are you sure you want to delete this row? This cannot be undone.', 'lifterlms' ),
May 24, 2018
388
'Click okay to enroll all active members into the selected course. Enrollment will take place in the background and you may leave your site after confirmation. This action cannot be undone!' => esc_html__( 'Click okay to enroll all active members into the selected course. Enrollment will take place in the background and you may leave your site after confirmation. This action cannot be undone!', 'lifterlms' ),
389
'Cancel' => esc_html__( 'Cancel', 'lifterlms' ),
390
'Refund' => esc_html__( 'Refund', 'lifterlms' ),
391
'Record a Manual Payment' => esc_html__( 'Record a Manual Payment', 'lifterlms' ),
392
'Copy this code and paste it into the desired area' => esc_html__( 'Copy this code and paste it into the desired area', 'lifterlms' ),
393
'View' => esc_html__( 'View', 'lifterlms' ),
394
395
/**
Oct 19, 2018
396
* File: assets/js/llms-quiz-attempt-review.js.
397
*
398
* @since 3.16.0
399
* @version 3.16.9
400
*/
401
'Remarks to Student' => esc_html__( 'Remarks to Student', 'lifterlms' ),
402
'points' => esc_html__( 'points', 'lifterlms' ),
403
404
/**
Oct 19, 2018
405
* File: assets/js/llms-quiz.js.
406
*
407
* @since 1.0.0
408
* @version 3.16.9
409
*/
410
'Are you sure you wish to quit this quiz attempt?' => esc_html__( 'Are you sure you wish to quit this quiz attempt?', 'lifterlms' ),
411
'Grading Quiz...' => esc_html__( 'Grading Quiz...', 'lifterlms' ),
412
'Loading Question...' => esc_html__( 'Loading Question...', 'lifterlms' ),
413
'An unknown error occurred. Please try again.' => esc_html__( 'An unknown error occurred. Please try again.', 'lifterlms' ),
414
'Loading Quiz...' => esc_html__( 'Loading Quiz...', 'lifterlms' ),
415
'Time Remaining' => esc_html__( 'Time Remaining', 'lifterlms' ),
416
'Next Question' => esc_html__( 'Next Question', 'lifterlms' ),
417
'Complete Quiz' => esc_html__( 'Complete Quiz', 'lifterlms' ),
418
'Previous Question' => esc_html__( 'Previous Question', 'lifterlms' ),
419
'Loading...' => esc_html__( 'Loading...', 'lifterlms' ),
420
'You must select an answer to continue.' => esc_html__( 'You must select an answer to continue.', 'lifterlms' ),
421
422
/**
Oct 19, 2018
423
* File: assets/js/llms.js.
424
*
425
* @since 3.14.0
426
* @version 3.14.0
427
*/
428
'This is a %2$s %1$s String' => esc_html__( 'This is a %2$s %1$s String', 'lifterlms' ),
429
'You do not have permission to access this content' => esc_html__( 'You do not have permission to access this content', 'lifterlms' ),
430
'There is an issue with your chosen password.' => esc_html__( 'There is an issue with your chosen password.', 'lifterlms' ),
431
'Too Short' => esc_html__( 'Too Short', 'lifterlms' ),
432
'Very Weak' => esc_html__( 'Very Weak', 'lifterlms' ),
433
'Weak' => esc_html__( 'Weak', 'lifterlms' ),
434
'Medium' => esc_html__( 'Medium', 'lifterlms' ),
435
'Strong' => esc_html__( 'Strong', 'lifterlms' ),
436
'Mismatch' => esc_html__( 'Mismatch', 'lifterlms' ),
437
'Members Only Pricing' => esc_html__( 'Members Only Pricing', 'lifterlms' ),
438
'Are you sure you want to cancel your subscription?' => esc_html__( 'Are you sure you want to cancel your subscription?', 'lifterlms' ),
439
440
/**
Oct 19, 2018
441
* File: assets/js/partials/_metabox-field-repeater.js.
442
*
443
* @since 3.11.0
Aug 27, 2018
444
* @version 3.23.0
445
*/
446
'Are you sure you want to delete this row? This cannot be undone.' => esc_html__( 'Are you sure you want to delete this row? This cannot be undone.', 'lifterlms' ),
447
448
/**
Oct 19, 2018
449
* File: assets/js/private/llms-metaboxes.js.
450
*
451
* @since 3.0.0
Jul 19, 2018
452
* @version 3.21.0
453
*/
May 24, 2018
454
'Click okay to enroll all active members into the selected course. Enrollment will take place in the background and you may leave your site after confirmation. This action cannot be undone!' => esc_html__( 'Click okay to enroll all active members into the selected course. Enrollment will take place in the background and you may leave your site after confirmation. This action cannot be undone!', 'lifterlms' ),
455
'Cancel' => esc_html__( 'Cancel', 'lifterlms' ),
456
'Refund' => esc_html__( 'Refund', 'lifterlms' ),
457
'Record a Manual Payment' => esc_html__( 'Record a Manual Payment', 'lifterlms' ),
458
'Copy this code and paste it into the desired area' => esc_html__( 'Copy this code and paste it into the desired area', 'lifterlms' ),
459
'View' => esc_html__( 'View', 'lifterlms' ),
460
461
) );
Oct 19, 2018
462
// phpcs:enable
463
}
464
465
}
466
467
return new LLMS_L10n_JS();
You can’t perform that action at this time.