Skip to content
Permalink
Newer
Older
100644 500 lines (457 sloc) 23.5 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
Mar 2, 2019
10
* @version 3.29.3
Oct 19, 2018
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
Mar 2, 2019
36
* @version 3.29.3
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
Jan 22, 2019
92
* @version 3.27.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
Jan 22, 2019
101
/**
102
* File: assets/js/builder/Models/Question.js.
103
*
104
* @since 3.16.0
105
* @version 3.27.0
106
*/
107
'questions' => esc_html__( 'questions', 'lifterlms' ),
108
'question' => esc_html__( 'question', 'lifterlms' ),
109
110
/**
Oct 19, 2018
111
* File: assets/js/builder/Models/Quiz.js.
112
*
113
* @since 3.16.0
Oct 19, 2018
114
* @version 3.24.0
115
*/
116
'New Quiz' => esc_html__( 'New Quiz', 'lifterlms' ),
117
'quizzes' => esc_html__( 'quizzes', 'lifterlms' ),
118
'quiz' => esc_html__( 'quiz', 'lifterlms' ),
119
120
/**
Oct 19, 2018
121
* File: assets/js/builder/Models/Section.js.
122
*
123
* @since 3.16.0
124
* @version 3.16.12
125
*/
126
'New Section' => esc_html__( 'New Section', 'lifterlms' ),
127
'sections' => esc_html__( 'sections', 'lifterlms' ),
128
'section' => esc_html__( 'section', 'lifterlms' ),
129
130
/**
Oct 19, 2018
131
* File: assets/js/builder/Schemas/Lesson.js.
132
*
133
* @since 3.17.0
Dec 18, 2018
134
* @version 3.25.4
135
*/
136
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
137
'Video Embed URL' => esc_html__( 'Video Embed URL', 'lifterlms' ),
138
'Audio Embed URL' => esc_html__( 'Audio Embed URL', 'lifterlms' ),
139
'Free Lesson' => esc_html__( 'Free Lesson', 'lifterlms' ),
140
'Require Passing Grade on Quiz' => esc_html__( 'Require Passing Grade on Quiz', 'lifterlms' ),
141
'Require Passing Grade on Assignment' => esc_html__( 'Require Passing Grade on Assignment', 'lifterlms' ),
Oct 19, 2018
142
'Lesson Weight' => esc_html__( 'Lesson Weight', 'lifterlms' ),
143
'POINTS' => esc_html__( 'POINTS', 'lifterlms' ),
144
'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' ),
145
'Prerequisite' => esc_html__( 'Prerequisite', 'lifterlms' ),
146
'Drip Method' => esc_html__( 'Drip Method', 'lifterlms' ),
147
'None' => esc_html__( 'None', 'lifterlms' ),
148
'On a specific date' => esc_html__( 'On a specific date', 'lifterlms' ),
149
'# of days after course enrollment' => esc_html__( '# of days after course enrollment', 'lifterlms' ),
150
'# of days after course start date' => esc_html__( '# of days after course start date', 'lifterlms' ),
151
'# of days after prerequisite lesson completion' => esc_html__( '# of days after prerequisite lesson completion', 'lifterlms' ),
152
'# of days' => esc_html__( '# of days', 'lifterlms' ),
153
'Date' => esc_html__( 'Date', 'lifterlms' ),
154
'Time' => esc_html__( 'Time', 'lifterlms' ),
155
156
/**
Oct 19, 2018
157
* File: assets/js/builder/Schemas/Quiz.js.
158
*
159
* @since 3.17.6
Oct 19, 2018
160
* @version 3.24.0
161
*/
162
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
163
'Description' => esc_html__( 'Description', 'lifterlms' ),
164
'Passing Percentage' => esc_html__( 'Passing Percentage', 'lifterlms' ),
165
'Minimum percentage of total points required to pass the quiz' => esc_html__( 'Minimum percentage of total points required to pass the quiz', 'lifterlms' ),
166
'Limit Attempts' => esc_html__( 'Limit Attempts', 'lifterlms' ),
167
'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' ),
168
'Time Limit' => esc_html__( 'Time Limit', 'lifterlms' ),
169
'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' ),
170
'Show Correct Answers' => esc_html__( 'Show Correct Answers', 'lifterlms' ),
171
'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' ),
172
'Randomize Question Order' => esc_html__( 'Randomize Question Order', 'lifterlms' ),
173
'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' ),
174
175
/**
Oct 19, 2018
176
* File: assets/js/builder/Views/_Detachable.js.
177
*
178
* @since 3.16.12
179
* @version 3.16.12
180
*/
181
'Are you sure you want to detach this %s?' => esc_html__( 'Are you sure you want to detach this %s?', 'lifterlms' ),
182
183
/**
Oct 19, 2018
184
* File: assets/js/builder/Views/_Editable.js.
185
*
186
* @since 3.16.0
Dec 18, 2018
187
* @version 3.25.4
188
*/
189
'Select an image' => esc_html__( 'Select an image', 'lifterlms' ),
190
'Use this image' => esc_html__( 'Use this image', 'lifterlms' ),
191
192
/**
Oct 19, 2018
193
* File: assets/js/builder/Views/_Trashable.js.
194
*
195
* @since 3.16.12
196
* @version 3.16.12
197
*/
198
'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' ),
199
200
/**
Oct 19, 2018
201
* File: assets/js/builder/Views/Assignment.js.
202
*
203
* @since 3.17.0
204
* @version 3.17.7
205
*/
206
'%1$s Assignment' => esc_html__( '%1$s Assignment', 'lifterlms' ),
207
'Add Existing Assignment' => esc_html__( 'Add Existing Assignment', 'lifterlms' ),
208
'Search for existing assignments...' => esc_html__( 'Search for existing assignments...', 'lifterlms' ),
209
'Get Your Students Taking Action' => esc_html__( 'Get Your Students Taking Action', 'lifterlms' ),
210
'Get Assignments Now!' => esc_html__( 'Get Assignments Now!', 'lifterlms' ),
211
'Unlock LifterLMS Assignments' => esc_html__( 'Unlock LifterLMS Assignments', 'lifterlms' ),
212
213
/**
Oct 19, 2018
214
* File: assets/js/builder/Views/Elements.js.
215
*
216
* @since 3.16.0
217
* @version 3.16.12
218
*/
219
'Add Existing Lesson' => esc_html__( 'Add Existing Lesson', 'lifterlms' ),
220
'Search for existing lessons...' => esc_html__( 'Search for existing lessons...', 'lifterlms' ),
221
222
/**
Oct 19, 2018
223
* File: assets/js/builder/Views/PostSearch.js.
224
*
225
* @since 3.16.0
226
* @version 3.17.0
227
*/
228
'Searching...' => esc_html__( 'Searching...', 'lifterlms' ),
229
'Attach' => esc_html__( 'Attach', 'lifterlms' ),
230
'Clone' => esc_html__( 'Clone', 'lifterlms' ),
231
'ID' => esc_html__( 'ID', 'lifterlms' ),
232
233
/**
Oct 19, 2018
234
* File: assets/js/builder/Views/Question.js.
235
*
236
* @since 3.16.0
Jan 22, 2019
237
* @version 3.27.0
238
*/
239
'Are you sure you want to delete this question?' => esc_html__( 'Are you sure you want to delete this question?', 'lifterlms' ),
240
Jan 22, 2019
241
/**
242
* File: assets/js/builder/Views/QuestionType.js.
243
*
244
* @since 3.16.0
245
* @version 3.27.0
246
*/
247
'Add Existing Question' => esc_html__( 'Add Existing Question', 'lifterlms' ),
248
'Search for existing questions...' => esc_html__( 'Search for existing questions...', 'lifterlms' ),
249
250
/**
Oct 19, 2018
251
* File: assets/js/builder/Views/Quiz.js.
252
*
253
* @since 3.16.0
Oct 19, 2018
254
* @version 3.24.0
255
*/
Jun 14, 2018
256
'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' ),
257
'Add Existing Quiz' => esc_html__( 'Add Existing Quiz', 'lifterlms' ),
258
'Search for existing quizzes...' => esc_html__( 'Search for existing quizzes...', 'lifterlms' ),
259
'Add a Question' => esc_html__( 'Add a Question', 'lifterlms' ),
260
261
/**
Oct 19, 2018
262
* File: assets/js/builder/Views/SettingsFields.js.
263
*
264
* @since 3.17.0
Oct 19, 2018
265
* @version 3.24.0
266
*/
267
'Use SoundCloud or Spotify audio URLS.' => esc_html__( 'Use SoundCloud or Spotify audio URLS.', 'lifterlms' ),
268
'Permalink' => esc_html__( 'Permalink', 'lifterlms' ),
269
'Use YouTube, Vimeo, or Wistia video URLS.' => esc_html__( 'Use YouTube, Vimeo, or Wistia video URLS.', 'lifterlms' ),
270
Jul 26, 2018
271
/**
Oct 19, 2018
272
* File: assets/js/llms-admin-addons.js.
273
*
Aug 2, 2018
274
* @since 3.22.0
275
* @version 3.22.0
Jul 26, 2018
276
*/
277
'%d add-ons' => esc_html__( '%d add-ons', 'lifterlms' ),
278
'1 add-on' => esc_html__( '1 add-on', 'lifterlms' ),
279
280
/**
Oct 19, 2018
281
* File: assets/js/llms-admin-settings.js.
282
*
283
* @since 3.7.3
May 16, 2018
284
* @version 3.18.0
285
*/
286
'Select an Image' => esc_html__( 'Select an Image', 'lifterlms' ),
287
'Select Image' => esc_html__( 'Select Image', 'lifterlms' ),
288
Jan 30, 2019
289
/**
290
* File: assets/js/llms-admin-tables.js.
291
*
292
* @since 3.2.0
Feb 2, 2019
293
* @version 3.28.1
Jan 30, 2019
294
*/
295
'An error was encountered generating the export' => esc_html__( 'An error was encountered generating the export', 'lifterlms' ),
296
297
/**
Oct 19, 2018
298
* File: assets/js/llms-admin.js.
299
*
300
* @since ??
Jul 5, 2018
301
* @version 3.19.5
302
*/
Jul 2, 2018
303
'Select a Course/Membership' => esc_html__( 'Select a Course/Membership', 'lifterlms' ),
304
'Select a student' => esc_html__( 'Select a student', 'lifterlms' ),
305
306
/**
Oct 19, 2018
307
* File: assets/js/llms-analytics.js.
308
*
309
* @since 3.0.0
310
* @version 3.17.6
311
*/
312
'Filter by Student(s)' => esc_html__( 'Filter by Student(s)', 'lifterlms' ),
313
'Error' => esc_html__( 'Error', 'lifterlms' ),
314
'Request timed out' => esc_html__( 'Request timed out', 'lifterlms' ),
315
'Retry' => esc_html__( 'Retry', 'lifterlms' ),
316
'Date' => esc_html__( 'Date', 'lifterlms' ),
317
318
/**
Oct 19, 2018
319
* File: assets/js/llms-builder.js.
320
*
321
* @since 3.16.0
322
* @version 3.16.0
323
*/
Jan 22, 2019
324
'questions' => esc_html__( 'questions', 'lifterlms' ),
325
'question' => esc_html__( 'question', 'lifterlms' ),
326
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
327
'Description' => esc_html__( 'Description', 'lifterlms' ),
328
'Passing Percentage' => esc_html__( 'Passing Percentage', 'lifterlms' ),
329
'Minimum percentage of total points required to pass the quiz' => esc_html__( 'Minimum percentage of total points required to pass the quiz', 'lifterlms' ),
330
'Limit Attempts' => esc_html__( 'Limit Attempts', 'lifterlms' ),
331
'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' ),
332
'Time Limit' => esc_html__( 'Time Limit', 'lifterlms' ),
333
'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' ),
334
'Show Correct Answers' => esc_html__( 'Show Correct Answers', 'lifterlms' ),
335
'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' ),
336
'Randomize Question Order' => esc_html__( 'Randomize Question Order', 'lifterlms' ),
337
'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' ),
338
'New Quiz' => esc_html__( 'New Quiz', 'lifterlms' ),
339
'quizzes' => esc_html__( 'quizzes', 'lifterlms' ),
340
'quiz' => esc_html__( 'quiz', 'lifterlms' ),
341
'Video Embed URL' => esc_html__( 'Video Embed URL', 'lifterlms' ),
342
'Audio Embed URL' => esc_html__( 'Audio Embed URL', 'lifterlms' ),
343
'Free Lesson' => esc_html__( 'Free Lesson', 'lifterlms' ),
344
'Require Passing Grade on Quiz' => esc_html__( 'Require Passing Grade on Quiz', 'lifterlms' ),
345
'Require Passing Grade on Assignment' => esc_html__( 'Require Passing Grade on Assignment', 'lifterlms' ),
Oct 19, 2018
346
'Lesson Weight' => esc_html__( 'Lesson Weight', 'lifterlms' ),
347
'POINTS' => esc_html__( 'POINTS', 'lifterlms' ),
348
'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' ),
349
'Prerequisite' => esc_html__( 'Prerequisite', 'lifterlms' ),
350
'Drip Method' => esc_html__( 'Drip Method', 'lifterlms' ),
351
'None' => esc_html__( 'None', 'lifterlms' ),
352
'On a specific date' => esc_html__( 'On a specific date', 'lifterlms' ),
353
'# of days after course enrollment' => esc_html__( '# of days after course enrollment', 'lifterlms' ),
354
'# of days after course start date' => esc_html__( '# of days after course start date', 'lifterlms' ),
355
'# of days after prerequisite lesson completion' => esc_html__( '# of days after prerequisite lesson completion', 'lifterlms' ),
356
'# of days' => esc_html__( '# of days', 'lifterlms' ),
357
'Date' => esc_html__( 'Date', 'lifterlms' ),
358
'Time' => esc_html__( 'Time', 'lifterlms' ),
359
'New Lesson' => esc_html__( 'New Lesson', 'lifterlms' ),
360
'lessons' => esc_html__( 'lessons', 'lifterlms' ),
361
'lesson' => esc_html__( 'lesson', 'lifterlms' ),
362
'Section %1$d: %2$s' => esc_html__( 'Section %1$d: %2$s', 'lifterlms' ),
363
'Lesson %1$d: %2$s' => esc_html__( 'Lesson %1$d: %2$s', 'lifterlms' ),
364
'%1$s Quiz' => esc_html__( '%1$s Quiz', 'lifterlms' ),
365
'New Section' => esc_html__( 'New Section', 'lifterlms' ),
366
'sections' => esc_html__( 'sections', 'lifterlms' ),
367
'section' => esc_html__( 'section', 'lifterlms' ),
368
'Are you sure you want to detach this %s?' => esc_html__( 'Are you sure you want to detach this %s?', 'lifterlms' ),
369
'Select an image' => esc_html__( 'Select an image', 'lifterlms' ),
370
'Use this image' => esc_html__( 'Use this image', 'lifterlms' ),
371
'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' ),
372
'Use SoundCloud or Spotify audio URLS.' => esc_html__( 'Use SoundCloud or Spotify audio URLS.', 'lifterlms' ),
373
'Permalink' => esc_html__( 'Permalink', 'lifterlms' ),
374
'Use YouTube, Vimeo, or Wistia video URLS.' => esc_html__( 'Use YouTube, Vimeo, or Wistia video URLS.', 'lifterlms' ),
375
'Searching...' => esc_html__( 'Searching...', 'lifterlms' ),
376
'Attach' => esc_html__( 'Attach', 'lifterlms' ),
377
'Clone' => esc_html__( 'Clone', 'lifterlms' ),
378
'ID' => esc_html__( 'ID', 'lifterlms' ),
Jan 22, 2019
379
'Add Existing Question' => esc_html__( 'Add Existing Question', 'lifterlms' ),
380
'Search for existing questions...' => esc_html__( 'Search for existing questions...', 'lifterlms' ),
381
'Are you sure you want to delete this question?' => esc_html__( 'Are you sure you want to delete this question?', 'lifterlms' ),
Jun 14, 2018
382
'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' ),
383
'Add Existing Quiz' => esc_html__( 'Add Existing Quiz', 'lifterlms' ),
384
'Search for existing quizzes...' => esc_html__( 'Search for existing quizzes...', 'lifterlms' ),
385
'Add a Question' => esc_html__( 'Add a Question', 'lifterlms' ),
386
'%1$s Assignment' => esc_html__( '%1$s Assignment', 'lifterlms' ),
387
'Add Existing Assignment' => esc_html__( 'Add Existing Assignment', 'lifterlms' ),
388
'Search for existing assignments...' => esc_html__( 'Search for existing assignments...', 'lifterlms' ),
389
'Get Your Students Taking Action' => esc_html__( 'Get Your Students Taking Action', 'lifterlms' ),
390
'Get Assignments Now!' => esc_html__( 'Get Assignments Now!', 'lifterlms' ),
391
'Unlock LifterLMS Assignments' => esc_html__( 'Unlock LifterLMS Assignments', 'lifterlms' ),
392
'Add Existing Lesson' => esc_html__( 'Add Existing Lesson', 'lifterlms' ),
393
'Search for existing lessons...' => esc_html__( 'Search for existing lessons...', 'lifterlms' ),
394
395
/**
Oct 19, 2018
396
* File: assets/js/llms-metabox-product.js.
397
*
398
* @since 3.0.0
Mar 2, 2019
399
* @version 3.29.3
400
*/
401
'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' ),
Feb 22, 2019
402
'After deleting this access plan, any students subscribed to this plan will still have access and will continue to make recurring payments according to the access plan\'s settings. If you wish to terminate their plans you must do so manually. This action cannot be reversed.' => esc_html__( 'After deleting this access plan, any students subscribed to this plan will still have access and will continue to make recurring payments according to the access plan\'s settings. If you wish to terminate their plans you must do so manually. This action cannot be reversed.', 'lifterlms' ),
403
'An error was encounterd during the save attempt. Please try again.' => esc_html__( 'An error was encounterd during the save attempt. Please try again.', 'lifterlms' ),
404
405
/**
Oct 19, 2018
406
* File: assets/js/llms-metabox-students.js.
407
*
408
* @since 3.0.0
409
* @version 3.0.0
410
*/
411
'Please select a student to enroll' => esc_html__( 'Please select a student to enroll', 'lifterlms' ),
412
413
/**
Oct 19, 2018
414
* File: assets/js/llms-metaboxes.js.
415
*
416
* @since 3.0.0
Jul 19, 2018
417
* @version 3.21.0
418
*/
419
'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
420
'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' ),
421
'Cancel' => esc_html__( 'Cancel', 'lifterlms' ),
422
'Refund' => esc_html__( 'Refund', 'lifterlms' ),
423
'Record a Manual Payment' => esc_html__( 'Record a Manual Payment', 'lifterlms' ),
424
'Copy this code and paste it into the desired area' => esc_html__( 'Copy this code and paste it into the desired area', 'lifterlms' ),
425
'View' => esc_html__( 'View', 'lifterlms' ),
426
427
/**
Oct 19, 2018
428
* File: assets/js/llms-quiz-attempt-review.js.
429
*
430
* @since 3.16.0
431
* @version 3.16.9
432
*/
433
'Remarks to Student' => esc_html__( 'Remarks to Student', 'lifterlms' ),
434
'points' => esc_html__( 'points', 'lifterlms' ),
435
436
/**
Oct 19, 2018
437
* File: assets/js/llms-quiz.js.
438
*
439
* @since 1.0.0
Nov 13, 2018
440
* @version 3.24.3
441
*/
442
'Are you sure you wish to quit this quiz attempt?' => esc_html__( 'Are you sure you wish to quit this quiz attempt?', 'lifterlms' ),
443
'Grading Quiz...' => esc_html__( 'Grading Quiz...', 'lifterlms' ),
444
'Loading Question...' => esc_html__( 'Loading Question...', 'lifterlms' ),
445
'An unknown error occurred. Please try again.' => esc_html__( 'An unknown error occurred. Please try again.', 'lifterlms' ),
446
'Loading Quiz...' => esc_html__( 'Loading Quiz...', 'lifterlms' ),
447
'Time Remaining' => esc_html__( 'Time Remaining', 'lifterlms' ),
448
'Next Question' => esc_html__( 'Next Question', 'lifterlms' ),
449
'Complete Quiz' => esc_html__( 'Complete Quiz', 'lifterlms' ),
450
'Previous Question' => esc_html__( 'Previous Question', 'lifterlms' ),
451
'Loading...' => esc_html__( 'Loading...', 'lifterlms' ),
452
'You must select an answer to continue.' => esc_html__( 'You must select an answer to continue.', 'lifterlms' ),
453
454
/**
Oct 19, 2018
455
* File: assets/js/llms.js.
456
*
Nov 13, 2018
457
* @since 1.0.0
458
* @version 3.24.3
459
*/
460
'This is a %2$s %1$s String' => esc_html__( 'This is a %2$s %1$s String', 'lifterlms' ),
461
'You do not have permission to access this content' => esc_html__( 'You do not have permission to access this content', 'lifterlms' ),
462
'There is an issue with your chosen password.' => esc_html__( 'There is an issue with your chosen password.', 'lifterlms' ),
463
'Too Short' => esc_html__( 'Too Short', 'lifterlms' ),
464
'Very Weak' => esc_html__( 'Very Weak', 'lifterlms' ),
465
'Weak' => esc_html__( 'Weak', 'lifterlms' ),
466
'Medium' => esc_html__( 'Medium', 'lifterlms' ),
467
'Strong' => esc_html__( 'Strong', 'lifterlms' ),
468
'Mismatch' => esc_html__( 'Mismatch', 'lifterlms' ),
469
'Members Only Pricing' => esc_html__( 'Members Only Pricing', 'lifterlms' ),
470
'Are you sure you want to cancel your subscription?' => esc_html__( 'Are you sure you want to cancel your subscription?', 'lifterlms' ),
471
472
/**
Oct 19, 2018
473
* File: assets/js/partials/_metabox-field-repeater.js.
474
*
475
* @since 3.11.0
Aug 27, 2018
476
* @version 3.23.0
477
*/
478
'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' ),
479
480
/**
Oct 19, 2018
481
* File: assets/js/private/llms-metaboxes.js.
482
*
483
* @since 3.0.0
Jul 19, 2018
484
* @version 3.21.0
485
*/
May 24, 2018
486
'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' ),
487
'Cancel' => esc_html__( 'Cancel', 'lifterlms' ),
488
'Refund' => esc_html__( 'Refund', 'lifterlms' ),
489
'Record a Manual Payment' => esc_html__( 'Record a Manual Payment', 'lifterlms' ),
490
'Copy this code and paste it into the desired area' => esc_html__( 'Copy this code and paste it into the desired area', 'lifterlms' ),
491
'View' => esc_html__( 'View', 'lifterlms' ),
492
493
) );
Oct 19, 2018
494
// phpcs:enable
495
}
496
497
}
498
499
return new LLMS_L10n_JS();
You can’t perform that action at this time.