Skip to content
Permalink
Newer
Older
100644 490 lines (448 sloc) 22.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
Jan 22, 2019
10
* @version 3.27.0
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
Jan 22, 2019
36
* @version 3.27.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
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
289
/**
Oct 19, 2018
290
* File: assets/js/llms-admin.js.
291
*
292
* @since ??
Jul 5, 2018
293
* @version 3.19.5
294
*/
Jul 2, 2018
295
'Select a Course/Membership' => esc_html__( 'Select a Course/Membership', 'lifterlms' ),
296
'Select a student' => esc_html__( 'Select a student', 'lifterlms' ),
297
298
/**
Oct 19, 2018
299
* File: assets/js/llms-analytics.js.
300
*
301
* @since 3.0.0
302
* @version 3.17.6
303
*/
304
'Filter by Student(s)' => esc_html__( 'Filter by Student(s)', 'lifterlms' ),
305
'Error' => esc_html__( 'Error', 'lifterlms' ),
306
'Request timed out' => esc_html__( 'Request timed out', 'lifterlms' ),
307
'Retry' => esc_html__( 'Retry', 'lifterlms' ),
308
'Date' => esc_html__( 'Date', 'lifterlms' ),
309
310
/**
Oct 19, 2018
311
* File: assets/js/llms-builder.js.
312
*
313
* @since 3.16.0
314
* @version 3.16.0
315
*/
Jan 22, 2019
316
'questions' => esc_html__( 'questions', 'lifterlms' ),
317
'question' => esc_html__( 'question', 'lifterlms' ),
318
'General Settings' => esc_html__( 'General Settings', 'lifterlms' ),
319
'Description' => esc_html__( 'Description', 'lifterlms' ),
320
'Passing Percentage' => esc_html__( 'Passing Percentage', 'lifterlms' ),
321
'Minimum percentage of total points required to pass the quiz' => esc_html__( 'Minimum percentage of total points required to pass the quiz', 'lifterlms' ),
322
'Limit Attempts' => esc_html__( 'Limit Attempts', 'lifterlms' ),
323
'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' ),
324
'Time Limit' => esc_html__( 'Time Limit', 'lifterlms' ),
325
'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' ),
326
'Show Correct Answers' => esc_html__( 'Show Correct Answers', 'lifterlms' ),
327
'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' ),
328
'Randomize Question Order' => esc_html__( 'Randomize Question Order', 'lifterlms' ),
329
'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' ),
330
'New Quiz' => esc_html__( 'New Quiz', 'lifterlms' ),
331
'quizzes' => esc_html__( 'quizzes', 'lifterlms' ),
332
'quiz' => esc_html__( 'quiz', 'lifterlms' ),
333
'Video Embed URL' => esc_html__( 'Video Embed URL', 'lifterlms' ),
334
'Audio Embed URL' => esc_html__( 'Audio Embed URL', 'lifterlms' ),
335
'Free Lesson' => esc_html__( 'Free Lesson', 'lifterlms' ),
336
'Require Passing Grade on Quiz' => esc_html__( 'Require Passing Grade on Quiz', 'lifterlms' ),
337
'Require Passing Grade on Assignment' => esc_html__( 'Require Passing Grade on Assignment', 'lifterlms' ),
Oct 19, 2018
338
'Lesson Weight' => esc_html__( 'Lesson Weight', 'lifterlms' ),
339
'POINTS' => esc_html__( 'POINTS', 'lifterlms' ),
340
'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' ),
341
'Prerequisite' => esc_html__( 'Prerequisite', 'lifterlms' ),
342
'Drip Method' => esc_html__( 'Drip Method', 'lifterlms' ),
343
'None' => esc_html__( 'None', 'lifterlms' ),
344
'On a specific date' => esc_html__( 'On a specific date', 'lifterlms' ),
345
'# of days after course enrollment' => esc_html__( '# of days after course enrollment', 'lifterlms' ),
346
'# of days after course start date' => esc_html__( '# of days after course start date', 'lifterlms' ),
347
'# of days after prerequisite lesson completion' => esc_html__( '# of days after prerequisite lesson completion', 'lifterlms' ),
348
'# of days' => esc_html__( '# of days', 'lifterlms' ),
349
'Date' => esc_html__( 'Date', 'lifterlms' ),
350
'Time' => esc_html__( 'Time', 'lifterlms' ),
351
'New Lesson' => esc_html__( 'New Lesson', 'lifterlms' ),
352
'lessons' => esc_html__( 'lessons', 'lifterlms' ),
353
'lesson' => esc_html__( 'lesson', 'lifterlms' ),
354
'Section %1$d: %2$s' => esc_html__( 'Section %1$d: %2$s', 'lifterlms' ),
355
'Lesson %1$d: %2$s' => esc_html__( 'Lesson %1$d: %2$s', 'lifterlms' ),
356
'%1$s Quiz' => esc_html__( '%1$s Quiz', 'lifterlms' ),
357
'New Section' => esc_html__( 'New Section', 'lifterlms' ),
358
'sections' => esc_html__( 'sections', 'lifterlms' ),
359
'section' => esc_html__( 'section', 'lifterlms' ),
360
'Are you sure you want to detach this %s?' => esc_html__( 'Are you sure you want to detach this %s?', 'lifterlms' ),
361
'Select an image' => esc_html__( 'Select an image', 'lifterlms' ),
362
'Use this image' => esc_html__( 'Use this image', 'lifterlms' ),
363
'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' ),
364
'Use SoundCloud or Spotify audio URLS.' => esc_html__( 'Use SoundCloud or Spotify audio URLS.', 'lifterlms' ),
365
'Permalink' => esc_html__( 'Permalink', 'lifterlms' ),
366
'Use YouTube, Vimeo, or Wistia video URLS.' => esc_html__( 'Use YouTube, Vimeo, or Wistia video URLS.', 'lifterlms' ),
367
'Searching...' => esc_html__( 'Searching...', 'lifterlms' ),
368
'Attach' => esc_html__( 'Attach', 'lifterlms' ),
369
'Clone' => esc_html__( 'Clone', 'lifterlms' ),
370
'ID' => esc_html__( 'ID', 'lifterlms' ),
Jan 22, 2019
371
'Add Existing Question' => esc_html__( 'Add Existing Question', 'lifterlms' ),
372
'Search for existing questions...' => esc_html__( 'Search for existing questions...', 'lifterlms' ),
373
'Are you sure you want to delete this question?' => esc_html__( 'Are you sure you want to delete this question?', 'lifterlms' ),
Jun 14, 2018
374
'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' ),
375
'Add Existing Quiz' => esc_html__( 'Add Existing Quiz', 'lifterlms' ),
376
'Search for existing quizzes...' => esc_html__( 'Search for existing quizzes...', 'lifterlms' ),
377
'Add a Question' => esc_html__( 'Add a Question', 'lifterlms' ),
378
'%1$s Assignment' => esc_html__( '%1$s Assignment', 'lifterlms' ),
379
'Add Existing Assignment' => esc_html__( 'Add Existing Assignment', 'lifterlms' ),
380
'Search for existing assignments...' => esc_html__( 'Search for existing assignments...', 'lifterlms' ),
381
'Get Your Students Taking Action' => esc_html__( 'Get Your Students Taking Action', 'lifterlms' ),
382
'Get Assignments Now!' => esc_html__( 'Get Assignments Now!', 'lifterlms' ),
383
'Unlock LifterLMS Assignments' => esc_html__( 'Unlock LifterLMS Assignments', 'lifterlms' ),
384
'Add Existing Lesson' => esc_html__( 'Add Existing Lesson', 'lifterlms' ),
385
'Search for existing lessons...' => esc_html__( 'Search for existing lessons...', 'lifterlms' ),
386
387
/**
Oct 19, 2018
388
* File: assets/js/llms-metabox-product.js.
389
*
390
* @since 3.0.0
Aug 27, 2018
391
* @version 3.23.0
392
*/
393
'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' ),
394
395
/**
Oct 19, 2018
396
* File: assets/js/llms-metabox-students.js.
397
*
398
* @since 3.0.0
399
* @version 3.0.0
400
*/
401
'Please select a student to enroll' => esc_html__( 'Please select a student to enroll', 'lifterlms' ),
402
403
/**
Oct 19, 2018
404
* File: assets/js/llms-metaboxes.js.
405
*
406
* @since 3.0.0
Jul 19, 2018
407
* @version 3.21.0
408
*/
409
'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
410
'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' ),
411
'Cancel' => esc_html__( 'Cancel', 'lifterlms' ),
412
'Refund' => esc_html__( 'Refund', 'lifterlms' ),
413
'Record a Manual Payment' => esc_html__( 'Record a Manual Payment', 'lifterlms' ),
414
'Copy this code and paste it into the desired area' => esc_html__( 'Copy this code and paste it into the desired area', 'lifterlms' ),
415
'View' => esc_html__( 'View', 'lifterlms' ),
416
417
/**
Oct 19, 2018
418
* File: assets/js/llms-quiz-attempt-review.js.
419
*
420
* @since 3.16.0
421
* @version 3.16.9
422
*/
423
'Remarks to Student' => esc_html__( 'Remarks to Student', 'lifterlms' ),
424
'points' => esc_html__( 'points', 'lifterlms' ),
425
426
/**
Oct 19, 2018
427
* File: assets/js/llms-quiz.js.
428
*
429
* @since 1.0.0
Nov 13, 2018
430
* @version 3.24.3
431
*/
432
'Are you sure you wish to quit this quiz attempt?' => esc_html__( 'Are you sure you wish to quit this quiz attempt?', 'lifterlms' ),
433
'Grading Quiz...' => esc_html__( 'Grading Quiz...', 'lifterlms' ),
434
'Loading Question...' => esc_html__( 'Loading Question...', 'lifterlms' ),
435
'An unknown error occurred. Please try again.' => esc_html__( 'An unknown error occurred. Please try again.', 'lifterlms' ),
436
'Loading Quiz...' => esc_html__( 'Loading Quiz...', 'lifterlms' ),
437
'Time Remaining' => esc_html__( 'Time Remaining', 'lifterlms' ),
438
'Next Question' => esc_html__( 'Next Question', 'lifterlms' ),
439
'Complete Quiz' => esc_html__( 'Complete Quiz', 'lifterlms' ),
440
'Previous Question' => esc_html__( 'Previous Question', 'lifterlms' ),
441
'Loading...' => esc_html__( 'Loading...', 'lifterlms' ),
442
'You must select an answer to continue.' => esc_html__( 'You must select an answer to continue.', 'lifterlms' ),
443
444
/**
Oct 19, 2018
445
* File: assets/js/llms.js.
446
*
Nov 13, 2018
447
* @since 1.0.0
448
* @version 3.24.3
449
*/
450
'This is a %2$s %1$s String' => esc_html__( 'This is a %2$s %1$s String', 'lifterlms' ),
451
'You do not have permission to access this content' => esc_html__( 'You do not have permission to access this content', 'lifterlms' ),
452
'There is an issue with your chosen password.' => esc_html__( 'There is an issue with your chosen password.', 'lifterlms' ),
453
'Too Short' => esc_html__( 'Too Short', 'lifterlms' ),
454
'Very Weak' => esc_html__( 'Very Weak', 'lifterlms' ),
455
'Weak' => esc_html__( 'Weak', 'lifterlms' ),
456
'Medium' => esc_html__( 'Medium', 'lifterlms' ),
457
'Strong' => esc_html__( 'Strong', 'lifterlms' ),
458
'Mismatch' => esc_html__( 'Mismatch', 'lifterlms' ),
459
'Members Only Pricing' => esc_html__( 'Members Only Pricing', 'lifterlms' ),
460
'Are you sure you want to cancel your subscription?' => esc_html__( 'Are you sure you want to cancel your subscription?', 'lifterlms' ),
461
462
/**
Oct 19, 2018
463
* File: assets/js/partials/_metabox-field-repeater.js.
464
*
465
* @since 3.11.0
Aug 27, 2018
466
* @version 3.23.0
467
*/
468
'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' ),
469
470
/**
Oct 19, 2018
471
* File: assets/js/private/llms-metaboxes.js.
472
*
473
* @since 3.0.0
Jul 19, 2018
474
* @version 3.21.0
475
*/
May 24, 2018
476
'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' ),
477
'Cancel' => esc_html__( 'Cancel', 'lifterlms' ),
478
'Refund' => esc_html__( 'Refund', 'lifterlms' ),
479
'Record a Manual Payment' => esc_html__( 'Record a Manual Payment', 'lifterlms' ),
480
'Copy this code and paste it into the desired area' => esc_html__( 'Copy this code and paste it into the desired area', 'lifterlms' ),
481
'View' => esc_html__( 'View', 'lifterlms' ),
482
483
) );
Oct 19, 2018
484
// phpcs:enable
485
}
486
487
}
488
489
return new LLMS_L10n_JS();
You can’t perform that action at this time.