LearnPress – WordPress LMS Plugin - Version 3.2.5.1

Version Description

~ Fixed can not next/prev question when doing quiz. ~ Fixed get wrong total student of a course. ~ Updated language .POT file.

Download this release

Release Info

Developer tunnhn
Plugin Icon 128x128 LearnPress – WordPress LMS Plugin
Version 3.2.5.1
Comparing to
See all releases

Code changes from version 3.2.5 to 3.2.5.1

inc/abstracts/abstract-background-process.php CHANGED
@@ -109,7 +109,7 @@ if ( ! class_exists( 'LP_Abstract_Background_Process' ) ) {
109
  print_r( $item );
110
  print_r( $_REQUEST );
111
  $msg = ob_get_clean();
112
- LP_Debug::instance()->add( $msg, 'background-process-task', false, true );
113
 
114
  return false;
115
  }
109
  print_r( $item );
110
  print_r( $_REQUEST );
111
  $msg = ob_get_clean();
112
+ ////LP_Debug::instance()->add( $msg, 'background-process-task', false, true );
113
 
114
  return false;
115
  }
inc/background-process/class-lp-background-schedule-items.php CHANGED
@@ -101,7 +101,7 @@ if ( ! class_exists( 'LP_Background_Schedule_Items' ) ) {
101
 
102
  remove_action( 'shutdown', array( $this, 'dispatch_queue' ) );
103
  }
104
- LP_Debug::instance()->add( 'Auto completing item', 'auto-complete-items', false, true );
105
 
106
  return false;
107
  }
101
 
102
  remove_action( 'shutdown', array( $this, 'dispatch_queue' ) );
103
  }
104
+ //LP_Debug::instance()->add( 'Auto completing item', 'auto-complete-items', false, true );
105
 
106
  return false;
107
  }
inc/class-lp-install.php CHANGED
@@ -715,7 +715,7 @@ if ( ! function_exists( 'LP_Install' ) ) {
715
  delete_option( 'learnpress_db_version' );
716
  update_option( 'learnpress_db_version', is_null( $version ) ? LEARNPRESS_VERSION : $version );
717
 
718
- LP_Debug::instance()->add( debug_backtrace(), 'update_db_version', false, true );
719
  }
720
 
721
  public static function update_version( $version = null ) {
715
  delete_option( 'learnpress_db_version' );
716
  update_option( 'learnpress_db_version', is_null( $version ) ? LEARNPRESS_VERSION : $version );
717
 
718
+ //LP_Debug::instance()->add( debug_backtrace(), 'update_db_version', false, true );
719
  }
720
 
721
  public static function update_version( $version = null ) {
inc/class-lp-repair-database.php CHANGED
@@ -695,6 +695,8 @@ class LP_Repair_Database {
695
  FROM {$wpdb->learnpress_order_itemmeta} oim
696
  INNER JOIN {$wpdb->learnpress_order_items} oi ON oi.order_item_id = oim.learnpress_order_item_id AND oim.meta_key = %s
697
  INNER JOIN {$wpdb->posts} o ON o.ID = oi.order_id
 
 
698
  WHERE o.post_type = %s
699
  AND o.post_status IN ($statuses_format)
700
  AND oim.meta_value IN ($courses_format)
695
  FROM {$wpdb->learnpress_order_itemmeta} oim
696
  INNER JOIN {$wpdb->learnpress_order_items} oi ON oi.order_item_id = oim.learnpress_order_item_id AND oim.meta_key = %s
697
  INNER JOIN {$wpdb->posts} o ON o.ID = oi.order_id
698
+ INNER JOIN {$wpdb->postmeta} om ON o.ID = om.post_id AND `om`.`meta_key`='_user_id'
699
+ INNER JOIN {$wpdb->users} `u` ON u.ID = `om`.`meta_value`
700
  WHERE o.post_type = %s
701
  AND o.post_status IN ($statuses_format)
702
  AND oim.meta_value IN ($courses_format)
inc/class-lp-session-handler.php CHANGED
@@ -193,7 +193,7 @@ class LP_Session_Handler implements ArrayAccess {
193
  $to_hash = $customer_id . '|' . $session_expiration;
194
  $hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) );
195
 
196
- // LP_Debug::instance()->add( array(
197
  // $this->_customer_id,
198
  // $_COOKIE,
199
  // $_REQUEST,
@@ -252,7 +252,7 @@ class LP_Session_Handler implements ArrayAccess {
252
  '%d'
253
  )
254
  );
255
- // LP_Debug::instance()->add( array(
256
  // $this->_customer_id,
257
  // $_COOKIE,
258
  // $_REQUEST,
@@ -356,7 +356,7 @@ class LP_Session_Handler implements ArrayAccess {
356
  '%d'
357
  )
358
  );
359
- //LP_Debug::instance()->add( $customer_id, __FUNCTION__ );
360
  }
361
 
362
  /**
193
  $to_hash = $customer_id . '|' . $session_expiration;
194
  $hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) );
195
 
196
+ // //LP_Debug::instance()->add( array(
197
  // $this->_customer_id,
198
  // $_COOKIE,
199
  // $_REQUEST,
252
  '%d'
253
  )
254
  );
255
+ // //LP_Debug::instance()->add( array(
256
  // $this->_customer_id,
257
  // $_COOKIE,
258
  // $_REQUEST,
356
  '%d'
357
  )
358
  );
359
+ ////LP_Debug::instance()->add( $customer_id, __FUNCTION__ );
360
  }
361
 
362
  /**
inc/custom-post-types/order.php CHANGED
@@ -27,7 +27,7 @@ if ( ! class_exists( 'LP_Order_Post_Type' ) ) {
27
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
28
  add_action( 'trashed_post', array( $this, 'trashed_order' ) );
29
  add_action( 'transition_post_status', array( $this, 'restore_order' ), 10, 3 );
30
- add_action( 'save_post', array( $this, 'recount_enrolled_users' ), 10, 3 );
31
 
32
  add_filter( 'admin_footer', array( $this, 'admin_footer' ) );
33
 
27
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
28
  add_action( 'trashed_post', array( $this, 'trashed_order' ) );
29
  add_action( 'transition_post_status', array( $this, 'restore_order' ), 10, 3 );
30
+ add_action( 'save_post', array( $this, 'recount_enrolled_users' ), 11, 3 );
31
 
32
  add_filter( 'admin_footer', array( $this, 'admin_footer' ) );
33
 
inc/lp-constants.php CHANGED
@@ -4,7 +4,7 @@
4
  */
5
  $upload_dir = wp_upload_dir();
6
  // version
7
- define( 'LEARNPRESS_VERSION', '3.2.5' );
8
 
9
  define( 'LP_WP_CONTENT', basename( WP_CONTENT_DIR ) );
10
 
4
  */
5
  $upload_dir = wp_upload_dir();
6
  // version
7
+ define( 'LEARNPRESS_VERSION', '3.2.5.1' );
8
 
9
  define( 'LP_WP_CONTENT', basename( WP_CONTENT_DIR ) );
10
 
inc/updates/learnpress-update-3.0.0.php CHANGED
@@ -155,7 +155,7 @@ class LP_Update_30 extends LP_Update_Base {
155
  LIMIT 0, 20
156
  ", '_lp_multi_users', '_order_version', LP_ORDER_CPT, '3.0.0' );
157
 
158
- LP_Debug::instance()->add( $query, 'updater-' . $this->version, false, true );
159
 
160
  if ( ! $parent_orders = $wpdb->get_col( $query ) ) {
161
  return true;
@@ -235,7 +235,7 @@ class LP_Update_30 extends LP_Update_Base {
235
  */
236
  public function update_user_course_items() {
237
 
238
- LP_Debug::instance()->add( __FUNCTION__, 'lp-updater-300', false, true );
239
 
240
  if ( ! $course_id = $this->get_course() ) {
241
  return true;
@@ -336,7 +336,7 @@ class LP_Update_30 extends LP_Update_Base {
336
  FROM {$wpdb->postmeta}
337
  WHERE meta_key = %s AND (meta_value = %s OR meta_value = %s)
338
  ", '_lp_passing_grade_type', 'no', 'point' );
339
- LP_Debug::instance()->add( $query, 'updater-' . $this->version, false, true );
340
 
341
 
342
  if ( $rows = $wpdb->get_results( $query ) ) {
@@ -493,7 +493,7 @@ class LP_Update_30 extends LP_Update_Base {
493
  ORDER BY user_item_id ASC
494
  LIMIT 0, 50
495
  ", LP_COURSE_CPT, $min_user_item_id );
496
- LP_Debug::instance()->add( $query, 'updater-' . $this->version, false, true );
497
 
498
  return $wpdb->get_results( $query );
499
  }
155
  LIMIT 0, 20
156
  ", '_lp_multi_users', '_order_version', LP_ORDER_CPT, '3.0.0' );
157
 
158
+ //LP_Debug::instance()->add( $query, 'updater-' . $this->version, false, true );
159
 
160
  if ( ! $parent_orders = $wpdb->get_col( $query ) ) {
161
  return true;
235
  */
236
  public function update_user_course_items() {
237
 
238
+ //LP_Debug::instance()->add( __FUNCTION__, 'lp-updater-300', false, true );
239
 
240
  if ( ! $course_id = $this->get_course() ) {
241
  return true;
336
  FROM {$wpdb->postmeta}
337
  WHERE meta_key = %s AND (meta_value = %s OR meta_value = %s)
338
  ", '_lp_passing_grade_type', 'no', 'point' );
339
+ //LP_Debug::instance()->add( $query, 'updater-' . $this->version, false, true );
340
 
341
 
342
  if ( $rows = $wpdb->get_results( $query ) ) {
493
  ORDER BY user_item_id ASC
494
  LIMIT 0, 50
495
  ", LP_COURSE_CPT, $min_user_item_id );
496
+ //LP_Debug::instance()->add( $query, 'updater-' . $this->version, false, true );
497
 
498
  return $wpdb->get_results( $query );
499
  }
inc/updates/learnpress-update-base.php CHANGED
@@ -48,7 +48,7 @@ class LP_Update_Base {
48
  || preg_match_all( '#' . $wpdb->prefix . 'posts#im', $query )
49
  || preg_match_all( '#' . $wpdb->prefix . 'postmeta#im', $query )
50
  ) {
51
- LP_Debug::instance()->add( "===== " . $this->version . " ===== \n" . $query, 'query-updater', false, true );
52
  }
53
 
54
  return $query;
48
  || preg_match_all( '#' . $wpdb->prefix . 'posts#im', $query )
49
  || preg_match_all( '#' . $wpdb->prefix . 'postmeta#im', $query )
50
  ) {
51
+ //LP_Debug::instance()->add( "===== " . $this->version . " ===== \n" . $query, 'query-updater', false, true );
52
  }
53
 
54
  return $query;
inc/user/abstract-lp-user.php CHANGED
@@ -875,10 +875,6 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
875
  $quiz = learn_press_get_quiz( $quiz_id );
876
  $quiz_item = $data[ $quiz_id ];
877
  $question_id = $quiz_item->get_current_question();
878
- $viewing_question = $quiz->get_viewing_question( 'id' );
879
- if ( $viewing_question && $question_id != $viewing_question ) {
880
- $question_id = $viewing_question;
881
- }
882
  if ( $question_id && $permalink ) {
883
  return apply_filters( 'learn-press/current-user-question-permalink', $quiz->get_question_link( $question_id ), $quiz_id, $course_id, $this->get_id() );
884
  }
875
  $quiz = learn_press_get_quiz( $quiz_id );
876
  $quiz_item = $data[ $quiz_id ];
877
  $question_id = $quiz_item->get_current_question();
 
 
 
 
878
  if ( $question_id && $permalink ) {
879
  return apply_filters( 'learn-press/current-user-question-permalink', $quiz->get_question_link( $question_id ), $quiz_id, $course_id, $this->get_id() );
880
  }
languages/learnpress.pot CHANGED
@@ -2,13 +2,13 @@
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
  # This file is distributed under the same license as the PACKAGE package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Package Name\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2018-12-28 08:15+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,7575 +17,8367 @@ msgstr ""
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
- "X-Generator: Loco https://localise.biz/"
21
 
22
  #: learnpress.php:379
23
  #, php-format
24
  msgid ""
25
- "LearnPress plugin base directory must be <strong>learnpress/learnpres."
26
- "php</strong> (case sensitive) to ensure all functions work properly and "
27
- "fully operational (currently <strong>%s</strong>)"
28
  msgstr ""
29
 
30
- #: inc/lp-core-functions.php:351
31
- #: inc/course/lp-course-functions.php:581
32
- #: inc/custom-post-types/lesson.php:184
33
- #: inc/admin/settings/class-lp-settings-courses.php:150
34
- msgid "Lesson"
35
  msgstr ""
36
 
37
- #: inc/lp-core-functions.php:352
38
- #: inc/course/lp-course-functions.php:582
39
- #: inc/custom-post-types/question.php:337
40
- #: inc/custom-post-types/quiz.php:92
41
- #: inc/admin/settings/class-lp-settings-courses.php:157
42
- #: templates/profile/tabs/quizzes.php:38
43
- msgid "Quiz"
44
  msgstr ""
45
 
46
- #: inc/lp-core-functions.php:726
47
- #: inc/admin/class-lp-modal-search-users.php:135
48
- #: inc/admin/class-lp-modal-search-items.php:210
49
- msgid "<"
50
  msgstr ""
51
 
52
- #: inc/lp-core-functions.php:727
53
- #: inc/admin/class-lp-modal-search-users.php:136
54
- #: inc/admin/class-lp-modal-search-items.php:211
55
- msgid ">"
56
  msgstr ""
57
 
58
- #: inc/lp-core-functions.php:805
59
- msgid "Minute(s)"
60
  msgstr ""
61
 
62
- #: inc/lp-core-functions.php:806
63
- msgid "Hour(s)"
64
  msgstr ""
65
 
66
- #: inc/lp-core-functions.php:807
67
- msgid "Day(s)"
 
68
  msgstr ""
69
 
70
- #: inc/lp-core-functions.php:808
71
- msgid "Week(s)"
 
 
72
  msgstr ""
73
 
74
- #: inc/lp-core-functions.php:953
75
- msgid "Left"
76
  msgstr ""
77
 
78
- #: inc/lp-core-functions.php:954
79
- msgid "Right"
 
80
  msgstr ""
81
 
82
- #: inc/lp-core-functions.php:955
83
- msgid "Left with space"
84
  msgstr ""
85
 
86
- #: inc/lp-core-functions.php:956
87
- msgid "Right with space"
88
  msgstr ""
89
 
90
- #: inc/lp-core-functions.php:1020
91
- msgid "Afghan afghani"
 
92
  msgstr ""
93
 
94
- #: inc/lp-core-functions.php:1021
95
- msgid "Albanian lek"
96
  msgstr ""
97
 
98
- #: inc/lp-core-functions.php:1022
99
- msgid "Algerian dinar"
100
  msgstr ""
101
 
102
- #: inc/lp-core-functions.php:1023
103
- msgid "Euro"
 
 
 
104
  msgstr ""
105
 
106
- #: inc/lp-core-functions.php:1024
107
- msgid "Angolan kwanza"
 
 
108
  msgstr ""
109
 
110
- #: inc/lp-core-functions.php:1025
111
- msgid "East Caribbean dollar"
 
 
 
112
  msgstr ""
113
 
114
- #: inc/lp-core-functions.php:1026
115
- msgid "Argentine peso"
 
 
116
  msgstr ""
117
 
118
- #: inc/lp-core-functions.php:1027
119
- msgid "Armenian dram"
120
  msgstr ""
121
 
122
- #: inc/lp-core-functions.php:1028
123
- msgid "Aruban florin"
124
  msgstr ""
125
 
126
- #: inc/lp-core-functions.php:1029
127
- msgid "Australian dollar"
128
  msgstr ""
129
 
130
- #: inc/lp-core-functions.php:1030
131
- msgid "Azerbaijani manat"
132
  msgstr ""
133
 
134
- #: inc/lp-core-functions.php:1031
135
- msgid "Bahamian dollar"
 
 
 
136
  msgstr ""
137
 
138
- #: inc/lp-core-functions.php:1032
139
- msgid "Bahraini dinar"
 
 
 
 
140
  msgstr ""
141
 
142
- #: inc/lp-core-functions.php:1033
143
- msgid "Bangladeshi taka"
144
  msgstr ""
145
 
146
- #: inc/lp-core-functions.php:1034
147
- msgid "Barbadian dollar"
 
148
  msgstr ""
149
 
150
- #: inc/lp-core-functions.php:1035
151
- msgid "Belarusian ruble"
 
152
  msgstr ""
153
 
154
- #: inc/lp-core-functions.php:1036
155
- msgid "Belizean dollar"
 
156
  msgstr ""
157
 
158
- #: inc/lp-core-functions.php:1037
159
- msgid "West African CFA franc"
 
160
  msgstr ""
161
 
162
- #: inc/lp-core-functions.php:1038
163
- msgid "Bermudian dollar"
 
164
  msgstr ""
165
 
166
- #: inc/lp-core-functions.php:1039
167
- msgid "Bhutanese ngultrum"
168
  msgstr ""
169
 
170
- #: inc/lp-core-functions.php:1040
171
- msgid "Bolivian boliviano"
172
  msgstr ""
173
 
174
- #: inc/lp-core-functions.php:1041
175
- msgid "US dollar"
 
 
 
176
  msgstr ""
177
 
178
- #: inc/lp-core-functions.php:1042
179
- msgid "Bosnia and Herzegovina convertible mark"
 
 
 
 
 
180
  msgstr ""
181
 
182
- #: inc/lp-core-functions.php:1043
183
- msgid "Botswana pula"
 
 
184
  msgstr ""
185
 
186
- #: inc/lp-core-functions.php:1044
187
- msgid "Brazilian real"
188
  msgstr ""
189
 
190
- #: inc/lp-core-functions.php:1045
191
- msgid "Brunei dollar"
192
  msgstr ""
193
 
194
- #: inc/lp-core-functions.php:1046
195
- msgid "Bulgarian lev"
196
  msgstr ""
197
 
198
- #: inc/lp-core-functions.php:1047
199
- msgid "Burmese kyat"
200
  msgstr ""
201
 
202
- #: inc/lp-core-functions.php:1048
203
- msgid "Burundian franc"
204
  msgstr ""
205
 
206
- #: inc/lp-core-functions.php:1049
207
- msgid "Cambodian riel"
208
  msgstr ""
209
 
210
- #: inc/lp-core-functions.php:1050
211
- msgid "Central African CFA franc"
 
212
  msgstr ""
213
 
214
- #: inc/lp-core-functions.php:1051
215
- msgid "Canadian dollar"
216
  msgstr ""
217
 
218
- #: inc/lp-core-functions.php:1052
219
- msgid "Cape Verdean escudo"
 
 
220
  msgstr ""
221
 
222
- #: inc/lp-core-functions.php:1053
223
- msgid "Cayman Islands dollar"
224
  msgstr ""
225
 
226
- #: inc/lp-core-functions.php:1054
227
- msgid "Chilean peso"
228
  msgstr ""
229
 
230
- #: inc/lp-core-functions.php:1055
231
- msgid "Chinese renminbi"
232
  msgstr ""
233
 
234
- #: inc/lp-core-functions.php:1056
235
- msgid "Colombian peso"
236
  msgstr ""
237
 
238
- #: inc/lp-core-functions.php:1057
239
- msgid "Comorian franc"
240
  msgstr ""
241
 
242
- #: inc/lp-core-functions.php:1058
243
- msgid "Congolese franc"
244
  msgstr ""
245
 
246
- #: inc/lp-core-functions.php:1059
247
- msgid "New Zealand dollar"
248
  msgstr ""
249
 
250
- #: inc/lp-core-functions.php:1060
251
- msgid "Costa Rican colón"
252
  msgstr ""
253
 
254
- #: inc/lp-core-functions.php:1061
255
- msgid "Croatian kuna"
256
  msgstr ""
257
 
258
- #: inc/lp-core-functions.php:1062
259
- msgid "Cuban peso"
260
  msgstr ""
261
 
262
- #: inc/lp-core-functions.php:1063
263
- msgid "Netherlands Antilles guilder"
 
 
 
264
  msgstr ""
265
 
266
- #: inc/lp-core-functions.php:1064
267
- msgid "Czech koruna"
268
  msgstr ""
269
 
270
- #: inc/lp-core-functions.php:1065
271
- msgid "Danish krone"
272
  msgstr ""
273
 
274
- #: inc/lp-core-functions.php:1066
275
- msgid "Djiboutian franc"
276
- msgstr ""
277
-
278
- #: inc/lp-core-functions.php:1067
279
- msgid "Dominican peso"
280
  msgstr ""
281
 
282
- #: inc/lp-core-functions.php:1068
283
- msgid "Egyptian pound"
284
  msgstr ""
285
 
286
- #: inc/lp-core-functions.php:1069
287
- msgid "Salvadoran colón"
288
  msgstr ""
289
 
290
- #: inc/lp-core-functions.php:1070
291
- msgid "Eritrean nakfa"
292
  msgstr ""
293
 
294
- #: inc/lp-core-functions.php:1071
295
- msgid "Ethiopian birr"
296
  msgstr ""
297
 
298
- #: inc/lp-core-functions.php:1072
299
- msgid "Falkland Islands pound"
300
  msgstr ""
301
 
302
- #: inc/lp-core-functions.php:1073
303
- msgid "Fijian dollar"
304
  msgstr ""
305
 
306
- #: inc/lp-core-functions.php:1074
307
- msgid "CFP franc"
 
 
 
 
 
308
  msgstr ""
309
 
310
- #: inc/lp-core-functions.php:1075
311
- msgid "Gambian dalasi"
312
  msgstr ""
313
 
314
- #: inc/lp-core-functions.php:1076
315
- msgid "Georgian lari"
316
  msgstr ""
317
 
318
- #: inc/lp-core-functions.php:1077
319
- msgid "Ghanian cedi"
320
  msgstr ""
321
 
322
- #: inc/lp-core-functions.php:1078
323
- msgid "Gibraltar pound"
324
  msgstr ""
325
 
326
- #: inc/lp-core-functions.php:1079
327
- msgid "Guatemalan quetzal"
328
  msgstr ""
329
 
330
- #: inc/lp-core-functions.php:1080
331
- msgid "British pound"
332
  msgstr ""
333
 
334
- #: inc/lp-core-functions.php:1081
335
- msgid "Guinean franc"
336
  msgstr ""
337
 
338
- #: inc/lp-core-functions.php:1082
339
- msgid "Guyanese dollar"
340
  msgstr ""
341
 
342
- #: inc/lp-core-functions.php:1083
343
- msgid "Haitian gourde"
344
  msgstr ""
345
 
346
- #: inc/lp-core-functions.php:1084
347
- msgid "Honduran lempira"
348
  msgstr ""
349
 
350
- #: inc/lp-core-functions.php:1085
351
- msgid "Hong Kong dollar"
352
  msgstr ""
353
 
354
- #: inc/lp-core-functions.php:1086
355
- msgid "Hungarian forint"
356
  msgstr ""
357
 
358
- #: inc/lp-core-functions.php:1087
359
- msgid "Icelandic króna"
360
  msgstr ""
361
 
362
- #: inc/lp-core-functions.php:1088
363
- msgid "Indian rupee"
364
  msgstr ""
365
 
366
- #: inc/lp-core-functions.php:1089
367
- msgid "Indonesian rupiah"
368
  msgstr ""
369
 
370
- #: inc/lp-core-functions.php:1090
371
- msgid "Iranian rial"
 
 
 
 
 
 
372
  msgstr ""
373
 
374
- #: inc/lp-core-functions.php:1091
375
- msgid "Iraqi dinar"
376
  msgstr ""
377
 
378
- #: inc/lp-core-functions.php:1092
379
- msgid "Israeli new sheqel"
 
 
 
 
380
  msgstr ""
381
 
382
- #: inc/lp-core-functions.php:1093
383
- msgid "Jamaican dollar"
 
 
384
  msgstr ""
385
 
386
- #: inc/lp-core-functions.php:1094
387
- msgid "Japanese yen "
388
  msgstr ""
389
 
390
- #: inc/lp-core-functions.php:1095
391
- msgid "Jordanian dinar"
392
  msgstr ""
393
 
394
- #: inc/lp-core-functions.php:1096
395
- msgid "Kazakhstani tenge"
 
396
  msgstr ""
397
 
398
- #: inc/lp-core-functions.php:1097
399
- msgid "Kenyan shilling"
400
  msgstr ""
401
 
402
- #: inc/lp-core-functions.php:1098
403
- msgid "North Korean won"
 
 
404
  msgstr ""
405
 
406
- #: inc/lp-core-functions.php:1099
407
- msgid "Kuwaiti dinar"
408
  msgstr ""
409
 
410
- #: inc/lp-core-functions.php:1100
411
- msgid "Kyrgyzstani som"
 
 
 
412
  msgstr ""
413
 
414
- #: inc/lp-core-functions.php:1101
415
- msgid "South Korean won"
 
416
  msgstr ""
417
 
418
- #: inc/lp-core-functions.php:1102
419
- msgid "Lao kip"
 
420
  msgstr ""
421
 
422
- #: inc/lp-core-functions.php:1103
423
- msgid "Latvian lats"
424
  msgstr ""
425
 
426
- #: inc/lp-core-functions.php:1104
427
- msgid "Lebanese pound"
 
428
  msgstr ""
429
 
430
- #: inc/lp-core-functions.php:1105
431
- msgid "Lesotho loti"
432
  msgstr ""
433
 
434
- #: inc/lp-core-functions.php:1106
435
- msgid "Liberian dollar"
436
  msgstr ""
437
 
438
- #: inc/lp-core-functions.php:1107
439
- #: inc/lp-core-functions.php:1178
440
- msgid "Libyan dinar"
441
  msgstr ""
442
 
443
- #: inc/lp-core-functions.php:1108
444
- msgid "Swiss franc"
 
445
  msgstr ""
446
 
447
- #: inc/lp-core-functions.php:1109
448
- msgid "Lithuanian litas"
449
  msgstr ""
450
 
451
- #: inc/lp-core-functions.php:1110
452
- msgid "Macanese pataca"
453
  msgstr ""
454
 
455
- #: inc/lp-core-functions.php:1111
456
- msgid "Macedonian denar"
457
  msgstr ""
458
 
459
- #: inc/lp-core-functions.php:1112
460
- msgid "Malagasy ariary"
461
  msgstr ""
462
 
463
- #: inc/lp-core-functions.php:1113
464
- msgid "Malawian kwacha"
 
465
  msgstr ""
466
 
467
- #: inc/lp-core-functions.php:1114
468
- msgid "Malaysian ringgit"
469
  msgstr ""
470
 
471
- #: inc/lp-core-functions.php:1115
472
- msgid "Maldivian rufiyaa"
 
473
  msgstr ""
474
 
475
- #: inc/lp-core-functions.php:1116
476
- msgid "Mauritanian ouguiya"
477
  msgstr ""
478
 
479
- #: inc/lp-core-functions.php:1117
480
- msgid "Mauritian rupee"
481
  msgstr ""
482
 
483
- #: inc/lp-core-functions.php:1118
484
- msgid "Mexican peso"
485
  msgstr ""
486
 
487
- #: inc/lp-core-functions.php:1119
488
- msgid "Moldovan leu"
489
  msgstr ""
490
 
491
- #: inc/lp-core-functions.php:1120
492
- msgid "Mongolian tugrik"
 
493
  msgstr ""
494
 
495
- #: inc/lp-core-functions.php:1121
496
- msgid "Moroccan dirham"
 
497
  msgstr ""
498
 
499
- #: inc/lp-core-functions.php:1122
500
- msgid "Mozambican metical"
 
501
  msgstr ""
502
 
503
- #: inc/lp-core-functions.php:1123
504
- msgid "Namibian dollar"
505
  msgstr ""
506
 
507
- #: inc/lp-core-functions.php:1124
508
- msgid "Nepalese rupee"
509
  msgstr ""
510
 
511
- #: inc/lp-core-functions.php:1125
512
- msgid "Nicaraguan córdoba"
513
  msgstr ""
514
 
515
- #: inc/lp-core-functions.php:1126
516
- msgid "Nigerian naira"
517
  msgstr ""
518
 
519
- #: inc/lp-core-functions.php:1127
520
- msgid "Norwegian krone"
 
521
  msgstr ""
522
 
523
- #: inc/lp-core-functions.php:1128
524
- msgid "Omani rial"
 
525
  msgstr ""
526
 
527
- #: inc/lp-core-functions.php:1129
528
- msgid "Pakistani rupee"
 
529
  msgstr ""
530
 
531
- #: inc/lp-core-functions.php:1130
532
- msgid "Panamanian balboa"
 
533
  msgstr ""
534
 
535
- #: inc/lp-core-functions.php:1131
536
- msgid "Papua New Guinea kina"
 
537
  msgstr ""
538
 
539
- #: inc/lp-core-functions.php:1132
540
- msgid "Paraguayan guarani"
 
541
  msgstr ""
542
 
543
- #: inc/lp-core-functions.php:1133
544
- msgid "Peruvian nuevo sol"
 
 
545
  msgstr ""
546
 
547
- #: inc/lp-core-functions.php:1134
548
- msgid "Philippine peso"
 
 
 
 
549
  msgstr ""
550
 
551
- #: inc/lp-core-functions.php:1135
552
- msgid "Polish zloty"
 
553
  msgstr ""
554
 
555
- #: inc/lp-core-functions.php:1136
556
- msgid "Qatari riyal"
 
557
  msgstr ""
558
 
559
- #: inc/lp-core-functions.php:1137
560
- msgid "Romanian leu"
561
  msgstr ""
562
 
563
- #: inc/lp-core-functions.php:1138
564
- msgid "Russian ruble"
565
  msgstr ""
566
 
567
- #: inc/lp-core-functions.php:1139
568
- msgid "Rwandan franc"
569
  msgstr ""
570
 
571
- #: inc/lp-core-functions.php:1140
572
- msgid "Samoan tālā"
573
  msgstr ""
574
 
575
- #: inc/lp-core-functions.php:1141
576
- msgid "São Tomé and Príncipe dobra"
577
  msgstr ""
578
 
579
- #: inc/lp-core-functions.php:1142
580
- msgid "Saudi riyal"
581
  msgstr ""
582
 
583
- #: inc/lp-core-functions.php:1143
584
- msgid "Serbian dinar"
585
  msgstr ""
586
 
587
- #: inc/lp-core-functions.php:1144
588
- msgid "Seychellois rupee"
589
  msgstr ""
590
 
591
- #: inc/lp-core-functions.php:1145
592
- msgid "Sierra Leonean leone"
593
  msgstr ""
594
 
595
- #: inc/lp-core-functions.php:1146
596
- msgid "Singapore dollar"
597
  msgstr ""
598
 
599
- #: inc/lp-core-functions.php:1147
600
- msgid "Solomon Islands dollar"
601
  msgstr ""
602
 
603
- #: inc/lp-core-functions.php:1148
604
- msgid "Somali shilling"
605
  msgstr ""
606
 
607
- #: inc/lp-core-functions.php:1149
608
- msgid "South African rand"
609
  msgstr ""
610
 
611
- #: inc/lp-core-functions.php:1150
612
- msgid "Sri Lankan rupee"
613
  msgstr ""
614
 
615
- #: inc/lp-core-functions.php:1151
616
- msgid "St. Helena pound"
617
  msgstr ""
618
 
619
- #: inc/lp-core-functions.php:1152
620
- msgid "Sudanese pound"
621
  msgstr ""
622
 
623
- #: inc/lp-core-functions.php:1153
624
- msgid "Surinamese dollar"
625
  msgstr ""
626
 
627
- #: inc/lp-core-functions.php:1154
628
- msgid "Swazi lilangeni"
629
  msgstr ""
630
 
631
- #: inc/lp-core-functions.php:1155
632
- msgid "Swedish krona"
633
  msgstr ""
634
 
635
- #: inc/lp-core-functions.php:1156
636
- msgid "Syrian pound"
637
  msgstr ""
638
 
639
- #: inc/lp-core-functions.php:1157
640
- msgid "New Taiwan dollar"
641
  msgstr ""
642
 
643
- #: inc/lp-core-functions.php:1158
644
- msgid "Tajikistani somoni"
645
  msgstr ""
646
 
647
- #: inc/lp-core-functions.php:1159
648
- msgid "Tanzanian shilling"
649
  msgstr ""
650
 
651
- #: inc/lp-core-functions.php:1160
652
- msgid "Thai baht "
653
  msgstr ""
654
 
655
- #: inc/lp-core-functions.php:1161
656
- msgid "Tongan pa’anga"
657
  msgstr ""
658
 
659
- #: inc/lp-core-functions.php:1162
660
- msgid "Trinidad and Tobago dollar"
661
  msgstr ""
662
 
663
- #: inc/lp-core-functions.php:1163
664
- msgid "Tunisian dinar"
665
  msgstr ""
666
 
667
- #: inc/lp-core-functions.php:1164
668
- msgid "Turkish lira"
669
  msgstr ""
670
 
671
- #: inc/lp-core-functions.php:1165
672
- msgid "Turkmenistani manat"
673
  msgstr ""
674
 
675
- #: inc/lp-core-functions.php:1166
676
- msgid "Ugandan shilling"
677
  msgstr ""
678
 
679
- #: inc/lp-core-functions.php:1167
680
- msgid "Ukrainian hryvnia"
681
  msgstr ""
682
 
683
- #: inc/lp-core-functions.php:1168
684
- msgid "United Arab Emirates dirham"
685
  msgstr ""
686
 
687
- #: inc/lp-core-functions.php:1169
688
- msgid "Uruguayan peso"
689
  msgstr ""
690
 
691
- #: inc/lp-core-functions.php:1170
692
- msgid "Uzbekistani som"
693
  msgstr ""
694
 
695
- #: inc/lp-core-functions.php:1171
696
- msgid "Vanuatu vatu"
697
  msgstr ""
698
 
699
- #: inc/lp-core-functions.php:1172
700
- msgid "Venezuelan bolivar"
701
  msgstr ""
702
 
703
- #: inc/lp-core-functions.php:1173
704
- msgid "Vietnamese dong"
705
  msgstr ""
706
 
707
- #: inc/lp-core-functions.php:1174
708
- msgid "Yemeni rial"
709
  msgstr ""
710
 
711
- #: inc/lp-core-functions.php:1175
712
- msgid "Zambian kwacha"
713
  msgstr ""
714
 
715
- #: inc/lp-core-functions.php:1176
716
- msgid "Zimbabwean dollar"
717
  msgstr ""
718
 
719
- #: inc/lp-core-functions.php:1177
720
- msgid "Jersey pound"
721
  msgstr ""
722
 
723
- #: inc/lp-core-functions.php:1464
724
- msgid "week"
725
- msgid_plural "weeks"
726
- msgstr[0] ""
727
- msgstr[1] ""
728
-
729
- #: inc/lp-core-functions.php:1468
730
- msgid "day"
731
- msgid_plural "days"
732
- msgstr[0] ""
733
- msgstr[1] ""
734
-
735
- #: inc/lp-core-functions.php:1473
736
- msgid "hour"
737
- msgid_plural "hours"
738
- msgstr[0] ""
739
- msgstr[1] ""
740
-
741
- #: inc/lp-core-functions.php:1477
742
- msgid "minute"
743
- msgid_plural "minutes"
744
- msgstr[0] ""
745
- msgstr[1] ""
746
-
747
- #: inc/lp-core-functions.php:1546
748
- #: inc/admin/views/quiz/editor.php:29
749
- #: inc/admin/views/tools/course/html-course.php:29
750
- #: inc/admin/views/tools/course/html-user.php:29
751
- msgid "Name"
752
  msgstr ""
753
 
754
- #: inc/lp-core-functions.php:1548
755
- msgid "Your name"
756
  msgstr ""
757
 
758
- #: inc/lp-core-functions.php:1554
759
- #: inc/shortcodes/class-lp-shortcode-register-form.php:72
760
- #: inc/shortcodes/class-lp-shortcode-register-form.php:74
761
- #: inc/admin/meta-box/fields/list-emails.php:28
762
- msgid "Email"
763
  msgstr ""
764
 
765
- #: inc/lp-core-functions.php:1556
766
- msgid "Your email address"
767
  msgstr ""
768
 
769
- #: inc/lp-core-functions.php:1562
770
- msgid "Phone"
771
  msgstr ""
772
 
773
- #: inc/lp-core-functions.php:1564
774
- msgid "Your phone number"
775
  msgstr ""
776
 
777
- #: inc/lp-core-functions.php:1594
778
- msgid "Please enter your name"
779
  msgstr ""
780
 
781
- #: inc/lp-core-functions.php:1599
782
- msgid "Please enter your email address"
783
  msgstr ""
784
 
785
- #: inc/lp-core-functions.php:1607
786
- msgid "Please moderate"
787
  msgstr ""
788
 
789
- #: inc/lp-core-functions.php:1618
790
- #, php-format
791
- msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
792
  msgstr ""
793
 
794
- #: inc/lp-core-functions.php:1619
795
- #, php-format
796
- msgid "Name: %s"
797
  msgstr ""
798
 
799
- #: inc/lp-core-functions.php:1620
800
- #, php-format
801
- msgid "Email: %s"
802
  msgstr ""
803
 
804
- #: inc/lp-core-functions.php:1621
805
- #, php-format
806
- msgid "Phone: %s"
807
  msgstr ""
808
 
809
- #: inc/lp-core-functions.php:1627
810
- #, php-format
811
- msgid "Accept: %s"
812
  msgstr ""
813
 
814
- #: inc/lp-core-functions.php:1638
815
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:109
816
- msgid "Your request has been sent! We will get back to you soon!"
817
  msgstr ""
818
 
819
- #: inc/lp-core-functions.php:2256
820
- #: inc/class-lp-assets.php:48
821
- msgid "OK"
822
  msgstr ""
823
 
824
- #: inc/lp-core-functions.php:2257
825
- #: inc/class-lp-assets.php:49
826
- #: inc/class-lp-install.php:505
827
- #: inc/order/class-lp-order.php:935
828
- #: inc/custom-post-types/course.php:864
829
- #: inc/admin/class-lp-admin-ajax.php:861
830
- #: inc/admin/class-lp-admin.php:215
831
- #: templates/checkout/form-login.php:103
832
- msgid "Cancel"
833
  msgstr ""
834
 
835
- #: inc/lp-core-functions.php:2258
836
- #: inc/class-lp-assets.php:50
837
- #: inc/class-lp-gdpr.php:426
838
- msgid "Yes"
839
  msgstr ""
840
 
841
- #: inc/lp-core-functions.php:2259
842
- #: inc/class-lp-assets.php:51
843
- #: inc/class-lp-gdpr.php:426
844
- #: templates/content-quiz/intro.php:25
845
- msgid "No"
846
  msgstr ""
847
 
848
- #: inc/lp-core-functions.php:2504
849
- #, php-format
850
- msgid "Congrats! You've enrolled the course \"%s\"."
851
  msgstr ""
852
 
853
- #: inc/lp-core-functions.php:2537
854
- msgid "Cart"
855
  msgstr ""
856
 
857
- #: inc/lp-core-functions.php:2541
858
- msgid "Enable cart"
859
  msgstr ""
860
 
861
- #: inc/lp-core-functions.php:2542
862
- msgid "Check this option to enable user purchase multiple courses at one time."
863
  msgstr ""
864
 
865
- #: inc/lp-core-functions.php:2548
866
- msgid "Add to cart redirect"
867
  msgstr ""
868
 
869
- #: inc/lp-core-functions.php:2549
870
- msgid "Redirect to checkout immediately after adding course to cart."
871
  msgstr ""
872
 
873
- #: inc/lp-core-functions.php:2555
874
- msgid "AJAX add to cart"
875
  msgstr ""
876
 
877
- #: inc/lp-core-functions.php:2556
878
- msgid "Using AJAX to add course to cart."
879
  msgstr ""
880
 
881
- #: inc/lp-core-functions.php:2562
882
- msgid "Cart page"
883
  msgstr ""
884
 
885
- #: inc/lp-core-functions.php:2701
886
- msgid "Are you sure you want to cancel order?"
887
  msgstr ""
888
 
889
- #: inc/lp-core-functions.php:2702
890
- msgid "Cancel Order"
891
  msgstr ""
892
 
893
- #: inc/lp-core-functions.php:2757
894
- #: inc/course/lp-course-functions.php:1083
895
- #: inc/user/class-lp-profile.php:847
896
- #: inc/user/class-lp-profile.php:881
897
- #: inc/user-item/class-lp-user-item-quiz.php:108
898
- #: inc/user-item/class-lp-user-item.php:550
899
- msgid "Passed"
900
  msgstr ""
901
 
902
- #: inc/lp-core-functions.php:2760
903
- #: inc/course/lp-course-functions.php:1086
904
- #: inc/user/class-lp-profile.php:848
905
- #: inc/user/class-lp-profile.php:882
906
- #: inc/user-item/class-lp-user-item-quiz.php:109
907
- #: inc/user-item/class-lp-user-item.php:551
908
- msgid "Failed"
909
  msgstr ""
910
 
911
- #: inc/lp-core-functions.php:2954
912
- msgctxt "static-page-name"
913
- msgid "Checkout"
914
  msgstr ""
915
 
916
- #: inc/lp-core-functions.php:2955
917
- msgctxt "static-page-name"
918
- msgid "Courses"
919
  msgstr ""
920
 
921
- #: inc/lp-core-functions.php:2956
922
- msgctxt "static-page-name"
923
- msgid "Profile"
924
  msgstr ""
925
 
926
- #: inc/lp-core-functions.php:2957
927
- msgctxt "static-page-name"
928
- msgid "Become a Teacher"
929
  msgstr ""
930
 
931
- #: inc/class-lp-assets.php:58
932
- #: inc/class-lp-assets.php:65
933
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:124
934
- #: templates/checkout/payment.php:20
935
- msgid "Processing"
936
  msgstr ""
937
 
938
- #: inc/class-lp-assets.php:59
939
- #: inc/class-lp-assets.php:66
940
- msgid "Redirecting"
941
  msgstr ""
942
 
943
- #: inc/class-lp-assets.php:60
944
- msgid "Invalid field"
945
  msgstr ""
946
 
947
- #: inc/class-lp-assets.php:61
948
- #: inc/attributes/course.php:103
949
- msgid "Unknown error"
950
  msgstr ""
951
 
952
- #: inc/class-lp-assets.php:62
953
- #: templates/checkout/payment.php:19
954
- msgid "Place order"
955
  msgstr ""
956
 
957
- #: inc/class-lp-emails.php:136
958
- #: inc/class-lp-emails.php:143
959
- msgid "Cheatin&#8217; huh?"
960
  msgstr ""
961
 
962
- #: inc/class-lp-widget.php:213
963
- #, php-format
964
- msgid "Function %s should be overwritten in child class"
965
  msgstr ""
966
 
967
- #: inc/class-lp-forms-handler.php:39
968
- #: inc/class-lp-forms-handler.php:116
969
- #: inc/class-lp-forms-handler.php:200
970
- #, php-format
971
- msgid "Field \"%s\" is required."
972
  msgstr ""
973
 
974
- #: inc/class-lp-forms-handler.php:52
975
- msgid "Thank you! Your message has been sent."
976
  msgstr ""
977
 
978
- #: inc/class-lp-forms-handler.php:76
979
- msgid "Your email does not exist!"
980
  msgstr ""
981
 
982
- #: inc/class-lp-forms-handler.php:150
983
- msgid "Login successfully."
984
  msgstr ""
985
 
986
- #: inc/class-lp-forms-handler.php:239
987
- msgid "Register successfully."
988
  msgstr ""
989
 
990
- #: inc/class-lp-forms-handler.php:264
991
- msgid "Password is too short!"
992
  msgstr ""
993
 
994
- #: inc/class-lp-forms-handler.php:268
995
- msgid "Password can not have spacing!"
996
  msgstr ""
997
 
998
- #: inc/class-lp-forms-handler.php:272
999
- msgid "Password must include at least one letter!"
1000
  msgstr ""
1001
 
1002
- #: inc/class-lp-forms-handler.php:276
1003
- msgid "Password must include at least one capitalized letter!"
1004
  msgstr ""
1005
 
1006
- #: inc/class-lp-forms-handler.php:280
1007
- msgid "Password must include at least one number!"
1008
  msgstr ""
1009
 
1010
- #: inc/class-lp-forms-handler.php:284
1011
- msgid "Password must include at least one of these characters ~!@#$%^&*() !"
1012
  msgstr ""
1013
 
1014
- #: inc/lp-deprecated.php:370
1015
- #: inc/lp-deprecated.php:402
1016
- #: inc/admin/lp-admin-actions.php:60
1017
- #: inc/admin/lp-admin-functions.php:850
1018
- #: inc/admin/lp-admin-functions.php:1015
1019
- #: inc/admin/lp-admin-functions.php:1217
1020
- #: inc/admin/lp-admin-functions.php:2098
1021
- #: inc/user/class-lp-profile.php:813
1022
- #: inc/user/class-lp-profile.php:845
1023
- #: inc/user/class-lp-profile.php:879
1024
- #: templates/widgets/course-info/default.php:44
1025
- #: inc/admin/views/statistics/courses.php:27
1026
- #: inc/admin/views/statistics/courses.php:42
1027
- #: inc/admin/views/statistics/users.php:29
1028
- #: inc/admin/views/statistics/users.php:45
1029
- #: inc/admin/views/statistics/general.php:43
1030
- #: inc/admin/views/statistics/general.php:59
1031
- #: inc/admin/views/statistics/orders.php:28
1032
- #: inc/admin/views/statistics/orders.php:62
1033
- msgid "All"
1034
  msgstr ""
1035
 
1036
- #: inc/lp-deprecated.php:371
1037
- msgid "Learning"
1038
  msgstr ""
1039
 
1040
- #: inc/lp-deprecated.php:372
1041
- #: inc/custom-post-types/order.php:770
1042
- #: inc/user/class-lp-profile.php:284
1043
- msgid "Purchased"
1044
  msgstr ""
1045
 
1046
- #: inc/lp-deprecated.php:373
1047
- #: inc/lp-deprecated.php:404
1048
- #: inc/user/class-lp-profile.php:846
1049
- #: inc/user/class-lp-profile.php:880
1050
- #: inc/user-item/class-lp-user-item.php:549
1051
- msgid "Finished"
1052
  msgstr ""
1053
 
1054
- #: inc/lp-deprecated.php:374
1055
- #: inc/user/class-lp-profile.php:277
1056
- msgid "Owned"
1057
  msgstr ""
1058
 
1059
- #: inc/lp-deprecated.php:403
1060
- #: inc/course/lp-course-functions.php:1089
1061
- #: inc/user-item/class-lp-user-item-quiz.php:105
1062
- #: inc/user-item/class-lp-user-item-quiz.php:106
1063
- #: inc/user-item/class-lp-user-item.php:544
1064
- #: inc/user-item/class-lp-user-item.php:545
1065
- #: inc/user-item/class-lp-user-item.php:546
1066
- msgid "In Progress"
1067
  msgstr ""
1068
 
1069
- #: inc/class-lp-repair-database.php:597
1070
- #, php-format
1071
- msgid "The method %s is not callable."
1072
  msgstr ""
1073
 
1074
- #: inc/class-lp-request-handler.php:148
1075
- msgid "You have already purchased this course and haven't finished it."
1076
  msgstr ""
1077
 
1078
- #: inc/class-lp-request-handler.php:156
1079
- msgid ""
1080
- "You have already purchased this course and the order is still processing..."
1081
  msgstr ""
1082
 
1083
- #: inc/class-lp-request-handler.php:179
1084
- msgid "You have finished course."
1085
  msgstr ""
1086
 
1087
- #: inc/class-lp-request-handler.php:195
1088
- msgid "You have to purchase the course before enrolling."
1089
  msgstr ""
1090
 
1091
- #: inc/class-lp-request-handler.php:232
1092
- msgid "Invalid action."
1093
  msgstr ""
1094
 
1095
- #: inc/class-lp-request-handler.php:297
1096
- #: inc/class-lp-request-handler.php:332
1097
- #, php-format
1098
- msgid "You can not enroll course &quot;%s&quot"
1099
  msgstr ""
1100
 
1101
- #: inc/class-lp-request-handler.php:324
1102
- #: inc/course/lp-course-functions.php:1151
1103
- msgid "Invalid request!"
1104
  msgstr ""
1105
 
1106
- #: inc/class-lp-request-handler.php:349
1107
- #, php-format
1108
- msgid "Congrats! You have enrolled &quot;%s&quot"
1109
  msgstr ""
1110
 
1111
- #: inc/class-lp-request-handler.php:379
1112
- msgid "Checkout page hasn't been setup or page does not exists."
1113
  msgstr ""
1114
 
1115
- #: inc/class-lp-request-handler.php:381
1116
- msgid "Checkout error! Please contact with admin for getting more information."
1117
  msgstr ""
1118
 
1119
- #: inc/class-lp-strings.php:16
1120
- #: inc/lp-strings.php:7
1121
- #, php-format
1122
- msgid "Do you want to redo quiz \"%s\"?"
1123
  msgstr ""
1124
 
1125
- #: inc/class-lp-strings.php:17
1126
- #: inc/lp-strings.php:8
1127
- #, php-format
1128
- msgid "Do you want to complete quiz \"%s\"?"
1129
  msgstr ""
1130
 
1131
- #: inc/class-lp-strings.php:18
1132
- #: inc/lp-strings.php:9
1133
- #, php-format
1134
- msgid "Do you want to complete lesson \"%s\"?"
1135
  msgstr ""
1136
 
1137
- #: inc/class-lp-strings.php:19
1138
- #: inc/lp-strings.php:10
1139
- #, php-format
1140
- msgid "Do you want to finish course \"%s\"?"
1141
  msgstr ""
1142
 
1143
- #: inc/class-lp-strings.php:20
1144
- #: inc/lp-strings.php:11
1145
- #, php-format
1146
- msgid "Do you want to retake course \"%s\"?"
1147
  msgstr ""
1148
 
1149
- #: inc/lp-strings.php:6
1150
- msgid "You've already completed quiz."
1151
  msgstr ""
1152
 
1153
- #: inc/class-lp-ajax.php:109
1154
- msgid "Sorry! Registration is not allowed on this site."
1155
  msgstr ""
1156
 
1157
- #: inc/class-lp-ajax.php:113
1158
- msgid "Bad request."
1159
  msgstr ""
1160
 
1161
- #: inc/class-lp-ajax.php:192
1162
- #, php-format
1163
- msgid "The order %s has been successfully recovered."
1164
  msgstr ""
1165
 
1166
- #: inc/class-lp-ajax.php:246
1167
- #: inc/admin/class-lp-admin-ajax.php:1064
1168
- msgid "Profile picture upload failed"
1169
  msgstr ""
1170
 
1171
- #: inc/class-lp-ajax.php:269
1172
- msgid "Access denied!"
1173
  msgstr ""
1174
 
1175
- #: inc/class-lp-ajax.php:278
1176
- #, php-format
1177
- msgid "You have finished this course \"%s\""
1178
  msgstr ""
1179
 
1180
- #: inc/class-lp-ajax.php:281
1181
- msgid ""
1182
- "Error! You cannot finish this course. Please contact your administrator for "
1183
- "more information."
1184
  msgstr ""
1185
 
1186
- #: inc/class-lp-ajax.php:314
1187
- msgid "Error! Invalid lesson or failed security check."
1188
  msgstr ""
1189
 
1190
- #: inc/class-lp-ajax.php:324
1191
- #, php-format
1192
- msgid "Congrats! You have completed \"%s\"."
1193
  msgstr ""
1194
 
1195
- #: inc/class-lp-ajax.php:363
1196
- msgid "Error! Invalid course or failed security check."
1197
  msgstr ""
1198
 
1199
- #: inc/class-lp-ajax.php:367
1200
- msgid "Error!"
1201
  msgstr ""
1202
 
1203
- #: inc/class-lp-ajax.php:369
1204
- #, php-format
1205
- msgid "You have retaken the course \"%s\""
1206
  msgstr ""
1207
 
1208
- #: inc/class-lp-ajax.php:373
1209
- msgid "Error! You can not retake the course"
1210
  msgstr ""
1211
 
1212
- #: inc/class-lp-backward-plugins.php:40
1213
- msgid ""
1214
- "There are some add-ons had gone outdated and might conflict with <strong>"
1215
- "LearnPress</strong> that need to be deactivated. Please upgrade them to the "
1216
- "newest version to ensure stability and performance of your site."
1217
  msgstr ""
1218
 
1219
- #: inc/class-lp-backward-plugins.php:95
1220
- #, php-format
1221
- msgid ""
1222
- "LearnPress plugin slug should be <strong>%s</strong> to make sure it works "
1223
- "properly. Currently, it is <strong>%s</strong>. Please correct it's name and "
1224
- "active again. <a href=\"%s\">Back</a>"
1225
  msgstr ""
1226
 
1227
- #: inc/class-lp-breadcrumb.php:124
1228
- msgid "Error 404"
1229
  msgstr ""
1230
 
1231
- #: inc/class-lp-breadcrumb.php:223
1232
- #, php-format
1233
- msgid "Courses tagged &ldquo;%s&rdquo;"
1234
  msgstr ""
1235
 
1236
- #: inc/class-lp-breadcrumb.php:278
1237
- #, php-format
1238
- msgid "Posts tagged &ldquo;%s&rdquo;"
1239
  msgstr ""
1240
 
1241
- #: inc/class-lp-breadcrumb.php:355
1242
- #, php-format
1243
- msgid "Author: %s"
1244
  msgstr ""
1245
 
1246
- #: inc/class-lp-breadcrumb.php:388
1247
- #, php-format
1248
- msgid "Search results for &ldquo;%s&rdquo;"
1249
  msgstr ""
1250
 
1251
- #: inc/class-lp-breadcrumb.php:397
1252
- #, php-format
1253
- msgid "Page %d"
1254
  msgstr ""
1255
 
1256
- #: inc/class-lp-page-controller.php:129
1257
- msgid "You can not view this item or it does not exist!"
1258
  msgstr ""
1259
 
1260
- #: inc/class-lp-page-controller.php:462
1261
- #, php-format
1262
- msgid "The user %s is not available!"
1263
  msgstr ""
1264
 
1265
- #: inc/class-lp-preview-course.php:35
1266
- msgid "Preview Course"
1267
  msgstr ""
1268
 
1269
- #: inc/class-lp-preview-course.php:80
1270
- #: inc/class-lp-preview-course.php:97
1271
- msgid "Invalid preview item."
1272
  msgstr ""
1273
 
1274
- #: inc/class-lp-preview-course.php:103
1275
- msgid "Access denied."
1276
  msgstr ""
1277
 
1278
- #: inc/class-lp-preview-course.php:176
1279
- #, php-format
1280
- msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
1281
  msgstr ""
1282
 
1283
- #: inc/lp-js-template.php:11
1284
- msgid "--Select a Lesson--"
1285
  msgstr ""
1286
 
1287
- #: inc/class-lp-gdpr.php:49
1288
- msgid "LearnPress Owned Courses"
1289
  msgstr ""
1290
 
1291
- #: inc/class-lp-gdpr.php:57
1292
- msgid "LearnPress Orders"
1293
  msgstr ""
1294
 
1295
- #: inc/class-lp-gdpr.php:65
1296
- msgid "LearnPress Purchased Courses"
1297
  msgstr ""
1298
 
1299
- #: inc/class-lp-gdpr.php:73
1300
- msgid "LearnPress User Profile"
1301
  msgstr ""
1302
 
1303
- #: inc/class-lp-gdpr.php:98
1304
- msgid "Profile Settings"
1305
  msgstr ""
1306
 
1307
- #: inc/class-lp-gdpr.php:147
1308
- msgid "Order ID"
1309
  msgstr ""
1310
 
1311
- #: inc/class-lp-gdpr.php:151
1312
- msgid "Order Date"
1313
  msgstr ""
1314
 
1315
- #: inc/class-lp-gdpr.php:155
1316
- msgid "Order status"
1317
  msgstr ""
1318
 
1319
- #: inc/class-lp-gdpr.php:159
1320
- msgid "Order Total"
1321
  msgstr ""
1322
 
1323
- #: inc/class-lp-gdpr.php:165
1324
- #: inc/custom-post-types/order.php:903
1325
- #: inc/custom-post-types/order.php:904
1326
- #: inc/custom-post-types/order.php:908
1327
- #: inc/user/class-lp-profile.php:312
1328
- #: inc/admin/settings/class-lp-settings-profile.php:165
1329
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:22
1330
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:29
1331
- msgid "Orders"
1332
  msgstr ""
1333
 
1334
- #: inc/class-lp-gdpr.php:213
1335
- #: inc/class-lp-gdpr.php:332
1336
- msgid "Course Author"
1337
  msgstr ""
1338
 
1339
- #: inc/class-lp-gdpr.php:217
1340
- #: inc/class-lp-gdpr.php:336
1341
- msgid "Course Name"
1342
  msgstr ""
1343
 
1344
- #: inc/class-lp-gdpr.php:221
1345
- #: inc/class-lp-gdpr.php:340
1346
- msgid "Course Date"
1347
  msgstr ""
1348
 
1349
- #: inc/class-lp-gdpr.php:225
1350
- #: inc/class-lp-gdpr.php:344
1351
- msgid "Course URL"
1352
  msgstr ""
1353
 
1354
- #: inc/class-lp-gdpr.php:231
1355
- msgid "Owned Course"
1356
  msgstr ""
1357
 
1358
- #: inc/class-lp-gdpr.php:264
1359
- #: inc/class-lp-gdpr.php:400
1360
- msgid "Item Name"
1361
  msgstr ""
1362
 
1363
- #: inc/class-lp-gdpr.php:268
1364
- #: inc/class-lp-gdpr.php:404
1365
- msgid "Item Type"
1366
  msgstr ""
1367
 
1368
- #: inc/class-lp-gdpr.php:272
1369
- #: inc/class-lp-gdpr.php:408
1370
- msgid "Item URL"
1371
  msgstr ""
1372
 
1373
- #: inc/class-lp-gdpr.php:279
1374
- #: inc/class-lp-gdpr.php:432
1375
- msgid "Course Items"
1376
  msgstr ""
1377
 
1378
- #: inc/class-lp-gdpr.php:348
1379
- msgid "Enrolled Date"
1380
  msgstr ""
1381
 
1382
- #: inc/class-lp-gdpr.php:352
1383
- msgid "Finished Date"
1384
- msgstr ""
 
 
1385
 
1386
- #: inc/class-lp-gdpr.php:356
1387
- msgid "Course Status"
1388
- msgstr ""
 
 
1389
 
1390
- #: inc/class-lp-gdpr.php:360
1391
- msgid "Course Grade"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1392
  msgstr ""
1393
 
1394
- #: inc/class-lp-gdpr.php:361
1395
- #: templates/content-quiz/result.php:33
1396
- msgid "Ungraded"
1397
  msgstr ""
1398
 
1399
- #: inc/class-lp-gdpr.php:366
1400
- msgid "Purchased Course"
 
 
1401
  msgstr ""
1402
 
1403
- #: inc/class-lp-gdpr.php:415
1404
- #: inc/custom-post-types/order.php:773
1405
- #: inc/custom-post-types/order.php:773
1406
- #: templates/emails/order-items-table.php:53
1407
- #: templates/emails/plain/order-items-table.php:30
1408
- #: inc/admin/meta-box/fields/payment-order.php:32
1409
- #: inc/admin/meta-box/fields/list-emails.php:30
1410
- #: templates/profile/tabs/orders/list.php:34
1411
- #: inc/admin/views/meta-boxes/order/details.php:57
1412
- msgid "Status"
1413
  msgstr ""
1414
 
1415
- #: inc/class-lp-gdpr.php:420
1416
- msgid "Grade"
1417
  msgstr ""
1418
 
1419
- #: inc/class-lp-gdpr.php:425
1420
- #: inc/admin/lp-admin-functions.php:1222
1421
- #: inc/user-item/class-lp-user-item-quiz.php:107
1422
- #: inc/user-item/class-lp-user-item.php:548
1423
- #: templates/content-lesson/button-complete.php:36
1424
- #: inc/admin/views/statistics/orders.php:63
1425
- msgid "Completed"
1426
  msgstr ""
1427
 
1428
- #: inc/class-lp-query-list-table.php:28
1429
- #: inc/custom-post-types/course.php:99
1430
- msgid "item"
1431
  msgstr ""
1432
 
1433
- #: inc/class-lp-query-list-table.php:29
1434
- msgid "items"
1435
  msgstr ""
1436
 
1437
- #: inc/class-lp-query-list-table.php:142
1438
- msgid "Displaying {{from}} to {{to}} of {{total}} {{item_name}}."
1439
  msgstr ""
1440
 
1441
- #: inc/class-lp-query-list-table.php:144
1442
- msgid "Displaying {{from}} to {{to}} of {{total}}."
 
1443
  msgstr ""
1444
 
1445
- #: inc/lp-webhooks.php:82
1446
  #, php-format
1447
- msgid "LearnPress webhook %s process completed"
1448
  msgstr ""
1449
 
1450
- #: inc/lp-webhooks.php:88
1451
- msgid "LearnPress webhook process Complete"
 
1452
  msgstr ""
1453
 
1454
- #: inc/class-lp-shortcodes.php:225
1455
- msgid "Forgot password?"
 
1456
  msgstr ""
1457
 
1458
- #: inc/class-lp-shortcodes.php:227
1459
- msgid "Create new account"
 
1460
  msgstr ""
1461
 
1462
- #: inc/class-lp-install.php:504
1463
- msgid ""
1464
- "It seems like you have updated LearnPress from an older version and there "
1465
- "are some outdated courses or data that need to be upgraded."
1466
  msgstr ""
1467
 
1468
- #: inc/class-lp-install.php:505
1469
- msgid "Do not ask again."
 
1470
  msgstr ""
1471
 
1472
- #: inc/class-lp-install.php:505
1473
- msgid "Ok"
1474
  msgstr ""
1475
 
1476
- #: inc/class-lp-install.php:506
1477
- #: inc/admin/views/tools/database/html-upgrade-database.php:17
1478
- msgid "Upgrade now"
1479
  msgstr ""
1480
 
1481
- #: inc/class-lp-install.php:506
1482
- msgid "No, thank!"
1483
  msgstr ""
1484
 
1485
- #: inc/class-lp-install.php:513
1486
- msgid ""
1487
- "LearnPress has been updated and the database needs to be upgraded before you "
1488
- "can work with it. Please notify the site administrator."
1489
  msgstr ""
1490
 
1491
- #: inc/class-lp-install.php:532
1492
- msgid "Thank you for using LearnPress"
1493
  msgstr ""
1494
 
1495
- #: inc/abstract-settings.php:69
1496
- #: inc/admin/settings/abstract-settings-page.php:49
1497
- msgid "No setting available."
1498
  msgstr ""
1499
 
1500
- #: inc/class-lp-multi-language.php:52
1501
- #: inc/custom-post-types/question.php:294
1502
- #: inc/user/class-lp-profile.php:325
1503
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:14
1504
- #: inc/admin/views/quiz/question-meta.php:12
1505
- msgid "Settings"
1506
  msgstr ""
1507
 
1508
- #: inc/class-lp-multi-language.php:53
1509
- msgid "Documentation"
1510
  msgstr ""
1511
 
1512
- #: inc/class-lp-multi-language.php:54
1513
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:15
1514
- msgid "Add-ons"
1515
  msgstr ""
1516
 
1517
- #: inc/class-lp-checkout.php:160
1518
- #: inc/class-lp-checkout.php:425
1519
- msgid "Please enter your email."
1520
  msgstr ""
1521
 
1522
- #: inc/class-lp-checkout.php:165
1523
- msgid "You must accept our Terms & Conditions."
 
 
 
1524
  msgstr ""
1525
 
1526
- #: inc/class-lp-checkout.php:210
1527
- #: inc/shortcodes/class-lp-shortcode-register-form.php:64
1528
- #: inc/shortcodes/class-lp-shortcode-register-form.php:66
1529
- msgid "Username"
 
1530
  msgstr ""
1531
 
1532
- #: inc/class-lp-checkout.php:211
1533
- #: inc/user/class-lp-profile.php:336
1534
- #: inc/shortcodes/class-lp-shortcode-login-form.php:69
1535
- #: inc/shortcodes/class-lp-shortcode-login-form.php:71
1536
- #: inc/shortcodes/class-lp-shortcode-register-form.php:80
1537
- #: inc/shortcodes/class-lp-shortcode-register-form.php:82
1538
- msgid "Password"
1539
  msgstr ""
1540
 
1541
- #: inc/class-lp-checkout.php:267
1542
- #: inc/class-lp-checkout.php:276
1543
- #: inc/class-lp-checkout.php:315
1544
- #, php-format
1545
- msgid "Error %d: Unable to create order. Please try again."
1546
  msgstr ""
1547
 
1548
- #: inc/class-lp-checkout.php:309
1549
- msgid "Item does not exist!"
 
1550
  msgstr ""
1551
 
1552
- #: inc/class-lp-checkout.php:339
1553
- msgid "Unable to checkout. Order creation failed."
 
1554
  msgstr ""
1555
 
1556
- #: inc/class-lp-checkout.php:416
1557
- msgid "Please enter username."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1558
  msgstr ""
1559
 
1560
- #: inc/class-lp-checkout.php:420
1561
- msgid "Please enter user password"
1562
  msgstr ""
1563
 
1564
- #: inc/class-lp-checkout.php:505
1565
- msgid "No payment method is selected"
 
1566
  msgstr ""
1567
 
1568
- #: inc/class-lp-checkout.php:545
1569
- #: templates/checkout/empty-cart.php:19
1570
- msgid "Your cart is currently empty."
 
1571
  msgstr ""
1572
 
1573
- #: inc/class-lp-checkout.php:564
1574
- #, php-format
1575
- msgid "Item \"%s\" is not purchasable."
1576
  msgstr ""
1577
 
1578
- #: inc/class-lp-market-products.php:12
1579
- #: inc/admin/class-lp-admin-menu.php:90
1580
- #: inc/admin/lp-admin-functions.php:1597
1581
- #: inc/admin/class-lp-admin.php:103
1582
- #: inc/admin/class-lp-admin.php:105
1583
- #: inc/admin/settings/class-lp-settings-emails.php:161
1584
- msgid "LearnPress"
1585
  msgstr ""
1586
 
1587
- #: inc/class-lp-market-products.php:13
1588
- msgid "Ahihi"
1589
  msgstr ""
1590
 
1591
- #: templates/search-form.php:26
1592
- msgid "Search course..."
1593
  msgstr ""
1594
 
1595
- #: templates/search-form.php:29
1596
- #: inc/admin/views/tools/course/html-course.php:21
1597
- #: inc/admin/views/tools/course/html-user.php:21
1598
- msgid "Search"
1599
  msgstr ""
1600
 
1601
- #: templates/content-archive-course.php:74
1602
- #: inc/abstracts/abstract-shortcode-courses.php:142
1603
- #: inc/admin/views/tools/course/html-course.php:53
1604
- msgid "No course found."
1605
  msgstr ""
1606
 
1607
- #: inc/order/class-lp-order.php:186
1608
- #: inc/order/class-lp-order.php:205
1609
- #: templates/checkout/order-received.php:25
1610
- msgid "Thank you. Your order has been received."
1611
  msgstr ""
1612
 
1613
- #: inc/order/class-lp-order.php:377
1614
- msgid "Removed"
 
 
 
 
 
1615
  msgstr ""
1616
 
1617
- #: inc/order/class-lp-order.php:494
1618
- #, php-format
1619
- msgid "%s (Guest)"
1620
  msgstr ""
1621
 
1622
- #: inc/order/class-lp-order.php:496
1623
- #: inc/custom-post-types/order.php:821
1624
- msgid "(Guest)"
 
 
 
 
 
 
 
 
 
1625
  msgstr ""
1626
 
1627
- #: inc/order/class-lp-order.php:928
1628
- #: inc/custom-post-types/question.php:376
1629
- #: inc/custom-post-types/abstract.php:582
1630
- #: inc/custom-post-types/abstract.php:774
1631
- #: inc/custom-post-types/abstract.php:783
1632
- #: inc/admin/class-lp-install-sample-data.php:130
1633
- #: inc/admin/views/meta-boxes/course/assigned.php:22
1634
- #: inc/admin/views/meta-boxes/quiz/assigned.php:28
1635
- #: inc/admin/views/meta-boxes/quiz/assigned.php:38
1636
- msgid "View"
1637
  msgstr ""
1638
 
1639
- #: inc/order/class-lp-order.php:981
1640
- #, php-format
1641
- msgctxt "full name"
1642
- msgid "%1$s"
1643
  msgstr ""
1644
 
1645
- #: inc/order/class-lp-order.php:1022
1646
- msgid "No user assigned"
 
1647
  msgstr ""
1648
 
1649
- #: inc/order/class-lp-order.php:1098
1650
- msgid "Order on"
 
1651
  msgstr ""
1652
 
1653
- #: inc/order/lp-order-functions.php:67
1654
- msgid "Invalid order ID when updating."
 
1655
  msgstr ""
1656
 
1657
- #: inc/order/lp-order-functions.php:705
1658
- msgctxt "Order status"
1659
- msgid "Pending Payment"
1660
  msgstr ""
1661
 
1662
- #: inc/order/lp-order-functions.php:710
1663
- #, php-format
1664
- msgid "Pending Payment <span class=\"count\">(%s)</span>"
1665
- msgid_plural "Pending Payment <span class=\"count\">(%s)</span>"
1666
- msgstr[0] ""
1667
- msgstr[1] ""
1668
 
1669
- #: inc/order/lp-order-functions.php:713
1670
- msgctxt "Order status"
1671
- msgid "Processing"
1672
  msgstr ""
1673
 
1674
- #: inc/order/lp-order-functions.php:718
1675
  #, php-format
1676
- msgid "Processing <span class=\"count\">(%s)</span>"
1677
- msgid_plural "Processing <span class=\"count\">(%s)</span>"
1678
  msgstr[0] ""
1679
  msgstr[1] ""
1680
 
1681
- #: inc/order/lp-order-functions.php:721
1682
- msgctxt "Order status"
1683
- msgid "Completed"
 
1684
  msgstr ""
1685
 
1686
- #: inc/order/lp-order-functions.php:726
1687
  #, php-format
1688
- msgid "Completed <span class=\"count\">(%s)</span>"
1689
- msgid_plural "Completed <span class=\"count\">(%s)</span>"
1690
- msgstr[0] ""
1691
- msgstr[1] ""
1692
-
1693
- #: inc/order/lp-order-functions.php:729
1694
- msgctxt "Order status"
1695
- msgid "Cancelled"
1696
  msgstr ""
1697
 
1698
- #: inc/order/lp-order-functions.php:734
1699
  #, php-format
1700
- msgid "Cancelled <span class=\"count\">(%s)</span>"
1701
- msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
1702
- msgstr[0] ""
1703
- msgstr[1] ""
1704
-
1705
- #: inc/order/lp-order-functions.php:737
1706
- msgctxt "Order status"
1707
- msgid "Failed"
1708
  msgstr ""
1709
 
1710
- #: inc/order/lp-order-functions.php:742
1711
  #, php-format
1712
- msgid "Failed <span class=\"count\">(%s)</span>"
1713
- msgid_plural "Failed <span class=\"count\">(%s)</span>"
1714
- msgstr[0] ""
1715
- msgstr[1] ""
1716
-
1717
- #: inc/order/lp-order-functions.php:751
1718
- msgid ""
1719
- "Order received in case user buy a course but doesn't finalise the order."
1720
  msgstr ""
1721
 
1722
- #: inc/order/lp-order-functions.php:752
1723
- msgid "Payment received and the order is awaiting fulfillment."
1724
  msgstr ""
1725
 
1726
- #: inc/order/lp-order-functions.php:753
1727
- msgid "Order fulfilled and complete."
1728
  msgstr ""
1729
 
1730
- #: inc/order/lp-order-functions.php:754
1731
- msgid "The order is cancelled by an admin or the customer."
1732
  msgstr ""
1733
 
1734
- #: inc/order/lp-order-functions.php:792
1735
- #, php-format
1736
- msgid "Order number <strong>%s</strong> not found"
1737
  msgstr ""
1738
 
1739
- #: inc/order/lp-order-functions.php:795
1740
- msgid "Order cancelled by customer"
1741
  msgstr ""
1742
 
1743
- #: inc/order/lp-order-functions.php:798
1744
- #, php-format
1745
- msgid "Order number <strong>%s</strong> has been cancelled"
1746
  msgstr ""
1747
 
1748
- #: inc/order/lp-order-functions.php:801
1749
- #, php-format
1750
- msgid "Order number <strong>%s</strong> can not be cancelled"
1751
  msgstr ""
1752
 
1753
- #: inc/order/lp-order-functions.php:839
1754
- #, php-format
1755
- msgid "You have enrolled in this course. <a href=\"%s\">Order details</a>"
1756
  msgstr ""
1757
 
1758
- #: inc/course/lp-course-functions.php:187
1759
- msgctxt "slug"
1760
- msgid "uncategorized"
1761
  msgstr ""
1762
 
1763
- #: inc/course/lp-course-functions.php:235
1764
- #, php-format
1765
- msgid "The course %d does not exists"
1766
  msgstr ""
1767
 
1768
- #: inc/course/lp-course-functions.php:869
1769
- msgid "Edit this item"
1770
  msgstr ""
1771
 
1772
- #: inc/course/lp-course-functions.php:948
1773
- #: inc/custom-post-types/abstract.php:795
1774
- #: inc/custom-post-types/lesson.php:319
1775
- #: inc/custom-post-types/quiz.php:382
1776
- #: templates/single-course/section/item-meta.php:25
1777
- msgid "Preview"
1778
  msgstr ""
1779
 
1780
- #: inc/course/lp-course-functions.php:951
1781
- msgid "Permalink only available if the item is already assigned to a course."
1782
  msgstr ""
1783
 
1784
- #: inc/course/lp-course-functions.php:1169
1785
- #, php-format
1786
- msgid "Welcome back, %s"
1787
  msgstr ""
1788
 
1789
- #: inc/course/abstract-course.php:485
1790
- msgid "You enrolled"
1791
  msgstr ""
1792
 
1793
- #: inc/course/abstract-course.php:488
1794
- #, php-format
1795
- msgctxt "students-html"
1796
- msgid "You and one student enrolled"
1797
- msgid_plural ""
1798
- "You and <span class=\"course-students-number\">%1$s</span> students enrolled"
1799
- msgstr[0] ""
1800
- msgstr[1] ""
1801
-
1802
- #: inc/course/abstract-course.php:499
1803
- #, php-format
1804
- msgctxt "students-html"
1805
- msgid "One student enrolled"
1806
- msgid_plural ""
1807
- "<span class=\"course-students-number\">%1$s</span> students enrolled"
1808
- msgstr[0] ""
1809
- msgstr[1] ""
1810
 
1811
- #: inc/course/abstract-course.php:502
1812
- msgid "No student enrolled"
1813
  msgstr ""
1814
 
1815
- #: inc/course/abstract-course.php:673
1816
- #: inc/custom-post-types/course.php:1374
1817
- #: inc/admin/lp-admin-functions.php:1035
1818
- #: inc/admin/lp-admin-functions.php:2118
1819
- #: inc/admin/views/statistics/courses.php:46
1820
- #: inc/admin/views/statistics/general.php:63
1821
- msgid "Free"
1822
  msgstr ""
1823
 
1824
- #: inc/course/abstract-course.php:754
1825
- #: inc/course/abstract-course.php:773
1826
- #: inc/quiz/class-lp-quiz.php:552
1827
- #: inc/lesson/class-lp-lesson.php:104
1828
- #, php-format
1829
- msgid "The function %s doesn't exist"
1830
  msgstr ""
1831
 
1832
- #: inc/course/abstract-course.php:1586
1833
  #, php-format
1834
- msgid "This course will end within next %s"
1835
  msgstr ""
1836
 
1837
- #: inc/course/abstract-course.php:1662
1838
- msgctxt "Text of Buy this course with external link"
1839
- msgid "Buy this course"
1840
  msgstr ""
1841
 
1842
- #: inc/course/abstract-course.php:1713
1843
- msgid "Tags: "
 
 
 
1844
  msgstr ""
1845
 
1846
- #: inc/custom-post-types/order.php:473
1847
- msgid "Order number, user name, user email, course name etc..."
 
1848
  msgstr ""
1849
 
1850
- #: inc/custom-post-types/order.php:634
1851
- msgid "Processing..."
 
1852
  msgstr ""
1853
 
1854
- #: inc/custom-post-types/order.php:651
1855
- #: inc/custom-post-types/order.php:654
1856
- msgid "Apply"
1857
  msgstr ""
1858
 
1859
- #: inc/custom-post-types/order.php:692
1860
- #: inc/custom-post-types/order.php:909
1861
- msgid "View Order"
 
1862
  msgstr ""
1863
 
1864
- #: inc/custom-post-types/order.php:700
1865
- msgid "View child orders"
1866
  msgstr ""
1867
 
1868
- #: inc/custom-post-types/order.php:768
1869
- #: inc/custom-post-types/order.php:905
1870
- #: templates/profile/tabs/orders/list.php:32
1871
- msgid "Order"
1872
  msgstr ""
1873
 
1874
- #: inc/custom-post-types/order.php:769
1875
- msgid "Student"
1876
  msgstr ""
1877
 
1878
- #: inc/custom-post-types/order.php:771
1879
- #: templates/checkout/order-received.php:62
1880
- #: templates/profile/tabs/quizzes.php:39
1881
- #: templates/profile/tabs/courses.php:33
1882
- #: inc/admin/views/statistics/orders.php:46
1883
- #: templates/profile/tabs/courses/purchased.php:39
1884
- #: templates/profile/tabs/orders/list.php:33
1885
- #: inc/admin/views/meta-boxes/order/details.php:38
1886
- msgid "Date"
1887
  msgstr ""
1888
 
1889
- #: inc/custom-post-types/order.php:772
1890
- #: templates/order/order-details.php:29
1891
- #: templates/order/order-details.php:85
1892
- #: templates/emails/order-items-table.php:96
1893
- #: templates/checkout/review-order.php:33
1894
- #: templates/checkout/review-order.php:162
1895
- #: templates/checkout/order-received.php:68
1896
- #: templates/emails/plain/order-items-table.php:60
1897
- #: templates/profile/tabs/orders/list.php:35
1898
- #: inc/admin/views/meta-boxes/order/details.php:158
1899
- msgid "Total"
1900
  msgstr ""
1901
 
1902
- #: inc/custom-post-types/order.php:837
1903
- #: inc/admin/class-lp-plugin-install-list-table.php:455
1904
- #, php-format
1905
- msgid "%s ago"
1906
  msgstr ""
1907
 
1908
- #: inc/custom-post-types/order.php:851
1909
- #: templates/checkout/order-received.php:43
1910
- msgid "Course does not exist"
1911
  msgstr ""
1912
 
1913
- #: inc/custom-post-types/order.php:853
1914
- msgid "Deleted"
 
1915
  msgstr ""
1916
 
1917
- #: inc/custom-post-types/order.php:868
1918
- #: templates/checkout/order-received.php:57
1919
- msgid "(No item)"
1920
  msgstr ""
1921
 
1922
- #: inc/custom-post-types/order.php:876
1923
- #, php-format
1924
- msgid "Pay via <strong>%s</strong>"
1925
  msgstr ""
1926
 
1927
- #: inc/custom-post-types/order.php:906
1928
- msgid "Add New Order"
 
1929
  msgstr ""
1930
 
1931
- #: inc/custom-post-types/order.php:907
1932
- #: inc/custom-post-types/order.php:990
1933
- #: templates/order/order-details.php:23
1934
- msgid "Order Details"
1935
  msgstr ""
1936
 
1937
- #: inc/custom-post-types/order.php:910
1938
- #: inc/custom-post-types/question.php:191
1939
- #: inc/custom-post-types/lesson.php:188
1940
- #: inc/custom-post-types/course.php:137
1941
- msgid "Add New"
1942
  msgstr ""
1943
 
1944
- #: inc/custom-post-types/order.php:911
1945
- msgid "Update Order"
1946
  msgstr ""
1947
 
1948
- #: inc/custom-post-types/order.php:912
1949
- msgid "Search Orders"
1950
  msgstr ""
1951
 
1952
- #: inc/custom-post-types/order.php:913
1953
- msgid "No order found"
1954
  msgstr ""
1955
 
1956
- #: inc/custom-post-types/order.php:914
1957
- msgid "No order found in Trash"
1958
  msgstr ""
1959
 
1960
- #: inc/custom-post-types/order.php:991
1961
- msgid "Order Actions"
1962
  msgstr ""
1963
 
1964
- #: inc/custom-post-types/question.php:64
1965
- #: inc/custom-post-types/lesson.php:98
1966
- #: inc/custom-post-types/quiz.php:64
1967
- #, php-format
1968
- msgid "Unassigned %s"
1969
  msgstr ""
1970
 
1971
- #: inc/custom-post-types/question.php:148
1972
- #: inc/custom-post-types/quiz.php:180
1973
- #: inc/question/class-lp-question.php:594
1974
- msgid "New Option"
1975
  msgstr ""
1976
 
1977
- #: inc/custom-post-types/question.php:163
1978
- #: inc/updates/_update-from-0.9.php:1216
1979
- msgid "Question Tag"
1980
  msgstr ""
1981
 
1982
- #: inc/custom-post-types/question.php:164
1983
- #: inc/custom-post-types/question.php:165
1984
- #: inc/custom-post-types/course.php:211
1985
- #: inc/updates/_update-from-0.9.php:1194
1986
- #: inc/updates/_update-from-0.9.php:1195
1987
- #: inc/updates/_update-from-0.9.php:1196
1988
- #: inc/updates/_update-from-0.9.php:1217
1989
- #: inc/updates/_update-from-0.9.php:1218
1990
- msgid "Tag"
1991
  msgstr ""
1992
 
1993
- #: inc/custom-post-types/question.php:166
1994
- #: inc/updates/_update-from-0.9.php:1197
1995
- #: inc/updates/_update-from-0.9.php:1219
1996
- msgid "Add New Tag"
 
1997
  msgstr ""
1998
 
1999
- #: inc/custom-post-types/question.php:167
2000
- #: inc/updates/_update-from-0.9.php:1198
2001
- #: inc/updates/_update-from-0.9.php:1220
2002
- msgid "All Tags"
2003
  msgstr ""
2004
 
2005
- #: inc/custom-post-types/question.php:185
2006
- #: inc/custom-post-types/question.php:186
2007
- msgid "Question Bank"
2008
  msgstr ""
2009
 
2010
- #: inc/custom-post-types/question.php:187
2011
- #: inc/custom-post-types/quiz.php:183
2012
- #: templates/content-quiz/progress.php:43
2013
- msgid "Question"
2014
  msgstr ""
2015
 
2016
- #: inc/custom-post-types/question.php:188
2017
- #: inc/custom-post-types/quiz.php:184
2018
- #: inc/custom-post-types/quiz.php:380
2019
- #: templates/content-quiz/intro.php:36
2020
- #: inc/admin/views/quiz/editor.php:16
2021
- #: inc/admin/views/quiz/modal-choose-items.php:55
2022
- msgid "Questions"
2023
- msgstr ""
 
2024
 
2025
- #: inc/custom-post-types/question.php:189
2026
- msgid "View Question"
 
2027
  msgstr ""
2028
 
2029
- #: inc/custom-post-types/question.php:190
2030
- msgid "Add New Question"
2031
  msgstr ""
2032
 
2033
- #: inc/custom-post-types/question.php:192
2034
- msgid "Edit Question"
2035
  msgstr ""
2036
 
2037
- #: inc/custom-post-types/question.php:193
2038
- msgid "Update Question"
2039
  msgstr ""
2040
 
2041
- #: inc/custom-post-types/question.php:194
2042
- msgid "Search Questions"
2043
  msgstr ""
2044
 
2045
- #: inc/custom-post-types/question.php:195
2046
- msgid "No questions found"
2047
  msgstr ""
2048
 
2049
- #: inc/custom-post-types/question.php:196
2050
- msgid "No questions found in trash"
2051
  msgstr ""
2052
 
2053
- #: inc/custom-post-types/question.php:298
2054
- #: inc/admin/views/quiz/question-meta.php:31
2055
- msgid "Mark for this question"
2056
  msgstr ""
2057
 
2058
- #: inc/custom-post-types/question.php:302
2059
- #: inc/admin/views/quiz/question-meta.php:37
2060
- msgid "Mark for choosing the right answer."
2061
  msgstr ""
2062
 
2063
- #: inc/custom-post-types/question.php:307
2064
- #: inc/admin/views/quiz/question-meta.php:43
2065
- msgid "Question Explanation"
2066
  msgstr ""
2067
 
2068
- #: inc/custom-post-types/question.php:310
2069
- #: inc/admin/views/quiz/question-meta.php:51
2070
- msgid ""
2071
- "Explain why an option is true and other is false. The text will be shown "
2072
- "when user click on 'Check answer' button."
2073
  msgstr ""
2074
 
2075
- #: inc/custom-post-types/question.php:314
2076
- #: inc/admin/views/quiz/question-meta.php:57
2077
- msgid "Question Hint"
2078
  msgstr ""
2079
 
2080
- #: inc/custom-post-types/question.php:317
2081
- #: inc/admin/views/quiz/question-meta.php:64
2082
- msgid ""
2083
- "Instruction for user to select the right answer. The text will be shown when "
2084
- "users click the 'Hint' button."
2085
  msgstr ""
2086
 
2087
- #: inc/custom-post-types/question.php:336
2088
- #: inc/custom-post-types/lesson.php:310
2089
- #: inc/custom-post-types/course.php:939
2090
- #: inc/custom-post-types/course.php:951
2091
- #: inc/custom-post-types/course.php:1294
2092
- #: inc/custom-post-types/course.php:1301
2093
- #: inc/custom-post-types/quiz.php:378
2094
- msgid "Author"
2095
  msgstr ""
2096
 
2097
- #: inc/custom-post-types/question.php:338
2098
- #: inc/admin/views/settings/payments.php:24
2099
- #: inc/admin/views/quiz/editor.php:30
2100
- msgid "Type"
2101
  msgstr ""
2102
 
2103
- #: inc/custom-post-types/question.php:374
2104
- #: inc/custom-post-types/abstract.php:580
2105
- #: inc/admin/class-lp-install-sample-data.php:132
2106
- #: inc/attributes/course.php:232
2107
- #: templates/content-lesson/no-content.php:22
2108
- msgid "Edit"
2109
  msgstr ""
2110
 
2111
- #: inc/custom-post-types/question.php:379
2112
- #: inc/custom-post-types/abstract.php:595
2113
- #: inc/admin/views/meta-boxes/course/assigned.php:27
2114
- #: inc/admin/views/meta-boxes/quiz/assigned.php:49
2115
- msgid "Not assigned yet"
2116
  msgstr ""
2117
 
2118
- #: inc/custom-post-types/question.php:529
2119
- #: inc/custom-post-types/lesson.php:471
2120
- #: inc/custom-post-types/quiz.php:617
2121
- msgid "Assigned"
2122
  msgstr ""
2123
 
2124
- #: inc/custom-post-types/abstract.php:144
2125
- #: inc/custom-post-types/abstract.php:160
2126
- msgid "Search by user"
2127
  msgstr ""
2128
 
2129
- #: inc/custom-post-types/abstract.php:211
2130
- msgid ""
2131
- "This item has already assigned to course. It will be removed from course if "
2132
- "it is not published."
2133
  msgstr ""
2134
 
2135
- #: inc/custom-post-types/abstract.php:222
2136
- msgid ""
2137
- "This question has already assigned to quiz. It will be removed from quiz if "
2138
- "it is not published."
2139
  msgstr ""
2140
 
2141
- #: inc/custom-post-types/abstract.php:556
2142
- #: inc/custom-post-types/quiz.php:379
2143
- #: inc/admin/lp-admin-functions.php:44
2144
- #: templates/order/order-details.php:28
2145
- #: templates/emails/order-items-table.php:66
2146
- #: templates/checkout/review-order.php:32
2147
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:22
2148
- #: templates/profile/tabs/quizzes.php:37
2149
- #: templates/profile/tabs/courses.php:32
2150
- #: inc/admin/meta-box/fields/course-permalink.php:47
2151
- #: inc/admin/views/statistics/orders.php:47
2152
- #: templates/profile/tabs/courses/purchased.php:38
2153
- #: inc/admin/views/settings/fields/course-permalink.php:31
2154
- msgid "Course"
2155
  msgstr ""
2156
 
2157
- #: inc/custom-post-types/abstract.php:562
2158
- #, php-format
2159
- msgid "Course (%d %s)"
2160
- msgid_plural "Course (%d %s)"
2161
- msgstr[0] ""
2162
- msgstr[1] ""
2163
-
2164
- #: inc/custom-post-types/abstract.php:589
2165
- msgid "Remove Filter"
2166
  msgstr ""
2167
 
2168
- #: inc/custom-post-types/abstract.php:754
2169
- #: inc/custom-post-types/abstract.php:757
2170
- msgid "updated."
2171
  msgstr ""
2172
 
2173
- #: inc/custom-post-types/abstract.php:755
2174
- msgid "Custom field updated."
 
2175
  msgstr ""
2176
 
2177
- #: inc/custom-post-types/abstract.php:756
2178
- msgid "Custom field deleted."
 
2179
  msgstr ""
2180
 
2181
- #: inc/custom-post-types/abstract.php:759
2182
- #, php-format
2183
- msgid "Lesson restored to revision from %s"
2184
  msgstr ""
2185
 
2186
- #: inc/custom-post-types/abstract.php:760
2187
- msgid "published."
 
2188
  msgstr ""
2189
 
2190
- #: inc/custom-post-types/abstract.php:761
2191
- msgid "saved."
2192
  msgstr ""
2193
 
2194
- #: inc/custom-post-types/abstract.php:762
2195
- msgid "submitted."
 
2196
  msgstr ""
2197
 
2198
- #: inc/custom-post-types/abstract.php:764
2199
  #, php-format
2200
- msgid "scheduled for: <strong>%1$s</strong>."
 
 
 
2201
  msgstr ""
2202
 
2203
- #: inc/custom-post-types/abstract.php:766
2204
- msgid "M j, Y @ G:i"
2205
  msgstr ""
2206
 
2207
- #: inc/custom-post-types/abstract.php:768
2208
- msgid "draft updated."
 
2209
  msgstr ""
2210
 
2211
- #: inc/custom-post-types/lesson.php:114
2212
  #, php-format
2213
- msgid "Preview %s"
 
 
 
2214
  msgstr ""
2215
 
2216
- #: inc/custom-post-types/lesson.php:131
2217
  #, php-format
2218
- msgid "No Preview %s"
 
 
 
2219
  msgstr ""
2220
 
2221
- #: inc/custom-post-types/lesson.php:182
2222
- #: inc/custom-post-types/lesson.php:183
2223
- #: inc/custom-post-types/lesson.php:186
2224
- #: templates/widgets/course-info/default.php:29
2225
- msgid "Lessons"
2226
  msgstr ""
2227
 
2228
- #: inc/custom-post-types/lesson.php:185
2229
- msgid "Add New Lesson"
2230
  msgstr ""
2231
 
2232
- #: inc/custom-post-types/lesson.php:187
2233
- msgid "View Lesson"
2234
  msgstr ""
2235
 
2236
- #: inc/custom-post-types/lesson.php:189
2237
- msgid "Edit Lesson"
 
2238
  msgstr ""
2239
 
2240
- #: inc/custom-post-types/lesson.php:190
2241
- msgid "Update Lesson"
 
 
 
 
 
 
 
2242
  msgstr ""
2243
 
2244
- #: inc/custom-post-types/lesson.php:191
2245
- msgid "Search Lessons"
 
 
 
2246
  msgstr ""
2247
 
2248
- #: inc/custom-post-types/lesson.php:192
2249
- msgid "No lesson found"
 
2250
  msgstr ""
2251
 
2252
- #: inc/custom-post-types/lesson.php:193
2253
- msgid "No lesson found in Trash"
 
 
2254
  msgstr ""
2255
 
2256
- #: inc/custom-post-types/lesson.php:227
2257
- msgid "Lesson Settings"
2258
  msgstr ""
2259
 
2260
- #: inc/custom-post-types/lesson.php:231
2261
- msgid "Lesson Duration"
2262
- msgstr ""
 
 
 
2263
 
2264
- #: inc/custom-post-types/lesson.php:235
2265
- msgid "Duration of the lesson. Set 0 to disable."
 
 
 
 
2266
  msgstr ""
2267
 
2268
- #: inc/custom-post-types/lesson.php:239
2269
- msgid "Preview Lesson"
 
2270
  msgstr ""
2271
 
2272
- #: inc/custom-post-types/lesson.php:242
2273
- msgid ""
2274
- "If this is a preview lesson, then student can view this lesson content "
2275
- "without taking the course."
2276
  msgstr ""
2277
 
2278
- #: inc/custom-post-types/lesson.php:315
2279
- msgid "Format"
2280
  msgstr ""
2281
 
2282
- #: inc/custom-post-types/lesson.php:316
2283
- #: inc/custom-post-types/course.php:584
2284
- #: inc/custom-post-types/quiz.php:263
2285
- #: inc/custom-post-types/quiz.php:381
2286
- #: templates/content-quiz/intro.php:28
2287
- msgid "Duration"
2288
  msgstr ""
2289
 
2290
- #: inc/custom-post-types/lesson.php:359
2291
- msgid "Standard"
2292
  msgstr ""
2293
 
2294
- #: inc/custom-post-types/lesson.php:429
2295
- msgid "Please enter the title of the lesson"
2296
  msgstr ""
2297
 
2298
- #: inc/custom-post-types/course.php:100
2299
- msgid "Create a new"
 
2300
  msgstr ""
2301
 
2302
- #: inc/custom-post-types/course.php:101
2303
- #: inc/custom-post-types/quiz.php:178
2304
- #: templates/checkout/payment.php:132
2305
- #: templates/checkout/form.php:89
2306
- #: inc/admin/views/setup/content.php:75
2307
- #: inc/admin/views/updates/update-screen.php:46
2308
- msgid "Back"
2309
  msgstr ""
2310
 
2311
- #: inc/custom-post-types/course.php:102
2312
- #: inc/custom-post-types/quiz.php:179
2313
- #: inc/admin/views/course/modal-choose-items.php:57
2314
- #: inc/admin/views/quiz/modal-choose-items.php:52
2315
- msgid "Selected items"
2316
  msgstr ""
2317
 
2318
- #: inc/custom-post-types/course.php:103
2319
- msgid "Do you want to remove item \"{{ITEM_NAME}}\" to trash?"
 
2320
  msgstr ""
2321
 
2322
- #: inc/custom-post-types/course.php:105
2323
- #: templates/checkout/order-received.php:35
2324
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:436
2325
- #: inc/admin/views/meta-boxes/order/details.php:125
2326
- msgid "Item"
2327
  msgstr ""
2328
 
2329
- #: inc/custom-post-types/course.php:106
2330
- msgid "Items"
 
2331
  msgstr ""
2332
 
2333
- #: inc/custom-post-types/course.php:108
2334
- msgid "Course sale price must less than the regular price"
 
 
2335
  msgstr ""
2336
 
2337
- #: inc/custom-post-types/course.php:109
2338
- msgid "Course price must greater than the sale price"
2339
  msgstr ""
2340
 
2341
- #: inc/custom-post-types/course.php:110
2342
- msgid "Sale start date must before sale end date"
 
 
2343
  msgstr ""
2344
 
2345
- #: inc/custom-post-types/course.php:111
2346
- msgid "Sale end date must before sale start date"
 
 
 
2347
  msgstr ""
2348
 
2349
- #: inc/custom-post-types/course.php:112
2350
- msgid "Invalid date"
 
2351
  msgstr ""
2352
 
2353
- #: inc/custom-post-types/course.php:130
2354
- msgctxt "Post Type General Name"
2355
- msgid "Courses"
2356
  msgstr ""
2357
 
2358
- #: inc/custom-post-types/course.php:131
2359
- msgctxt "Post Type Singular Name"
2360
- msgid "Course"
2361
  msgstr ""
2362
 
2363
- #: inc/custom-post-types/course.php:132
2364
- #: inc/custom-post-types/course.php:134
2365
- #: inc/admin/lp-admin-actions.php:206
2366
- #: inc/admin/class-lp-admin.php:277
2367
- #: inc/user/class-lp-profile.php:299
2368
- #: inc/admin/settings/class-lp-settings-profile.php:149
2369
- #: inc/admin/settings/class-lp-settings-profile.php:274
2370
- #: inc/admin/settings/class-lp-settings-courses.php:12
2371
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:21
2372
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:28
2373
- #: inc/admin/views/tools/course/html-user.php:30
2374
- #: inc/admin/views/setup/steps/pages.php:22
2375
- msgid "Courses"
2376
  msgstr ""
2377
 
2378
- #: inc/custom-post-types/course.php:133
2379
- msgid "Parent Item:"
2380
  msgstr ""
2381
 
2382
- #: inc/custom-post-types/course.php:135
2383
- msgid "View Course"
2384
  msgstr ""
2385
 
2386
- #: inc/custom-post-types/course.php:136
2387
- msgid "Add New Course"
 
 
 
2388
  msgstr ""
2389
 
2390
- #: inc/custom-post-types/course.php:138
2391
- msgid "Edit Course"
 
2392
  msgstr ""
2393
 
2394
- #: inc/custom-post-types/course.php:139
2395
- msgid "Update Course"
 
2396
  msgstr ""
2397
 
2398
- #: inc/custom-post-types/course.php:140
2399
- msgid "Search Courses"
 
2400
  msgstr ""
2401
 
2402
- #: inc/custom-post-types/course.php:141
2403
- #, php-format
2404
- msgid ""
2405
- "You haven't had any courses yet. Click <a href=\"%s\">Add new</a> to start"
2406
  msgstr ""
2407
 
2408
- #: inc/custom-post-types/course.php:142
2409
- msgid "No course found in Trash"
 
2410
  msgstr ""
2411
 
2412
- #: inc/custom-post-types/course.php:145
2413
- #: inc/admin/settings/class-lp-settings-courses.php:24
2414
- msgctxt "slug"
2415
- msgid "courses"
2416
  msgstr ""
2417
 
2418
- #: inc/custom-post-types/course.php:182
2419
- #: inc/custom-post-types/course.php:184
2420
- msgid "Course Categories"
2421
  msgstr ""
2422
 
2423
- #: inc/custom-post-types/course.php:185
2424
- #: inc/custom-post-types/course.php:186
2425
- msgid "Category"
2426
  msgstr ""
2427
 
2428
- #: inc/custom-post-types/course.php:187
2429
- msgid "Add New Course Category"
 
2430
  msgstr ""
2431
 
2432
- #: inc/custom-post-types/course.php:188
2433
- msgid "All Categories"
 
2434
  msgstr ""
2435
 
2436
- #: inc/custom-post-types/course.php:199
2437
- msgctxt "slug"
2438
- msgid "course-category"
2439
  msgstr ""
2440
 
2441
- #: inc/custom-post-types/course.php:210
2442
- msgid "Course Tags"
2443
  msgstr ""
2444
 
2445
- #: inc/custom-post-types/course.php:212
2446
- msgid "Search Course Tags"
 
2447
  msgstr ""
2448
 
2449
- #: inc/custom-post-types/course.php:213
2450
- msgid "Popular Course Tags"
 
 
 
 
2451
  msgstr ""
2452
 
2453
- #: inc/custom-post-types/course.php:214
2454
- msgid "All Course Tags"
 
2455
  msgstr ""
2456
 
2457
- #: inc/custom-post-types/course.php:217
2458
- msgid "Edit Course Tag"
 
 
2459
  msgstr ""
2460
 
2461
- #: inc/custom-post-types/course.php:218
2462
- msgid "Update Course Tag"
 
 
2463
  msgstr ""
2464
 
2465
- #: inc/custom-post-types/course.php:219
2466
- msgid "Add New Course Tag"
 
 
2467
  msgstr ""
2468
 
2469
- #: inc/custom-post-types/course.php:220
2470
- msgid "New Course Tag Name"
 
 
2471
  msgstr ""
2472
 
2473
- #: inc/custom-post-types/course.php:221
2474
- msgid "Separate tags with commas"
2475
  msgstr ""
2476
 
2477
- #: inc/custom-post-types/course.php:222
2478
- msgid "Add or remove tags"
2479
  msgstr ""
2480
 
2481
- #: inc/custom-post-types/course.php:223
2482
- msgid "Choose from the most used tags"
2483
  msgstr ""
2484
 
2485
- #: inc/custom-post-types/course.php:224
2486
- #: inc/admin/lp-admin-actions.php:217
2487
- msgid "Tags"
2488
  msgstr ""
2489
 
2490
- #: inc/custom-post-types/course.php:233
2491
- msgctxt "slug"
2492
- msgid "course-tag"
2493
  msgstr ""
2494
 
2495
- #: inc/custom-post-types/course.php:375
2496
- msgid "Sorry! You can not update a course while it is being viewed!"
2497
  msgstr ""
2498
 
2499
- #: inc/custom-post-types/course.php:562
2500
- msgid "Course Settings"
2501
  msgstr ""
2502
 
2503
- #: inc/custom-post-types/course.php:578
2504
- #: inc/user/class-lp-profile.php:330
2505
- #: inc/admin/settings/class-lp-settings-profile.php:54
2506
- #: inc/admin/settings/class-lp-settings-payments.php:55
2507
- #: inc/admin/settings/class-lp-settings-general.php:16
2508
- #: inc/admin/settings/class-lp-settings-general.php:40
2509
- #: inc/admin/settings/class-lp-settings-checkout.php:36
2510
- #: inc/admin/settings/class-lp-settings-courses.php:66
2511
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:26
2512
- msgid "General"
2513
  msgstr ""
2514
 
2515
- #: inc/custom-post-types/course.php:587
2516
- msgid "The duration of the course."
 
2517
  msgstr ""
2518
 
2519
- #: inc/custom-post-types/course.php:591
2520
- msgid "Maximum Students"
2521
  msgstr ""
2522
 
2523
- #: inc/custom-post-types/course.php:594
2524
- msgid "Maximum number of students who can enroll in this course."
2525
  msgstr ""
2526
 
2527
- #: inc/custom-post-types/course.php:598
2528
- msgid "Students Enrolled"
2529
  msgstr ""
2530
 
2531
- #: inc/custom-post-types/course.php:601
2532
- msgid "How many students have taken this course."
2533
  msgstr ""
2534
 
2535
- #: inc/custom-post-types/course.php:605
2536
- msgid "Re-take Course"
2537
  msgstr ""
2538
 
2539
- #: inc/custom-post-types/course.php:609
2540
- msgid ""
2541
- "How many times the user can re-take this course. Set to 0 to disable re-"
2542
- "taking"
2543
  msgstr ""
2544
 
2545
- #: inc/custom-post-types/course.php:613
2546
- msgid "Featured"
2547
  msgstr ""
2548
 
2549
- #: inc/custom-post-types/course.php:616
2550
- msgid "Set course as featured."
2551
  msgstr ""
2552
 
2553
- #: inc/custom-post-types/course.php:620
2554
- msgid "Block Lessons"
 
2555
  msgstr ""
2556
 
2557
- #: inc/custom-post-types/course.php:623
2558
- msgid "Block lessons content when completed course."
2559
  msgstr ""
2560
 
2561
- #: inc/custom-post-types/course.php:627
2562
- msgid "External Link"
2563
  msgstr ""
2564
 
2565
- #: inc/custom-post-types/course.php:630
2566
- msgid "Redirect to this url when you press button buy this course."
2567
  msgstr ""
2568
 
2569
- #: inc/custom-post-types/course.php:634
2570
- msgid "Show item links"
2571
  msgstr ""
2572
 
2573
- #: inc/custom-post-types/course.php:637
2574
- msgid "Enable link of course items in case user can not view content of them."
2575
  msgstr ""
2576
 
2577
- #: inc/custom-post-types/course.php:665
2578
- msgid "The method to assess the result of a student for a course."
2579
  msgstr ""
2580
 
2581
- #: inc/custom-post-types/course.php:668
2582
- msgid ""
2583
- "<br /><strong>Note! </strong>No final quiz in course, please add a final quiz"
2584
  msgstr ""
2585
 
2586
- #: inc/custom-post-types/course.php:685
2587
- msgid ""
2588
- "This is conditional \"passing grade\" of Final quiz will apply for result of "
2589
- "this course. When you change it here, the \"passing grade\" also change with "
2590
- "new value for the Final quiz."
2591
  msgstr ""
2592
 
2593
- #: inc/custom-post-types/course.php:691
2594
- msgid ""
2595
- "<p>Evaluate by number of lessons completed per number of total lessons.</p>"
2596
  msgstr ""
2597
 
2598
- #: inc/custom-post-types/course.php:692
2599
- msgid ""
2600
- "E.g: Course has 10 lessons and user completed 5 lessons then the result = "
2601
- "5/10 = 50.%"
2602
  msgstr ""
2603
 
2604
- #: inc/custom-post-types/course.php:693
2605
- msgid ""
2606
- "Evaluate by results of final quiz in course. You have to add a quiz into end "
2607
- "of course."
 
 
 
 
 
 
 
 
2608
  msgstr ""
2609
 
2610
- #: inc/custom-post-types/course.php:694
2611
- msgid ""
2612
- "Evaluate by achieved points of completed quizzes per total point of all "
2613
- "quizzes."
2614
  msgstr ""
2615
 
2616
- #: inc/custom-post-types/course.php:695
2617
- msgid ""
2618
- "Evaluate by achieved points of quizzes passed per total point of all quizzes."
2619
  msgstr ""
2620
 
2621
- #: inc/custom-post-types/course.php:696
2622
- msgid ""
2623
- "<p>Evaluate by number of quizzes completed per number of total quizzes.</p>"
2624
  msgstr ""
2625
 
2626
- #: inc/custom-post-types/course.php:697
2627
- msgid ""
2628
- "<p>E.g: Course has 10 quizzes and user completed 5 quizzes then the result = "
2629
- "5/10 = 50%.</p>"
2630
  msgstr ""
2631
 
2632
- #: inc/custom-post-types/course.php:704
2633
- msgid "Assessment"
2634
  msgstr ""
2635
 
2636
- #: inc/custom-post-types/course.php:710
2637
- msgid "Course result"
2638
  msgstr ""
2639
 
2640
- #: inc/custom-post-types/course.php:715
2641
- msgid "Evaluate via lessons"
2642
  msgstr ""
2643
 
2644
- #: inc/custom-post-types/course.php:717
2645
- msgid "Evaluate via results of the final quiz"
2646
  msgstr ""
2647
 
2648
- #: inc/custom-post-types/course.php:720
2649
- msgid "Evaluate via results of quizzes"
2650
  msgstr ""
2651
 
2652
- #: inc/custom-post-types/course.php:722
2653
- msgid "Evaluate via results of quizzes passed"
2654
  msgstr ""
2655
 
2656
- #: inc/custom-post-types/course.php:724
2657
- msgid "Evaluate via quizzes"
2658
  msgstr ""
2659
 
2660
- #: inc/custom-post-types/course.php:731
2661
- msgid "Passing condition value"
2662
  msgstr ""
2663
 
2664
- #: inc/custom-post-types/course.php:736
2665
- msgid ""
2666
- "The percentage of quiz result or completed lessons to finish the course."
2667
  msgstr ""
2668
 
2669
- #: inc/custom-post-types/course.php:767
2670
- msgid "Pricing"
 
2671
  msgstr ""
2672
 
2673
- #: inc/custom-post-types/course.php:799
2674
- #, php-format
2675
- msgid ""
2676
- "This course requires enrollment and the suggested price is <strong>"
2677
- "%s</strong>"
2678
  msgstr ""
2679
 
2680
- #: inc/custom-post-types/course.php:807
2681
- msgid "This course is free."
 
 
 
 
 
2682
  msgstr ""
2683
 
2684
- #: inc/custom-post-types/course.php:814
2685
- #, php-format
2686
- msgid "Course price in <strong>%s</strong> currency."
 
 
 
 
 
 
2687
  msgstr ""
2688
 
2689
- #: inc/custom-post-types/course.php:828
2690
- #: inc/custom-post-types/course.php:1297
2691
- #: inc/custom-post-types/course.php:1304
2692
- #: templates/emails/order-items-table.php:68
2693
- msgid "Price"
2694
  msgstr ""
2695
 
2696
- #: inc/custom-post-types/course.php:838
2697
- msgid "Sale Price"
 
 
 
 
2698
  msgstr ""
2699
 
2700
- #: inc/custom-post-types/course.php:845
2701
- #, php-format
2702
- msgid "Course sale price in <strong>%s</strong> currency."
 
2703
  msgstr ""
2704
 
2705
- #: inc/custom-post-types/course.php:846
2706
- msgid "Leave blank to remove sale price."
 
 
 
2707
  msgstr ""
2708
 
2709
- #: inc/custom-post-types/course.php:848
2710
- msgid "Schedule"
2711
  msgstr ""
2712
 
2713
- #: inc/custom-post-types/course.php:853
2714
- msgid "Sale start date"
2715
  msgstr ""
2716
 
2717
- #: inc/custom-post-types/course.php:861
2718
- msgid "Sale end date"
2719
  msgstr ""
2720
 
2721
- #: inc/custom-post-types/course.php:873
2722
- msgid "Price set by Admin"
 
2723
  msgstr ""
2724
 
2725
- #: inc/custom-post-types/course.php:877
2726
- msgid "Not set"
2727
  msgstr ""
2728
 
2729
- #: inc/custom-post-types/course.php:880
2730
- msgid "Course Suggestion Price"
2731
  msgstr ""
2732
 
2733
- #: inc/custom-post-types/course.php:885
2734
- msgid "The course price you want to suggest for admin to set."
2735
  msgstr ""
2736
 
2737
- #: inc/custom-post-types/course.php:896
2738
- #: inc/custom-post-types/course.php:1377
2739
- msgid "No requirement enroll"
2740
  msgstr ""
2741
 
2742
- #: inc/custom-post-types/course.php:899
2743
- msgid "Require users logged in to study or public to all."
2744
  msgstr ""
2745
 
2746
- #: inc/custom-post-types/course.php:971
2747
- msgid "Review Logs"
2748
  msgstr ""
2749
 
2750
- #: inc/custom-post-types/course.php:1020
2751
- msgid "Course Video"
2752
  msgstr ""
2753
 
2754
- #: inc/custom-post-types/course.php:1025
2755
- msgid "Video ID"
 
2756
  msgstr ""
2757
 
2758
- #: inc/custom-post-types/course.php:1028
2759
- msgid "The ID of Youtube or Vimeo video"
 
2760
  msgstr ""
2761
 
2762
- #: inc/custom-post-types/course.php:1032
2763
- msgid "Video Type"
 
2764
  msgstr ""
2765
 
2766
- #: inc/custom-post-types/course.php:1035
2767
- msgid "Chose video type"
 
2768
  msgstr ""
2769
 
2770
- #: inc/custom-post-types/course.php:1038
2771
- msgid "Youtube"
2772
  msgstr ""
2773
 
2774
- #: inc/custom-post-types/course.php:1039
2775
- msgid "Vimeo"
 
2776
  msgstr ""
2777
 
2778
- #: inc/custom-post-types/course.php:1043
2779
- msgid "Embed width"
 
2780
  msgstr ""
2781
 
2782
- #: inc/custom-post-types/course.php:1046
2783
- msgid "Set width of embed"
2784
  msgstr ""
2785
 
2786
- #: inc/custom-post-types/course.php:1050
2787
- msgid "Embed height"
 
 
2788
  msgstr ""
2789
 
2790
- #: inc/custom-post-types/course.php:1053
2791
- msgid "Set height of embed"
 
2792
  msgstr ""
2793
 
2794
- #: inc/custom-post-types/course.php:1175
2795
- msgid "Course has been approved by Reviewer"
 
 
2796
  msgstr ""
2797
 
2798
- #: inc/custom-post-types/course.php:1180
2799
- msgid "Course has been rejected by Reviewer"
 
2800
  msgstr ""
2801
 
2802
- #: inc/custom-post-types/course.php:1185
2803
  #, php-format
2804
- msgid "Course has been submitted by %s"
2805
  msgstr ""
2806
 
2807
- #: inc/custom-post-types/course.php:1190
2808
- msgid "Course has been updated by Reviewer"
2809
  msgstr ""
2810
 
2811
- #: inc/custom-post-types/course.php:1295
2812
- #: inc/custom-post-types/course.php:1302
2813
- msgid "Content"
2814
  msgstr ""
2815
 
2816
- #: inc/custom-post-types/course.php:1296
2817
- #: inc/custom-post-types/course.php:1303
2818
- #: inc/admin/lp-admin-functions.php:860
2819
- #: inc/admin/views/statistics/courses.php:8
2820
- #: inc/admin/views/statistics/users.php:8
2821
- #: inc/admin/views/statistics/users.php:47
2822
- #: inc/admin/views/statistics/general.php:8
2823
- #: inc/admin/views/statistics/orders.php:8
2824
- #: inc/admin/views/tools/course/html-course.php:30
2825
- msgid "Students"
2826
  msgstr ""
2827
 
2828
- #: inc/custom-post-types/course.php:1307
2829
- #: inc/admin/lp-admin-actions.php:212
2830
- msgid "Categories"
2831
  msgstr ""
2832
 
2833
- #: inc/custom-post-types/course.php:1335
2834
- #, php-format
2835
- msgid "<strong>%d</strong> section"
2836
- msgid_plural "<strong>%d</strong> sections"
2837
- msgstr[0] ""
2838
- msgstr[1] ""
 
2839
 
2840
- #: inc/custom-post-types/course.php:1357
2841
- msgid "No content"
 
 
 
2842
  msgstr ""
2843
 
2844
- #: inc/custom-post-types/quiz.php:90
2845
- #: inc/custom-post-types/quiz.php:91
2846
- #: inc/custom-post-types/quiz.php:95
2847
- #: inc/user/class-lp-profile.php:306
2848
- #: inc/admin/settings/class-lp-settings-profile.php:157
2849
- #: inc/admin/settings/class-lp-settings-profile.php:291
2850
- #: templates/widgets/course-info/default.php:34
2851
- msgid "Quizzes"
2852
  msgstr ""
2853
 
2854
- #: inc/custom-post-types/quiz.php:93
2855
- msgid "Add New Quiz"
 
2856
  msgstr ""
2857
 
2858
- #: inc/custom-post-types/quiz.php:94
2859
- msgid "Edit Quiz"
 
2860
  msgstr ""
2861
 
2862
- #: inc/custom-post-types/quiz.php:96
2863
- msgid "View Quiz"
 
2864
  msgstr ""
2865
 
2866
- #: inc/custom-post-types/quiz.php:97
2867
- #: inc/curds/class-lp-quiz-curd.php:85
2868
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:147
2869
- msgid "New Quiz"
2870
  msgstr ""
2871
 
2872
- #: inc/custom-post-types/quiz.php:98
2873
- msgid "Update Quiz"
 
 
 
2874
  msgstr ""
2875
 
2876
- #: inc/custom-post-types/quiz.php:99
2877
- msgid "Search Quizzes"
2878
  msgstr ""
2879
 
2880
- #: inc/custom-post-types/quiz.php:100
2881
  #, php-format
2882
  msgid ""
2883
- "You haven't had any quizzes yet. Click <a href=\"%s\">Add new</a> to start"
 
2884
  msgstr ""
2885
 
2886
- #: inc/custom-post-types/quiz.php:101
2887
- msgid "No quiz found in Trash"
 
 
 
 
2888
  msgstr ""
2889
 
2890
- #: inc/custom-post-types/quiz.php:176
2891
- msgid "Option"
 
2892
  msgstr ""
2893
 
2894
- #: inc/custom-post-types/quiz.php:181
2895
- msgid "Do you want to move question \"{{QUESTION_NAME}}\" to trash?"
2896
  msgstr ""
2897
 
2898
- #: inc/custom-post-types/quiz.php:226
2899
- msgid "General Settings"
2900
  msgstr ""
2901
 
2902
- #: inc/custom-post-types/quiz.php:232
2903
- msgid "Pagination Questions"
2904
  msgstr ""
2905
 
2906
- #: inc/custom-post-types/quiz.php:233
2907
- msgid ""
2908
- "Show list of questions while doing quiz as ordered numbers (1, 2, 3, etc)."
2909
  msgstr ""
2910
 
2911
- #: inc/custom-post-types/quiz.php:239
2912
- msgid "Review Questions"
 
2913
  msgstr ""
2914
 
2915
- #: inc/custom-post-types/quiz.php:242
2916
- msgid "Allow re-viewing questions after completing quiz."
 
 
2917
  msgstr ""
2918
 
2919
- #: inc/custom-post-types/quiz.php:246
2920
- msgid "Show Correct Answer"
 
 
2921
  msgstr ""
2922
 
2923
- #: inc/custom-post-types/quiz.php:249
2924
- msgid "Show correct answer when reviewing questions."
2925
  msgstr ""
2926
 
2927
- #: inc/custom-post-types/quiz.php:264
2928
- msgid "Duration of the quiz. Set 0 to disable."
2929
  msgstr ""
2930
 
2931
- #: inc/custom-post-types/quiz.php:279
2932
- msgid "Minus Points"
 
 
2933
  msgstr ""
2934
 
2935
- #: inc/custom-post-types/quiz.php:282
2936
- msgid "How many points minus for each wrong question in quiz."
2937
  msgstr ""
2938
 
2939
- #: inc/custom-post-types/quiz.php:288
2940
- msgid "Minus For Skip"
 
 
 
2941
  msgstr ""
2942
 
2943
- #: inc/custom-post-types/quiz.php:291
2944
- msgid "Minus points for skip questions."
 
2945
  msgstr ""
2946
 
2947
- #: inc/custom-post-types/quiz.php:305
2948
- msgid "Passing Grade (<span>%</span>)"
2949
  msgstr ""
2950
 
2951
- #: inc/custom-post-types/quiz.php:306
2952
- msgid "Requires user reached this point to pass the quiz."
2953
  msgstr ""
2954
 
2955
- #: inc/custom-post-types/quiz.php:315
2956
- msgid "Re-take"
2957
  msgstr ""
2958
 
2959
- #: inc/custom-post-types/quiz.php:318
2960
- msgid ""
2961
- "How many times the user can re-take this quiz. Set to 0 to disable re-taking."
2962
  msgstr ""
2963
 
2964
- #: inc/custom-post-types/quiz.php:323
2965
- msgid "Archive History"
2966
  msgstr ""
2967
 
2968
- #: inc/custom-post-types/quiz.php:326
2969
- msgid "Archive quiz results for each time."
2970
  msgstr ""
2971
 
2972
- #: inc/custom-post-types/quiz.php:340
2973
- msgid "Show Check Answer"
2974
  msgstr ""
2975
 
2976
- #: inc/custom-post-types/quiz.php:343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2977
  msgid ""
2978
- "Show button to check answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
2979
- "N = Number of check )."
2980
  msgstr ""
2981
 
2982
- #: inc/custom-post-types/quiz.php:349
2983
- msgid "Show Hint"
2984
  msgstr ""
2985
 
2986
- #: inc/custom-post-types/quiz.php:352
 
 
 
 
 
2987
  msgid ""
2988
- "Show button to hint answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
2989
- "N = Number of check )."
2990
  msgstr ""
2991
 
2992
- #: inc/custom-post-types/quiz.php:419
 
 
 
 
 
 
 
 
2993
  #, php-format
2994
- msgid "%d question"
2995
- msgid_plural "%d questions"
2996
  msgstr[0] ""
2997
  msgstr[1] ""
2998
 
2999
- #: inc/custom-post-types/quiz.php:419
3000
- msgid "This quiz has no questions"
3001
  msgstr ""
3002
 
3003
- #: inc/emails/class-lp-email-new-order-instructor.php:26
3004
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:27
3005
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:24
3006
- #: inc/emails/class-lp-email-finished-course-instructor.php:27
3007
- #: templates/single-course/tabs/instructor.php:22
3008
- msgid "Instructor"
3009
  msgstr ""
3010
 
3011
- #: inc/emails/class-lp-email-new-order-instructor.php:27
3012
- msgid "Send email to course's instructor when user has purchased course."
3013
  msgstr ""
3014
 
3015
- #: inc/emails/class-lp-email-new-order-instructor.php:29
3016
- #: inc/emails/class-lp-email-new-order-admin.php:30
3017
- msgid "New order placed on {{order_date}}"
3018
  msgstr ""
3019
 
3020
- #: inc/emails/class-lp-email-new-order-instructor.php:30
3021
- #: inc/emails/class-lp-email-new-order-admin.php:31
3022
- msgid "New user order"
3023
  msgstr ""
3024
 
3025
- #: inc/emails/class-lp-email-completed-order-guest.php:29
3026
- #: inc/emails/class-lp-email-cancelled-order-guest.php:27
3027
- #: inc/emails/class-lp-email-processing-order-guest.php:27
3028
- #: inc/emails/class-lp-email-new-order-guest.php:27
3029
- #: inc/admin/class-lp-admin-assets.php:39
3030
- msgid "Guest"
3031
  msgstr ""
3032
 
3033
- #: inc/emails/class-lp-email-completed-order-guest.php:30
3034
- #: inc/emails/class-lp-email-new-order-guest.php:28
3035
- msgid "Send email to the user who has bought course as guest."
3036
  msgstr ""
3037
 
3038
- #: inc/emails/class-lp-email-completed-order-guest.php:32
3039
- #: inc/emails/class-lp-email-completed-order-user.php:32
3040
- msgid "Your order on {{order_date}} has completed"
3041
  msgstr ""
3042
 
3043
- #: inc/emails/class-lp-email-completed-order-guest.php:33
3044
- #: inc/emails/class-lp-email-completed-order-user.php:33
3045
- msgid "Your order has completed"
3046
  msgstr ""
3047
 
3048
- #: inc/emails/class-lp-email-finished-course-admin.php:28
3049
- #: inc/emails/class-lp-email-cancelled-order-admin.php:27
3050
- #: inc/emails/class-lp-email-new-order-admin.php:27
3051
- #: inc/emails/class-lp-email-completed-order-admin.php:29
3052
- #: inc/emails/class-lp-email-enrolled-course-admin.php:28
3053
- msgid "Admin"
3054
  msgstr ""
3055
 
3056
- #: inc/emails/class-lp-email-finished-course-admin.php:29
3057
- msgid "Send this email to admin when user has finished course."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3058
  msgstr ""
3059
 
3060
- #: inc/emails/class-lp-email-finished-course-admin.php:30
3061
- #: inc/emails/class-lp-email-finished-course-instructor.php:30
3062
- msgid "{{user_display_name}} has finished course"
3063
  msgstr ""
3064
 
3065
- #: inc/emails/class-lp-email-finished-course-admin.php:31
3066
- #: inc/emails/class-lp-email-finished-course-instructor.php:31
3067
- msgid "User has finished course"
 
 
 
 
 
 
 
3068
  msgstr ""
3069
 
3070
- #: inc/emails/class-lp-email-instructor-accepted.php:26
3071
- msgid "Accepted"
3072
  msgstr ""
3073
 
3074
- #: inc/emails/class-lp-email-instructor-accepted.php:27
3075
- msgid "Become an instructor email accepted."
 
 
3076
  msgstr ""
3077
 
3078
- #: inc/emails/class-lp-email-instructor-accepted.php:29
3079
- msgid "[{{site_title}}] Your request to become an instructor accepted"
3080
  msgstr ""
3081
 
3082
- #: inc/emails/class-lp-email-instructor-accepted.php:30
3083
- msgid "Become an instructor accepted"
3084
  msgstr ""
3085
 
3086
- #: inc/emails/class-lp-email-cancelled-order-admin.php:28
3087
- msgid "Send email to admin when order has been cancelled."
3088
  msgstr ""
3089
 
3090
- #: inc/emails/class-lp-email-cancelled-order-admin.php:30
3091
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:27
3092
- msgid "Order placed on {{order_date}} has been cancelled"
3093
  msgstr ""
3094
 
3095
- #: inc/emails/class-lp-email-cancelled-order-admin.php:31
3096
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:28
3097
- msgid "User order has been cancelled"
3098
  msgstr ""
3099
 
3100
- #: inc/emails/class-lp-email-new-order-user.php:27
3101
- #: inc/emails/class-lp-email-finished-course-user.php:27
3102
- #: inc/emails/class-lp-email-enrolled-course-user.php:27
3103
- #: inc/emails/class-lp-email-completed-order-user.php:29
3104
- #: inc/emails/class-lp-email-processing-order-user.php:26
3105
- #: inc/emails/class-lp-email-cancelled-order-user.php:27
3106
- msgid "User"
3107
  msgstr ""
3108
 
3109
- #: inc/emails/class-lp-email-new-order-user.php:28
3110
- msgid "Send email to the user who has bought course."
 
3111
  msgstr ""
3112
 
3113
- #: inc/emails/class-lp-email-new-order-user.php:30
3114
- #: inc/emails/class-lp-email-processing-order-guest.php:30
3115
- #: inc/emails/class-lp-email-new-order-guest.php:30
3116
- #: inc/emails/class-lp-email-processing-order-user.php:29
3117
- msgid "Your order placed on {{order_date}}"
3118
  msgstr ""
3119
 
3120
- #: inc/emails/class-lp-email-new-order-user.php:31
3121
- #: inc/emails/class-lp-email-processing-order-guest.php:31
3122
- #: inc/emails/class-lp-email-new-order-guest.php:31
3123
- #: inc/emails/class-lp-email-processing-order-user.php:30
3124
- msgid "Thank you for your order"
3125
  msgstr ""
3126
 
3127
- #: inc/emails/class-lp-email-published-course.php:28
3128
- msgid "Approved course"
 
3129
  msgstr ""
3130
 
3131
- #: inc/emails/class-lp-email-published-course.php:29
3132
- msgid "Settings for email when a course is approved."
 
 
3133
  msgstr ""
3134
 
3135
- #: inc/emails/class-lp-email-published-course.php:34
3136
- msgid "[{{site_title}}] Your course {{course_name}} has been approved"
3137
  msgstr ""
3138
 
3139
- #: inc/emails/class-lp-email-published-course.php:35
3140
- msgid "Course approved"
3141
  msgstr ""
3142
 
3143
- #: inc/emails/class-lp-email-published-course.php:122
3144
- #: inc/emails/class-lp-email.php:996
3145
- #: inc/emails/class-lp-email-new-course.php:131
3146
- #: inc/emails/class-lp-email-user-order-completed.php:137
3147
- #: inc/emails/class-lp-email-rejected-course.php:119
3148
- #: inc/emails/class-lp-email-updated-course.php:164
3149
- #: inc/emails/class-lp-email-user-order-changed-status.php:136
3150
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:500
3151
- #: inc/admin/views/settings/payments.php:17
3152
- #: inc/admin/views/setup/setup-paypal.php:17
3153
- #: inc/admin/views/setup/setup-stripe.php:3
3154
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:25
3155
- msgid "Enable"
3156
  msgstr ""
3157
 
3158
- #: inc/emails/class-lp-email-published-course.php:128
3159
- #: inc/emails/class-lp-email.php:1019
3160
- #: inc/emails/class-lp-email-new-course.php:154
3161
- #: inc/emails/class-lp-email-user-order-completed.php:143
3162
- #: inc/emails/class-lp-email-rejected-course.php:125
3163
- #: inc/emails/class-lp-email-updated-course.php:170
3164
- #: inc/emails/class-lp-email-user-order-changed-status.php:142
3165
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:33
3166
- msgid "Subject"
3167
  msgstr ""
3168
 
3169
- #: inc/emails/class-lp-email-published-course.php:132
3170
- #: inc/emails/class-lp-email.php:1023
3171
- #: inc/emails/class-lp-email-new-course.php:158
3172
- #: inc/emails/class-lp-email-user-order-completed.php:147
3173
- #: inc/emails/class-lp-email-rejected-course.php:129
3174
- #: inc/emails/class-lp-email-updated-course.php:174
3175
- #: inc/emails/class-lp-email-user-order-changed-status.php:146
3176
- #, php-format
3177
- msgid "Email subject, default: <code>%s</code>."
3178
  msgstr ""
3179
 
3180
- #: inc/emails/class-lp-email-published-course.php:145
3181
- #: inc/emails/class-lp-email.php:1036
3182
- #: inc/emails/class-lp-email-new-course.php:171
3183
- #: inc/emails/class-lp-email-user-order-completed.php:160
3184
- #: inc/emails/class-lp-email-rejected-course.php:142
3185
- #: inc/emails/class-lp-email-updated-course.php:187
3186
- #: inc/emails/class-lp-email-user-order-changed-status.php:159
3187
- msgid "Heading"
3188
  msgstr ""
3189
 
3190
- #: inc/emails/class-lp-email-published-course.php:149
3191
- #: inc/emails/class-lp-email.php:1040
3192
- #: inc/emails/class-lp-email-new-course.php:175
3193
- #: inc/emails/class-lp-email-user-order-completed.php:164
3194
- #: inc/emails/class-lp-email-rejected-course.php:146
3195
- #: inc/emails/class-lp-email-updated-course.php:191
3196
- #: inc/emails/class-lp-email-user-order-changed-status.php:163
3197
- #, php-format
3198
- msgid "Email heading, default: <code>%s</code>."
3199
  msgstr ""
3200
 
3201
- #: inc/emails/class-lp-email-published-course.php:162
3202
- #: inc/emails/class-lp-email.php:1053
3203
- #: inc/emails/class-lp-email-new-course.php:188
3204
- #: inc/emails/class-lp-email-user-order-completed.php:177
3205
- #: inc/emails/class-lp-email-rejected-course.php:159
3206
- #: inc/emails/class-lp-email-updated-course.php:204
3207
- #: inc/emails/class-lp-email-user-order-changed-status.php:176
3208
- #: inc/admin/views/settings/emails/email-template.php:6
3209
- #: inc/admin/views/settings/emails/_email-template.php:3
3210
- msgid "Email content"
3211
  msgstr ""
3212
 
3213
- #: inc/emails/class-lp-email.php:1002
3214
- #: inc/emails/class-lp-email-new-course.php:137
3215
- msgid "Recipient(s)"
3216
  msgstr ""
3217
 
3218
- #: inc/emails/class-lp-email.php:1006
3219
- #: inc/emails/class-lp-email-new-course.php:141
3220
- #, php-format
3221
- msgid "Email recipient(s) (separated by comma), default: <code>%s</code>."
3222
  msgstr ""
3223
 
3224
- #: inc/emails/class-lp-email-new-course.php:28
3225
- #: inc/emails/class-lp-email-new-course.php:35
3226
- msgid "New course"
 
 
3227
  msgstr ""
3228
 
3229
- #: inc/emails/class-lp-email-new-course.php:29
3230
- msgid "Email settings when a new course is submitted for review."
 
3231
  msgstr ""
3232
 
3233
- #: inc/emails/class-lp-email-new-course.php:34
 
3234
  msgid ""
3235
- "[{{site_title}}] New course has been submitted for review ({{course_name}})"
 
3236
  msgstr ""
3237
 
3238
- #: inc/emails/class-lp-email-finished-course-user.php:28
3239
- msgid "Send this email to user when they have finished course."
 
 
 
 
 
 
 
 
 
 
 
3240
  msgstr ""
3241
 
3242
- #: inc/emails/class-lp-email-finished-course-user.php:30
3243
- msgid "[{{site_title}}] You have finished course"
3244
  msgstr ""
3245
 
3246
- #: inc/emails/class-lp-email-finished-course-user.php:31
3247
- msgid "You have finished course"
3248
  msgstr ""
3249
 
3250
- #: inc/emails/class-lp-email-enrolled-course-user.php:28
3251
- msgid "Send this email to user when they have enrolled course."
3252
  msgstr ""
3253
 
3254
- #: inc/emails/class-lp-email-enrolled-course-user.php:30
3255
- msgid "[{{site_title}}] You have enrolled in course"
3256
  msgstr ""
3257
 
3258
- #: inc/emails/class-lp-email-enrolled-course-user.php:31
3259
- msgid "You have enrolled course"
3260
  msgstr ""
3261
 
3262
- #: inc/emails/class-lp-email-user-order-completed.php:27
3263
- msgid "User order completed"
3264
  msgstr ""
3265
 
3266
- #: inc/emails/class-lp-email-user-order-completed.php:28
3267
- msgid "Send email to user when the order is completed"
 
 
3268
  msgstr ""
3269
 
3270
- #: inc/emails/class-lp-email-user-order-completed.php:33
3271
- msgid "Your order {{order_date}} is completed"
 
3272
  msgstr ""
3273
-
3274
- #: inc/emails/class-lp-email-user-order-completed.php:34
3275
- msgid "Your order {{order_number}} is completed"
3276
  msgstr ""
3277
 
3278
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:28
3279
- msgid "Send this email to instructor when they have enrolled course."
3280
  msgstr ""
3281
 
3282
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:30
3283
- #: inc/emails/class-lp-email-enrolled-course-admin.php:30
3284
- msgid "{{user_display_name}} has enrolled course"
3285
  msgstr ""
3286
 
3287
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:31
3288
- #: inc/emails/class-lp-email-enrolled-course-admin.php:31
3289
- msgid "User has enrolled course"
 
3290
  msgstr ""
3291
 
3292
- #: inc/emails/class-lp-email-new-order-admin.php:28
3293
- msgid "Send email to admin when new order is placed."
3294
  msgstr ""
3295
 
3296
- #: inc/emails/class-lp-email-completed-order-admin.php:30
3297
- msgid "Send email to admin when an order has been completed."
3298
  msgstr ""
3299
 
3300
- #: inc/emails/class-lp-email-completed-order-admin.php:32
3301
- msgid "Order placed on {{order_date}} has been completed"
 
 
 
 
 
 
 
3302
  msgstr ""
3303
 
3304
- #: inc/emails/class-lp-email-completed-order-admin.php:33
3305
- msgid "User order has been completed"
3306
  msgstr ""
3307
 
3308
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:25
3309
- msgid "Send email to course instructor when order has been cancelled"
3310
  msgstr ""
3311
 
3312
- #: inc/emails/class-lp-email-cancelled-order-guest.php:28
3313
- msgid "Send email to guest when order has been cancelled."
 
 
 
 
 
 
 
 
3314
  msgstr ""
3315
 
3316
- #: inc/emails/class-lp-email-cancelled-order-guest.php:30
3317
- #: inc/emails/class-lp-email-cancelled-order-user.php:30
3318
- msgid "Your order on {{order_date}} has been cancelled"
3319
  msgstr ""
3320
 
3321
- #: inc/emails/class-lp-email-cancelled-order-guest.php:31
3322
- #: inc/emails/class-lp-email-cancelled-order-user.php:31
3323
- msgid "Your order has been cancelled"
3324
  msgstr ""
3325
 
3326
- #: inc/emails/class-lp-email-enrolled-course-admin.php:29
3327
- msgid "Send this email to admin when user has enrolled course."
 
 
 
 
3328
  msgstr ""
3329
 
3330
- #: inc/emails/class-lp-email-finished-course-instructor.php:28
3331
- msgid "Send this email to instructor when they have finished course."
3332
  msgstr ""
3333
 
3334
- #: inc/emails/class-lp-email-rejected-course.php:28
3335
- #: inc/emails/class-lp-email-rejected-course.php:35
3336
- msgid "Rejected course"
3337
  msgstr ""
3338
 
3339
- #: inc/emails/class-lp-email-rejected-course.php:29
3340
- msgid "Settings for email when a course is rejected."
3341
  msgstr ""
3342
 
3343
- #: inc/emails/class-lp-email-rejected-course.php:34
3344
- msgid "[{{site_title}}] Your course {{course_name}} has been rejected"
3345
  msgstr ""
3346
 
3347
- #: inc/emails/class-lp-email-updated-course.php:32
3348
- msgid "Updated course"
3349
  msgstr ""
3350
 
3351
- #: inc/emails/class-lp-email-updated-course.php:33
3352
- msgid "Send this email to users have purchased when the course is updated."
 
 
 
3353
  msgstr ""
3354
 
3355
- #: inc/emails/class-lp-email-updated-course.php:38
3356
- msgid "[{{site_title}}] The course ({{course_name}}) has just been updated."
 
 
 
3357
  msgstr ""
3358
 
3359
- #: inc/emails/class-lp-email-updated-course.php:39
3360
- msgid "Update course"
3361
  msgstr ""
3362
 
3363
- #: inc/emails/class-lp-email-become-an-instructor.php:27
3364
- msgid "Request"
3365
  msgstr ""
3366
 
3367
- #: inc/emails/class-lp-email-become-an-instructor.php:28
3368
- msgid "Become an instructor email."
3369
  msgstr ""
3370
 
3371
- #: inc/emails/class-lp-email-become-an-instructor.php:30
3372
- msgid "[{{site_title}}] Request to become an instructor"
3373
  msgstr ""
3374
 
3375
- #: inc/emails/class-lp-email-become-an-instructor.php:31
3376
- msgid "Become an instructor"
3377
  msgstr ""
3378
 
3379
- #: inc/emails/class-lp-email-instructor-denied.php:26
3380
- msgid "Denied"
3381
  msgstr ""
3382
 
3383
- #: inc/emails/class-lp-email-instructor-denied.php:27
3384
- msgid "Become an instructor email denied."
 
3385
  msgstr ""
3386
 
3387
- #: inc/emails/class-lp-email-instructor-denied.php:29
3388
- msgid "[{{site_title}}] Your request to become an instructor denied"
 
 
 
3389
  msgstr ""
3390
 
3391
- #: inc/emails/class-lp-email-instructor-denied.php:30
3392
- msgid "Become an instructor denied"
 
 
3393
  msgstr ""
3394
 
3395
- #: inc/emails/class-lp-email-completed-order-user.php:30
3396
- msgid "Send email to the user who has bought course when order is completed."
 
3397
  msgstr ""
3398
 
3399
- #: inc/emails/class-lp-email-processing-order-guest.php:28
3400
- msgid ""
3401
- "Send email to user who has purchased course as a Guest when the order is "
3402
- "processing."
3403
  msgstr ""
3404
 
3405
- #: inc/emails/class-lp-email-user-order-changed-status.php:26
3406
- msgid "User order changed status"
3407
  msgstr ""
3408
 
3409
- #: inc/emails/class-lp-email-user-order-changed-status.php:27
3410
- msgid "Send email to user when the order status is changed"
3411
  msgstr ""
3412
 
3413
- #: inc/emails/class-lp-email-user-order-changed-status.php:32
3414
- msgid "Your order {{order_date}} status has just been changed"
 
3415
  msgstr ""
3416
 
3417
- #: inc/emails/class-lp-email-user-order-changed-status.php:33
3418
- msgid "Your order {{order_number}} status has just been changed"
3419
  msgstr ""
3420
 
3421
- #: inc/emails/class-lp-email-processing-order-user.php:27
3422
- msgid "Send email to user who has bought course whe the order is processing."
 
 
 
3423
  msgstr ""
3424
 
3425
- #: inc/emails/class-lp-email-cancelled-order-user.php:28
3426
- msgid "Send email to user when order has been cancelled."
3427
  msgstr ""
3428
 
3429
- #: inc/admin/class-lp-admin-ajax.php:342
3430
- msgid "Dismissed!"
3431
  msgstr ""
3432
 
3433
- #: inc/admin/class-lp-admin-ajax.php:346
3434
- msgid "Fail while joining newsletter! Please try again!"
 
 
 
 
 
 
 
3435
  msgstr ""
3436
 
3437
- #: inc/admin/class-lp-admin-ajax.php:368
3438
- msgid "Something went wrong: "
3439
  msgstr ""
3440
 
3441
- #: inc/admin/class-lp-admin-ajax.php:371
3442
- msgid ""
3443
- "Thank you for subscribing! Please check and click the confirmation link from "
3444
- "the email we've just sent to your mail box."
3445
  msgstr ""
3446
 
3447
- #: inc/admin/class-lp-admin-ajax.php:387
3448
- msgid "Ops! ID not found"
3449
  msgstr ""
3450
 
3451
- #: inc/admin/class-lp-admin-ajax.php:416
3452
- msgid "Duplicate post fail, please try again"
3453
  msgstr ""
3454
 
3455
- #: inc/admin/class-lp-admin-ajax.php:568
3456
- msgid "Access denied"
3457
  msgstr ""
3458
 
3459
- #: inc/admin/class-lp-admin-ajax.php:580
3460
- #: inc/admin/class-lp-admin-ajax.php:620
3461
- #: templates/order/order-details.php:18
3462
- msgid "Invalid order"
3463
  msgstr ""
3464
 
3465
- #: inc/admin/class-lp-admin-ajax.php:614
3466
- msgid "Permission denied"
3467
  msgstr ""
3468
 
3469
- #: inc/admin/class-lp-admin-ajax.php:810
3470
- #: inc/admin/class-lp-admin-ajax.php:983
3471
- #: inc/admin/lp-admin-functions.php:253
3472
- msgid "Edit Page"
3473
  msgstr ""
3474
 
3475
- #: inc/admin/class-lp-admin-ajax.php:811
3476
- #: inc/admin/class-lp-admin-ajax.php:985
3477
- #: inc/admin/lp-admin-functions.php:255
3478
- msgid "View Page"
3479
  msgstr ""
3480
 
3481
- #: inc/admin/class-lp-admin-ajax.php:813
3482
- msgid "Error! Page creation failed. Please try again."
3483
  msgstr ""
3484
 
3485
- #: inc/admin/class-lp-admin-ajax.php:816
3486
- msgid "Empty page name!"
3487
  msgstr ""
3488
 
3489
- #: inc/admin/class-lp-admin-ajax.php:850
3490
- msgid "The required pages are successfully created."
3491
  msgstr ""
3492
 
3493
- #: inc/admin/class-lp-admin-ajax.php:860
3494
- msgid "Please try again."
 
3495
  msgstr ""
3496
 
3497
- #: inc/admin/class-lp-admin-ajax.php:886
3498
- msgid "Successfully import sample data."
3499
  msgstr ""
3500
 
3501
- #: inc/admin/class-lp-admin-ajax.php:886
3502
- msgid "View courses"
3503
  msgstr ""
3504
 
3505
- #: inc/admin/class-lp-admin-ajax.php:890
3506
- msgid "Failed to import sample data. Please try again."
3507
  msgstr ""
3508
 
3509
- #: inc/admin/class-lp-admin-ajax.php:894
3510
  msgid ""
3511
- "Unknown error when installing/activating Import/Export add-on. Please try "
3512
- "again!"
3513
  msgstr ""
3514
 
3515
- #: inc/admin/class-lp-admin-ajax.php:910
3516
- #: inc/admin/class-lp-admin-ajax.php:931
3517
- #: inc/admin/class-lp-admin-ajax.php:951
3518
- msgid "You do not have the permission to deactivate plugins on this site."
 
3519
  msgstr ""
3520
 
3521
- #: inc/admin/class-lp-meta-box-tabs.php:29
3522
- msgid "Meta box tabs"
3523
  msgstr ""
3524
 
3525
- #: inc/admin/class-lp-admin-assets.php:38
3526
- msgid "Ooops! Error."
3527
  msgstr ""
3528
 
3529
- #: inc/admin/class-lp-admin-assets.php:45
3530
- msgid ""
3531
- "Before taking this action, we strongly recommend you should backup your site "
3532
- "first before proceeding. Should any issues come at hand, do not hesitate to "
3533
- "contact our Support team. Are you sure to proceed the update protocol?"
3534
  msgstr ""
3535
 
3536
- #: inc/admin/class-lp-admin-tools.php:129
3537
- msgid "All courses, lessons, quizzes and questions have been removed"
3538
  msgstr ""
3539
 
3540
- #: inc/admin/class-lp-admin-tools.php:192
3541
- msgid "Outdated data from version older than 1.0 has been removed"
3542
  msgstr ""
3543
 
3544
- #: inc/admin/class-lp-install-sample-data.php:64
3545
- msgid "Are you sure you want to install sample course data?"
3546
  msgstr ""
3547
 
3548
- #: inc/admin/class-lp-install-sample-data.php:65
3549
- msgid "Are you sure you want to delete sample course data?"
 
 
3550
  msgstr ""
3551
 
3552
- #: inc/admin/class-lp-install-sample-data.php:128
3553
- #, php-format
3554
- msgid "Course \"%s\" has been created"
 
 
3555
  msgstr ""
3556
 
3557
- #: inc/admin/class-lp-install-sample-data.php:300
3558
- #: inc/admin/views/tools/database/html-install-sample-data.php:25
3559
- msgid "Sample course"
 
 
3560
  msgstr ""
3561
 
3562
- #: inc/admin/class-lp-install-sample-data.php:606
3563
- #: inc/admin/class-lp-install-sample-data.php:614
3564
- msgctxt "install-sample-course"
3565
- msgid " [TRUE]"
 
3566
  msgstr ""
3567
 
3568
- #: inc/admin/class-lp-modal-search-users.php:49
3569
- #: inc/admin/class-lp-modal-search-items.php:59
3570
- #: inc/admin/views/course/modal-choose-items.php:100
3571
- #: inc/admin/views/quiz/modal-choose-items.php:88
3572
- msgid "Add"
3573
  msgstr ""
3574
 
3575
- #: inc/admin/class-lp-modal-search-users.php:50
3576
- #: inc/admin/class-lp-modal-search-items.php:60
3577
- #: inc/admin/views/course/modal-choose-items.php:71
3578
- #: inc/admin/views/quiz/modal-choose-items.php:58
3579
- #: inc/admin/views/meta-boxes/order/details.php:242
3580
- msgid "Close"
3581
  msgstr ""
3582
 
3583
- #: inc/admin/class-lp-modal-search-users.php:51
3584
- #: inc/admin/views/modal-search-users.php:10
3585
- msgid "Search users"
 
 
3586
  msgstr ""
3587
 
3588
- #: inc/admin/class-lp-modal-search-users.php:184
3589
- #: inc/admin/class-lp-modal-search-items.php:249
3590
- msgid "No item found"
3591
  msgstr ""
3592
 
3593
- #: inc/admin/lp-admin-actions.php:61
3594
- #: inc/admin/views/dashboard/plugin-status/html-results.php:31
3595
- msgid "Published"
3596
  msgstr ""
3597
 
3598
- #: inc/admin/lp-admin-actions.php:62
3599
- msgid "Private"
3600
  msgstr ""
3601
 
3602
- #: inc/admin/lp-admin-actions.php:63
3603
- msgid "Pending Review"
3604
  msgstr ""
3605
 
3606
- #: inc/admin/lp-admin-actions.php:64
3607
- msgid "Scheduled"
3608
  msgstr ""
3609
 
3610
- #: inc/admin/lp-admin-actions.php:65
3611
- msgid "Draft"
3612
  msgstr ""
3613
 
3614
- #: inc/admin/lp-admin-actions.php:66
3615
- msgid "Trash"
 
 
3616
  msgstr ""
3617
 
3618
- #: inc/admin/lp-admin-actions.php:144
3619
- msgid "LearnPress Plugin"
 
 
3620
  msgstr ""
3621
 
3622
- #: inc/admin/lp-admin-actions.php:148
3623
- msgid "LearnPress Status"
 
3624
  msgstr ""
3625
 
3626
- #: inc/admin/class-lp-admin-menu.php:69
3627
- msgid "View Courses"
 
 
3628
  msgstr ""
3629
 
3630
- #: inc/admin/class-lp-admin-menu.php:89
3631
- msgid "Learning Management System"
3632
  msgstr ""
3633
 
3634
- #: inc/admin/lp-admin-functions.php:32
3635
- msgid "Duplicate this course"
 
3636
  msgstr ""
3637
 
3638
- #: inc/admin/lp-admin-functions.php:52
3639
- msgid "Duplicate this quiz"
3640
  msgstr ""
3641
 
3642
- #: inc/admin/lp-admin-functions.php:56
3643
- msgid "Duplicate this question"
 
3644
  msgstr ""
3645
 
3646
- #: inc/admin/lp-admin-functions.php:60
3647
- msgid "Duplicate this lesson"
3648
  msgstr ""
3649
 
3650
- #: inc/admin/lp-admin-functions.php:183
3651
- msgid "[ Add a new page ]"
 
3652
  msgstr ""
3653
 
3654
- #: inc/admin/lp-admin-functions.php:206
3655
- msgid "Select Page"
 
3656
  msgstr ""
3657
 
3658
- #: inc/admin/lp-admin-functions.php:223
3659
- msgid "Select a page&hellip;"
 
3660
  msgstr ""
3661
 
3662
- #: inc/admin/lp-admin-functions.php:244
3663
- msgid "Create"
3664
  msgstr ""
3665
 
3666
- #: inc/admin/lp-admin-functions.php:247
3667
- msgid "New page title"
3668
  msgstr ""
3669
 
3670
- #: inc/admin/lp-admin-functions.php:248
3671
- msgid "Ok [Enter]"
3672
  msgstr ""
3673
 
3674
- #: inc/admin/lp-admin-functions.php:249
3675
- msgid "Cancel [ESC]"
 
3676
  msgstr ""
3677
 
3678
- #: inc/admin/lp-admin-functions.php:333
3679
- msgid "Minutes"
3680
  msgstr ""
3681
 
3682
- #: inc/admin/lp-admin-functions.php:376
3683
- #: inc/admin/lp-admin-functions.php:417
3684
- msgid "Plain text"
3685
  msgstr ""
3686
 
3687
- #: inc/admin/lp-admin-functions.php:377
3688
- #: inc/admin/lp-admin-functions.php:418
3689
- #: inc/admin/settings/class-lp-settings-emails.php:147
3690
- msgid "HTML"
3691
  msgstr ""
3692
 
3693
- #: inc/admin/lp-admin-functions.php:578
3694
- #: inc/admin/views/addons/html-loop-theme.php:51
3695
- msgid "Get it now"
3696
  msgstr ""
3697
 
3698
- #: inc/admin/lp-admin-functions.php:580
3699
- #: inc/admin/views/addons/html-loop-theme.php:53
3700
- msgid "View Demo"
3701
  msgstr ""
3702
 
3703
- #: inc/admin/lp-admin-functions.php:855
3704
- #: inc/admin/views/statistics/courses.php:9
3705
- #: inc/admin/views/statistics/users.php:9
3706
- #: inc/admin/views/statistics/users.php:46
3707
- #: inc/admin/views/statistics/general.php:9
3708
- #: inc/admin/views/statistics/orders.php:9
3709
- msgid "Instructors"
3710
  msgstr ""
3711
 
3712
- #: inc/admin/lp-admin-functions.php:1020
3713
- #: inc/admin/lp-admin-functions.php:2103
3714
- #: inc/user/class-lp-profile.php:814
3715
- #: inc/admin/views/meta-boxes/course/review-logs.php:25
3716
- msgid "Publish"
3717
  msgstr ""
3718
 
3719
- #: inc/admin/lp-admin-functions.php:1025
3720
- #: inc/admin/lp-admin-functions.php:1227
3721
- #: inc/admin/lp-admin-functions.php:2108
3722
- #: inc/user/class-lp-profile.php:815
3723
- #: inc/admin/views/statistics/courses.php:44
3724
- #: inc/admin/views/statistics/general.php:61
3725
- #: inc/admin/views/statistics/orders.php:64
3726
- msgid "Pending"
3727
  msgstr ""
3728
 
3729
- #: inc/admin/lp-admin-functions.php:1030
3730
- #: inc/admin/lp-admin-functions.php:2113
3731
- #: inc/admin/views/statistics/courses.php:45
3732
- #: inc/admin/views/statistics/general.php:62
3733
- msgid "Paid"
3734
  msgstr ""
3735
 
3736
- #: inc/admin/lp-admin-functions.php:1254
3737
- msgid "Pending Courses / Publish Courses"
3738
  msgstr ""
3739
 
3740
- #: inc/admin/lp-admin-functions.php:1255
3741
- msgid "Free Courses / Priced Courses"
3742
  msgstr ""
3743
 
3744
- #: inc/admin/lp-admin-functions.php:1423
3745
- msgid "Installed"
3746
  msgstr ""
3747
 
3748
- #: inc/admin/lp-admin-functions.php:1456
3749
- #, php-format
3750
- msgid "The user %s has become a teacher"
3751
  msgstr ""
3752
 
3753
- #: inc/admin/lp-admin-functions.php:1514
3754
- msgid "You haven't got any courses yet! Would you like to import sample data?"
3755
  msgstr ""
3756
 
3757
- #: inc/admin/lp-admin-functions.php:1515
3758
- msgid "If yes, please install add-on name"
3759
  msgstr ""
3760
 
3761
- #: inc/admin/lp-admin-functions.php:1516
3762
- msgid "LearnPress Import/Export"
 
3763
  msgstr ""
3764
 
3765
- #: inc/admin/lp-admin-functions.php:1517
3766
- msgid "but don't worry because it is completely automated."
3767
  msgstr ""
3768
 
3769
- #: inc/admin/lp-admin-functions.php:1518
3770
- msgid "Import now"
3771
  msgstr ""
3772
 
3773
- #: inc/admin/lp-admin-functions.php:1519
3774
- msgid "No, thanks!"
3775
  msgstr ""
3776
 
3777
- #: inc/admin/lp-admin-functions.php:1729
3778
- msgid " Copy"
3779
  msgstr ""
3780
 
3781
- #: inc/admin/lp-admin-functions.php:1822
3782
- #, php-format
3783
- msgid "Question id %s does not exist."
3784
  msgstr ""
3785
 
3786
- #: inc/admin/lp-admin-functions.php:1825
3787
- #, php-format
3788
- msgid "Quiz id %s does not exist."
3789
  msgstr ""
3790
 
3791
- #: inc/admin/class-lp-plugin-install-list-table.php:162
3792
- msgid "No plugin found."
 
 
3793
  msgstr ""
3794
 
3795
- #: inc/admin/class-lp-plugin-install-list-table.php:341
3796
- #, php-format
3797
- msgid "By %s"
3798
  msgstr ""
3799
 
3800
- #: inc/admin/class-lp-plugin-install-list-table.php:362
3801
- #, php-format
3802
- msgid "Install %s now"
3803
  msgstr ""
3804
 
3805
- #: inc/admin/class-lp-plugin-install-list-table.php:362
3806
- msgid "Install and Active"
3807
  msgstr ""
3808
 
3809
- #: inc/admin/class-lp-plugin-install-list-table.php:369
3810
- #, php-format
3811
- msgid "Update %s now"
3812
  msgstr ""
3813
 
3814
- #: inc/admin/class-lp-plugin-install-list-table.php:369
3815
- #: inc/admin/views/updates/html-update-message.php:17
3816
- #: inc/admin/views/updates/0.9/step-repair-database.php:17
3817
- msgid "Update Now"
3818
  msgstr ""
3819
 
3820
- #: inc/admin/class-lp-plugin-install-list-table.php:420
3821
- msgid "Enabled"
3822
  msgstr ""
3823
 
3824
- #: inc/admin/class-lp-plugin-install-list-table.php:422
3825
- msgid "Disabled"
 
3826
  msgstr ""
3827
 
3828
- #: inc/admin/class-lp-plugin-install-list-table.php:425
3829
- msgid "Not Install"
3830
  msgstr ""
3831
 
3832
- #: inc/admin/class-lp-plugin-install-list-table.php:454
3833
- msgid "Last Updated:"
3834
  msgstr ""
3835
 
3836
- #: inc/admin/class-lp-plugin-install-list-table.php:465
3837
- #, php-format
3838
- msgid "%s Active Installs"
3839
  msgstr ""
3840
 
3841
- #: inc/admin/class-lp-plugin-install-list-table.php:471
3842
- #: inc/admin/views/addons/html-loop-plugin.php:55
3843
- msgid "Untested with your version of WordPress"
3844
  msgstr ""
3845
 
3846
- #: inc/admin/class-lp-plugin-install-list-table.php:473
3847
- #: inc/admin/views/addons/html-loop-plugin.php:57
3848
- msgid "<strong>Incompatible</strong> with your version of WordPress"
3849
  msgstr ""
3850
 
3851
- #: inc/admin/class-lp-plugin-install-list-table.php:475
3852
- #: inc/admin/views/addons/html-loop-plugin.php:59
3853
- msgid "<strong>Compatible</strong> with your version of WordPress"
3854
  msgstr ""
3855
 
3856
- #: inc/admin/class-lp-reset-data.php:90
3857
- msgid "Item progress deleted"
3858
  msgstr ""
3859
 
3860
- #: inc/admin/class-lp-reset-data.php:92
3861
- msgid "No data found"
 
3862
  msgstr ""
3863
 
3864
- #: inc/admin/class-lp-setup-wizard.php:72
3865
- msgctxt "static-page"
3866
- msgid "LP Courses"
 
 
3867
  msgstr ""
3868
 
3869
- #: inc/admin/class-lp-setup-wizard.php:73
3870
- msgctxt "static-page"
3871
- msgid "LP Profile"
3872
  msgstr ""
3873
 
3874
- #: inc/admin/class-lp-setup-wizard.php:74
3875
- msgctxt "static-page"
3876
- msgid "LP Checkout"
 
3877
  msgstr ""
3878
 
3879
- #: inc/admin/class-lp-setup-wizard.php:75
3880
- msgctxt "static-page"
3881
- msgid "LP Become Teacher"
 
3882
  msgstr ""
3883
 
3884
- #: inc/admin/class-lp-setup-wizard.php:206
3885
- msgid "Welcome"
3886
  msgstr ""
3887
 
3888
- #: inc/admin/class-lp-setup-wizard.php:208
3889
- #: inc/admin/views/setup/notice-setup.php:5
3890
- msgid "Run setup wizard"
3891
  msgstr ""
3892
 
3893
- #: inc/admin/class-lp-setup-wizard.php:211
3894
- #: inc/admin/settings/class-lp-settings-general.php:52
3895
- #: inc/admin/settings/class-lp-settings-general.php:57
3896
- #: inc/admin/views/setup/steps/currency.php:17
3897
- #: inc/admin/views/setup/steps/currency.php:21
3898
- msgid "Currency"
3899
  msgstr ""
3900
 
3901
- #: inc/admin/class-lp-setup-wizard.php:217
3902
- #: inc/admin/views/setup/steps/pages.php:14
3903
- msgid "Static Pages"
3904
  msgstr ""
3905
 
3906
- #: inc/admin/class-lp-setup-wizard.php:221
3907
- #: inc/admin/meta-box/fields/payment-order.php:29
3908
- #: inc/admin/views/setup/steps/payment.php:16
3909
- msgid "Payment"
3910
  msgstr ""
3911
 
3912
- #: inc/admin/class-lp-setup-wizard.php:225
3913
- #: inc/admin/settings/class-lp-settings-emails.php:26
3914
- #: inc/admin/settings/class-lp-settings-emails.php:166
3915
- msgid "Emails"
3916
  msgstr ""
3917
 
3918
- #: inc/admin/class-lp-setup-wizard.php:229
3919
- #: inc/admin/views/setup/content.php:92
3920
- #: inc/admin/views/setup/steps/finish.php:12
3921
- msgid "Finish"
3922
  msgstr ""
3923
 
3924
- #: inc/admin/class-lp-setup-wizard.php:346
3925
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:91
3926
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:95
3927
- msgid "Paypal"
3928
  msgstr ""
3929
 
3930
- #: inc/admin/class-lp-setup-wizard.php:347
3931
- msgid "Enter your Paypal email address to accept payment via Paypal."
3932
  msgstr ""
3933
 
3934
- #: inc/admin/class-lp-admin.php:62
3935
- msgid "Available Courses"
3936
  msgstr ""
3937
 
3938
- #: inc/admin/class-lp-admin.php:180
3939
- msgid "Shop Page"
3940
  msgstr ""
3941
 
3942
- #: inc/admin/class-lp-admin.php:184
3943
- msgid "Cart Page"
 
 
3944
  msgstr ""
3945
 
3946
- #: inc/admin/class-lp-admin.php:188
3947
- #: inc/admin/class-lp-admin.php:601
3948
- msgid "Checkout Page"
 
3949
  msgstr ""
3950
 
3951
- #: inc/admin/class-lp-admin.php:192
3952
- msgid "My Account Page"
3953
  msgstr ""
3954
 
3955
- #: inc/admin/class-lp-admin.php:196
3956
- msgid "Terms and Conditions Page"
 
 
3957
  msgstr ""
3958
 
3959
- #: inc/admin/class-lp-admin.php:213
3960
- msgid "Account"
 
3961
  msgstr ""
3962
 
3963
- #: inc/admin/class-lp-admin.php:214
3964
- msgid "Billing"
 
3965
  msgstr ""
3966
 
3967
- #: inc/admin/class-lp-admin.php:216
3968
- #: inc/admin/class-lp-admin.php:279
3969
- #: inc/admin/settings/class-lp-settings-checkout.php:22
3970
- #: inc/admin/views/setup/steps/pages.php:40
3971
- msgid "Checkout"
3972
  msgstr ""
3973
 
3974
- #: inc/admin/class-lp-admin.php:217
3975
- msgid "Confirmation"
3976
  msgstr ""
3977
 
3978
- #: inc/admin/class-lp-admin.php:218
3979
- msgid "Invoice"
 
 
 
 
3980
  msgstr ""
3981
 
3982
- #: inc/admin/class-lp-admin.php:219
3983
- msgid "Levels"
3984
  msgstr ""
3985
 
3986
- #: inc/admin/class-lp-admin.php:247
3987
- msgid "Members"
3988
  msgstr ""
3989
 
3990
- #: inc/admin/class-lp-admin.php:248
3991
- msgid "Activity"
3992
  msgstr ""
3993
 
3994
- #: inc/admin/class-lp-admin.php:249
3995
- #: templates/checkout/form-register.php:48
3996
- #: templates/global/form-register.php:43
3997
- msgid "Register"
3998
  msgstr ""
3999
 
4000
- #: inc/admin/class-lp-admin.php:250
4001
- msgid "Activate"
4002
  msgstr ""
4003
 
4004
- #: inc/admin/class-lp-admin.php:278
4005
- #: inc/admin/settings/class-lp-settings-profile.php:22
4006
- #: inc/admin/views/setup/steps/pages.php:31
4007
- msgid "Profile"
4008
  msgstr ""
4009
 
4010
- #: inc/admin/class-lp-admin.php:280
4011
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:121
4012
- #: inc/admin/views/setup/steps/pages.php:49
4013
- msgid "Become a Teacher"
4014
  msgstr ""
4015
 
4016
- #: inc/admin/class-lp-admin.php:318
4017
- msgid "LearnPress Page"
4018
  msgstr ""
4019
 
4020
- #: inc/admin/class-lp-admin.php:360
4021
- #, php-format
4022
- msgid "LearnPress Pages (%d)"
4023
  msgstr ""
4024
 
4025
- #: inc/admin/class-lp-admin.php:399
4026
- msgctxt "pending-request"
4027
- msgid "Accept"
4028
  msgstr ""
4029
 
4030
- #: inc/admin/class-lp-admin.php:400
4031
- msgctxt "pending-request"
4032
- msgid "Deny"
4033
  msgstr ""
4034
 
4035
- #: inc/admin/class-lp-admin.php:462
4036
- #, php-format
4037
- msgid "Pending Request %s"
4038
  msgstr ""
4039
 
4040
- #: inc/admin/class-lp-admin.php:492
4041
- #, php-format
4042
- msgid "User has %s to become a teacher."
4043
  msgstr ""
4044
 
4045
- #: inc/admin/class-lp-admin.php:577
4046
- #, php-format
4047
- msgid ""
4048
- "LearnPress requires permalink option <strong>Post name</strong> is enabled. "
4049
- "Please enable it <a href=\"%s\">here</a> to ensure that all functions work "
4050
- "properly."
4051
  msgstr ""
4052
 
4053
- #: inc/admin/class-lp-admin.php:597
4054
- msgid "Profile Page"
4055
  msgstr ""
4056
 
4057
- #: inc/admin/class-lp-admin.php:626
4058
- #, php-format
4059
- msgid "The following required page(s) are currently missing: %s."
4060
  msgstr ""
4061
 
4062
- #: inc/admin/class-lp-admin.php:627
4063
  #, php-format
4064
  msgid ""
4065
- "To ensure all functions work properly, please click <a class=\"button\" "
4066
- "id=\"learn-press-create-pages\" href=\"%s\">here</a> to create and set it up "
4067
- "automatically."
4068
  msgstr ""
4069
 
4070
- #: inc/admin/class-lp-admin.php:677
4071
- #, php-format
4072
  msgid ""
4073
- "If you like <strong>LearnPress</strong> please leave us a %s&#9733;&#9733;"
4074
- "&#9733;&#9733;&#9733;%s rating. A huge thanks from LearnPress team for your "
4075
- "generous."
4076
  msgstr ""
4077
 
4078
- #: inc/admin/class-lp-admin.php:677
4079
- msgid "Thanks :)"
4080
  msgstr ""
4081
 
4082
- #: inc/admin/class-lp-upgrader.php:12
4083
- msgid "Invalid Data provided."
4084
  msgstr ""
4085
 
4086
- #: inc/admin/class-lp-upgrader.php:13
4087
- msgid "Could not access filesystem."
4088
  msgstr ""
4089
 
4090
- #: inc/admin/class-lp-upgrader.php:14
4091
- msgid "Filesystem error."
 
 
4092
  msgstr ""
4093
 
4094
- #: inc/admin/class-lp-upgrader.php:15
4095
- msgid "Unable to locate WordPress Root directory."
 
4096
  msgstr ""
4097
 
4098
- #: inc/admin/class-lp-upgrader.php:16
4099
- msgid "Unable to locate WordPress Content directory (wp-content)."
4100
  msgstr ""
4101
 
4102
- #: inc/admin/class-lp-upgrader.php:17
4103
- msgid "Unable to locate WordPress Plugin directory."
 
4104
  msgstr ""
4105
 
4106
- #: inc/admin/class-lp-upgrader.php:18
4107
- msgid "Unable to locate WordPress Theme directory."
4108
  msgstr ""
4109
 
4110
- #: inc/admin/class-lp-upgrader.php:20
4111
- #, php-format
4112
- msgid "Unable to locate necessary folder (%s)."
4113
  msgstr ""
4114
 
4115
- #: inc/admin/class-lp-upgrader.php:22
4116
- msgid "Download failed."
4117
  msgstr ""
4118
 
4119
- #: inc/admin/class-lp-upgrader.php:23
4120
- msgid "Installing the latest version&#8230;"
4121
  msgstr ""
4122
 
4123
- #: inc/admin/class-lp-upgrader.php:24
4124
- msgid "The package contains no files."
4125
  msgstr ""
4126
 
4127
- #: inc/admin/class-lp-upgrader.php:25
4128
- msgid "Destination folder already exists."
 
4129
  msgstr ""
4130
 
4131
- #: inc/admin/class-lp-upgrader.php:26
4132
- msgid "Could not create directory."
 
4133
  msgstr ""
4134
 
4135
- #: inc/admin/class-lp-upgrader.php:27
4136
- msgid "The package could not be installed."
 
4137
  msgstr ""
4138
 
4139
- #: inc/admin/class-lp-upgrader.php:29
4140
- msgid "Enabling Maintenance mode&#8230;"
 
4141
  msgstr ""
4142
 
4143
- #: inc/admin/class-lp-upgrader.php:30
4144
- msgid "Disabling Maintenance mode&#8230;"
 
4145
  msgstr ""
4146
 
4147
- #: inc/admin/class-lp-admin-dashboard.php:19
4148
- msgid "LearnPress order status"
 
4149
  msgstr ""
4150
 
4151
- #: inc/admin/class-lp-admin-dashboard.php:24
4152
- msgid "LearnPress status"
 
4153
  msgstr ""
4154
 
4155
- #: inc/admin/class-lp-admin-dashboard.php:49
4156
- #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:30
4157
- msgid "Total Raised"
4158
  msgstr ""
4159
 
4160
- #: inc/admin/class-lp-admin-dashboard.php:67
4161
  #, php-format
4162
- msgid "%d order"
4163
- msgid_plural "%d orders"
4164
- msgstr[0] ""
4165
- msgstr[1] ""
4166
-
4167
- #: inc/admin/class-lp-admin-dashboard.php:83
4168
- #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:63
4169
- msgid "Created by: "
4170
  msgstr ""
4171
 
4172
- #: inc/admin/class-lp-modal-search-items.php:61
4173
- #: inc/admin/views/modal-search-items.php:11
4174
- msgid "Search items"
4175
  msgstr ""
4176
 
4177
- #: inc/admin/class-lp-modal-search-items.php:342
4178
- msgid "There are no available lessons for this course, please use "
4179
  msgstr ""
4180
 
4181
- #: inc/admin/class-lp-modal-search-items.php:343
4182
- #: inc/admin/class-lp-modal-search-items.php:347
4183
- #: inc/admin/class-lp-modal-search-items.php:351
4184
- msgid "Add new item"
4185
  msgstr ""
4186
 
4187
- #: inc/admin/class-lp-modal-search-items.php:346
4188
- msgid "There are no available quizzes for this course, please use "
4189
  msgstr ""
4190
 
4191
- #: inc/admin/class-lp-modal-search-items.php:350
4192
- msgid "There are no available questions for this quiz, please use "
4193
  msgstr ""
4194
 
4195
- #: inc/quiz/class-lp-quiz-factory.php:513
4196
- msgid "Something went wrong!"
4197
  msgstr ""
4198
 
4199
- #: inc/quiz/class-lp-quiz.php:438
4200
- #: templates/content-quiz/progress.php:47
4201
- #: templates/content-quiz/intro.php:25
4202
- msgid "Unlimited"
4203
  msgstr ""
4204
 
4205
- #: inc/quiz/class-lp-quiz.php:493
4206
- msgid "Finish quiz"
 
 
4207
  msgstr ""
4208
 
4209
- #: inc/quiz/class-lp-quiz.php:494
4210
- msgid "Are you sure you want to finish this quiz?"
4211
  msgstr ""
4212
 
4213
- #: inc/quiz/class-lp-quiz.php:497
4214
- msgid "Retake quiz"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4215
  msgstr ""
4216
 
4217
- #: inc/quiz/class-lp-quiz.php:498
4218
- msgid "Are you sure you want to retake this quiz?"
 
 
4219
  msgstr ""
4220
 
4221
- #: inc/quiz/class-lp-quiz.php:501
4222
- msgid "Time's up!"
 
4223
  msgstr ""
4224
 
4225
- #: inc/quiz/class-lp-quiz.php:502
4226
- msgid "The time is up! Your quiz will automate come to finish"
 
4227
  msgstr ""
4228
 
4229
- #: inc/quiz/class-lp-quiz.php:504
4230
- msgid "Congrats! You have finished this quiz"
4231
  msgstr ""
4232
 
4233
- #: inc/quiz/class-lp-quiz.php:505
4234
- msgid ""
4235
- "Congrats! You have re-taken this quiz. Please wait a moment and the page "
4236
- "will reload"
4237
  msgstr ""
4238
 
4239
- #: inc/libraries/wp-background-process.php:421
4240
  #, php-format
4241
- msgid "Every %d minutes"
4242
  msgstr ""
4243
 
4244
- #: inc/user/class-lp-user-factory.php:363
4245
- msgid "Every 3 Minutes"
4246
  msgstr ""
4247
 
4248
- #: inc/user/class-lp-profile.php:84
4249
- msgid "Account information updated successful."
 
4250
  msgstr ""
4251
 
4252
- #: inc/user/class-lp-profile.php:85
4253
- msgid "Account avatar updated successful."
4254
  msgstr ""
4255
 
4256
- #: inc/user/class-lp-profile.php:86
4257
- msgid "Password updated successful."
 
 
 
4258
  msgstr ""
4259
 
4260
- #: inc/user/class-lp-profile.php:87
4261
- msgid "Account publicity updated successful."
4262
  msgstr ""
4263
 
4264
- #: inc/user/class-lp-profile.php:293
4265
- #: inc/admin/settings/class-lp-settings-profile.php:141
4266
- #: inc/admin/views/updates/0.9/step-upgraded.php:16
4267
- msgid "Dashboard"
4268
  msgstr ""
4269
 
4270
- #: inc/user/class-lp-profile.php:318
4271
- #: inc/admin/settings/class-lp-settings-profile.php:173
4272
- #: inc/admin/views/meta-boxes/order/details.php:36
4273
- msgid "Order details"
4274
  msgstr ""
4275
 
4276
- #: inc/user/class-lp-profile.php:348
4277
- #: inc/admin/settings/class-lp-settings-profile.php:208
4278
- #: inc/admin/settings/class-lp-settings-profile.php:229
4279
- msgid "Avatar"
4280
  msgstr ""
4281
 
4282
- #: inc/user/class-lp-profile.php:357
4283
- #: inc/admin/settings/class-lp-settings-profile.php:262
4284
- msgid "Publicity"
4285
  msgstr ""
4286
 
4287
- #: inc/user/class-lp-profile.php:849
4288
- msgid "Not enrolled"
4289
  msgstr ""
4290
 
4291
- #: inc/user/lp-user-functions.php:388
4292
- msgid "Want to become an instructor?"
4293
  msgstr ""
4294
 
4295
- #: inc/user/lp-user-functions.php:920
4296
- msgid "Please login to enroll this course"
 
4297
  msgstr ""
4298
 
4299
- #: inc/user/lp-user-functions.php:938
4300
- msgid "You have already finished course"
 
4301
  msgstr ""
4302
 
4303
- #: inc/user/lp-user-functions.php:941
4304
- msgid "You have already enrolled in this course"
 
4305
  msgstr ""
4306
 
4307
- #: inc/user/lp-user-functions.php:1234
4308
- msgid "Old password incorrect!"
4309
  msgstr ""
4310
 
4311
- #: inc/user/lp-user-functions.php:1241
4312
- msgid "Confirmation password incorrect!"
4313
  msgstr ""
4314
 
4315
- #: inc/user/abstract-lp-user.php:331
4316
- msgid "You cannot start a quiz in preview mode."
4317
  msgstr ""
4318
 
4319
- #: inc/user/abstract-lp-user.php:338
4320
- msgid "Course does not exist or does not contain the quiz"
4321
  msgstr ""
4322
 
4323
- #: inc/user/abstract-lp-user.php:345
4324
- msgid "You have already finished the course of this quiz"
4325
  msgstr ""
4326
 
4327
- #: inc/user/abstract-lp-user.php:349
4328
- msgid "Please enroll course before starting quiz."
4329
  msgstr ""
4330
 
4331
- #: inc/user/abstract-lp-user.php:354
4332
- msgid "User has started or completed quiz"
 
4333
  msgstr ""
4334
 
4335
- #: inc/user/abstract-lp-user.php:359
4336
- msgid "You have to login for starting quiz."
4337
  msgstr ""
4338
 
4339
- #: inc/user/abstract-lp-user.php:442
4340
- msgid "Course is not exists or does not contain the quiz"
 
4341
  msgstr ""
4342
 
4343
- #: inc/user/abstract-lp-user.php:447
4344
- msgid "User has already finished course of this quiz"
4345
  msgstr ""
4346
 
4347
- #: inc/user/abstract-lp-user.php:453
4348
- msgid "User has completed quiz"
4349
  msgstr ""
4350
 
4351
- #: inc/user/abstract-lp-user.php:494
4352
- msgid "Course does not exist or does not contain the quiz."
4353
  msgstr ""
4354
 
4355
- #: inc/user/abstract-lp-user.php:499
4356
- msgid "You can not redo a quiz in a finished course."
4357
  msgstr ""
4358
 
4359
- #: inc/user/abstract-lp-user.php:505
4360
- #, php-format
4361
- msgid "%s::%s - User has not completed quiz."
4362
  msgstr ""
4363
 
4364
- #: inc/user/abstract-lp-user.php:1002
4365
- msgid "You can not hint question."
4366
  msgstr ""
4367
 
4368
- #: inc/user/abstract-lp-user.php:1254
4369
- #: inc/user/abstract-lp-user.php:1671
4370
- #: inc/user/abstract-lp-user.php:1683
4371
- #, php-format
4372
- msgid "The role %s for user doesn't exist"
4373
  msgstr ""
4374
 
4375
- #: inc/user/abstract-lp-user.php:1933
4376
- msgid "You can not complete a preview lesson."
4377
  msgstr ""
4378
 
4379
- #: inc/user/abstract-lp-user.php:1939
4380
- msgid "You have to enroll course to complete lesson."
 
4381
  msgstr ""
4382
 
4383
- #: inc/user/abstract-lp-user.php:1950
4384
- msgid "You have already completed this lesson."
4385
  msgstr ""
4386
 
4387
- #: inc/user/abstract-lp-user.php:2377
4388
- #: inc/user/abstract-lp-user.php:2381
4389
- msgid "Failed to enroll course."
4390
  msgstr ""
4391
 
4392
- #: inc/user/abstract-lp-user.php:2385
4393
- msgid "Please login to enroll course."
4394
  msgstr ""
4395
 
4396
- #: inc/updates/_update-from-0.9.php:1206
4397
- msgctxt "Permalink Slug"
4398
- msgid "lesson-tag"
4399
  msgstr ""
4400
 
4401
- #: inc/updates/_update-from-0.9.php:1228
4402
- msgctxt "Permalink Slug"
4403
- msgid "question-tag"
4404
  msgstr ""
4405
 
4406
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
4407
- #, php-format
4408
- msgid "Please %s to send your request!"
4409
  msgstr ""
4410
 
4411
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
4412
- msgctxt "become-teacher-form"
4413
- msgid "login"
 
4414
  msgstr ""
4415
 
4416
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:42
4417
- msgid "Your have already sent the request. Please wait for approvement."
 
 
4418
  msgstr ""
4419
 
4420
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:44
4421
- msgid "You are a teacher!"
4422
- msgstr ""
 
 
 
4423
 
4424
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:103
4425
- msgid "Please login to fill in this form."
4426
  msgstr ""
4427
 
4428
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:106
4429
- msgid "You are a teacher now."
 
4430
  msgstr ""
4431
 
4432
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:112
4433
- msgid "Your role is allowed to create a course."
4434
  msgstr ""
4435
 
4436
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:122
4437
- msgid "Fill in your information and send us to become a teacher."
4438
  msgstr ""
4439
 
4440
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:123
4441
- #: templates/global/become-teacher-form/button.php:18
4442
- msgid "Submit"
4443
  msgstr ""
4444
 
4445
- #: inc/shortcodes/class-lp-shortcode-login-form.php:39
4446
- #: inc/shortcodes/class-lp-shortcode-register-form.php:41
4447
- #, php-format
4448
- msgid "Your are logged in as %s. <a href=\"%s\">Log out</a>?"
4449
  msgstr ""
4450
 
4451
- #: inc/shortcodes/class-lp-shortcode-login-form.php:61
4452
- #: inc/shortcodes/class-lp-shortcode-login-form.php:63
4453
- msgid "Username or email"
4454
  msgstr ""
4455
 
4456
- #: inc/shortcodes/class-lp-shortcode-register-form.php:86
4457
- msgid ""
4458
- "The password should be at least twelve characters long. To make it stronger, "
4459
- "use upper and lower case letters, numbers, and symbols like ! \" ? $ % ^ & )"
4460
  msgstr ""
4461
 
4462
- #: inc/shortcodes/class-lp-shortcode-course-curriculum.php:44
4463
- msgid "Invalid course."
 
4464
  msgstr ""
4465
 
4466
- #: inc/question/class-lp-question.php:311
4467
- msgid "True Or False"
4468
  msgstr ""
4469
 
4470
- #: inc/question/class-lp-question.php:312
4471
- msgid "Multi Choice"
4472
  msgstr ""
4473
 
4474
- #: inc/question/class-lp-question.php:313
4475
- msgid "Single Choice"
4476
  msgstr ""
4477
 
4478
- #: inc/question/class-lp-question.php:438
4479
- #: inc/admin/views/quiz/question-meta.php:19
4480
- msgid "Question Content"
4481
  msgstr ""
4482
 
4483
- #: inc/question/class-lp-question.php:612
4484
- msgid "First option"
4485
  msgstr ""
4486
 
4487
- #: inc/question/class-lp-question.php:617
4488
- msgid "Second option"
4489
  msgstr ""
4490
 
4491
- #: inc/question/class-lp-question.php:622
4492
- msgid "Third option"
4493
  msgstr ""
4494
 
4495
- #: inc/question/class-lp-question-true-or-false.php:52
4496
- msgid "True"
4497
  msgstr ""
4498
 
4499
- #: inc/question/class-lp-question-true-or-false.php:58
4500
- msgid "False"
4501
  msgstr ""
4502
 
4503
- #: inc/attributes/course.php:137
4504
- #: inc/attributes/course.php:295
4505
- #: inc/attributes/course.php:308
4506
- #: inc/attributes/course.php:310
4507
- msgid "Attributes"
4508
  msgstr ""
4509
 
4510
- #: inc/attributes/course.php:207
4511
- msgid "No terms found."
 
4512
  msgstr ""
4513
 
4514
- #: inc/attributes/course.php:238
4515
- msgid "Clear"
 
4516
  msgstr ""
4517
 
4518
- #: inc/attributes/course.php:253
4519
- msgid "Terms"
4520
  msgstr ""
4521
 
4522
- #: inc/attributes/course.php:306
4523
- #: inc/attributes/course.php:309
4524
- msgid "Attribute"
4525
  msgstr ""
4526
 
4527
- #: inc/attributes/course.php:311
4528
- msgid "Add New Attribute"
4529
  msgstr ""
4530
 
4531
- #: inc/attributes/course.php:312
4532
- msgid "All Attributes"
 
4533
  msgstr ""
4534
 
4535
- #: inc/attributes/course.php:356
4536
- #, php-format
4537
- msgid "Search Course %s"
4538
  msgstr ""
4539
 
4540
- #: inc/attributes/course.php:357
4541
- #, php-format
4542
- msgid "All Course %s"
4543
  msgstr ""
4544
 
4545
- #: inc/attributes/course.php:358
4546
- #, php-format
4547
- msgid "Parent Course %s"
4548
  msgstr ""
4549
 
4550
- #: inc/attributes/course.php:359
4551
  #, php-format
4552
- msgid "Parent Course %s:"
 
4553
  msgstr ""
4554
 
4555
- #: inc/attributes/course.php:360
4556
- #, php-format
4557
- msgid "Edit Course %s"
4558
  msgstr ""
4559
 
4560
- #: inc/attributes/course.php:361
4561
- #, php-format
4562
- msgid "Update Course %s"
4563
  msgstr ""
4564
 
4565
- #: inc/attributes/course.php:362
4566
- #, php-format
4567
- msgid "Add New Course %s"
4568
  msgstr ""
4569
 
4570
- #: inc/attributes/course.php:363
4571
- #, php-format
4572
- msgid "New Course %s"
4573
  msgstr ""
4574
 
4575
- #: inc/attributes/course.php:364
4576
- #, php-format
4577
- msgid "No &quot;Course %s&quot; found"
4578
  msgstr ""
4579
 
4580
- #: inc/abstracts/abstract-addon.php:185
4581
- #, php-format
4582
- msgid ""
4583
- "<strong>%s</strong> add-on version %s requires <strong>LearnPress</strong> "
4584
- "version %s or higher"
4585
  msgstr ""
4586
 
4587
- #: inc/abstracts/abstract-addon.php:244
4588
- #, php-format
4589
- msgid "%s plugin file does not exist."
4590
  msgstr ""
4591
 
4592
- #: inc/abstracts/abstract-addon.php:262
4593
- #, php-format
4594
- msgid "%s plugin class does not exist."
 
 
 
4595
  msgstr ""
4596
 
4597
- #: inc/abstracts/abstract-object-data.php:341
4598
- #, php-format
4599
- msgid "The following these functions %s do not exists in %s"
4600
  msgstr ""
4601
 
4602
- #: inc/gateways/class-lp-gateway-abstract.php:244
4603
- msgid "%s has been deprecated. Please use % instead of."
4604
  msgstr ""
4605
 
4606
- #: inc/cart/class-lp-cart.php:119
4607
- msgid "Get cart should not be called before the wp_loaded action."
4608
  msgstr ""
4609
 
4610
- #: inc/cart/class-lp-cart.php:144
4611
- msgid "Sorry! This course is not purchasable."
4612
  msgstr ""
4613
 
4614
- #: inc/cart/class-lp-cart.php:149
4615
- msgid "Sorry! The number of enrolled students has reached limit"
4616
  msgstr ""
4617
 
4618
- #: inc/cart/class-lp-cart.php:281
4619
- #, php-format
4620
- msgid ""
4621
- "%s has been removed from your cart because it can no longer be purchased."
4622
  msgstr ""
4623
 
4624
- #: inc/cart/class-lp-cart.php:459
4625
- msgid "Checkout page hasn't been setup"
4626
  msgstr ""
4627
 
4628
- #: inc/user-item/class-lp-user-item-quiz.php:116
4629
- msgid "Not Started"
4630
  msgstr ""
4631
 
4632
- #: inc/user-item/class-lp-user-item-quiz.php:265
4633
- msgid "passed"
4634
  msgstr ""
4635
 
4636
- #: inc/user-item/class-lp-user-item-quiz.php:265
4637
- msgid "failed"
4638
  msgstr ""
4639
 
4640
- #: inc/user-item/class-lp-user-item-quiz.php:458
4641
- msgid "Check question has reached limit."
 
4642
  msgstr ""
4643
 
4644
- #: inc/user-item/class-lp-user-item-quiz.php:460
4645
- msgid "You have already checked this question."
4646
  msgstr ""
4647
 
4648
- #: inc/user-item/class-lp-user-item.php:547
4649
- #: inc/user-item/class-lp-user-item.php:558
4650
- msgid "Not Enrolled"
4651
  msgstr ""
4652
 
4653
- #: inc/background-process/class-lp-background-query-items.php:156
4654
- #: inc/background-process/class-lp-background-query-items.php:207
4655
- msgid "There is no items found!"
 
4656
  msgstr ""
4657
 
4658
- #: inc/background-process/class-lp-background-query-items.php:161
4659
- msgid "WP query plugins error!"
4660
  msgstr ""
4661
 
4662
- #: inc/background-process/class-lp-background-query-items.php:164
4663
- msgid "WP query plugins empty!"
4664
  msgstr ""
4665
 
4666
- #: inc/background-process/class-lp-background-query-items.php:259
4667
- msgid "There is no item found!"
4668
  msgstr ""
4669
 
4670
- #: inc/curds/class-lp-user-item-curd.php:21
4671
- msgid "Quiz does not exists."
4672
  msgstr ""
4673
 
4674
- #: inc/curds/class-lp-user-item-curd.php:34
4675
- msgid "Invalid quiz."
4676
  msgstr ""
4677
 
4678
- #: inc/curds/class-lp-course-curd.php:27
4679
- msgid "Course does not exist."
4680
  msgstr ""
4681
 
4682
- #: inc/curds/class-lp-course-curd.php:45
4683
- #: inc/admin/editor/class-lp-admin-editor-course.php:71
4684
- msgid "New Course"
 
4685
  msgstr ""
4686
 
4687
- #: inc/curds/class-lp-course-curd.php:125
4688
- #: inc/curds/class-lp-lesson-curd.php:101
4689
- #: inc/curds/class-lp-question-curd.php:161
4690
- #: inc/curds/class-lp-quiz-curd.php:151
4691
- msgid "<p>Op! ID not found</p>"
4692
  msgstr ""
4693
 
4694
- #: inc/curds/class-lp-course-curd.php:129
4695
- msgid "<p>Op! The course does not exist</p>"
4696
  msgstr ""
4697
 
4698
- #: inc/curds/class-lp-course-curd.php:134
4699
- msgid "<p>Sorry! You don't have permission to duplicate this course</p>"
4700
  msgstr ""
4701
 
4702
- #: inc/curds/class-lp-course-curd.php:140
4703
- msgid "<p>Sorry! Failed to duplicate course!</p>"
4704
  msgstr ""
4705
 
4706
- #: inc/curds/class-lp-user-curd.php:1257
4707
- #: inc/curds/class-lp-user-curd.php:1497
4708
- msgid "course"
4709
  msgstr ""
4710
 
4711
- #: inc/curds/class-lp-user-curd.php:1258
4712
- #: inc/curds/class-lp-user-curd.php:1498
4713
- msgid "courses"
4714
  msgstr ""
4715
 
4716
- #: inc/curds/class-lp-user-curd.php:1704
4717
- msgid "quiz"
4718
  msgstr ""
4719
 
4720
- #: inc/curds/class-lp-user-curd.php:1705
4721
- msgid "quizzes"
4722
  msgstr ""
4723
 
4724
- #: inc/curds/class-lp-user-curd.php:1762
4725
- msgid "Please provide a valid email address."
4726
  msgstr ""
4727
 
4728
- #: inc/curds/class-lp-user-curd.php:1766
4729
  msgid ""
4730
- "An account is already registered with your email address. Please log in."
4731
- msgstr ""
4732
-
4733
- #: inc/curds/class-lp-user-curd.php:1772
4734
- msgid "Please enter a valid account username."
4735
  msgstr ""
4736
 
4737
- #: inc/curds/class-lp-user-curd.php:1776
4738
  msgid ""
4739
- "An account is already registered with that username. Please choose another."
 
 
4740
  msgstr ""
4741
 
4742
- #: inc/curds/class-lp-user-curd.php:1788
4743
- msgid "Failed to create user"
 
4744
  msgstr ""
4745
 
4746
- #: inc/curds/class-lp-order-curd.php:420
4747
- #, php-format
4748
- msgid "Invalid order with ID \"%d\"."
 
4749
  msgstr ""
4750
 
4751
- #: inc/curds/class-lp-order-curd.php:476
4752
- #: templates/checkout/order-received.php:88
4753
- msgid "Invalid order."
 
4754
  msgstr ""
4755
 
4756
- #: inc/curds/class-lp-order-curd.php:480
4757
- msgid "Order is already assigned."
 
 
4758
  msgstr ""
4759
 
4760
- #: inc/curds/class-lp-order-curd.php:486
4761
- msgid "User does not exist."
 
4762
  msgstr ""
4763
 
4764
- #: inc/curds/class-lp-lesson-curd.php:34
4765
- msgid "New Lesson"
 
4766
  msgstr ""
4767
 
4768
- #: inc/curds/class-lp-lesson-curd.php:105
4769
- msgid "<p>Op! The lesson does not exist</p>"
 
 
4770
  msgstr ""
4771
 
4772
- #: inc/curds/class-lp-lesson-curd.php:110
4773
- msgid "<p>Sorry! You don't have permission to duplicate this lesson</p>"
4774
  msgstr ""
4775
 
4776
- #: inc/curds/class-lp-lesson-curd.php:117
4777
- msgid "<p>Sorry! Failed to duplicate lesson!</p>"
4778
  msgstr ""
4779
 
4780
- #: inc/curds/class-lp-lesson-curd.php:138
4781
- #, php-format
4782
- msgid "Invalid lesson with ID \"%d\"."
4783
  msgstr ""
4784
 
4785
- #: inc/curds/class-lp-question-curd.php:28
4786
- msgid "Question does not exist."
4787
  msgstr ""
4788
 
4789
- #: inc/curds/class-lp-question-curd.php:46
4790
- #: inc/admin/editor/class-lp-admin-editor-question.php:104
4791
- msgid "New Question"
4792
  msgstr ""
4793
 
4794
- #: inc/curds/class-lp-question-curd.php:165
4795
- msgid "<p>Op! The question does not exist</p>"
4796
  msgstr ""
4797
 
4798
- #: inc/curds/class-lp-question-curd.php:170
4799
- msgid "<p>Sorry! You don't have permission to duplicate this question</p>"
4800
  msgstr ""
4801
 
4802
- #: inc/curds/class-lp-question-curd.php:180
4803
- msgid "<p>Sorry! Failed to duplicate question!</p>"
4804
  msgstr ""
4805
 
4806
- #: inc/curds/class-lp-question-curd.php:241
4807
- #, php-format
4808
- msgid "Invalid question with ID \"%d\"."
4809
  msgstr ""
4810
 
4811
- #: inc/curds/class-lp-quiz-curd.php:29
4812
- msgid "Quiz does not exist."
4813
  msgstr ""
4814
 
4815
- #: inc/curds/class-lp-quiz-curd.php:44
4816
  #, php-format
4817
- msgid "Invalid quiz with ID \"%d\"."
 
 
4818
  msgstr ""
4819
 
4820
- #: inc/curds/class-lp-quiz-curd.php:155
4821
- msgid "<p>Op! The quiz does not exist</p>"
4822
  msgstr ""
4823
 
4824
- #: inc/curds/class-lp-quiz-curd.php:160
4825
- msgid "<p>Sorry! You have not permission to duplicate this quiz</p>"
 
4826
  msgstr ""
4827
 
4828
- #: inc/curds/class-lp-quiz-curd.php:167
4829
- msgid "<p>Sorry! Failed to duplicate quiz!</p>"
 
 
4830
  msgstr ""
4831
 
4832
- #: templates/content-question/explanation.php:23
4833
- msgid "Explanation:"
4834
  msgstr ""
4835
 
4836
- #: templates/content-question/hint.php:23
4837
- msgid "Hint:"
 
4838
  msgstr ""
4839
 
4840
- #: templates/order/recover-form.php:22
4841
- #: inc/admin/views/meta-boxes/order/details.php:116
4842
- #: inc/admin/views/meta-boxes/order/child-order.php:22
4843
- msgid "Order key"
4844
  msgstr ""
4845
 
4846
- #: templates/order/recover-form.php:25
4847
- msgid "Recover"
4848
  msgstr ""
4849
 
4850
- #: templates/order/confirm.php:25
4851
- msgid ""
4852
- "Unfortunately your order cannot be processed as the originating "
4853
- "bank/merchant has declined your transaction."
4854
  msgstr ""
4855
 
4856
- #: templates/order/confirm.php:29
4857
- msgid "Please attempt your purchase again or go to your account page."
4858
  msgstr ""
4859
 
4860
- #: templates/order/confirm.php:31
4861
- msgid "Please attempt your purchase again."
4862
  msgstr ""
4863
 
4864
- #: templates/order/confirm.php:48
4865
- msgid "Order Number:"
4866
  msgstr ""
4867
 
4868
- #: templates/order/confirm.php:52
4869
- msgid "Date:"
4870
  msgstr ""
4871
 
4872
- #: templates/order/confirm.php:56
4873
- msgid "Total:"
4874
  msgstr ""
4875
 
4876
- #: templates/order/confirm.php:61
4877
- msgid "Payment Method:"
4878
  msgstr ""
4879
 
4880
- #: templates/order/confirm.php:66
4881
- msgid "Status:"
4882
  msgstr ""
4883
 
4884
- #: templates/order/order-details.php:81
4885
- #: templates/checkout/review-order.php:130
4886
- msgid "Subtotal"
 
 
4887
  msgstr ""
4888
 
4889
- #: templates/order/order-details.php:92
4890
- #, php-format
4891
- msgid "<strong>Order key:</strong> %s"
4892
  msgstr ""
4893
 
4894
- #: templates/order/order-details.php:96
4895
- msgid "Order status:"
4896
  msgstr ""
4897
 
4898
- #: templates/emails/order-items-table.php:36
4899
- #: templates/emails/plain/order-items-table.php:22
4900
- msgid "Order summary"
4901
  msgstr ""
4902
 
4903
- #: templates/emails/order-items-table.php:41
4904
- #: templates/checkout/order-received.php:29
4905
- #: templates/emails/plain/order-items-table.php:24
4906
- msgid "Order Number"
4907
  msgstr ""
4908
 
4909
- #: templates/emails/order-items-table.php:45
4910
- #: templates/emails/plain/order-items-table.php:26
4911
- msgid "Purchase Date"
4912
  msgstr ""
4913
 
4914
- #: templates/emails/order-items-table.php:49
4915
- #: templates/checkout/payment.php:40
4916
- #: templates/checkout/order-received.php:75
4917
- #: templates/emails/plain/order-items-table.php:28
4918
- msgid "Payment Method"
4919
  msgstr ""
4920
 
4921
- #: templates/emails/order-items-table.php:57
4922
- #: templates/emails/plain/order-items-table.php:32
4923
- msgid "User Email"
4924
  msgstr ""
4925
 
4926
- #: templates/emails/order-items-table.php:67
4927
- #: inc/admin/views/meta-boxes/order/details.php:127
4928
- msgid "Quantity"
4929
  msgstr ""
4930
 
4931
- #: templates/checkout/guest-email.php:24
4932
- msgid "Your email"
4933
  msgstr ""
4934
 
4935
- #: templates/checkout/guest-email.php:25
4936
- msgid "Your real email we will send the order code."
4937
  msgstr ""
4938
 
4939
- #: templates/checkout/guest-email.php:35
4940
- msgid "Your email is already exists. Checkout as this account?"
4941
  msgstr ""
4942
 
4943
- #: templates/checkout/guest-email.php:42
4944
- msgid ""
4945
- "Create new account with this email? Account information will be sent to this "
4946
- "email."
4947
  msgstr ""
4948
 
4949
- #: templates/checkout/form-login.php:34
4950
- msgid "Returning customer"
4951
  msgstr ""
4952
 
4953
- #: templates/checkout/form-login.php:35
4954
- msgid "I am a returning customer."
4955
  msgstr ""
4956
 
4957
- #: templates/checkout/form-login.php:102
4958
- #: templates/checkout/form-login.php:112
4959
- #: templates/global/form-login.php:49
4960
- msgid "Login"
4961
  msgstr ""
4962
 
4963
- #: templates/checkout/review-order.php:20
4964
- msgid "Your order"
4965
  msgstr ""
4966
 
4967
- #: templates/checkout/order-comment.php:20
4968
- msgid "Additional Information"
4969
  msgstr ""
4970
 
4971
- #: templates/checkout/order-comment.php:23
4972
- msgid "Note to administrator"
4973
- msgstr ""
 
 
 
4974
 
4975
- #: templates/checkout/form-logged-in.php:30
4976
- msgid "Log out of this account"
4977
- msgstr ""
 
 
 
4978
 
4979
- #: templates/checkout/form-logged-in.php:30
4980
- msgid "Log out &raquo;"
4981
  msgstr ""
4982
 
4983
- #: templates/checkout/term-conditions.php:20
 
4984
  #, php-format
4985
- msgid "I’ve read and accept the <a href=\"%s\">terms &amp; conditions.</a>"
4986
  msgstr ""
4987
 
4988
- #: templates/checkout/payment.php:34
4989
- msgid "No payment method is available."
 
4990
  msgstr ""
4991
 
4992
- #: templates/checkout/form-register.php:36
4993
- msgid "New Customer"
 
4994
  msgstr ""
4995
 
4996
- #: templates/checkout/form-register.php:38
4997
- msgid "Register Account"
 
 
4998
  msgstr ""
4999
 
5000
- #: templates/checkout/form-register.php:40
5001
- msgid ""
5002
- "By creating an account you will be able to keep track of the course's "
5003
- "progress you have previously enrolled."
5004
  msgstr ""
5005
 
5006
- #: templates/checkout/form.php:96
5007
- #, php-format
5008
- msgid "Please login to continue checkout. %s"
5009
  msgstr ""
5010
 
5011
- #: templates/checkout/form.php:96
5012
- msgid "Login?"
5013
  msgstr ""
5014
 
5015
- #: templates/checkout/form.php:103
5016
- msgid "Continue checkout as Guest?"
5017
  msgstr ""
5018
 
5019
- #: templates/content-lesson/block-content.php:17
5020
- msgid "This lesson has been locked"
5021
  msgstr ""
5022
 
5023
- #: templates/content-lesson/button-complete.php:46
5024
- #: templates/content-quiz/buttons/complete.php:29
5025
- msgid "Complete"
5026
  msgstr ""
5027
 
5028
- #: templates/content-lesson/no-content.php:19
5029
- msgid "Lesson content is empty."
5030
  msgstr ""
5031
 
5032
- #: templates/profile/not-logged-in.php:19
5033
- #, php-format
5034
- msgid "Please <a href=\"%s\">login</a> to see your profile content"
5035
  msgstr ""
5036
 
5037
- #: templates/profile/dashboard-logged-in.php:26
5038
- #, php-format
5039
- msgid "Hello <strong>%s</strong> (not %s? %s)"
5040
  msgstr ""
5041
 
5042
- #: templates/profile/dashboard-logged-in.php:26
5043
- msgid "Sign out"
5044
  msgstr ""
5045
 
5046
- #: templates/profile/profile.php:47
5047
- msgid "This user does not public their profile."
5048
  msgstr ""
5049
 
5050
- #: templates/single-course/progress.php:38
5051
- msgid "Items completed"
 
 
5052
  msgstr ""
5053
 
5054
- #: templates/single-course/progress.php:42
5055
- #, php-format
5056
- msgid "%d of %d items"
5057
  msgstr ""
5058
 
5059
- #: templates/single-course/progress.php:56
5060
- msgid "Course results"
5061
  msgstr ""
5062
 
5063
- #: templates/single-course/progress.php:80
5064
- #, php-format
5065
- msgid "Passing condition: %s%%"
5066
  msgstr ""
5067
 
5068
- #: templates/single-course/instructor.php:22
5069
- msgid "About the Instructor"
 
5070
  msgstr ""
5071
 
5072
- #: templates/single-course/students.php:29
5073
- #, php-format
5074
- msgid "%d students"
5075
  msgstr ""
5076
 
5077
- #: templates/single-course/students.php:29
5078
- #, php-format
5079
- msgid "%d student"
5080
- msgid_plural "%d students"
5081
- msgstr[0] ""
5082
- msgstr[1] ""
5083
-
5084
- #: templates/single-course/description.php:25
5085
- msgid "Course description"
5086
  msgstr ""
5087
 
5088
- #: templates/single-course/content-protected.php:25
5089
- msgid "This content is protected, please enroll course to view this content!"
5090
  msgstr ""
5091
 
5092
- #: templates/single-course/content-protected.php:29
5093
- #, php-format
5094
- msgid ""
5095
- "This content is protected, please <a href=\"%s\">login</a> and enroll course "
5096
- "to view this content!"
5097
  msgstr ""
5098
 
5099
- #: templates/single-course/remaining-time.php:22
5100
- msgid "Enrolled"
5101
  msgstr ""
5102
 
5103
- #: templates/single-course/remaining-time.php:25
5104
- #, php-format
5105
- msgid "You have %s remaining for the course"
5106
  msgstr ""
5107
 
5108
- #: templates/content-quiz/progress.php:40
5109
- #: templates/single-course/section/title.php:52
5110
- #, php-format
5111
- msgid "%d/%d"
5112
  msgstr ""
5113
 
5114
- #: templates/content-quiz/progress.php:50
5115
- msgid "Time remaining"
5116
  msgstr ""
5117
 
5118
- #: templates/content-quiz/progress.php:52
5119
- msgid "Duration Unlimited"
 
5120
  msgstr ""
5121
 
5122
- #: templates/content-quiz/review-title.php:18
5123
- #: templates/content-quiz/buttons/review.php:26
5124
- msgid "Review"
5125
  msgstr ""
5126
 
5127
- #: templates/content-quiz/preview-mode.php:17
5128
- msgid "You are currently viewing quiz in preview mode."
 
5129
  msgstr ""
5130
 
5131
- #: templates/content-quiz/intro.php:24
5132
- msgid "Attempts allowed"
 
5133
  msgstr ""
5134
 
5135
- #: templates/content-quiz/intro.php:32
5136
- msgid "Passing grade"
5137
  msgstr ""
5138
 
5139
- #: templates/content-quiz/result.php:28
5140
- msgid "Your Result"
 
5141
  msgstr ""
5142
 
5143
- #: templates/content-quiz/result.php:33
5144
- #, php-format
5145
- msgid "Your grade is <strong>%s</strong>"
5146
  msgstr ""
5147
 
5148
- #: templates/content-quiz/result.php:38
5149
- msgctxt "quiz-result"
5150
- msgid "Time spend"
5151
  msgstr ""
5152
 
5153
- #: templates/content-quiz/result.php:42
5154
- msgctxt "quiz-result"
5155
- msgid "Questions"
5156
  msgstr ""
5157
 
5158
- #: templates/content-quiz/result.php:46
5159
- msgctxt "quiz-result"
5160
- msgid "Correct"
5161
  msgstr ""
5162
 
5163
- #: templates/content-quiz/result.php:50
5164
- msgctxt "quiz-result"
5165
- msgid "Wrong"
5166
  msgstr ""
5167
 
5168
- #: templates/content-quiz/result.php:54
5169
- msgctxt "quiz-result"
5170
- msgid "Skipped"
5171
  msgstr ""
5172
 
5173
- #: templates/content-quiz/history.php:34
5174
- #, php-format
5175
- msgid "Other results (newest %d items)"
5176
  msgstr ""
5177
 
5178
- #: templates/content-quiz/history.php:53
5179
- msgid "Time"
 
5180
  msgstr ""
5181
 
5182
- #: templates/content-quiz/history.php:54
5183
- msgid "Result"
 
5184
  msgstr ""
5185
 
5186
- #: templates/content-quiz/history.php:83
5187
- msgid "No history found!"
 
5188
  msgstr ""
5189
 
5190
- #: templates/global/before-main-content.php:26
5191
- msgid "LearnPress <strong>Checkout</strong> page is not set up. "
 
5192
  msgstr ""
5193
 
5194
- #: templates/global/before-main-content.php:29
5195
- msgid "Please contact administrator for setting up this page."
5196
  msgstr ""
5197
 
5198
- #: templates/global/before-main-content.php:31
5199
- #, php-format
5200
- msgid ""
5201
- "Please <a href=\\\"%s\\\" target=\\\"_blank\\\">setup</a> it so users can "
5202
- "purchase courses."
5203
  msgstr ""
5204
 
5205
- #: templates/global/block-content.php:18
5206
- msgid ""
5207
- "Content of this item has blocked because the course has exceeded duration."
5208
  msgstr ""
5209
 
5210
- #: templates/global/form-login.php:23
5211
- msgctxt "login-heading"
5212
- msgid "Login"
5213
  msgstr ""
5214
 
5215
- #: templates/global/form-login.php:43
5216
- msgid "Remember me"
5217
  msgstr ""
5218
 
5219
- #: templates/global/form-login.php:52
5220
- msgid "Lost your password?"
5221
  msgstr ""
5222
 
5223
- #: templates/global/form-register.php:23
5224
- msgctxt "register-heading"
5225
- msgid "Register"
5226
  msgstr ""
5227
 
5228
- #: templates/global/restrict-access.php:28
5229
- msgid ""
5230
- "You have no permission to view this area. Please contact site's "
5231
- "administrators for more details."
5232
  msgstr ""
5233
 
5234
- #: inc/admin/settings/class-lp-settings-profile.php:56
5235
- #: inc/admin/settings/class-lp-settings-general.php:42
5236
- #: inc/admin/settings/class-lp-settings-courses.php:68
5237
- msgid "General settings."
5238
  msgstr ""
5239
 
5240
- #: inc/admin/settings/class-lp-settings-profile.php:59
5241
- msgid "Profile page"
5242
  msgstr ""
5243
 
5244
- #: inc/admin/settings/class-lp-settings-profile.php:65
5245
- msgid "Add link to admin bar"
5246
  msgstr ""
5247
 
5248
- #: inc/admin/settings/class-lp-settings-profile.php:71
5249
- msgid "Text link"
5250
  msgstr ""
5251
 
5252
- #: inc/admin/settings/class-lp-settings-profile.php:76
5253
- msgid "If empty, please enter the name of the page used for profile."
 
 
5254
  msgstr ""
5255
 
5256
- #: inc/admin/settings/class-lp-settings-profile.php:89
5257
- msgid "Target link"
5258
  msgstr ""
5259
 
5260
- #: inc/admin/settings/class-lp-settings-profile.php:94
5261
- msgid "Open in same the window"
5262
  msgstr ""
5263
 
5264
- #: inc/admin/settings/class-lp-settings-profile.php:95
5265
- msgid "Open in a new window"
5266
  msgstr ""
5267
 
5268
- #: inc/admin/settings/class-lp-settings-profile.php:109
5269
- #: inc/admin/settings/class-lp-settings-courses.php:110
5270
- msgid "Courses per page"
5271
  msgstr ""
5272
 
5273
- #: inc/admin/settings/class-lp-settings-profile.php:114
5274
- msgid "Number of courses displayed per page in profile."
5275
  msgstr ""
5276
 
5277
- #: inc/admin/settings/class-lp-settings-profile.php:117
5278
- msgid "Enable login form"
 
5279
  msgstr ""
5280
 
5281
- #: inc/admin/settings/class-lp-settings-profile.php:121
5282
- msgid "Enable login from profile if the user is not logged in."
5283
  msgstr ""
5284
 
5285
- #: inc/admin/settings/class-lp-settings-profile.php:124
5286
- msgid "Enable register form"
5287
  msgstr ""
5288
 
5289
- #: inc/admin/settings/class-lp-settings-profile.php:128
5290
- msgid "Enable register from profile if the user is not logged in."
5291
  msgstr ""
5292
 
5293
- #: inc/admin/settings/class-lp-settings-profile.php:136
5294
- msgid "Sub Tab Slugs"
5295
  msgstr ""
5296
 
5297
- #: inc/admin/settings/class-lp-settings-profile.php:138
5298
- msgid "The slugs of tabs display in profile page. Each tab should be unique."
5299
  msgstr ""
5300
 
5301
- #: inc/admin/settings/class-lp-settings-profile.php:146
5302
- #: inc/admin/settings/class-lp-settings-profile.php:154
5303
- #: inc/admin/settings/class-lp-settings-profile.php:162
5304
- #: inc/admin/settings/class-lp-settings-profile.php:170
5305
- #: inc/admin/settings/class-lp-settings-profile.php:178
5306
- #: inc/admin/settings/class-lp-settings-profile.php:197
5307
- #: inc/admin/settings/class-lp-settings-profile.php:205
5308
- #: inc/admin/settings/class-lp-settings-profile.php:213
5309
- #: inc/admin/settings/class-lp-settings-profile.php:221
5310
- #, php-format
5311
- msgid "Example link is %s"
5312
  msgstr ""
5313
 
5314
- #: inc/admin/settings/class-lp-settings-profile.php:187
5315
- msgid "Settings Tab"
5316
  msgstr ""
5317
 
5318
- #: inc/admin/settings/class-lp-settings-profile.php:189
5319
- msgid "The slugs of sections in settings tab. Each slugs should be unique."
5320
  msgstr ""
5321
 
5322
- #: inc/admin/settings/class-lp-settings-profile.php:192
5323
- msgid "Slug"
5324
  msgstr ""
5325
 
5326
- #: inc/admin/settings/class-lp-settings-profile.php:200
5327
- msgid "Basic Information"
5328
  msgstr ""
5329
 
5330
- #: inc/admin/settings/class-lp-settings-profile.php:216
5331
- msgid "Change Password"
5332
  msgstr ""
5333
 
5334
- #: inc/admin/settings/class-lp-settings-profile.php:231
5335
- msgid "User avatar settings."
5336
  msgstr ""
5337
 
5338
- #: inc/admin/settings/class-lp-settings-profile.php:234
5339
- msgid "Enable custom avatar"
 
5340
  msgstr ""
5341
 
5342
- #: inc/admin/settings/class-lp-settings-profile.php:240
5343
- msgid "Size"
5344
  msgstr ""
5345
 
5346
- #: inc/admin/settings/class-lp-settings-profile.php:254
5347
- msgid "The height and width of avatar should be equal."
5348
  msgstr ""
5349
 
5350
- #: inc/admin/settings/class-lp-settings-profile.php:264
5351
- msgid "Publicity and sharing user profile content."
5352
  msgstr ""
5353
 
5354
- #: inc/admin/settings/class-lp-settings-profile.php:267
5355
- #: templates/profile/tabs/settings/publicity.php:38
5356
- msgid "My dashboard"
 
5357
  msgstr ""
5358
 
5359
- #: inc/admin/settings/class-lp-settings-profile.php:271
5360
- #: templates/profile/tabs/settings/publicity.php:43
5361
- msgid ""
5362
- "Public user profile content, if this option is turn off then other sections "
5363
- "in profile also become invisible."
5364
  msgstr ""
5365
 
5366
- #: inc/admin/settings/class-lp-settings-profile.php:278
5367
- msgid "Public user profile courses."
 
 
5368
  msgstr ""
5369
 
5370
- #: inc/admin/settings/class-lp-settings-profile.php:278
5371
- msgid "Allow user to turn on/off sharing profile course option"
5372
  msgstr ""
5373
 
5374
- #: inc/admin/settings/class-lp-settings-profile.php:295
5375
- msgid "Public user profile quizzes."
5376
  msgstr ""
5377
 
5378
- #: inc/admin/settings/class-lp-settings-profile.php:295
5379
- msgid "Allow user to turn on/off sharing profile quizzes option"
5380
  msgstr ""
5381
 
5382
- #: inc/admin/settings/class-lp-settings-payments.php:28
5383
- #: inc/admin/settings/class-lp-settings-payments.php:143
5384
- msgid "Payments"
5385
  msgstr ""
5386
 
5387
- #: inc/admin/settings/class-lp-settings-payments.php:81
5388
- #: inc/admin/settings/class-lp-settings-checkout.php:66
5389
- msgid "Checkout page"
5390
  msgstr ""
5391
 
5392
- #: inc/admin/settings/class-lp-settings-payments.php:87
5393
- #: inc/admin/settings/class-lp-settings-checkout.php:59
5394
- msgid "Auto enroll"
 
 
 
5395
  msgstr ""
5396
 
5397
- #: inc/admin/settings/class-lp-settings-payments.php:91
5398
- #: inc/admin/settings/class-lp-settings-checkout.php:60
5399
- msgid "Auto enroll a user after they buy a course."
5400
  msgstr ""
5401
 
5402
- #: inc/admin/settings/class-lp-settings-payments.php:94
5403
- msgid "Enable guest checkout"
 
5404
  msgstr ""
5405
 
5406
- #: inc/admin/settings/class-lp-settings-payments.php:98
5407
- msgid "Enable user buy course as a Guest."
 
5408
  msgstr ""
5409
 
5410
- #: inc/admin/settings/class-lp-settings-payments.php:101
5411
- msgid "Enable login in checkout"
5412
  msgstr ""
5413
 
5414
- #: inc/admin/settings/class-lp-settings-payments.php:105
5415
- msgid "Enable login form in checkout page."
 
5416
  msgstr ""
5417
 
5418
- #: inc/admin/settings/class-lp-settings-payments.php:108
5419
- msgid "Enable registration in checkout"
 
5420
  msgstr ""
5421
 
5422
- #: inc/admin/settings/class-lp-settings-payments.php:112
5423
- msgid "Enable registration form in checkout page."
5424
  msgstr ""
5425
 
5426
- #: inc/admin/settings/class-lp-settings-payments.php:115
5427
- msgid "Terms & conditions page"
 
 
 
 
 
5428
  msgstr ""
5429
 
5430
- #: inc/admin/settings/class-lp-settings-payments.php:127
5431
- msgid "Endpoints"
5432
  msgstr ""
5433
 
5434
- #: inc/admin/settings/class-lp-settings-payments.php:131
5435
- #: inc/admin/settings/class-lp-settings-checkout.php:76
5436
- msgid "Order received"
5437
  msgstr ""
5438
 
5439
- #: inc/admin/settings/class-lp-settings-payments.php:134
5440
- msgid "lp-order-received"
5441
  msgstr ""
5442
 
5443
- #: inc/admin/settings/class-lp-settings-payments.php:136
5444
- #, php-format
5445
- msgid ""
5446
- "Unique slug in checkout page to displays order details. Example: http:"
5447
- "//example.com/lp-checkout/%s/"
5448
  msgstr ""
5449
 
5450
- #: inc/admin/settings/class-lp-settings-payments.php:145
5451
- msgid ""
5452
- "All available payments are listed here. Drag and drop the payments to re-"
5453
- "order."
5454
  msgstr ""
5455
 
5456
- #: inc/admin/settings/class-lp-settings-payments.php:148
5457
- msgid "Payment order"
 
5458
  msgstr ""
5459
 
5460
- #: inc/admin/settings/class-lp-settings-emails.php:64
5461
- msgid "General options"
 
5462
  msgstr ""
5463
 
5464
- #: inc/admin/settings/class-lp-settings-emails.php:112
5465
- msgid "Email options"
5466
  msgstr ""
5467
 
5468
- #: inc/admin/settings/class-lp-settings-emails.php:114
5469
- #: inc/admin/views/settings/emails/general.php:17
5470
- msgid ""
5471
- "The following options affect the sender (email address and name) used in "
5472
- "LearnPress emails."
5473
  msgstr ""
5474
 
5475
- #: inc/admin/settings/class-lp-settings-emails.php:117
5476
- msgid "From name"
 
5477
  msgstr ""
5478
 
5479
- #: inc/admin/settings/class-lp-settings-emails.php:123
5480
- msgid "From email"
 
5481
  msgstr ""
5482
 
5483
- #: inc/admin/settings/class-lp-settings-emails.php:129
5484
- msgid "Send email in background"
5485
  msgstr ""
5486
 
5487
- #: inc/admin/settings/class-lp-settings-emails.php:133
5488
- msgid "Defer transaction email and runs in background."
5489
  msgstr ""
5490
 
5491
- #: inc/admin/settings/class-lp-settings-emails.php:136
5492
- msgid "Email template"
5493
  msgstr ""
5494
 
5495
- #: inc/admin/settings/class-lp-settings-emails.php:140
5496
- msgid "Default Email Content"
5497
  msgstr ""
5498
 
5499
- #: inc/admin/settings/class-lp-settings-emails.php:144
5500
- msgid ""
5501
- "Default email content type for all emails that set content type is <strong>"
5502
- "General Settings</strong>."
5503
  msgstr ""
5504
 
5505
- #: inc/admin/settings/class-lp-settings-emails.php:146
5506
- msgid "Plain Text"
 
5507
  msgstr ""
5508
 
5509
- #: inc/admin/settings/class-lp-settings-emails.php:151
5510
- #: inc/admin/views/settings/emails/general.php:40
5511
- msgid "Header image"
5512
  msgstr ""
5513
 
5514
- #: inc/admin/settings/class-lp-settings-emails.php:156
5515
- #: inc/admin/views/settings/emails/general.php:43
5516
- msgid "The image will be displayed in the top of the email."
5517
  msgstr ""
5518
 
5519
- #: inc/admin/settings/class-lp-settings-emails.php:159
5520
- #: inc/admin/views/settings/emails/general.php:47
5521
- msgid "Footer text"
5522
  msgstr ""
5523
 
5524
- #: inc/admin/settings/class-lp-settings-emails.php:163
5525
- msgid "The texts display in the bottom of email."
5526
  msgstr ""
5527
 
5528
- #: inc/admin/settings/class-lp-settings-advanced.php:22
5529
- #: inc/admin/settings/class-lp-settings-advanced.php:88
5530
- msgid "Advanced"
5531
  msgstr ""
5532
 
5533
- #: inc/admin/settings/class-lp-settings-advanced.php:53
5534
- msgid "Enable custom colors"
5535
  msgstr ""
5536
 
5537
- #: inc/admin/settings/class-lp-settings-advanced.php:57
5538
- msgid "Use color schema for main colors."
5539
  msgstr ""
5540
 
5541
- #: inc/admin/settings/class-lp-settings-advanced.php:60
5542
- msgid "Color schema"
5543
  msgstr ""
5544
 
5545
- #: inc/admin/settings/class-lp-settings-advanced.php:66
5546
- msgid "Load css"
5547
  msgstr ""
5548
 
5549
- #: inc/admin/settings/class-lp-settings-advanced.php:70
5550
- msgid "Load default stylesheet for LearnPress."
5551
  msgstr ""
5552
 
5553
- #: inc/admin/settings/class-lp-settings-advanced.php:73
5554
- msgid "Debug mode"
5555
  msgstr ""
5556
 
5557
- #: inc/admin/settings/class-lp-settings-advanced.php:77
5558
- msgid "Turn on/off debug mode for developer."
5559
  msgstr ""
5560
 
5561
- #: inc/admin/settings/class-lp-settings-advanced.php:80
5562
- msgid "Hard cache"
5563
  msgstr ""
5564
 
5565
- #: inc/admin/settings/class-lp-settings-advanced.php:84
5566
- msgid "Enable hard cache"
5567
  msgstr ""
5568
 
5569
- #: inc/admin/settings/class-lp-settings-advanced.php:88
5570
- #, php-format
5571
  msgid ""
5572
- "Enable cache for static content such as content and settings of course, "
5573
- "lesson, quiz. <a href=\"%s\">%s</a>"
5574
  msgstr ""
5575
 
5576
- #: inc/admin/settings/class-lp-settings-advanced.php:91
5577
- msgid "Others"
 
5578
  msgstr ""
5579
 
5580
- #: inc/admin/settings/class-lp-settings-advanced.php:95
5581
- msgid "Enable lesson video"
 
 
5582
  msgstr ""
5583
 
5584
- #: inc/admin/settings/class-lp-settings-advanced.php:99
5585
- msgid ""
5586
- "When this option is enabled, the first video embed in lesson content will be "
5587
- "detected and move to the top."
 
 
 
 
 
5588
  msgstr ""
5589
 
5590
- #: inc/admin/settings/class-lp-settings-general.php:45
5591
- msgid "Logout redirect"
 
 
 
 
 
 
5592
  msgstr ""
5593
 
5594
- #: inc/admin/settings/class-lp-settings-general.php:49
5595
- msgid "The page where user will be redirected to after logging out."
 
 
 
 
 
 
 
5596
  msgstr ""
5597
 
5598
- #: inc/admin/settings/class-lp-settings-general.php:54
5599
- msgid "Setting up your currency unit and its formatting."
5600
  msgstr ""
5601
 
5602
- #: inc/admin/settings/class-lp-settings-general.php:65
5603
- #: inc/admin/views/setup/steps/currency.php:37
5604
- msgid "Currency position"
5605
  msgstr ""
5606
 
5607
- #: inc/admin/settings/class-lp-settings-general.php:72
5608
- #: inc/admin/views/setup/steps/currency.php:51
5609
- msgid "Thousands Separator"
5610
  msgstr ""
5611
 
5612
- #: inc/admin/settings/class-lp-settings-general.php:78
5613
- #: inc/admin/views/setup/steps/currency.php:56
5614
- msgid "Decimals Separator"
 
 
5615
  msgstr ""
5616
 
5617
- #: inc/admin/settings/class-lp-settings-general.php:84
5618
- #: inc/admin/views/setup/steps/currency.php:61
5619
- msgid "Number of Decimals"
 
 
5620
  msgstr ""
5621
 
5622
- #: inc/admin/settings/class-lp-settings-pages.php:16
5623
- msgid "Pages"
5624
  msgstr ""
5625
 
5626
- #: inc/admin/settings/class-lp-settings-pages.php:28
5627
- msgid "Become a teacher"
5628
  msgstr ""
5629
 
5630
- #: inc/admin/settings/class-lp-settings-pages.php:39
5631
- msgid "Become a teacher page"
 
 
5632
  msgstr ""
5633
 
5634
- #: inc/admin/settings/class-lp-settings-pages.php:45
5635
- msgid "Instructors registration"
5636
  msgstr ""
5637
 
5638
- #: inc/admin/settings/class-lp-settings-pages.php:46
5639
- msgid "Create option for instructors registration."
5640
  msgstr ""
5641
 
5642
- #: inc/admin/settings/class-lp-settings-checkout.php:72
5643
- msgid "Checkout Endpoints"
5644
  msgstr ""
5645
 
5646
- #: inc/admin/settings/class-lp-settings-courses.php:38
5647
- #: inc/admin/meta-box/fields/course-permalink.php:36
5648
- #: inc/admin/views/settings/fields/course-permalink.php:14
5649
- msgctxt "default-slug"
5650
- msgid "courses"
5651
  msgstr ""
5652
 
5653
- #: inc/admin/settings/class-lp-settings-courses.php:71
5654
- msgid "Review course before publishing"
5655
  msgstr ""
5656
 
5657
- #: inc/admin/settings/class-lp-settings-courses.php:72
5658
- msgid "The course needs to be reviewed by admin before it can be published."
 
5659
  msgstr ""
5660
 
5661
- #: inc/admin/settings/class-lp-settings-courses.php:78
5662
- msgid "Enable editing published course"
5663
  msgstr ""
5664
 
5665
- #: inc/admin/settings/class-lp-settings-courses.php:79
5666
- msgid ""
5667
- "Allow instructors to edit the course which were published without review.<br "
5668
- "/> If this option is disabled, the course status will be changed to Pending "
5669
- "Review when the instructor update course."
5670
  msgstr ""
5671
 
5672
- #: inc/admin/settings/class-lp-settings-courses.php:99
5673
- msgid "Archive"
5674
  msgstr ""
5675
 
5676
- #: inc/admin/settings/class-lp-settings-courses.php:101
5677
- msgid "Those settings are applied to archive course page."
5678
  msgstr ""
5679
 
5680
- #: inc/admin/settings/class-lp-settings-courses.php:104
5681
- msgid "Courses Page"
5682
  msgstr ""
5683
 
5684
- #: inc/admin/settings/class-lp-settings-courses.php:111
5685
- msgid "Number of courses displayed per page."
 
 
 
 
5686
  msgstr ""
5687
 
5688
- #: inc/admin/settings/class-lp-settings-courses.php:126
5689
- msgid "Single course"
5690
  msgstr ""
5691
 
5692
- #: inc/admin/settings/class-lp-settings-courses.php:128
5693
- msgid "Those settings are applied to single course page."
5694
  msgstr ""
5695
 
5696
- #: inc/admin/settings/class-lp-settings-courses.php:132
5697
- msgid "Course category base"
5698
  msgstr ""
5699
 
5700
- #: inc/admin/settings/class-lp-settings-courses.php:138
5701
- msgid "Course tag base"
5702
  msgstr ""
5703
 
5704
- #: inc/admin/settings/class-lp-settings-courses.php:144
5705
- msgid "Single course permalink"
5706
  msgstr ""
5707
 
5708
- #: inc/admin/settings/class-lp-settings-courses.php:164
5709
- msgid "Enrolled students number"
5710
  msgstr ""
5711
 
5712
- #: inc/admin/settings/class-lp-settings-courses.php:167
5713
- msgid ""
5714
- "Displays a fake numbers of enrolled students. Disable to show the real value."
5715
  msgstr ""
5716
 
5717
- #: inc/admin/settings/class-lp-settings-courses.php:175
5718
- msgid "Course thumbnails"
5719
  msgstr ""
5720
 
5721
- #: inc/admin/settings/class-lp-settings-courses.php:177
5722
- msgid "Thumbnail generation for archive/single course."
5723
  msgstr ""
5724
 
5725
- #: inc/admin/settings/class-lp-settings-courses.php:202
5726
- msgid "Archive course"
5727
  msgstr ""
5728
 
5729
- #: inc/admin/settings/class-lp-settings-courses.php:206
5730
- msgid "Turn on/off courses extra thumbnail."
5731
  msgstr ""
5732
 
5733
- #: inc/admin/settings/class-lp-settings-courses.php:209
5734
- msgid "Thumbnail dimensions"
 
5735
  msgstr ""
5736
 
5737
- #: inc/admin/pointers/pointers.php:66
5738
- msgid "Course Curriculum"
5739
  msgstr ""
5740
 
5741
- #: inc/admin/pointers/pointers.php:67
5742
- msgid ""
5743
- "Build a course by selecting created lessons and quizzes or adding new ones. "
5744
- "You can easily sort, edit, shortcut (l and q). With LearnPress, it's never "
5745
- "been easier."
5746
  msgstr ""
5747
 
5748
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:16
5749
- msgid "LearnPress Add-ons"
 
 
 
5750
  msgstr ""
5751
 
5752
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:28
5753
- #, php-format
5754
- msgid "Installed (%d)"
5755
  msgstr ""
5756
 
5757
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:29
5758
- #, php-format
5759
- msgid "Get more (%d)"
5760
  msgstr ""
5761
 
5762
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:30
5763
- #, php-format
5764
- msgid "Themes (%d)"
5765
  msgstr ""
5766
 
5767
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:57
5768
- msgid "Search..."
 
5769
  msgstr ""
5770
 
5771
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:15
5772
- msgid "Statistics"
5773
  msgstr ""
5774
 
5775
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:16
5776
- msgid "LearnPress Statistics"
 
 
 
 
 
5777
  msgstr ""
5778
 
5779
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:27
5780
- msgid "Users"
 
 
5781
  msgstr ""
5782
 
5783
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:13
5784
- msgid "Tools"
5785
  msgstr ""
5786
 
5787
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:14
5788
- msgid "LearnPress Tools"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5789
  msgstr ""
5790
 
5791
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:20
5792
- msgid "Template"
 
 
 
 
 
 
 
 
 
5793
  msgstr ""
5794
 
5795
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:21
5796
- msgid "Database"
 
 
5797
  msgstr ""
5798
 
5799
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:23
5800
- msgid "Cache"
5801
  msgstr ""
5802
 
5803
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:15
5804
- msgid "LearnPress Settings"
 
 
5805
  msgstr ""
5806
 
5807
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:95
5808
- msgid "Save settings"
5809
  msgstr ""
5810
 
5811
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:99
5812
- msgid "Do you want to restore all settings to default?"
 
5813
  msgstr ""
5814
 
5815
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:100
5816
- #: inc/admin/meta-box/fields/color-schema.php:101
5817
- #: inc/widgets/course-filters/tmpl/default.php:85
5818
- #: inc/admin/views/tools/course/html-user-item.php:28
5819
- msgid "Reset"
5820
  msgstr ""
5821
 
5822
- #: inc/admin/views/html-admin-notice-templates.php:31
5823
- #, php-format
5824
  msgid ""
5825
- "There is a new update of LearnPress. You may need to update your theme "
5826
- "<strong>(%s)</strong> to avoid outdated template files."
5827
  msgstr ""
5828
 
5829
- #: inc/admin/views/html-admin-notice-templates.php:32
5830
- #, php-format
 
 
 
5831
  msgid ""
5832
- "This is not a bug, don't worry. Read more about Outdated template files "
5833
- "notice <a href=\"%s\" target=\"_blank\">here</a>."
5834
  msgstr ""
5835
 
5836
- #: inc/admin/views/html-admin-notice-templates.php:40
5837
- msgid "View list of outdated templates"
5838
  msgstr ""
5839
 
5840
- #: inc/admin/helpers/class-lp-plugins-helper.php:252
5841
- #: inc/admin/helpers/class-lp-plugins-helper.php:262
5842
- msgid "Disable Now"
 
5843
  msgstr ""
5844
 
5845
- #: inc/admin/helpers/class-lp-plugins-helper.php:254
5846
- #: inc/admin/helpers/class-lp-plugins-helper.php:264
5847
- msgid "Enable Now"
 
5848
  msgstr ""
5849
 
5850
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:45
5851
- msgid "Invalid quiz"
 
 
5852
  msgstr ""
5853
 
5854
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:156
5855
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:591
5856
- msgid "Quiz creation failed."
 
5857
  msgstr ""
5858
 
5859
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:92
5860
- msgid "Make payment via Paypal."
 
 
5861
  msgstr ""
5862
 
5863
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:96
5864
- msgid "Pay with Paypal"
 
 
5865
  msgstr ""
5866
 
5867
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:381
5868
- msgid "IPN payment completed"
 
 
5869
  msgstr ""
5870
 
5871
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:506
5872
- #: inc/admin/views/setup/setup-paypal.php:24
5873
- msgid "Paypal Email"
 
5874
  msgstr ""
5875
 
5876
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:526
5877
- #: inc/admin/views/settings/payments.php:68
5878
- #: inc/admin/views/setup/setup-paypal.php:34
5879
- msgid "Sandbox Mode"
5880
  msgstr ""
5881
 
5882
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:542
5883
- #: inc/admin/views/settings/payments.php:76
5884
- msgid "Sandbox Email Address"
 
5885
  msgstr ""
5886
 
5887
- #: inc/widgets/course-filters/course-filters.php:11
5888
- #: inc/widgets/course-progress/course-progress.php:46
5889
- #: inc/widgets/course-attributes/course-attributes.php:11
5890
- #: inc/widgets/featured-courses/featured-courses.php:45
5891
- #: inc/widgets/course-info/course-info.php:46
5892
- #: inc/widgets/popular-courses/popular-courses.php:46
5893
- #: inc/widgets/recent-courses/recent-courses.php:46
5894
- #: inc/admin/views/setup/setup-stripe.php:7
5895
- msgid "Title"
5896
  msgstr ""
5897
 
5898
- #: inc/widgets/course-filters/course-filters.php:14
5899
- msgid "Course filters"
5900
  msgstr ""
5901
 
5902
- #: inc/widgets/course-filters/course-filters.php:17
5903
- msgid "Filter by"
5904
  msgstr ""
5905
 
5906
- #: inc/widgets/course-filters/course-filters.php:24
5907
- msgid "Attribute operation"
5908
  msgstr ""
5909
 
5910
- #: inc/widgets/course-filters/course-filters.php:29
5911
- #: inc/widgets/course-filters/course-filters.php:39
5912
- msgid "And"
5913
  msgstr ""
5914
 
5915
- #: inc/widgets/course-filters/course-filters.php:30
5916
- #: inc/widgets/course-filters/course-filters.php:40
5917
- msgid "Or"
 
5918
  msgstr ""
5919
 
5920
- #: inc/widgets/course-filters/course-filters.php:34
5921
- msgid "Value operation"
5922
  msgstr ""
5923
 
5924
- #: inc/widgets/course-filters/course-filters.php:44
5925
- msgid "Ajax filter"
 
 
 
5926
  msgstr ""
5927
 
5928
- #: inc/widgets/course-filters/course-filters.php:48
5929
- msgid "Use ajax to fetch content while filtering"
5930
  msgstr ""
5931
 
5932
- #: inc/widgets/course-filters/course-filters.php:51
5933
- msgid "Button filter"
5934
  msgstr ""
5935
 
5936
- #: inc/widgets/course-filters/course-filters.php:55
5937
- msgid "If checked, user has to click this button to start filtering"
5938
  msgstr ""
5939
 
5940
- #: inc/widgets/course-progress/course-progress.php:49
5941
- msgid "Course Progress"
 
 
 
 
 
5942
  msgstr ""
5943
 
5944
- #: inc/widgets/course-progress/course-progress.php:52
5945
- #: inc/widgets/featured-courses/featured-courses.php:95
5946
- #: inc/widgets/course-info/course-info.php:52
5947
- #: inc/widgets/popular-courses/popular-courses.php:96
5948
- #: inc/widgets/recent-courses/recent-courses.php:96
5949
- msgid "CSS Class"
5950
  msgstr ""
5951
 
5952
- #: inc/widgets/course-attributes/course-attributes.php:14
5953
- msgid "Course attributes"
5954
  msgstr ""
5955
 
5956
- #: inc/widgets/featured-courses/featured-courses.php:48
5957
- msgid "Featured Courses"
5958
  msgstr ""
5959
 
5960
- #: inc/widgets/featured-courses/featured-courses.php:51
5961
- #: inc/widgets/popular-courses/popular-courses.php:52
5962
- #: inc/widgets/recent-courses/recent-courses.php:52
5963
- msgid "Show teacher"
5964
  msgstr ""
5965
 
5966
- #: inc/widgets/featured-courses/featured-courses.php:57
5967
- #: inc/widgets/popular-courses/popular-courses.php:58
5968
- #: inc/widgets/recent-courses/recent-courses.php:58
5969
- msgid "Show lesson"
5970
  msgstr ""
5971
 
5972
- #: inc/widgets/featured-courses/featured-courses.php:63
5973
- #: inc/widgets/popular-courses/popular-courses.php:64
5974
- #: inc/widgets/recent-courses/recent-courses.php:64
5975
- msgid "Show Thumbnail"
5976
  msgstr ""
5977
 
5978
- #: inc/widgets/featured-courses/featured-courses.php:69
5979
- #: inc/widgets/popular-courses/popular-courses.php:70
5980
- #: inc/widgets/recent-courses/recent-courses.php:70
5981
- msgid "Limit"
5982
  msgstr ""
5983
 
5984
- #: inc/widgets/featured-courses/featured-courses.php:76
5985
- #: inc/widgets/popular-courses/popular-courses.php:77
5986
- #: inc/widgets/recent-courses/recent-courses.php:77
5987
- msgid "Description Length"
5988
  msgstr ""
5989
 
5990
- #: inc/widgets/featured-courses/featured-courses.php:83
5991
- #: inc/widgets/popular-courses/popular-courses.php:84
5992
- #: inc/widgets/recent-courses/recent-courses.php:84
5993
- msgid "Show Enrolled Students"
5994
  msgstr ""
5995
 
5996
- #: inc/widgets/featured-courses/featured-courses.php:89
5997
- #: inc/widgets/popular-courses/popular-courses.php:90
5998
- #: inc/widgets/recent-courses/recent-courses.php:90
5999
- msgid "Show Price"
 
6000
  msgstr ""
6001
 
6002
- #: inc/widgets/featured-courses/featured-courses.php:101
6003
- #: inc/widgets/popular-courses/popular-courses.php:102
6004
- #: inc/widgets/recent-courses/recent-courses.php:102
6005
- msgid "Go to Courses"
6006
  msgstr ""
6007
 
6008
- #: inc/widgets/course-info/course-info.php:49
6009
- msgid "Course Info"
 
 
 
6010
  msgstr ""
6011
 
6012
- #: inc/widgets/popular-courses/popular-courses.php:49
6013
- msgid "Popular Courses"
6014
  msgstr ""
6015
 
6016
- #: inc/widgets/recent-courses/recent-courses.php:49
6017
- msgid "Recent Courses"
6018
  msgstr ""
6019
 
6020
- #: templates/content-question/single-choice/answer-options.php:17
6021
- #: templates/content-question/multi-choice/answer-options.php:17
6022
- msgid "Invalid question!"
6023
  msgstr ""
6024
 
6025
- #: templates/emails/plain/order-items-table.php:48
6026
- #, php-format
6027
- msgid "Quantity: %s"
 
 
6028
  msgstr ""
6029
 
6030
- #: templates/emails/plain/order-items-table.php:50
6031
- #, php-format
6032
- msgid "Cost: %s"
6033
  msgstr ""
6034
 
6035
- #: templates/profile/tabs/quizzes.php:23
6036
- msgid "My Quizzes"
6037
  msgstr ""
6038
 
6039
- #: templates/profile/tabs/quizzes.php:40
6040
- #: templates/profile/tabs/courses.php:35
6041
- #: templates/profile/tabs/courses/purchased.php:41
6042
- msgid "Progress"
6043
  msgstr ""
6044
 
6045
- #: templates/profile/tabs/quizzes.php:41
6046
- msgid "Interval"
6047
  msgstr ""
6048
 
6049
- #: templates/profile/tabs/quizzes.php:97
6050
- msgid "No quizzes!"
6051
  msgstr ""
6052
 
6053
- #: templates/profile/tabs/courses.php:21
6054
- msgid "You haven't got any courses yet!"
 
 
6055
  msgstr ""
6056
 
6057
- #: templates/profile/tabs/courses.php:27
6058
- #: templates/profile/tabs/courses/owned.php:25
6059
- msgid "My Courses"
6060
  msgstr ""
6061
 
6062
- #: templates/profile/tabs/courses.php:34
6063
- #: templates/profile/tabs/courses/purchased.php:40
6064
- msgid "Passing Grade"
6065
  msgstr ""
6066
 
6067
- #: templates/single-course/tabs/curriculum.php:47
6068
- msgid "Curriculum is empty"
6069
  msgstr ""
6070
 
6071
- #: templates/single-course/section/content.php:72
6072
- msgid "No items in this section"
6073
  msgstr ""
6074
 
6075
- #: templates/single-course/content-item/nav.php:20
6076
- msgctxt "course-item-navigation"
6077
- msgid "Prev"
6078
  msgstr ""
6079
 
6080
- #: templates/single-course/content-item/nav.php:29
6081
- msgctxt "course-item-navigation"
6082
- msgid "Next"
6083
  msgstr ""
6084
 
6085
- #: templates/single-course/content-item/header.php:24
6086
- msgid "Search item"
 
6087
  msgstr ""
6088
 
6089
- #: templates/single-course/content-item/header.php:36
6090
- msgid "Back to Course"
 
 
 
 
6091
  msgstr ""
6092
 
6093
- #: templates/single-course/buttons/continue.php:23
6094
- #: templates/content-quiz/buttons/continue.php:26
6095
- #: inc/admin/views/setup/content.php:86
6096
- msgid "Continue"
6097
  msgstr ""
6098
 
6099
- #: templates/single-course/buttons/purchase.php:32
6100
- msgid "Buy this course"
6101
  msgstr ""
6102
 
6103
- #: templates/single-course/buttons/retake.php:39
6104
- #, php-format
6105
- msgid "Retake course (+%d)"
6106
  msgstr ""
6107
 
6108
- #: templates/single-course/buttons/enroll.php:32
6109
- msgid "Enroll"
6110
  msgstr ""
6111
 
6112
- #: templates/single-course/buttons/finish.php:24
6113
- msgid "Finish course"
6114
  msgstr ""
6115
 
6116
- #: templates/content-quiz/buttons/check.php:24
6117
- msgid "Checked"
6118
  msgstr ""
6119
 
6120
- #: templates/content-quiz/buttons/check.php:24
6121
- msgid "Check"
 
 
6122
  msgstr ""
6123
 
6124
- #: templates/content-quiz/buttons/nav.php:36
6125
- msgctxt "quiz-question-navigation"
6126
- msgid "Prev"
6127
  msgstr ""
6128
 
6129
- #: templates/content-quiz/buttons/nav.php:57
6130
- msgctxt "quiz-question-navigation"
6131
- msgid "Next"
6132
  msgstr ""
6133
 
6134
- #: templates/content-quiz/buttons/nav.php:78
6135
- msgctxt "quiz-question-navigation"
6136
- msgid "Skip"
6137
  msgstr ""
6138
 
6139
- #: templates/content-quiz/buttons/hint.php:21
6140
- msgid "Hinted"
6141
  msgstr ""
6142
 
6143
- #: templates/content-quiz/buttons/hint.php:21
6144
- msgid "Hint"
6145
  msgstr ""
6146
 
6147
- #: templates/content-quiz/buttons/summary.php:27
6148
- msgid "Summary"
6149
  msgstr ""
6150
 
6151
- #: templates/content-quiz/buttons/redo.php:32
6152
- msgid "Redo"
6153
  msgstr ""
6154
 
6155
- #: templates/content-quiz/buttons/start.php:27
6156
- msgid "Start"
6157
  msgstr ""
6158
 
6159
- #: templates/global/become-teacher-form/button.php:18
6160
- msgid "Submitting"
6161
  msgstr ""
6162
 
6163
- #: templates/widgets/featured-courses/default.php:24
6164
- #: templates/widgets/popular-courses/default.php:19
6165
- #: templates/widgets/recent-courses/default.php:24
6166
- msgid "No courses"
6167
  msgstr ""
6168
 
6169
- #: templates/widgets/featured-courses/default.php:65
6170
- #: templates/widgets/popular-courses/default.php:60
6171
- #: templates/widgets/recent-courses/default.php:65
6172
- msgid "..."
6173
  msgstr ""
6174
 
6175
- #: templates/widgets/featured-courses/default.php:86
6176
- #: templates/widgets/popular-courses/default.php:81
6177
- #: templates/widgets/recent-courses/default.php:86
6178
- #, php-format
6179
- msgid "%d lessons"
6180
  msgstr ""
6181
 
6182
- #: templates/widgets/featured-courses/default.php:86
6183
- #: templates/widgets/popular-courses/default.php:81
6184
- #: templates/widgets/recent-courses/default.php:86
6185
- #, php-format
6186
- msgid "%d lesson"
6187
- msgid_plural "%d lessons"
6188
- msgstr[0] ""
6189
- msgstr[1] ""
6190
 
6191
- #: templates/widgets/course-info/default.php:39
6192
- msgid "Preview Lessons"
6193
  msgstr ""
6194
 
6195
- #: inc/admin/settings/email-groups/class-lp-settings-processing-order-emails.php:22
6196
- msgid "Processing Order"
6197
  msgstr ""
6198
 
6199
- #: inc/admin/settings/email-groups/class-lp-settings-enrolled-course-emails.php:26
6200
- msgid "Enrolled Course"
6201
  msgstr ""
6202
 
6203
- #: inc/admin/settings/email-groups/class-lp-settings-finished-course-emails.php:26
6204
- msgid "Finished Course"
6205
  msgstr ""
6206
 
6207
- #: inc/admin/settings/email-groups/class-lp-settings-cancelled-order-emails.php:24
6208
- msgid "Cancelled Order"
6209
  msgstr ""
6210
 
6211
- #: inc/admin/settings/email-groups/class-lp-settings-course-review-emails.php:23
6212
- msgid "Review Course"
 
6213
  msgstr ""
6214
 
6215
- #: inc/admin/settings/email-groups/class-lp-settings-completed-order-emails.php:23
6216
- msgid "Completed Order"
 
6217
  msgstr ""
6218
 
6219
- #: inc/admin/settings/email-groups/class-lp-settings-become-teacher-emails.php:23
6220
- msgid "Become an Instructor"
6221
  msgstr ""
6222
 
6223
- #: inc/admin/settings/email-groups/class-lp-settings-new-order-emails.php:24
6224
- msgid "New Order"
 
6225
  msgstr ""
6226
 
6227
- #: inc/admin/meta-box/fields/image-dimensions.php:32
6228
- #: inc/admin/views/settings/fields/image-size.php:13
6229
- msgid "px"
6230
  msgstr ""
6231
 
6232
- #: inc/admin/meta-box/fields/course-permalink.php:37
6233
- #: inc/admin/views/settings/fields/course-permalink.php:15
6234
- msgctxt "default-slug"
6235
- msgid "course"
6236
  msgstr ""
6237
 
6238
- #: inc/admin/meta-box/fields/course-permalink.php:42
6239
- #: inc/admin/views/settings/fields/course-permalink.php:26
6240
- msgid "Default"
6241
  msgstr ""
6242
 
6243
- #: inc/admin/meta-box/fields/course-permalink.php:52
6244
- #: inc/admin/views/settings/fields/course-permalink.php:36
6245
- msgid "Courses base"
6246
  msgstr ""
6247
 
6248
- #: inc/admin/meta-box/fields/course-permalink.php:57
6249
- #: inc/admin/views/settings/fields/course-permalink.php:41
6250
- msgid "Courses base with category"
6251
  msgstr ""
6252
 
6253
- #: inc/admin/meta-box/fields/course-permalink.php:92
6254
- #: inc/admin/views/settings/fields/course-permalink.php:77
6255
- msgid "Custom Base"
6256
  msgstr ""
6257
 
6258
- #: inc/admin/meta-box/fields/course-permalink.php:100
6259
- #: inc/admin/views/settings/fields/course-permalink.php:84
6260
- msgid ""
6261
- "Enter a custom base to use. A base <strong>must</strong> be set or WordPress "
6262
- "will use default values instead."
6263
  msgstr ""
6264
 
6265
- #: inc/admin/meta-box/fields/google-fonts.php:30
6266
- msgid "Fonts"
 
6267
  msgstr ""
6268
 
6269
- #: inc/admin/meta-box/fields/google-fonts.php:38
6270
- msgid "Font families separated by |, eg: Open Sans|Roboto."
 
6271
  msgstr ""
6272
 
6273
- #: inc/admin/meta-box/fields/google-fonts.php:40
6274
- msgid "Subset"
 
6275
  msgstr ""
6276
 
6277
- #: inc/admin/meta-box/fields/google-fonts.php:48
6278
- msgid "Font subsets separated by comma, eg: greek,latin."
 
6279
  msgstr ""
6280
 
6281
- #: inc/admin/meta-box/fields/payment-order.php:30
6282
- #: inc/admin/views/tools/course/html-course.php:28
6283
- #: inc/admin/views/tools/course/html-user.php:28
6284
- msgid "ID"
6285
  msgstr ""
6286
 
6287
- #: inc/admin/meta-box/fields/payment-order.php:31
6288
- #: inc/admin/meta-box/fields/list-emails.php:29
6289
- #: inc/admin/views/setup/setup-stripe.php:11
6290
- msgid "Description"
6291
  msgstr ""
6292
 
6293
- #: inc/admin/meta-box/fields/color-schema.php:99
6294
- msgid "Save as new"
 
6295
  msgstr ""
6296
 
6297
- #: inc/admin/meta-box/fields/color-schema.php:102
6298
- msgid "Use this colors"
 
6299
  msgstr ""
6300
 
6301
- #: inc/admin/meta-box/fields/color-schema.php:103
6302
- #: inc/admin/views/meta-boxes/course/review-logs.php:31
6303
- msgid "Delete"
6304
  msgstr ""
6305
 
6306
- #: inc/admin/meta-box/fields/email-content.php:66
6307
- msgid "General setting"
6308
  msgstr ""
6309
 
6310
- #: inc/admin/meta-box/fields/email-content.php:70
6311
- #, php-format
6312
- msgid ""
6313
- "Choose <strong>General setting</strong> to apply the setting from Email <a "
6314
- "href=\"%s\">General Options</a> "
6315
  msgstr ""
6316
 
6317
- #: inc/admin/meta-box/fields/email-content.php:115
6318
- #: inc/admin/views/settings/emails/email-template.php:52
6319
  #, php-format
6320
- msgid ""
6321
- "This template has been overridden by your theme and can be found in: <code>"
6322
- "%s</code>. <br />Please open the file in an editor program to edit"
6323
  msgstr ""
6324
 
6325
- #: inc/admin/meta-box/fields/email-content.php:151
6326
- #: inc/admin/views/settings/emails/email-template.php:77
6327
- msgid "Click on variables to add it into email content."
6328
  msgstr ""
6329
 
6330
- #: inc/admin/meta-box/fields/list-emails.php:70
6331
- msgid ""
6332
- "You can enable/disable each email by clicking on the status icon or apply "
6333
- "status for all emails by clicking these buttons"
6334
  msgstr ""
6335
 
6336
- #: inc/admin/meta-box/fields/list-emails.php:73
6337
- msgid "Enable all"
6338
  msgstr ""
6339
 
6340
- #: inc/admin/meta-box/fields/list-emails.php:76
6341
- msgid "Disable all"
6342
  msgstr ""
6343
 
6344
- #: inc/admin/views/statistics/courses.php:18
6345
- #: inc/admin/views/statistics/users.php:19
6346
- #: inc/admin/views/statistics/general.php:33
6347
- #: inc/admin/views/statistics/orders.php:19
6348
- msgid "Last 7 Days"
6349
  msgstr ""
6350
 
6351
- #: inc/admin/views/statistics/courses.php:21
6352
- #: inc/admin/views/statistics/users.php:22
6353
- #: inc/admin/views/statistics/general.php:36
6354
- #: inc/admin/views/statistics/orders.php:22
6355
- msgid "Last 30 Days"
6356
  msgstr ""
6357
 
6358
- #: inc/admin/views/statistics/courses.php:24
6359
- #: inc/admin/views/statistics/users.php:26
6360
- #: inc/admin/views/statistics/general.php:40
6361
- #: inc/admin/views/statistics/orders.php:25
6362
- msgid "Last 12 Months"
6363
  msgstr ""
6364
 
6365
- #: inc/admin/views/statistics/courses.php:31
6366
- #: inc/admin/views/statistics/users.php:33
6367
- #: inc/admin/views/statistics/general.php:47
6368
- #: inc/admin/views/statistics/orders.php:32
6369
- msgid "From"
6370
  msgstr ""
6371
 
6372
- #: inc/admin/views/statistics/courses.php:33
6373
- #: inc/admin/views/statistics/users.php:35
6374
- #: inc/admin/views/statistics/general.php:49
6375
- #: inc/admin/views/statistics/orders.php:34
6376
- msgid "To"
6377
  msgstr ""
6378
 
6379
- #: inc/admin/views/statistics/courses.php:36
6380
- #: inc/admin/views/statistics/users.php:39
6381
- #: inc/admin/views/statistics/general.php:53
6382
- #: inc/admin/views/statistics/orders.php:37
6383
- msgid "Go"
6384
  msgstr ""
6385
 
6386
- #: inc/admin/views/statistics/courses.php:43
6387
- #: inc/admin/views/statistics/general.php:60
6388
- msgid "Public"
6389
  msgstr ""
6390
 
6391
- #: inc/admin/views/statistics/orders.php:44
6392
- msgid "Sale by"
 
 
6393
  msgstr ""
6394
 
6395
- #: inc/admin/views/statistics/orders.php:48
6396
- msgid "Course Category"
6397
  msgstr ""
6398
 
6399
- #: inc/admin/views/statistics/orders.php:51
6400
- msgid "Select a course"
 
 
 
 
 
 
 
 
 
6401
  msgstr ""
6402
 
6403
- #: inc/admin/views/statistics/orders.php:55
6404
- msgid "Select a course category"
 
 
 
 
 
 
 
 
6405
  msgstr ""
6406
 
6407
- #: inc/admin/views/settings/setting-field.php:96
6408
- msgid ""
6409
- "The settings of this image size have been disabled because its values are "
6410
- "being overwritten by a filter."
6411
- msgstr ""
 
6412
 
6413
- #: inc/admin/views/settings/setting-field.php:108
6414
- msgid "Hard Crop?"
 
6415
  msgstr ""
6416
 
6417
- #: inc/admin/views/settings/payments.php:27
6418
- msgid "Basic"
6419
- msgstr ""
 
 
 
6420
 
6421
- #: inc/admin/views/settings/payments.php:28
6422
- msgid "Security"
 
6423
  msgstr ""
6424
 
6425
- #: inc/admin/views/settings/payments.php:33
6426
- msgid "Email Address"
6427
- msgstr ""
 
 
 
6428
 
6429
- #: inc/admin/views/settings/payments.php:42
6430
- msgid "API Username"
 
6431
  msgstr ""
6432
 
6433
- #: inc/admin/views/settings/payments.php:49
6434
- msgid "API Password"
 
 
 
 
 
 
 
 
6435
  msgstr ""
6436
 
6437
- #: inc/admin/views/settings/payments.php:56
6438
- msgid "API Signature"
6439
  msgstr ""
6440
 
6441
- #: inc/admin/views/settings/payments.php:85
6442
- msgid "Sandbox API Username"
6443
  msgstr ""
6444
 
6445
- #: inc/admin/views/settings/payments.php:93
6446
- msgid "Sandbox API Password"
6447
  msgstr ""
6448
 
6449
- #: inc/admin/views/settings/payments.php:101
6450
- msgid "Sandbox API Signature"
 
6451
  msgstr ""
6452
 
6453
- #: inc/admin/views/tools/html-cache.php:12
6454
- msgid "LearnPress hard cache"
6455
  msgstr ""
6456
 
6457
- #: inc/admin/views/tools/html-cache.php:13
6458
- msgid ""
6459
- "Hard cache is build-in tool of LearnPress for caching of static content such "
6460
- "as course, lesson, quiz."
6461
  msgstr ""
6462
 
6463
- #: inc/admin/views/tools/html-cache.php:14
6464
- msgid ""
6465
- "When caching is enabled, the content will be cached when course is accessed "
6466
- "in the first time."
6467
  msgstr ""
6468
 
6469
- #: inc/admin/views/tools/html-cache.php:15
6470
- msgid ""
6471
- "And it will not change in all later accesses until the cache is cleared."
6472
  msgstr ""
6473
 
6474
- #: inc/admin/views/tools/html-cache.php:16
6475
- msgid ""
6476
- "If the content is not changed after updating course, click the button below "
6477
- "to flush the cache and apply changes."
6478
  msgstr ""
6479
 
6480
- #: inc/admin/views/tools/html-cache.php:21
6481
- msgid "Enable/Disable hard cache"
6482
  msgstr ""
6483
 
6484
- #: inc/admin/views/tools/html-cache.php:25
6485
- #: inc/admin/views/tools/html-cache.php:28
6486
- msgid "Clear cache"
6487
  msgstr ""
6488
 
6489
- #: inc/admin/views/tools/html-cache.php:26
6490
- msgid "Cleaning..."
6491
  msgstr ""
6492
 
6493
- #: inc/admin/views/tools/html-template.php:30
6494
- #, php-format
6495
- msgid "Override Templates (%s)"
6496
  msgstr ""
6497
 
6498
- #: inc/admin/views/tools/html-template.php:38
6499
- msgid "File"
6500
  msgstr ""
6501
 
6502
- #: inc/admin/views/tools/html-template.php:41
6503
- #, php-format
6504
- msgid "All (%d)"
6505
  msgstr ""
6506
 
6507
- #: inc/admin/views/tools/html-template.php:49
6508
- #, php-format
6509
- msgid "Outdated (%d)"
6510
  msgstr ""
6511
 
6512
- #: inc/admin/views/tools/html-template.php:51
6513
- #, php-format
6514
- msgid "Unversioned (%d)"
6515
  msgstr ""
6516
 
6517
- #: inc/admin/views/tools/html-template.php:55
6518
- msgid "Version"
 
6519
  msgstr ""
6520
 
6521
- #: inc/admin/views/tools/html-template.php:57
6522
- msgid "Core version"
6523
  msgstr ""
6524
 
6525
- #: inc/admin/views/tools/html-template.php:89
6526
- msgid "There is no template file has overwritten"
6527
  msgstr ""
6528
 
6529
- #: inc/admin/views/tools/subscription-button.php:14
6530
- msgid ""
6531
- "If you don't want to miss exclussive offers from us, join our newsletter."
6532
  msgstr ""
6533
 
6534
- #: inc/admin/views/tools/subscription-button.php:17
6535
- msgid "Sure! I want to get the latest news."
6536
  msgstr ""
6537
 
6538
- #: inc/admin/views/course/new-section.php:17
6539
- msgid "Write section name and press Enter"
6540
  msgstr ""
6541
 
6542
- #: inc/admin/views/course/pagination.php:18
6543
- #: inc/admin/views/quiz/pagination.php:16
6544
- msgctxt "page-navigation"
6545
- msgid "Previous"
6546
  msgstr ""
6547
 
6548
- #: inc/admin/views/course/pagination.php:20
6549
- #: inc/admin/views/quiz/pagination.php:18
6550
- msgctxt "page-navigation"
6551
- msgid "Next"
6552
  msgstr ""
6553
 
6554
- #: inc/admin/views/course/editor.php:25
6555
- msgid "Something went wrong! Please reload to continue editing curriculum."
 
 
6556
  msgstr ""
6557
 
6558
- #: inc/admin/views/course/section.php:21
6559
- msgid "Enter the name section"
 
6560
  msgstr ""
6561
 
6562
- #: inc/admin/views/course/section.php:38
6563
- msgid "Describe about this section"
 
6564
  msgstr ""
6565
 
6566
- #: inc/admin/views/course/section.php:56
6567
- msgid "Select items"
6568
  msgstr ""
6569
 
6570
- #: inc/admin/views/course/section.php:61
6571
- msgid "Are you sure?"
6572
  msgstr ""
6573
 
6574
- #: inc/admin/views/course/modal-choose-items.php:77
6575
- msgid "Type here to search item"
6576
  msgstr ""
6577
 
6578
- #: inc/admin/views/course/modal-choose-items.php:83
6579
- #: inc/admin/views/quiz/modal-choose-items.php:70
6580
- msgid "No item found."
6581
  msgstr ""
6582
 
6583
- #: inc/admin/views/course/modal-choose-items.php:101
6584
- #: inc/admin/views/quiz/modal-choose-items.php:89
6585
- msgid "Adding"
6586
  msgstr ""
6587
 
6588
- #: inc/admin/views/course/section-item.php:36
6589
- msgid "Remove from course"
6590
  msgstr ""
6591
 
6592
- #: inc/admin/views/course/section-item.php:40
6593
- #: inc/admin/views/quiz/question-actions.php:50
6594
- msgid "Move to trash"
6595
  msgstr ""
6596
 
6597
- #: inc/admin/views/course/curriculum.php:15
6598
- msgid "Curriculum"
6599
  msgstr ""
6600
 
6601
- #: inc/admin/views/addons/html-plugins-more.php:17
6602
- #: inc/admin/views/addons/html-themes.php:16
6603
  #, php-format
6604
- msgid "Last checked %s. <a href=\"%s\">Check again</a>"
6605
  msgstr ""
6606
 
6607
- #: inc/admin/views/addons/html-plugins-more.php:28
6608
- msgid "There is no available add-ons."
 
6609
  msgstr ""
6610
 
6611
- #: inc/admin/views/addons/html-plugins-more.php:36
6612
- msgid "Free add-ons"
 
 
6613
  msgstr ""
6614
 
6615
- #: inc/admin/views/addons/html-plugins-more.php:41
6616
- msgid "Premium add-ons"
 
6617
  msgstr ""
6618
 
6619
- #: inc/admin/views/addons/html-themes.php:25
6620
- msgid "No related themes."
 
6621
  msgstr ""
6622
 
6623
- #: inc/admin/views/addons/html-themes.php:35
6624
- msgid "Education Support"
6625
  msgstr ""
6626
 
6627
- #: inc/admin/views/addons/html-themes.php:39
6628
- msgid "Other"
6629
  msgstr ""
6630
 
6631
- #: inc/admin/views/addons/html-loop-plugin.php:38
6632
- #, php-format
6633
- msgid "<cite>By %s</cite>"
6634
  msgstr ""
6635
 
6636
- #: inc/admin/views/addons/html-loop-plugin.php:44
6637
- msgid "Version: "
6638
  msgstr ""
6639
 
6640
- #: inc/admin/views/addons/html-loop-theme.php:30
6641
- msgid "$"
6642
  msgstr ""
6643
 
6644
- #: inc/admin/views/addons/html-loop-theme.php:33
6645
- msgid " sales"
6646
  msgstr ""
6647
 
6648
- #: inc/admin/views/addons/html-plugins-installed.php:18
6649
- msgid "There is no add-on installed."
6650
  msgstr ""
6651
 
6652
- #: inc/admin/views/addons/html-plugins-installed.php:25
6653
- msgid "Installed add-ons"
6654
  msgstr ""
6655
 
6656
- #: inc/admin/views/setup/notice-setup.php:2
6657
- msgid "<strong>LearnPress has just successfully installed.</strong>"
6658
  msgstr ""
6659
 
6660
- #: inc/admin/views/setup/notice-setup.php:6
6661
- msgid "Skip"
6662
  msgstr ""
6663
 
6664
- #: inc/admin/views/setup/setup-paypal.php:29
6665
- msgid "Your Paypal email in live mode."
6666
  msgstr ""
6667
 
6668
- #: inc/admin/views/setup/setup-paypal.php:39
6669
  #, php-format
6670
- msgid ""
6671
- "For testing purpose with Paypal sandbox mode. Create an account <a "
6672
- "href=\"%s\">here</a>!"
6673
- msgstr ""
6674
-
6675
- #: inc/admin/views/setup/setup-paypal.php:44
6676
- msgid "Paypal Sandbox Email"
6677
  msgstr ""
6678
 
6679
- #: inc/admin/views/setup/setup-paypal.php:49
6680
- msgid "Your Paypal email in sandbox mode."
6681
  msgstr ""
6682
 
6683
- #: inc/admin/views/setup/setup-stripe.php:15
6684
- msgid "Live secret key"
 
 
6685
  msgstr ""
6686
 
6687
- #: inc/admin/views/setup/setup-stripe.php:19
6688
- msgid "Live publish key"
6689
  msgstr ""
6690
 
6691
- #: inc/admin/views/setup/setup-stripe.php:24
6692
- msgid "Test mode"
6693
  msgstr ""
6694
 
6695
- #: inc/admin/views/setup/setup-stripe.php:28
6696
- msgid "Test secret key"
6697
  msgstr ""
6698
 
6699
- #: inc/admin/views/setup/setup-stripe.php:32
6700
- msgid "Test publish key"
6701
  msgstr ""
6702
 
6703
- #: inc/admin/views/setup/content.php:47
6704
- msgid "Skip to prev step"
6705
  msgstr ""
6706
 
6707
- #: inc/admin/views/setup/content.php:60
6708
- msgid "Skip to next step"
6709
  msgstr ""
6710
 
6711
- #: inc/admin/views/setup/content.php:67
6712
- #: inc/admin/views/setup/steps/finish.php:29
6713
- msgid "Back to Dashboard"
6714
  msgstr ""
6715
 
6716
- #: inc/admin/views/setup/header.php:17
6717
- msgid "LearnPress &rsaquo; Setup Wizard"
6718
  msgstr ""
6719
 
6720
- #: inc/admin/views/setup/footer.php:15
6721
- #, php-format
6722
- msgid "LearnPress %s. Designed by @ThimPress."
6723
  msgstr ""
6724
 
6725
- #: inc/admin/views/quiz/editor.php:31
6726
- #: inc/admin/views/tools/course/html-course.php:31
6727
- #: inc/admin/views/tools/course/html-user.php:31
6728
- msgid "Actions"
6729
  msgstr ""
6730
 
6731
- #: inc/admin/views/quiz/editor.php:47
6732
- msgid "Create a new question"
6733
  msgstr ""
6734
 
6735
- #: inc/admin/views/quiz/editor.php:54
6736
- msgid "Add as New..."
 
6737
  msgstr ""
6738
 
6739
- #: inc/admin/views/quiz/editor.php:64
6740
- msgid "Select"
6741
  msgstr ""
6742
 
6743
- #: inc/admin/views/quiz/editor.php:78
6744
- msgid "Something went wrong! Please reload to continue editing quiz questions."
6745
  msgstr ""
6746
 
6747
- #: inc/admin/views/quiz/modal-choose-items.php:65
6748
- msgid "Type here to search question"
6749
  msgstr ""
6750
 
6751
- #: inc/admin/views/quiz/question-answer.php:19
6752
- #: inc/admin/views/question/answer.php:18
6753
- msgid "Answer Text"
6754
  msgstr ""
6755
 
6756
- #: inc/admin/views/quiz/question-answer.php:20
6757
- #: inc/admin/views/question/answer.php:19
6758
- msgid "Correct?"
6759
  msgstr ""
6760
 
6761
- #: inc/admin/views/quiz/question-answer.php:34
6762
- #: inc/admin/views/question/answer.php:35
6763
- msgid "Add option"
6764
  msgstr ""
6765
 
6766
- #: inc/admin/views/quiz/question-actions.php:46
6767
- msgid "Remove from quiz"
6768
  msgstr ""
6769
 
6770
- #: inc/admin/views/updates/html-updating-message.php:14
6771
- msgid ""
6772
- "<strong>LearnPress update</strong> – We are running updater to upgrade your "
6773
- "database to the latest version."
6774
  msgstr ""
6775
 
6776
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:14
6777
- #, php-format
6778
- msgid "Welcome to LearnPress %s"
6779
  msgstr ""
6780
 
6781
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:15
6782
- msgid ""
6783
- "This is a <strong>BIG UPDATE</strong> and it allows you to do so much more!"
6784
  msgstr ""
6785
 
6786
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:20
6787
- msgid "Check what's new"
6788
  msgstr ""
6789
 
6790
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:22
6791
- msgid "Get support now"
 
6792
  msgstr ""
6793
 
6794
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:24
6795
- msgid "Got it!"
6796
  msgstr ""
6797
 
6798
- #: inc/admin/views/updates/html-update-message.php:12
6799
- msgid ""
6800
- "<strong>LearnPress update</strong> – We need to update your database to the "
6801
- "latest version."
6802
  msgstr ""
6803
 
6804
- #: inc/admin/views/updates/update-screen.php:17
6805
- msgid "LearnPress &rsaquo; Update Database"
6806
  msgstr ""
6807
 
6808
- #: inc/admin/views/updates/update-screen.php:36
6809
- msgid "LearnPress Update Database"
6810
  msgstr ""
6811
 
6812
- #: inc/admin/views/updates/update-screen.php:38
6813
- msgid "Before updating please ensure your site data is already backed up!"
 
6814
  msgstr ""
6815
 
6816
- #: inc/admin/views/updates/update-screen.php:43
6817
- msgid "Run Updater"
 
6818
  msgstr ""
6819
 
6820
- #: inc/admin/views/updates/html-updated-latest-message.php:16
6821
- msgid "LearnPress has just updated to latest version."
6822
  msgstr ""
6823
 
6824
- #: inc/admin/views/question/actions.php:13
6825
- msgid "Question Answers"
6826
  msgstr ""
6827
 
6828
- #: inc/admin/views/meta-boxes/tabs.php:93
6829
- msgid "Initializing..."
6830
  msgstr ""
6831
 
6832
- #: inc/widgets/course-filters/tmpl/default.php:83
6833
- msgid "Filter"
6834
  msgstr ""
6835
 
6836
- #: templates/profile/tabs/settings/basic-information.php:49
6837
- msgid "Biographical Info"
6838
  msgstr ""
6839
 
6840
- #: templates/profile/tabs/settings/basic-information.php:53
6841
- msgid ""
6842
- "Share a little biographical information to fill out your profile. This may "
6843
- "be shown publicly."
6844
  msgstr ""
6845
 
6846
- #: templates/profile/tabs/settings/basic-information.php:57
6847
- msgid "First Name"
6848
  msgstr ""
6849
 
6850
- #: templates/profile/tabs/settings/basic-information.php:65
6851
- msgid "Last Name"
 
 
 
 
6852
  msgstr ""
6853
 
6854
- #: templates/profile/tabs/settings/basic-information.php:73
6855
- msgid "Nickname"
6856
  msgstr ""
6857
 
6858
- #: templates/profile/tabs/settings/basic-information.php:81
6859
- msgid "Display name publicly as"
6860
  msgstr ""
6861
 
6862
- #: templates/profile/tabs/settings/basic-information.php:111
6863
- #: templates/profile/tabs/settings/change-password.php:87
6864
- #: templates/profile/tabs/settings/avatar.php:76
6865
- #: templates/profile/tabs/settings/publicity.php:88
6866
- msgid "Save changes"
6867
  msgstr ""
6868
 
6869
- #: templates/profile/tabs/settings/change-password.php:43
6870
- msgid "Old password"
 
 
6871
  msgstr ""
6872
 
6873
- #: templates/profile/tabs/settings/change-password.php:49
6874
- msgid "New password"
 
 
6875
  msgstr ""
6876
-
6877
- #: templates/profile/tabs/settings/change-password.php:55
6878
- msgid "Confirmation password"
 
 
6879
  msgstr ""
6880
 
6881
- #: templates/profile/tabs/settings/change-password.php:59
6882
- msgid "New password does not match!"
 
 
6883
  msgstr ""
6884
 
6885
- #: templates/profile/tabs/settings/avatar.php:58
6886
- msgid "Upload"
 
 
6887
  msgstr ""
6888
 
6889
- #: templates/profile/tabs/settings/avatar.php:60
6890
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:23
6891
- #: inc/admin/views/tools/database/html-remove-database.php:23
6892
- msgid "Remove"
6893
  msgstr ""
6894
 
6895
- #: templates/profile/tabs/settings/publicity.php:50
6896
- msgid "My courses"
 
 
6897
  msgstr ""
6898
 
6899
- #: templates/profile/tabs/settings/publicity.php:54
6900
- msgid "Public your profile courses"
6901
  msgstr ""
6902
 
6903
- #: templates/profile/tabs/settings/publicity.php:61
6904
- msgid "My quizzes"
6905
  msgstr ""
6906
 
6907
- #: templates/profile/tabs/settings/publicity.php:65
6908
- msgid "Public your profile quizzes"
6909
  msgstr ""
6910
 
6911
- #: templates/profile/tabs/courses/owned.php:37
6912
- #: templates/profile/tabs/courses/purchased.php:82
6913
- msgid "No courses!"
6914
  msgstr ""
6915
 
6916
- #: templates/profile/tabs/courses/purchased.php:24
6917
- msgid "Purchased Courses"
6918
  msgstr ""
6919
 
6920
- #: templates/profile/tabs/orders/order-message.php:19
6921
- #, php-format
6922
- msgid "This order is paid for %s"
6923
  msgstr ""
6924
 
6925
- #: templates/profile/tabs/orders/order-message.php:25
6926
- #, php-format
6927
- msgid "This order is paid by %s"
6928
  msgstr ""
6929
 
6930
- #: templates/profile/tabs/orders/list.php:21
6931
- msgid "No orders!"
6932
  msgstr ""
6933
 
6934
- #: templates/profile/tabs/orders/list.php:26
6935
- msgid "My Orders"
 
6936
  msgstr ""
6937
 
6938
- #: templates/profile/tabs/orders/list.php:36
6939
- msgid "Action"
6940
  msgstr ""
6941
 
6942
- #: templates/profile/tabs/orders/recover-order.php:20
6943
- msgid "If you have a valid order key you can recover it here."
6944
  msgstr ""
6945
 
6946
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:29
6947
- msgid "Send notification when a user signs up to be a teacher"
 
 
6948
  msgstr ""
6949
 
6950
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:37
6951
- msgid "Email subject"
 
6952
  msgstr ""
6953
 
6954
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:41
6955
- msgid "Message"
6956
  msgstr ""
6957
 
6958
- #: inc/admin/views/settings/emails/email-template.php:13
6959
- #: inc/admin/views/settings/emails/_email-template.php:11
6960
- msgid "HTML template"
6961
  msgstr ""
6962
 
6963
- #: inc/admin/views/settings/emails/email-template.php:14
6964
- #: inc/admin/views/settings/emails/_email-template.php:12
6965
- msgid "Plain text template"
6966
  msgstr ""
6967
 
6968
- #: inc/admin/views/settings/emails/email-template.php:87
6969
- #: inc/admin/views/settings/emails/_email-template.php:78
6970
- #, php-format
6971
- msgid ""
6972
- "To override and edit this email template copy <code>%s</code> to your theme "
6973
- "folder: <code>%s</code>."
6974
  msgstr ""
6975
 
6976
- #: inc/admin/views/settings/emails/_email-template.php:36
6977
- #, php-format
6978
- msgid ""
6979
- "This template has been overridden by your theme and can be found in: <code>"
6980
- "%s</code>. Please open the file in an editor program to edit"
6981
  msgstr ""
6982
 
6983
- #: inc/admin/views/settings/emails/_email-template.php:63
6984
- #, php-format
6985
  msgid ""
6986
- "This template has been overridden by your theme and can be found in: <code>"
6987
- "%s</code>."
6988
  msgstr ""
6989
 
6990
- #: inc/admin/views/settings/emails/_email-template.php:68
6991
- msgid "Delete template file"
6992
  msgstr ""
6993
 
6994
- #: inc/admin/views/settings/emails/_email-template.php:83
6995
- msgid "Copy file to theme"
6996
  msgstr ""
6997
 
6998
- #: inc/admin/views/settings/emails/_email-template.php:89
6999
- msgid "File not found."
 
 
7000
  msgstr ""
7001
 
7002
- #: inc/admin/views/settings/emails/general.php:15
7003
- msgid "Email Options"
 
 
7004
  msgstr ""
7005
 
7006
- #: inc/admin/views/settings/emails/general.php:23
7007
- msgid "From Name"
7008
  msgstr ""
7009
 
7010
- #: inc/admin/views/settings/emails/general.php:29
7011
- msgid "From Email"
7012
  msgstr ""
7013
 
7014
- #: inc/admin/views/settings/emails/general.php:36
7015
- msgid "Email Template"
 
7016
  msgstr ""
7017
 
7018
- #: inc/admin/views/settings/emails/general.php:50
7019
- msgid "The texts display in the bottom of email"
 
7020
  msgstr ""
7021
 
7022
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:12
7023
- msgid "Remove outdated Data"
7024
  msgstr ""
7025
 
7026
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:13
7027
- msgid ""
7028
- "Remove all courses, lessons, quizzes and questions from version older than 1."
7029
- "0."
7030
  msgstr ""
7031
 
7032
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:16
7033
- msgid ""
7034
- "Be careful before using this action! Only use this action in case all "
7035
- "outdated data has been upgraded."
7036
  msgstr ""
7037
 
7038
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:20
7039
- #: inc/admin/views/tools/database/html-remove-database.php:20
7040
- msgid "Check this box and click this button again to confirm."
7041
  msgstr ""
7042
 
7043
- #: inc/admin/views/tools/database/html-install-sample-data.php:16
7044
- msgid "Install Sample Data"
7045
  msgstr ""
7046
 
7047
- #: inc/admin/views/tools/database/html-install-sample-data.php:17
7048
- msgid ""
7049
- "Create a <strong>Sample course</strong> with lessons and quizzes. The "
7050
- "content will be filled with <strong>Lorem</strong> text."
7051
  msgstr ""
7052
 
7053
- #: inc/admin/views/tools/database/html-install-sample-data.php:19
7054
- msgid "Options"
 
7055
  msgstr ""
7056
 
7057
- #: inc/admin/views/tools/database/html-install-sample-data.php:23
7058
- msgid "Course name"
 
7059
  msgstr ""
7060
 
7061
- #: inc/admin/views/tools/database/html-install-sample-data.php:28
7062
- msgid "Random number of sections in range"
7063
  msgstr ""
7064
 
7065
- #: inc/admin/views/tools/database/html-install-sample-data.php:35
7066
- msgid "Random number of items in range (each section)"
7067
  msgstr ""
7068
 
7069
- #: inc/admin/views/tools/database/html-install-sample-data.php:42
7070
- msgid "Random number of questions in range (each quiz)"
7071
  msgstr ""
7072
 
7073
- #: inc/admin/views/tools/database/html-install-sample-data.php:49
7074
- msgid "Random number of answers in range (each question)"
7075
  msgstr ""
7076
 
7077
- #: inc/admin/views/tools/database/html-install-sample-data.php:60
7078
- #: inc/admin/views/tools/database/html-install-sample-data.php:63
7079
- msgid "Install"
7080
  msgstr ""
7081
 
7082
- #: inc/admin/views/tools/database/html-install-sample-data.php:61
7083
- msgid "Installing..."
7084
  msgstr ""
7085
 
7086
- #: inc/admin/views/tools/database/html-install-sample-data.php:65
7087
- msgid "Show options"
 
 
7088
  msgstr ""
7089
 
7090
- #: inc/admin/views/tools/database/html-install-sample-data.php:67
7091
- #: inc/admin/views/tools/database/html-install-sample-data.php:71
7092
- msgid "Delete sample course"
7093
  msgstr ""
7094
 
7095
- #: inc/admin/views/tools/database/html-install-sample-data.php:68
7096
- msgid "Deleting..."
7097
  msgstr ""
7098
 
7099
- #: inc/admin/views/tools/database/html-repair-database.php:12
7100
- msgid "Repair Database"
7101
  msgstr ""
7102
 
7103
- #: inc/admin/views/tools/database/html-repair-database.php:13
7104
- msgid "Remove unwanted data and re-calculate relationship."
 
7105
  msgstr ""
7106
 
7107
- #: inc/admin/views/tools/database/html-repair-database.php:24
7108
- msgid "Re-count orders in each course"
 
7109
  msgstr ""
7110
-
7111
- #: inc/admin/views/tools/database/html-repair-database.php:30
7112
- msgid "Re-count orders for each user"
 
7113
  msgstr ""
7114
 
7115
- #: inc/admin/views/tools/database/html-repair-database.php:36
7116
- msgid "Re-count courses for each user"
 
7117
  msgstr ""
7118
 
7119
- #: inc/admin/views/tools/database/html-repair-database.php:42
7120
- msgid "Re-map final quiz for each course"
 
7121
  msgstr ""
7122
 
7123
- #: inc/admin/views/tools/database/html-repair-database.php:48
7124
- msgid "Re-calculate course result for users"
 
7125
  msgstr ""
7126
 
7127
- #: inc/admin/views/tools/database/html-repair-database.php:54
7128
- msgid "Re-calculate completed items for each users"
 
7129
  msgstr ""
7130
 
7131
- #: inc/admin/views/tools/database/html-repair-database.php:59
7132
- msgid "Repair now"
7133
  msgstr ""
7134
 
7135
- #: inc/admin/views/tools/database/html-repair-database.php:62
7136
- msgid "Check All"
7137
  msgstr ""
7138
 
7139
- #: inc/admin/views/tools/database/html-upgrade-database.php:12
7140
- msgid "Upgrade Database"
7141
  msgstr ""
7142
 
7143
- #: inc/admin/views/tools/database/html-upgrade-database.php:13
7144
- msgid ""
7145
- "Force upgrade database to latest version. Please be careful before taking "
7146
- "this action."
7147
  msgstr ""
7148
 
7149
- #: inc/admin/views/tools/database/html-remove-database.php:12
7150
- msgid "Remove current Data"
7151
  msgstr ""
7152
 
7153
- #: inc/admin/views/tools/database/html-remove-database.php:13
7154
- msgid "Remove all courses, lessons, quizzes and questions."
 
7155
  msgstr ""
7156
 
7157
- #: inc/admin/views/tools/database/html-remove-database.php:16
7158
- msgid "Be careful before using this action!"
 
7159
  msgstr ""
7160
 
7161
- #: inc/admin/views/tools/course/html-course.php:12
7162
- msgid "Reset course progress"
 
7163
  msgstr ""
7164
 
7165
- #: inc/admin/views/tools/course/html-course.php:14
7166
- msgid ""
7167
- "This action will reset progress of a course for all users have enrolled."
7168
  msgstr ""
7169
 
7170
- #: inc/admin/views/tools/course/html-course.php:15
7171
- msgid "Search results only show course have user data."
7172
  msgstr ""
7173
 
7174
- #: inc/admin/views/tools/course/html-course.php:19
7175
- msgid "Search course by name"
7176
  msgstr ""
7177
 
7178
- #: inc/admin/views/tools/course/html-course.php:52
7179
- msgid "Please enter at least 3 characters to searching courses."
7180
  msgstr ""
7181
 
7182
- #: inc/admin/views/tools/course/html-course.php:54
7183
- msgid "Searching course..."
 
7184
  msgstr ""
7185
 
7186
- #: inc/admin/views/tools/course/html-course.php:62
7187
- #: inc/admin/views/tools/course/html-user.php:70
7188
- msgid ""
7189
- "Are you sure to reset course progress of all users enrolled this course?"
7190
  msgstr ""
7191
 
7192
- #: inc/admin/views/tools/course/html-user.php:12
7193
- msgid "Reset user progress"
 
7194
  msgstr ""
7195
 
7196
- #: inc/admin/views/tools/course/html-user.php:14
7197
- msgid ""
7198
- "This action will reset progress of all courses that an user has enrolled."
7199
  msgstr ""
7200
 
7201
- #: inc/admin/views/tools/course/html-user.php:15
7202
- msgid "Search results only show users have course data."
 
7203
  msgstr ""
7204
 
7205
- #: inc/admin/views/tools/course/html-user.php:19
7206
- msgid "Search user by login name or email"
7207
  msgstr ""
7208
 
7209
- #: inc/admin/views/tools/course/html-user.php:60
7210
- msgid "Please enter at least 3 characters to searching users."
7211
  msgstr ""
7212
 
7213
- #: inc/admin/views/tools/course/html-user.php:61
7214
- msgid "No user found."
 
 
 
7215
  msgstr ""
7216
 
7217
- #: inc/admin/views/tools/course/html-user.php:62
7218
- msgid "Searching user..."
 
7219
  msgstr ""
7220
 
7221
- #: inc/admin/views/tools/course/html-user-item.php:12
7222
- msgid "Reset item progress for an user"
 
7223
  msgstr ""
7224
 
7225
- #: inc/admin/views/tools/course/html-user-item.php:14
7226
- msgid "This action will reset progress of specific lesson or quiz."
7227
  msgstr ""
7228
 
7229
- #: inc/admin/views/tools/course/html-user-item.php:18
7230
- msgid "User ID or Email"
7231
  msgstr ""
7232
 
7233
- #: inc/admin/views/tools/course/html-user-item.php:19
7234
- msgid "Item ID (ID of quiz or lesson)"
 
7235
  msgstr ""
7236
 
7237
- #: inc/admin/views/tools/course/html-user-item.php:35
7238
- msgid "Are you sure to reset progress of this item?"
 
 
7239
  msgstr ""
7240
 
7241
- #: inc/admin/views/setup/steps/finish.php:14
7242
- msgid "Congrats! You are almost done with your settings."
7243
  msgstr ""
7244
 
7245
- #: inc/admin/views/setup/steps/finish.php:16
7246
- #: inc/admin/views/updates/0.9/step-upgraded.php:2
7247
- msgid "What's next?"
 
7248
  msgstr ""
7249
 
7250
- #: inc/admin/views/setup/steps/finish.php:22
7251
- msgid "Install sample course"
7252
  msgstr ""
7253
 
7254
- #: inc/admin/views/setup/steps/finish.php:25
7255
- msgid "Create new course"
7256
  msgstr ""
7257
 
7258
- #: inc/admin/views/setup/steps/finish.php:27
7259
- msgid "Visit your site"
7260
  msgstr ""
7261
 
7262
- #: inc/admin/views/setup/steps/emails.php:12
7263
- msgid "Emails system"
7264
  msgstr ""
7265
 
7266
- #: inc/admin/views/setup/steps/emails.php:14
7267
- msgid "Emails are sent to users or teachers for each particular action."
7268
  msgstr ""
7269
 
7270
- #: inc/admin/views/setup/steps/emails.php:15
7271
- msgid "You can enable/disable each email in LearnPress settings later."
7272
  msgstr ""
7273
 
7274
- #: inc/admin/views/setup/steps/emails.php:16
7275
- msgid "But in right now, you can enable all emails to see how emails work."
7276
  msgstr ""
7277
 
7278
- #: inc/admin/views/setup/steps/emails.php:17
7279
- msgid "You can skip to next step if you don’t want to."
 
7280
  msgstr ""
7281
 
7282
- #: inc/admin/views/setup/steps/emails.php:22
7283
- msgid "Enable emails"
7284
  msgstr ""
7285
 
7286
- #: inc/admin/views/setup/steps/pages.php:16
7287
- msgid ""
7288
- "The pages will display content of LP's necessary pages, such as: Courses, "
7289
- "Checkout, Profile"
7290
  msgstr ""
7291
 
7292
- #: inc/admin/views/setup/steps/pages.php:17
7293
  #, php-format
7294
- msgid ""
7295
- "If you are not sure, click <a href=\"%s\" id=\"create-pages\">here</a> to "
7296
- "create pages automatically."
7297
  msgstr ""
7298
 
7299
- #: inc/admin/views/setup/steps/pages.php:23
7300
- msgid "Page will display all courses inside."
7301
  msgstr ""
7302
 
7303
- #: inc/admin/views/setup/steps/pages.php:32
7304
- msgid "Page will display content of user profile."
 
7305
  msgstr ""
7306
 
7307
- #: inc/admin/views/setup/steps/pages.php:41
7308
- msgid "Page will display content of form for processing checkout."
 
 
7309
  msgstr ""
7310
 
7311
- #: inc/admin/views/setup/steps/pages.php:50
7312
- msgid "Page will display the form for submitting request to become a teacher."
 
7313
  msgstr ""
7314
 
7315
- #: inc/admin/views/setup/steps/welcome.php:12
7316
- msgid "Welcome to LearnPress"
 
7317
  msgstr ""
7318
 
7319
- #: inc/admin/views/setup/steps/welcome.php:14
7320
- msgid "Thanks for choosing LearnPress to sell your courses online!"
7321
  msgstr ""
7322
 
7323
- #: inc/admin/views/setup/steps/welcome.php:16
7324
- msgid ""
7325
- "Setup Wizard helps you config some basic information before publishing your "
7326
- "site."
7327
  msgstr ""
7328
 
7329
- #: inc/admin/views/updates/0.9/step-repair-database.php:1
7330
- msgid "Update Database"
 
7331
  msgstr ""
7332
 
7333
- #: inc/admin/views/updates/0.9/step-repair-database.php:4
7334
- msgid "Update custom post type"
 
7335
  msgstr ""
7336
 
7337
- #: inc/admin/views/updates/0.9/step-repair-database.php:7
7338
- #: inc/admin/views/updates/0.9/step-repair-database.php:10
7339
- msgid "Update post meta"
7340
  msgstr ""
7341
 
7342
- #: inc/admin/views/updates/0.9/step-repair-database.php:14
7343
- msgid "Updating! Please do not close this page until the work is done"
7344
  msgstr ""
7345
 
7346
- #: inc/admin/views/updates/0.9/step-repair-database.php:18
7347
- msgid "Rollback"
7348
  msgstr ""
7349
 
7350
- #: inc/admin/views/updates/0.9/step-upgraded.php:1
7351
- msgid "Upgrade completed successfully!"
7352
  msgstr ""
7353
 
7354
- #: inc/admin/views/updates/0.9/step-upgraded.php:5
7355
- msgid "Manage courses"
 
7356
  msgstr ""
7357
 
7358
- #: inc/admin/views/updates/0.9/step-upgraded.php:8
7359
- msgid "Create a new course"
7360
  msgstr ""
7361
 
7362
- #: inc/admin/views/updates/0.9/step-upgraded.php:11
7363
- msgid "Setting up your LearnPress"
7364
  msgstr ""
7365
 
7366
- #: inc/admin/views/updates/0.9/step-upgraded.php:14
7367
- msgid "Manage add-ons"
7368
  msgstr ""
7369
 
7370
- #: inc/admin/views/updates/0.9/update-wizard.php:6
7371
- #: inc/admin/views/updates/0.9/update-wizard.php:19
7372
- #, php-format
7373
- msgid "LearnPress update version %s"
7374
  msgstr ""
7375
 
7376
- #: inc/admin/views/updates/0.9/step-welcome.php:1
7377
- msgid "Welcome to LearnPress!"
 
7378
  msgstr ""
7379
 
7380
- #: inc/admin/views/updates/0.9/step-welcome.php:2
7381
- msgid "Thank you for choosing LearnPress to sell your courses online!"
 
7382
  msgstr ""
7383
 
7384
- #: inc/admin/views/updates/0.9/step-welcome.php:3
7385
- #, php-format
7386
- msgid ""
7387
- "In version <strong>%s</strong> of LearnPress we have a big update and need "
7388
- "to upgrade your database to ensure system works properly."
7389
  msgstr ""
7390
 
7391
- #: inc/admin/views/updates/0.9/step-welcome.php:4
7392
- msgid ""
7393
- "We are very careful in upgrading the database but be sure to backup your "
7394
- "database before upgrading to avoid possible risks."
7395
  msgstr ""
7396
 
7397
- #: inc/admin/views/updates/0.9/step-welcome.php:5
7398
- msgid "Click <strong>Yes, upgrade!</strong> button to start."
 
 
 
7399
  msgstr ""
7400
 
7401
- #: inc/admin/views/updates/0.9/step-welcome.php:7
7402
- msgid "No, back to Admin"
7403
  msgstr ""
7404
 
7405
- #: inc/admin/views/updates/0.9/step-welcome.php:8
7406
- msgid "Yes, upgrade!"
 
 
7407
  msgstr ""
7408
 
7409
- #: inc/admin/views/dashboard/plugin-status/html-results.php:17
7410
- msgid "Downloaded"
7411
  msgstr ""
7412
 
7413
- #: inc/admin/views/dashboard/plugin-status/html-results.php:18
7414
- msgid "Active Installed"
7415
  msgstr ""
7416
 
7417
- #: inc/admin/views/dashboard/plugin-status/html-results.php:32
7418
- msgid "Updated"
7419
  msgstr ""
7420
 
7421
- #: inc/admin/views/dashboard/plugin-status/html-results.php:33
7422
- msgid "Current Version"
7423
  msgstr ""
7424
 
7425
- #: inc/admin/views/dashboard/plugin-status/html-no-data.php:4
7426
- msgid "No results found"
7427
  msgstr ""
7428
 
7429
- #: inc/admin/views/meta-boxes/order/actions.php:19
7430
- msgid "Choose an action"
7431
  msgstr ""
7432
 
7433
- #: inc/admin/views/meta-boxes/order/actions.php:20
7434
- msgid "Trigger action of current order status"
7435
  msgstr ""
7436
 
7437
- #: inc/admin/views/meta-boxes/order/details.php:25
7438
- #, php-format
7439
- msgid "Order %s"
7440
  msgstr ""
7441
 
7442
- #: inc/admin/views/meta-boxes/order/details.php:72
7443
- msgid "Customers"
7444
  msgstr ""
7445
 
7446
- #: inc/admin/views/meta-boxes/order/details.php:79
7447
- #: inc/admin/views/meta-boxes/order/details.php:100
7448
- #: inc/admin/views/meta-boxes/order/details.php:210
7449
- msgid "Add multi users"
7450
  msgstr ""
7451
 
7452
- #: inc/admin/views/meta-boxes/order/details.php:82
7453
- #: inc/admin/views/meta-boxes/order/details.php:195
7454
- #: inc/admin/views/meta-boxes/order/details.php:204
7455
- #: inc/admin/views/meta-boxes/order/child-order.php:21
7456
- msgid "Customer"
7457
  msgstr ""
7458
 
7459
- #: inc/admin/views/meta-boxes/order/details.php:93
7460
- #: inc/admin/views/meta-boxes/order/details.php:200
7461
- msgid "Change"
7462
  msgstr ""
7463
 
7464
- #: inc/admin/views/meta-boxes/order/details.php:98
7465
- msgid "- Or -"
7466
  msgstr ""
7467
 
7468
- #: inc/admin/views/meta-boxes/order/details.php:105
 
7469
  msgid ""
7470
- "In order to change the order user, please change the order status to "
7471
- "'Pending'."
7472
  msgstr ""
7473
 
7474
- #: inc/admin/views/meta-boxes/order/details.php:120
7475
- msgid "Order Items"
7476
  msgstr ""
7477
 
7478
- #: inc/admin/views/meta-boxes/order/details.php:126
7479
- msgid "Cost"
7480
  msgstr ""
7481
 
7482
- #: inc/admin/views/meta-boxes/order/details.php:128
7483
- msgid "Amount"
7484
  msgstr ""
7485
 
7486
- #: inc/admin/views/meta-boxes/order/details.php:138
7487
- msgid "No order items"
 
7488
  msgstr ""
7489
 
7490
- #: inc/admin/views/meta-boxes/order/details.php:144
7491
- msgid "Sub Total"
7492
  msgstr ""
7493
 
7494
- #: inc/admin/views/meta-boxes/order/details.php:174
7495
- msgid "Add Item"
 
7496
  msgstr ""
7497
 
7498
- #: inc/admin/views/meta-boxes/order/details.php:177
7499
- msgid ""
7500
- "In order to change the order item, please change the order status to "
7501
- "'Pending'."
7502
  msgstr ""
7503
 
7504
- #: inc/admin/views/meta-boxes/order/details.php:180
7505
- msgid "Calculate Total"
 
7506
  msgstr ""
7507
 
7508
- #: inc/admin/views/meta-boxes/order/details.php:188
7509
- msgid "Customer Note"
 
7510
  msgstr ""
7511
 
7512
- #: inc/admin/views/meta-boxes/order/details.php:236
7513
- msgid "Type here to search the course"
 
7514
  msgstr ""
7515
 
7516
- #: inc/admin/views/meta-boxes/order/details.php:239
7517
- msgid "No results"
7518
  msgstr ""
7519
 
7520
- #: inc/admin/views/meta-boxes/course/review-log.php:25
7521
- msgid "Your course is pending for reviewing"
7522
  msgstr ""
7523
 
7524
- #: inc/admin/views/meta-boxes/course/review-log.php:27
7525
- msgid ""
7526
- "Your course will not be submitted for reviewing until you check 'Submit for "
7527
- "Review'"
7528
  msgstr ""
7529
 
7530
- #: inc/admin/views/meta-boxes/course/review-log.php:31
7531
- msgid "Submit for Review"
7532
  msgstr ""
7533
 
7534
- #: inc/admin/views/meta-boxes/course/review-log.php:34
7535
- #: inc/admin/views/meta-boxes/course/review-log.php:42
7536
- msgid "Message to Reviewer"
7537
  msgstr ""
7538
 
7539
- #: inc/admin/views/meta-boxes/course/review-log.php:48
7540
- msgid "This course is pending for reviewing"
 
7541
  msgstr ""
7542
 
7543
- #: inc/admin/views/meta-boxes/course/review-log.php:51
7544
- msgid "Message to Instructor"
7545
  msgstr ""
7546
 
7547
- #: inc/admin/views/meta-boxes/course/review-logs.php:7
7548
- #, php-format
7549
- msgid "%d review"
7550
- msgid_plural "%d reviews"
7551
- msgstr[0] ""
7552
- msgstr[1] ""
7553
 
7554
- #: inc/admin/views/meta-boxes/course/review-logs.php:9
7555
- msgid "This course has not got any reviews yet"
 
7556
  msgstr ""
7557
 
7558
- #: inc/admin/views/meta-boxes/course/review-logs.php:25
7559
- msgid "Rejected"
 
7560
  msgstr ""
7561
 
7562
- #: inc/admin/views/meta-boxes/course/review-logs.php:25
7563
- msgid "Submit for review"
7564
  msgstr ""
7565
 
7566
- #: inc/admin/views/meta-boxes/course/review-logs.php:40
7567
- msgid "View less"
7568
  msgstr ""
7569
 
7570
- #: inc/admin/views/meta-boxes/course/review-logs.php:42
7571
- msgid "View all"
7572
  msgstr ""
7573
 
7574
- #. Description of the plugin
7575
- msgid ""
7576
- "LearnPress is a WordPress complete solution for creating a Learning "
7577
- "Management System (LMS). It can help you to create courses, lessons and "
7578
- "quizzes."
7579
  msgstr ""
7580
 
7581
- #. URI of the plugin
7582
- msgid "http://thimpress.com/learnpress"
 
 
7583
  msgstr ""
7584
 
7585
- #. Author of the plugin
7586
- msgid "ThimPress"
 
 
 
7587
  msgstr ""
7588
 
7589
- #. Author URI of the plugin
7590
- msgid "http://thimpress.com"
 
 
 
7591
  msgstr ""
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
  # This file is distributed under the same license as the PACKAGE package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Package Name\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-01-14 15:51+0700\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
20
 
21
  #: learnpress.php:379
22
  #, php-format
23
  msgid ""
24
+ "LearnPress plugin base directory must be <strong>learnpress/learnpres.php</"
25
+ "strong> (case sensitive) to ensure all functions work properly and fully "
26
+ "operational (currently <strong>%s</strong>)"
27
  msgstr ""
28
 
29
+ #: inc/abstract-settings.php:69
30
+ #: inc/admin/settings/abstract-settings-page.php:49
31
+ msgid "No setting available."
 
 
32
  msgstr ""
33
 
34
+ #: inc/class-lp-ajax.php:109
35
+ msgid "Sorry! Registration is not allowed on this site."
 
 
 
 
 
36
  msgstr ""
37
 
38
+ #: inc/class-lp-ajax.php:113
39
+ msgid "Bad request."
 
 
40
  msgstr ""
41
 
42
+ #: inc/class-lp-ajax.php:192
43
+ #, php-format
44
+ msgid "The order %s has been successfully recovered."
 
45
  msgstr ""
46
 
47
+ #: inc/class-lp-ajax.php:246 inc/admin/class-lp-admin-ajax.php:1068
48
+ msgid "Profile picture upload failed"
49
  msgstr ""
50
 
51
+ #: inc/class-lp-ajax.php:269
52
+ msgid "Access denied!"
53
  msgstr ""
54
 
55
+ #: inc/class-lp-ajax.php:278
56
+ #, php-format
57
+ msgid "You have finished this course \"%s\""
58
  msgstr ""
59
 
60
+ #: inc/class-lp-ajax.php:281
61
+ msgid ""
62
+ "Error! You cannot finish this course. Please contact your administrator for "
63
+ "more information."
64
  msgstr ""
65
 
66
+ #: inc/class-lp-ajax.php:314
67
+ msgid "Error! Invalid lesson or failed security check."
68
  msgstr ""
69
 
70
+ #: inc/class-lp-ajax.php:324
71
+ #, php-format
72
+ msgid "Congrats! You have completed \"%s\"."
73
  msgstr ""
74
 
75
+ #: inc/class-lp-ajax.php:363
76
+ msgid "Error! Invalid course or failed security check."
77
  msgstr ""
78
 
79
+ #: inc/class-lp-ajax.php:367
80
+ msgid "Error!"
81
  msgstr ""
82
 
83
+ #: inc/class-lp-ajax.php:369
84
+ #, php-format
85
+ msgid "You have retaken the course \"%s\""
86
  msgstr ""
87
 
88
+ #: inc/class-lp-ajax.php:373
89
+ msgid "Error! You can not retake the course"
90
  msgstr ""
91
 
92
+ #: inc/class-lp-assets.php:48 inc/lp-core-functions.php:2256
93
+ msgid "OK"
94
  msgstr ""
95
 
96
+ #: inc/class-lp-assets.php:49 inc/class-lp-install.php:511
97
+ #: inc/lp-core-functions.php:2257 inc/admin/class-lp-admin-ajax.php:865
98
+ #: inc/admin/class-lp-admin.php:215 inc/custom-post-types/course.php:864
99
+ #: inc/order/class-lp-order.php:935 templates/checkout/form-login.php:103
100
+ msgid "Cancel"
101
  msgstr ""
102
 
103
+ #: inc/class-lp-assets.php:50 inc/class-lp-gdpr.php:426
104
+ #: inc/lp-core-functions.php:2258
105
+ #: inc/libraries/meta-box/inc/fields/checkbox.php:53
106
+ msgid "Yes"
107
  msgstr ""
108
 
109
+ #: inc/class-lp-assets.php:51 inc/class-lp-gdpr.php:426
110
+ #: inc/lp-core-functions.php:2259
111
+ #: inc/libraries/meta-box/inc/fields/checkbox.php:53
112
+ #: templates/content-quiz/intro.php:25
113
+ msgid "No"
114
  msgstr ""
115
 
116
+ #: inc/class-lp-assets.php:58 inc/class-lp-assets.php:65
117
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:124
118
+ #: templates/checkout/payment.php:20
119
+ msgid "Processing"
120
  msgstr ""
121
 
122
+ #: inc/class-lp-assets.php:59 inc/class-lp-assets.php:66
123
+ msgid "Redirecting"
124
  msgstr ""
125
 
126
+ #: inc/class-lp-assets.php:60
127
+ msgid "Invalid field"
128
  msgstr ""
129
 
130
+ #: inc/class-lp-assets.php:61 inc/attributes/course.php:103
131
+ msgid "Unknown error"
132
  msgstr ""
133
 
134
+ #: inc/class-lp-assets.php:62 templates/checkout/payment.php:19
135
+ msgid "Place order"
136
  msgstr ""
137
 
138
+ #: inc/class-lp-backward-plugins.php:40
139
+ msgid ""
140
+ "There are some add-ons had gone outdated and might conflict with "
141
+ "<strong>LearnPress</strong> that need to be deactivated. Please upgrade them "
142
+ "to the newest version to ensure stability and performance of your site."
143
  msgstr ""
144
 
145
+ #: inc/class-lp-backward-plugins.php:95
146
+ #, php-format
147
+ msgid ""
148
+ "LearnPress plugin slug should be <strong>%s</strong> to make sure it works "
149
+ "properly. Currently, it is <strong>%s</strong>. Please correct it's name and "
150
+ "active again. <a href=\"%s\">Back</a>"
151
  msgstr ""
152
 
153
+ #: inc/class-lp-breadcrumb.php:124
154
+ msgid "Error 404"
155
  msgstr ""
156
 
157
+ #: inc/class-lp-breadcrumb.php:223
158
+ #, php-format
159
+ msgid "Courses tagged &ldquo;%s&rdquo;"
160
  msgstr ""
161
 
162
+ #: inc/class-lp-breadcrumb.php:278
163
+ #, php-format
164
+ msgid "Posts tagged &ldquo;%s&rdquo;"
165
  msgstr ""
166
 
167
+ #: inc/class-lp-breadcrumb.php:355
168
+ #, php-format
169
+ msgid "Author: %s"
170
  msgstr ""
171
 
172
+ #: inc/class-lp-breadcrumb.php:388
173
+ #, php-format
174
+ msgid "Search results for &ldquo;%s&rdquo;"
175
  msgstr ""
176
 
177
+ #: inc/class-lp-breadcrumb.php:397
178
+ #, php-format
179
+ msgid "Page %d"
180
  msgstr ""
181
 
182
+ #: inc/class-lp-checkout.php:160 inc/class-lp-checkout.php:425
183
+ msgid "Please enter your email."
184
  msgstr ""
185
 
186
+ #: inc/class-lp-checkout.php:165
187
+ msgid "You must accept our Terms & Conditions."
188
  msgstr ""
189
 
190
+ #: inc/class-lp-checkout.php:210
191
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:64
192
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:66
193
+ #: templates/checkout/form-login.php:63
194
+ msgid "Username"
195
  msgstr ""
196
 
197
+ #: inc/class-lp-checkout.php:211
198
+ #: inc/shortcodes/class-lp-shortcode-login-form.php:69
199
+ #: inc/shortcodes/class-lp-shortcode-login-form.php:71
200
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:80
201
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:82
202
+ #: inc/user/class-lp-profile.php:336 templates/checkout/form-login.php:70
203
+ msgid "Password"
204
  msgstr ""
205
 
206
+ #: inc/class-lp-checkout.php:267 inc/class-lp-checkout.php:276
207
+ #: inc/class-lp-checkout.php:315
208
+ #, php-format
209
+ msgid "Error %d: Unable to create order. Please try again."
210
  msgstr ""
211
 
212
+ #: inc/class-lp-checkout.php:309
213
+ msgid "Item does not exist!"
214
  msgstr ""
215
 
216
+ #: inc/class-lp-checkout.php:339
217
+ msgid "Unable to checkout. Order creation failed."
218
  msgstr ""
219
 
220
+ #: inc/class-lp-checkout.php:416
221
+ msgid "Please enter username."
222
  msgstr ""
223
 
224
+ #: inc/class-lp-checkout.php:420
225
+ msgid "Please enter user password"
226
  msgstr ""
227
 
228
+ #: inc/class-lp-checkout.php:505
229
+ msgid "No payment method is selected"
230
  msgstr ""
231
 
232
+ #: inc/class-lp-checkout.php:545 templates/checkout/empty-cart.php:19
233
+ msgid "Your cart is currently empty."
234
  msgstr ""
235
 
236
+ #: inc/class-lp-checkout.php:564
237
+ #, php-format
238
+ msgid "Item \"%s\" is not purchasable."
239
  msgstr ""
240
 
241
+ #: inc/class-lp-emails.php:136 inc/class-lp-emails.php:143
242
+ msgid "Cheatin&#8217; huh?"
243
  msgstr ""
244
 
245
+ #: inc/class-lp-forms-handler.php:39 inc/class-lp-forms-handler.php:116
246
+ #: inc/class-lp-forms-handler.php:200
247
+ #, php-format
248
+ msgid "Field \"%s\" is required."
249
  msgstr ""
250
 
251
+ #: inc/class-lp-forms-handler.php:52
252
+ msgid "Thank you! Your message has been sent."
253
  msgstr ""
254
 
255
+ #: inc/class-lp-forms-handler.php:76
256
+ msgid "Your email does not exist!"
257
  msgstr ""
258
 
259
+ #: inc/class-lp-forms-handler.php:150
260
+ msgid "Login successfully."
261
  msgstr ""
262
 
263
+ #: inc/class-lp-forms-handler.php:239
264
+ msgid "Register successfully."
265
  msgstr ""
266
 
267
+ #: inc/class-lp-forms-handler.php:264
268
+ msgid "Password is too short!"
269
  msgstr ""
270
 
271
+ #: inc/class-lp-forms-handler.php:268
272
+ msgid "Password can not have spacing!"
273
  msgstr ""
274
 
275
+ #: inc/class-lp-forms-handler.php:272
276
+ msgid "Password must include at least one letter!"
277
  msgstr ""
278
 
279
+ #: inc/class-lp-forms-handler.php:276
280
+ msgid "Password must include at least one capitalized letter!"
281
  msgstr ""
282
 
283
+ #: inc/class-lp-forms-handler.php:280
284
+ msgid "Password must include at least one number!"
285
  msgstr ""
286
 
287
+ #: inc/class-lp-forms-handler.php:284
288
+ msgid "Password must include at least one of these characters ~!@#$%^&*() !"
289
  msgstr ""
290
 
291
+ #: inc/class-lp-gdpr.php:31 inc/admin/class-lp-admin-menu.php:90
292
+ #: inc/admin/class-lp-admin.php:103 inc/admin/class-lp-admin.php:105
293
+ #: inc/admin/lp-admin-functions.php:1597
294
+ #: inc/admin/settings/class-lp-settings-emails.php:161
295
+ msgid "LearnPress"
296
  msgstr ""
297
 
298
+ #: inc/class-lp-gdpr.php:49
299
+ msgid "LearnPress Owned Courses"
300
  msgstr ""
301
 
302
+ #: inc/class-lp-gdpr.php:57
303
+ msgid "LearnPress Orders"
304
  msgstr ""
305
 
306
+ #: inc/class-lp-gdpr.php:65
307
+ msgid "LearnPress Purchased Courses"
 
 
 
 
308
  msgstr ""
309
 
310
+ #: inc/class-lp-gdpr.php:73
311
+ msgid "LearnPress User Profile"
312
  msgstr ""
313
 
314
+ #: inc/class-lp-gdpr.php:98
315
+ msgid "Profile Settings"
316
  msgstr ""
317
 
318
+ #: inc/class-lp-gdpr.php:147
319
+ msgid "Order ID"
320
  msgstr ""
321
 
322
+ #: inc/class-lp-gdpr.php:151
323
+ msgid "Order Date"
324
  msgstr ""
325
 
326
+ #: inc/class-lp-gdpr.php:155
327
+ msgid "Order status"
328
  msgstr ""
329
 
330
+ #: inc/class-lp-gdpr.php:159
331
+ msgid "Order Total"
332
  msgstr ""
333
 
334
+ #: inc/class-lp-gdpr.php:165
335
+ #: inc/admin/settings/class-lp-settings-profile.php:165
336
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:22
337
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:29
338
+ #: inc/custom-post-types/order.php:908 inc/custom-post-types/order.php:909
339
+ #: inc/custom-post-types/order.php:913 inc/user/class-lp-profile.php:312
340
+ msgid "Orders"
341
  msgstr ""
342
 
343
+ #: inc/class-lp-gdpr.php:213 inc/class-lp-gdpr.php:332
344
+ msgid "Course Author"
345
  msgstr ""
346
 
347
+ #: inc/class-lp-gdpr.php:217 inc/class-lp-gdpr.php:336
348
+ msgid "Course Name"
349
  msgstr ""
350
 
351
+ #: inc/class-lp-gdpr.php:221 inc/class-lp-gdpr.php:340
352
+ msgid "Course Date"
353
  msgstr ""
354
 
355
+ #: inc/class-lp-gdpr.php:225 inc/class-lp-gdpr.php:344
356
+ msgid "Course URL"
357
  msgstr ""
358
 
359
+ #: inc/class-lp-gdpr.php:231
360
+ msgid "Owned Course"
361
  msgstr ""
362
 
363
+ #: inc/class-lp-gdpr.php:264 inc/class-lp-gdpr.php:400
364
+ msgid "Item Name"
365
  msgstr ""
366
 
367
+ #: inc/class-lp-gdpr.php:268 inc/class-lp-gdpr.php:404
368
+ msgid "Item Type"
369
  msgstr ""
370
 
371
+ #: inc/class-lp-gdpr.php:272 inc/class-lp-gdpr.php:408
372
+ msgid "Item URL"
373
  msgstr ""
374
 
375
+ #: inc/class-lp-gdpr.php:279 inc/class-lp-gdpr.php:432
376
+ msgid "Course Items"
377
  msgstr ""
378
 
379
+ #: inc/class-lp-gdpr.php:348
380
+ msgid "Enrolled Date"
381
  msgstr ""
382
 
383
+ #: inc/class-lp-gdpr.php:352
384
+ msgid "Finished Date"
385
  msgstr ""
386
 
387
+ #: inc/class-lp-gdpr.php:356
388
+ msgid "Course Status"
389
  msgstr ""
390
 
391
+ #: inc/class-lp-gdpr.php:360
392
+ msgid "Course Grade"
393
  msgstr ""
394
 
395
+ #: inc/class-lp-gdpr.php:361 templates/content-quiz/result.php:33
396
+ msgid "Ungraded"
397
  msgstr ""
398
 
399
+ #: inc/class-lp-gdpr.php:366
400
+ msgid "Purchased Course"
401
  msgstr ""
402
 
403
+ #: inc/class-lp-gdpr.php:415 inc/admin/meta-box/fields/list-emails.php:30
404
+ #: inc/admin/meta-box/fields/payment-order.php:32
405
+ #: inc/admin/views/meta-boxes/order/details.php:57
406
+ #: inc/custom-post-types/order.php:778
407
+ #: templates/emails/order-items-table.php:53
408
+ #: templates/emails/plain/order-items-table.php:30
409
+ #: templates/profile/tabs/orders/list.php:34
410
+ msgid "Status"
411
  msgstr ""
412
 
413
+ #: inc/class-lp-gdpr.php:420
414
+ msgid "Grade"
415
  msgstr ""
416
 
417
+ #: inc/class-lp-gdpr.php:425 inc/admin/lp-admin-functions.php:1222
418
+ #: inc/admin/views/statistics/orders.php:63
419
+ #: inc/user-item/class-lp-user-item-quiz.php:107
420
+ #: inc/user-item/class-lp-user-item.php:560
421
+ #: templates/content-lesson/button-complete.php:36
422
+ msgid "Completed"
423
  msgstr ""
424
 
425
+ #: inc/class-lp-install.php:510
426
+ msgid ""
427
+ "It seems like you have updated LearnPress from an older version and there "
428
+ "are some outdated courses or data that need to be upgraded."
429
  msgstr ""
430
 
431
+ #: inc/class-lp-install.php:511
432
+ msgid "Do not ask again."
433
  msgstr ""
434
 
435
+ #: inc/class-lp-install.php:511
436
+ msgid "Ok"
437
  msgstr ""
438
 
439
+ #: inc/class-lp-install.php:512
440
+ #: inc/admin/views/tools/database/html-upgrade-database.php:17
441
+ msgid "Upgrade now"
442
  msgstr ""
443
 
444
+ #: inc/class-lp-install.php:512
445
+ msgid "No, thank!"
446
  msgstr ""
447
 
448
+ #: inc/class-lp-install.php:519
449
+ msgid ""
450
+ "LearnPress has been updated and the database needs to be upgraded before you "
451
+ "can work with it. Please notify the site administrator."
452
  msgstr ""
453
 
454
+ #: inc/class-lp-install.php:538
455
+ msgid "Thank you for using LearnPress"
456
  msgstr ""
457
 
458
+ #: inc/class-lp-multi-language.php:52
459
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:14
460
+ #: inc/admin/views/quiz/question-meta.php:12
461
+ #: inc/custom-post-types/question.php:294 inc/user/class-lp-profile.php:325
462
+ msgid "Settings"
463
  msgstr ""
464
 
465
+ #: inc/class-lp-multi-language.php:53 inc/libraries/meta-box/inc/core.php:38
466
+ #: inc/libraries/meta-box/inc/about/sections/welcome.php:19
467
+ msgid "Documentation"
468
  msgstr ""
469
 
470
+ #: inc/class-lp-multi-language.php:54
471
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:15
472
+ msgid "Add-ons"
473
  msgstr ""
474
 
475
+ #: inc/class-lp-page-controller.php:129
476
+ msgid "You can not view this item or it does not exist!"
477
  msgstr ""
478
 
479
+ #: inc/class-lp-page-controller.php:462
480
+ #, php-format
481
+ msgid "The user %s is not available!"
482
  msgstr ""
483
 
484
+ #: inc/class-lp-preview-course.php:35
485
+ msgid "Preview Course"
486
  msgstr ""
487
 
488
+ #: inc/class-lp-preview-course.php:80 inc/class-lp-preview-course.php:97
489
+ msgid "Invalid preview item."
490
  msgstr ""
491
 
492
+ #: inc/class-lp-preview-course.php:103
493
+ msgid "Access denied."
 
494
  msgstr ""
495
 
496
+ #: inc/class-lp-preview-course.php:176
497
+ #, php-format
498
+ msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
499
  msgstr ""
500
 
501
+ #: inc/class-lp-query-list-table.php:28 inc/custom-post-types/course.php:99
502
+ msgid "item"
503
  msgstr ""
504
 
505
+ #: inc/class-lp-query-list-table.php:29
506
+ msgid "items"
507
  msgstr ""
508
 
509
+ #: inc/class-lp-query-list-table.php:142
510
+ msgid "Displaying {{from}} to {{to}} of {{total}} {{item_name}}."
511
  msgstr ""
512
 
513
+ #: inc/class-lp-query-list-table.php:144
514
+ msgid "Displaying {{from}} to {{to}} of {{total}}."
515
  msgstr ""
516
 
517
+ #: inc/class-lp-repair-database.php:597
518
+ #, php-format
519
+ msgid "The method %s is not callable."
520
  msgstr ""
521
 
522
+ #: inc/class-lp-request-handler.php:148
523
+ msgid "You have already purchased this course and haven't finished it."
524
  msgstr ""
525
 
526
+ #: inc/class-lp-request-handler.php:156
527
+ msgid ""
528
+ "You have already purchased this course and the order is still processing..."
529
  msgstr ""
530
 
531
+ #: inc/class-lp-request-handler.php:179
532
+ msgid "You have finished course."
533
  msgstr ""
534
 
535
+ #: inc/class-lp-request-handler.php:195
536
+ msgid "You have to purchase the course before enrolling."
537
  msgstr ""
538
 
539
+ #: inc/class-lp-request-handler.php:232
540
+ msgid "Invalid action."
541
  msgstr ""
542
 
543
+ #: inc/class-lp-request-handler.php:291 inc/cart/class-lp-cart.php:459
544
+ msgid "Checkout page hasn't been setup"
545
  msgstr ""
546
 
547
+ #: inc/class-lp-request-handler.php:297 inc/class-lp-request-handler.php:332
548
+ #, php-format
549
+ msgid "You can not enroll course &quot;%s&quot"
550
  msgstr ""
551
 
552
+ #: inc/class-lp-request-handler.php:324
553
+ #: inc/course/lp-course-functions.php:1151
554
+ msgid "Invalid request!"
555
  msgstr ""
556
 
557
+ #: inc/class-lp-request-handler.php:349
558
+ #, php-format
559
+ msgid "Congrats! You have enrolled &quot;%s&quot"
560
  msgstr ""
561
 
562
+ #: inc/class-lp-request-handler.php:379
563
+ msgid "Checkout page hasn't been setup or page does not exists."
564
  msgstr ""
565
 
566
+ #: inc/class-lp-request-handler.php:381
567
+ msgid "Checkout error! Please contact with admin for getting more information."
568
  msgstr ""
569
 
570
+ #: inc/class-lp-shortcodes.php:225
571
+ msgid "Forgot password?"
572
  msgstr ""
573
 
574
+ #: inc/class-lp-shortcodes.php:227
575
+ msgid "Create new account"
576
  msgstr ""
577
 
578
+ #: inc/class-lp-strings.php:16 inc/lp-strings.php:7
579
+ #, php-format
580
+ msgid "Do you want to redo quiz \"%s\"?"
581
  msgstr ""
582
 
583
+ #: inc/class-lp-strings.php:17 inc/lp-strings.php:8
584
+ #, php-format
585
+ msgid "Do you want to complete quiz \"%s\"?"
586
  msgstr ""
587
 
588
+ #: inc/class-lp-strings.php:18 inc/lp-strings.php:9
589
+ #, php-format
590
+ msgid "Do you want to complete lesson \"%s\"?"
591
  msgstr ""
592
 
593
+ #: inc/class-lp-strings.php:19 inc/lp-strings.php:10
594
+ #, php-format
595
+ msgid "Do you want to finish course \"%s\"?"
596
  msgstr ""
597
 
598
+ #: inc/class-lp-strings.php:20 inc/lp-strings.php:11
599
+ #, php-format
600
+ msgid "Do you want to retake course \"%s\"?"
601
  msgstr ""
602
 
603
+ #: inc/class-lp-widget.php:213
604
+ #, php-format
605
+ msgid "Function %s should be overwritten in child class"
606
  msgstr ""
607
 
608
+ #: inc/lp-core-functions.php:351 inc/lp-template-functions.php:2673
609
+ #: inc/admin/settings/class-lp-settings-courses.php:150
610
+ #: inc/course/lp-course-functions.php:581 inc/custom-post-types/lesson.php:184
611
+ msgid "Lesson"
612
  msgstr ""
613
 
614
+ #: inc/lp-core-functions.php:352 inc/lp-template-functions.php:2663
615
+ #: inc/admin/settings/class-lp-settings-courses.php:157
616
+ #: inc/course/lp-course-functions.php:582
617
+ #: inc/custom-post-types/question.php:337 inc/custom-post-types/quiz.php:92
618
+ #: templates/profile/tabs/quizzes.php:38
619
+ msgid "Quiz"
620
  msgstr ""
621
 
622
+ #: inc/lp-core-functions.php:726 inc/admin/class-lp-modal-search-items.php:210
623
+ #: inc/admin/class-lp-modal-search-users.php:135
624
+ msgid "<"
625
  msgstr ""
626
 
627
+ #: inc/lp-core-functions.php:727 inc/admin/class-lp-modal-search-items.php:211
628
+ #: inc/admin/class-lp-modal-search-users.php:136
629
+ msgid ">"
630
  msgstr ""
631
 
632
+ #: inc/lp-core-functions.php:805
633
+ msgid "Minute(s)"
634
  msgstr ""
635
 
636
+ #: inc/lp-core-functions.php:806
637
+ msgid "Hour(s)"
638
  msgstr ""
639
 
640
+ #: inc/lp-core-functions.php:807
641
+ msgid "Day(s)"
642
  msgstr ""
643
 
644
+ #: inc/lp-core-functions.php:808
645
+ msgid "Week(s)"
646
  msgstr ""
647
 
648
+ #: inc/lp-core-functions.php:953
649
+ msgid "Left"
650
  msgstr ""
651
 
652
+ #: inc/lp-core-functions.php:954
653
+ msgid "Right"
654
  msgstr ""
655
 
656
+ #: inc/lp-core-functions.php:955
657
+ msgid "Left with space"
658
  msgstr ""
659
 
660
+ #: inc/lp-core-functions.php:956
661
+ msgid "Right with space"
662
  msgstr ""
663
 
664
+ #: inc/lp-core-functions.php:1020
665
+ msgid "Afghan afghani"
666
  msgstr ""
667
 
668
+ #: inc/lp-core-functions.php:1021
669
+ msgid "Albanian lek"
670
  msgstr ""
671
 
672
+ #: inc/lp-core-functions.php:1022
673
+ msgid "Algerian dinar"
674
  msgstr ""
675
 
676
+ #: inc/lp-core-functions.php:1023
677
+ msgid "Euro"
678
  msgstr ""
679
 
680
+ #: inc/lp-core-functions.php:1024
681
+ msgid "Angolan kwanza"
682
  msgstr ""
683
 
684
+ #: inc/lp-core-functions.php:1025
685
+ msgid "East Caribbean dollar"
686
  msgstr ""
687
 
688
+ #: inc/lp-core-functions.php:1026
689
+ msgid "Argentine peso"
690
  msgstr ""
691
 
692
+ #: inc/lp-core-functions.php:1027
693
+ msgid "Armenian dram"
694
  msgstr ""
695
 
696
+ #: inc/lp-core-functions.php:1028
697
+ msgid "Aruban florin"
698
  msgstr ""
699
 
700
+ #: inc/lp-core-functions.php:1029
701
+ msgid "Australian dollar"
702
  msgstr ""
703
 
704
+ #: inc/lp-core-functions.php:1030
705
+ msgid "Azerbaijani manat"
706
  msgstr ""
707
 
708
+ #: inc/lp-core-functions.php:1031
709
+ msgid "Bahamian dollar"
710
  msgstr ""
711
 
712
+ #: inc/lp-core-functions.php:1032
713
+ msgid "Bahraini dinar"
714
  msgstr ""
715
 
716
+ #: inc/lp-core-functions.php:1033
717
+ msgid "Bangladeshi taka"
718
  msgstr ""
719
 
720
+ #: inc/lp-core-functions.php:1034
721
+ msgid "Barbadian dollar"
722
  msgstr ""
723
 
724
+ #: inc/lp-core-functions.php:1035
725
+ msgid "Belarusian ruble"
726
  msgstr ""
727
 
728
+ #: inc/lp-core-functions.php:1036
729
+ msgid "Belizean dollar"
730
  msgstr ""
731
 
732
+ #: inc/lp-core-functions.php:1037
733
+ msgid "West African CFA franc"
734
  msgstr ""
735
 
736
+ #: inc/lp-core-functions.php:1038
737
+ msgid "Bermudian dollar"
738
  msgstr ""
739
 
740
+ #: inc/lp-core-functions.php:1039
741
+ msgid "Bhutanese ngultrum"
742
  msgstr ""
743
 
744
+ #: inc/lp-core-functions.php:1040
745
+ msgid "Bolivian boliviano"
746
  msgstr ""
747
 
748
+ #: inc/lp-core-functions.php:1041
749
+ msgid "US dollar"
750
  msgstr ""
751
 
752
+ #: inc/lp-core-functions.php:1042
753
+ msgid "Bosnia and Herzegovina convertible mark"
754
  msgstr ""
755
 
756
+ #: inc/lp-core-functions.php:1043
757
+ msgid "Botswana pula"
758
  msgstr ""
759
 
760
+ #: inc/lp-core-functions.php:1044
761
+ msgid "Brazilian real"
762
  msgstr ""
763
 
764
+ #: inc/lp-core-functions.php:1045
765
+ msgid "Brunei dollar"
766
  msgstr ""
767
 
768
+ #: inc/lp-core-functions.php:1046
769
+ msgid "Bulgarian lev"
770
  msgstr ""
771
 
772
+ #: inc/lp-core-functions.php:1047
773
+ msgid "Burmese kyat"
774
  msgstr ""
775
 
776
+ #: inc/lp-core-functions.php:1048
777
+ msgid "Burundian franc"
778
  msgstr ""
779
 
780
+ #: inc/lp-core-functions.php:1049
781
+ msgid "Cambodian riel"
782
  msgstr ""
783
 
784
+ #: inc/lp-core-functions.php:1050
785
+ msgid "Central African CFA franc"
786
  msgstr ""
787
 
788
+ #: inc/lp-core-functions.php:1051
789
+ msgid "Canadian dollar"
790
  msgstr ""
791
 
792
+ #: inc/lp-core-functions.php:1052
793
+ msgid "Cape Verdean escudo"
794
  msgstr ""
795
 
796
+ #: inc/lp-core-functions.php:1053
797
+ msgid "Cayman Islands dollar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
798
  msgstr ""
799
 
800
+ #: inc/lp-core-functions.php:1054
801
+ msgid "Chilean peso"
802
  msgstr ""
803
 
804
+ #: inc/lp-core-functions.php:1055
805
+ msgid "Chinese renminbi"
 
 
 
806
  msgstr ""
807
 
808
+ #: inc/lp-core-functions.php:1056
809
+ msgid "Colombian peso"
810
  msgstr ""
811
 
812
+ #: inc/lp-core-functions.php:1057
813
+ msgid "Comorian franc"
814
  msgstr ""
815
 
816
+ #: inc/lp-core-functions.php:1058
817
+ msgid "Congolese franc"
818
  msgstr ""
819
 
820
+ #: inc/lp-core-functions.php:1059
821
+ msgid "New Zealand dollar"
822
  msgstr ""
823
 
824
+ #: inc/lp-core-functions.php:1060
825
+ msgid "Costa Rican colón"
826
  msgstr ""
827
 
828
+ #: inc/lp-core-functions.php:1061
829
+ msgid "Croatian kuna"
830
  msgstr ""
831
 
832
+ #: inc/lp-core-functions.php:1062
833
+ msgid "Cuban peso"
 
834
  msgstr ""
835
 
836
+ #: inc/lp-core-functions.php:1063
837
+ msgid "Netherlands Antilles guilder"
 
838
  msgstr ""
839
 
840
+ #: inc/lp-core-functions.php:1064
841
+ msgid "Czech koruna"
 
842
  msgstr ""
843
 
844
+ #: inc/lp-core-functions.php:1065
845
+ msgid "Danish krone"
 
846
  msgstr ""
847
 
848
+ #: inc/lp-core-functions.php:1066
849
+ msgid "Djiboutian franc"
 
850
  msgstr ""
851
 
852
+ #: inc/lp-core-functions.php:1067
853
+ msgid "Dominican peso"
 
854
  msgstr ""
855
 
856
+ #: inc/lp-core-functions.php:1068
857
+ msgid "Egyptian pound"
 
858
  msgstr ""
859
 
860
+ #: inc/lp-core-functions.php:1069
861
+ msgid "Salvadoran colón"
 
 
 
 
 
 
 
862
  msgstr ""
863
 
864
+ #: inc/lp-core-functions.php:1070
865
+ msgid "Eritrean nakfa"
 
 
866
  msgstr ""
867
 
868
+ #: inc/lp-core-functions.php:1071
869
+ msgid "Ethiopian birr"
 
 
 
870
  msgstr ""
871
 
872
+ #: inc/lp-core-functions.php:1072
873
+ msgid "Falkland Islands pound"
 
874
  msgstr ""
875
 
876
+ #: inc/lp-core-functions.php:1073
877
+ msgid "Fijian dollar"
878
  msgstr ""
879
 
880
+ #: inc/lp-core-functions.php:1074
881
+ msgid "CFP franc"
882
  msgstr ""
883
 
884
+ #: inc/lp-core-functions.php:1075
885
+ msgid "Gambian dalasi"
886
  msgstr ""
887
 
888
+ #: inc/lp-core-functions.php:1076
889
+ msgid "Georgian lari"
890
  msgstr ""
891
 
892
+ #: inc/lp-core-functions.php:1077
893
+ msgid "Ghanian cedi"
894
  msgstr ""
895
 
896
+ #: inc/lp-core-functions.php:1078
897
+ msgid "Gibraltar pound"
898
  msgstr ""
899
 
900
+ #: inc/lp-core-functions.php:1079
901
+ msgid "Guatemalan quetzal"
902
  msgstr ""
903
 
904
+ #: inc/lp-core-functions.php:1080
905
+ msgid "British pound"
906
  msgstr ""
907
 
908
+ #: inc/lp-core-functions.php:1081
909
+ msgid "Guinean franc"
910
  msgstr ""
911
 
912
+ #: inc/lp-core-functions.php:1082
913
+ msgid "Guyanese dollar"
914
  msgstr ""
915
 
916
+ #: inc/lp-core-functions.php:1083
917
+ msgid "Haitian gourde"
 
 
 
 
 
918
  msgstr ""
919
 
920
+ #: inc/lp-core-functions.php:1084
921
+ msgid "Honduran lempira"
 
 
 
 
 
922
  msgstr ""
923
 
924
+ #: inc/lp-core-functions.php:1085
925
+ msgid "Hong Kong dollar"
 
926
  msgstr ""
927
 
928
+ #: inc/lp-core-functions.php:1086
929
+ msgid "Hungarian forint"
 
930
  msgstr ""
931
 
932
+ #: inc/lp-core-functions.php:1087
933
+ msgid "Icelandic króna"
 
934
  msgstr ""
935
 
936
+ #: inc/lp-core-functions.php:1088
937
+ msgid "Indian rupee"
 
938
  msgstr ""
939
 
940
+ #: inc/lp-core-functions.php:1089
941
+ msgid "Indonesian rupiah"
 
 
 
942
  msgstr ""
943
 
944
+ #: inc/lp-core-functions.php:1090
945
+ msgid "Iranian rial"
 
946
  msgstr ""
947
 
948
+ #: inc/lp-core-functions.php:1091
949
+ msgid "Iraqi dinar"
950
  msgstr ""
951
 
952
+ #: inc/lp-core-functions.php:1092
953
+ msgid "Israeli new sheqel"
 
954
  msgstr ""
955
 
956
+ #: inc/lp-core-functions.php:1093
957
+ msgid "Jamaican dollar"
 
958
  msgstr ""
959
 
960
+ #: inc/lp-core-functions.php:1094
961
+ msgid "Japanese yen "
 
962
  msgstr ""
963
 
964
+ #: inc/lp-core-functions.php:1095
965
+ msgid "Jordanian dinar"
 
966
  msgstr ""
967
 
968
+ #: inc/lp-core-functions.php:1096
969
+ msgid "Kazakhstani tenge"
 
 
 
970
  msgstr ""
971
 
972
+ #: inc/lp-core-functions.php:1097
973
+ msgid "Kenyan shilling"
974
  msgstr ""
975
 
976
+ #: inc/lp-core-functions.php:1098
977
+ msgid "North Korean won"
978
  msgstr ""
979
 
980
+ #: inc/lp-core-functions.php:1099
981
+ msgid "Kuwaiti dinar"
982
  msgstr ""
983
 
984
+ #: inc/lp-core-functions.php:1100
985
+ msgid "Kyrgyzstani som"
986
  msgstr ""
987
 
988
+ #: inc/lp-core-functions.php:1101
989
+ msgid "South Korean won"
990
  msgstr ""
991
 
992
+ #: inc/lp-core-functions.php:1102
993
+ msgid "Lao kip"
994
  msgstr ""
995
 
996
+ #: inc/lp-core-functions.php:1103
997
+ msgid "Latvian lats"
998
  msgstr ""
999
 
1000
+ #: inc/lp-core-functions.php:1104
1001
+ msgid "Lebanese pound"
1002
  msgstr ""
1003
 
1004
+ #: inc/lp-core-functions.php:1105
1005
+ msgid "Lesotho loti"
1006
  msgstr ""
1007
 
1008
+ #: inc/lp-core-functions.php:1106
1009
+ msgid "Liberian dollar"
1010
  msgstr ""
1011
 
1012
+ #: inc/lp-core-functions.php:1107 inc/lp-core-functions.php:1178
1013
+ msgid "Libyan dinar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1014
  msgstr ""
1015
 
1016
+ #: inc/lp-core-functions.php:1108
1017
+ msgid "Swiss franc"
1018
  msgstr ""
1019
 
1020
+ #: inc/lp-core-functions.php:1109
1021
+ msgid "Lithuanian litas"
 
 
1022
  msgstr ""
1023
 
1024
+ #: inc/lp-core-functions.php:1110
1025
+ msgid "Macanese pataca"
 
 
 
 
1026
  msgstr ""
1027
 
1028
+ #: inc/lp-core-functions.php:1111
1029
+ msgid "Macedonian denar"
 
1030
  msgstr ""
1031
 
1032
+ #: inc/lp-core-functions.php:1112
1033
+ msgid "Malagasy ariary"
 
 
 
 
 
 
1034
  msgstr ""
1035
 
1036
+ #: inc/lp-core-functions.php:1113
1037
+ msgid "Malawian kwacha"
 
1038
  msgstr ""
1039
 
1040
+ #: inc/lp-core-functions.php:1114
1041
+ msgid "Malaysian ringgit"
1042
  msgstr ""
1043
 
1044
+ #: inc/lp-core-functions.php:1115
1045
+ msgid "Maldivian rufiyaa"
 
1046
  msgstr ""
1047
 
1048
+ #: inc/lp-core-functions.php:1116
1049
+ msgid "Mauritanian ouguiya"
1050
  msgstr ""
1051
 
1052
+ #: inc/lp-core-functions.php:1117
1053
+ msgid "Mauritian rupee"
1054
  msgstr ""
1055
 
1056
+ #: inc/lp-core-functions.php:1118
1057
+ msgid "Mexican peso"
1058
  msgstr ""
1059
 
1060
+ #: inc/lp-core-functions.php:1119
1061
+ msgid "Moldovan leu"
 
 
1062
  msgstr ""
1063
 
1064
+ #: inc/lp-core-functions.php:1120
1065
+ msgid "Mongolian tugrik"
 
1066
  msgstr ""
1067
 
1068
+ #: inc/lp-core-functions.php:1121
1069
+ msgid "Moroccan dirham"
 
1070
  msgstr ""
1071
 
1072
+ #: inc/lp-core-functions.php:1122
1073
+ msgid "Mozambican metical"
1074
  msgstr ""
1075
 
1076
+ #: inc/lp-core-functions.php:1123
1077
+ msgid "Namibian dollar"
1078
  msgstr ""
1079
 
1080
+ #: inc/lp-core-functions.php:1124
1081
+ msgid "Nepalese rupee"
 
 
1082
  msgstr ""
1083
 
1084
+ #: inc/lp-core-functions.php:1125
1085
+ msgid "Nicaraguan córdoba"
 
 
1086
  msgstr ""
1087
 
1088
+ #: inc/lp-core-functions.php:1126
1089
+ msgid "Nigerian naira"
 
 
1090
  msgstr ""
1091
 
1092
+ #: inc/lp-core-functions.php:1127
1093
+ msgid "Norwegian krone"
 
 
1094
  msgstr ""
1095
 
1096
+ #: inc/lp-core-functions.php:1128
1097
+ msgid "Omani rial"
 
 
1098
  msgstr ""
1099
 
1100
+ #: inc/lp-core-functions.php:1129
1101
+ msgid "Pakistani rupee"
1102
  msgstr ""
1103
 
1104
+ #: inc/lp-core-functions.php:1130
1105
+ msgid "Panamanian balboa"
1106
  msgstr ""
1107
 
1108
+ #: inc/lp-core-functions.php:1131
1109
+ msgid "Papua New Guinea kina"
1110
  msgstr ""
1111
 
1112
+ #: inc/lp-core-functions.php:1132
1113
+ msgid "Paraguayan guarani"
 
1114
  msgstr ""
1115
 
1116
+ #: inc/lp-core-functions.php:1133
1117
+ msgid "Peruvian nuevo sol"
 
1118
  msgstr ""
1119
 
1120
+ #: inc/lp-core-functions.php:1134
1121
+ msgid "Philippine peso"
1122
  msgstr ""
1123
 
1124
+ #: inc/lp-core-functions.php:1135
1125
+ msgid "Polish zloty"
 
1126
  msgstr ""
1127
 
1128
+ #: inc/lp-core-functions.php:1136
1129
+ msgid "Qatari riyal"
 
 
1130
  msgstr ""
1131
 
1132
+ #: inc/lp-core-functions.php:1137
1133
+ msgid "Romanian leu"
1134
  msgstr ""
1135
 
1136
+ #: inc/lp-core-functions.php:1138
1137
+ msgid "Russian ruble"
 
1138
  msgstr ""
1139
 
1140
+ #: inc/lp-core-functions.php:1139
1141
+ msgid "Rwandan franc"
1142
  msgstr ""
1143
 
1144
+ #: inc/lp-core-functions.php:1140
1145
+ msgid "Samoan tālā"
1146
  msgstr ""
1147
 
1148
+ #: inc/lp-core-functions.php:1141
1149
+ msgid "São Tomé and Príncipe dobra"
 
1150
  msgstr ""
1151
 
1152
+ #: inc/lp-core-functions.php:1142
1153
+ msgid "Saudi riyal"
1154
  msgstr ""
1155
 
1156
+ #: inc/lp-core-functions.php:1143
1157
+ msgid "Serbian dinar"
 
 
 
1158
  msgstr ""
1159
 
1160
+ #: inc/lp-core-functions.php:1144
1161
+ msgid "Seychellois rupee"
 
 
 
 
1162
  msgstr ""
1163
 
1164
+ #: inc/lp-core-functions.php:1145
1165
+ msgid "Sierra Leonean leone"
1166
  msgstr ""
1167
 
1168
+ #: inc/lp-core-functions.php:1146
1169
+ msgid "Singapore dollar"
 
1170
  msgstr ""
1171
 
1172
+ #: inc/lp-core-functions.php:1147
1173
+ msgid "Solomon Islands dollar"
 
1174
  msgstr ""
1175
 
1176
+ #: inc/lp-core-functions.php:1148
1177
+ msgid "Somali shilling"
 
1178
  msgstr ""
1179
 
1180
+ #: inc/lp-core-functions.php:1149
1181
+ msgid "South African rand"
 
1182
  msgstr ""
1183
 
1184
+ #: inc/lp-core-functions.php:1150
1185
+ msgid "Sri Lankan rupee"
 
1186
  msgstr ""
1187
 
1188
+ #: inc/lp-core-functions.php:1151
1189
+ msgid "St. Helena pound"
1190
  msgstr ""
1191
 
1192
+ #: inc/lp-core-functions.php:1152
1193
+ msgid "Sudanese pound"
 
1194
  msgstr ""
1195
 
1196
+ #: inc/lp-core-functions.php:1153
1197
+ msgid "Surinamese dollar"
1198
  msgstr ""
1199
 
1200
+ #: inc/lp-core-functions.php:1154
1201
+ msgid "Swazi lilangeni"
 
1202
  msgstr ""
1203
 
1204
+ #: inc/lp-core-functions.php:1155
1205
+ msgid "Swedish krona"
1206
  msgstr ""
1207
 
1208
+ #: inc/lp-core-functions.php:1156
1209
+ msgid "Syrian pound"
 
1210
  msgstr ""
1211
 
1212
+ #: inc/lp-core-functions.php:1157
1213
+ msgid "New Taiwan dollar"
1214
  msgstr ""
1215
 
1216
+ #: inc/lp-core-functions.php:1158
1217
+ msgid "Tajikistani somoni"
1218
  msgstr ""
1219
 
1220
+ #: inc/lp-core-functions.php:1159
1221
+ msgid "Tanzanian shilling"
1222
  msgstr ""
1223
 
1224
+ #: inc/lp-core-functions.php:1160
1225
+ msgid "Thai baht "
1226
  msgstr ""
1227
 
1228
+ #: inc/lp-core-functions.php:1161
1229
+ msgid "Tongan pa’anga"
1230
  msgstr ""
1231
 
1232
+ #: inc/lp-core-functions.php:1162
1233
+ msgid "Trinidad and Tobago dollar"
1234
  msgstr ""
1235
 
1236
+ #: inc/lp-core-functions.php:1163
1237
+ msgid "Tunisian dinar"
1238
  msgstr ""
1239
 
1240
+ #: inc/lp-core-functions.php:1164
1241
+ msgid "Turkish lira"
1242
  msgstr ""
1243
 
1244
+ #: inc/lp-core-functions.php:1165
1245
+ msgid "Turkmenistani manat"
1246
  msgstr ""
1247
 
1248
+ #: inc/lp-core-functions.php:1166
1249
+ msgid "Ugandan shilling"
1250
  msgstr ""
1251
 
1252
+ #: inc/lp-core-functions.php:1167
1253
+ msgid "Ukrainian hryvnia"
 
 
 
 
 
 
 
1254
  msgstr ""
1255
 
1256
+ #: inc/lp-core-functions.php:1168
1257
+ msgid "United Arab Emirates dirham"
 
1258
  msgstr ""
1259
 
1260
+ #: inc/lp-core-functions.php:1169
1261
+ msgid "Uruguayan peso"
 
1262
  msgstr ""
1263
 
1264
+ #: inc/lp-core-functions.php:1170
1265
+ msgid "Uzbekistani som"
 
1266
  msgstr ""
1267
 
1268
+ #: inc/lp-core-functions.php:1171
1269
+ msgid "Vanuatu vatu"
 
1270
  msgstr ""
1271
 
1272
+ #: inc/lp-core-functions.php:1172
1273
+ msgid "Venezuelan bolivar"
1274
  msgstr ""
1275
 
1276
+ #: inc/lp-core-functions.php:1173
1277
+ msgid "Vietnamese dong"
 
1278
  msgstr ""
1279
 
1280
+ #: inc/lp-core-functions.php:1174
1281
+ msgid "Yemeni rial"
 
1282
  msgstr ""
1283
 
1284
+ #: inc/lp-core-functions.php:1175
1285
+ msgid "Zambian kwacha"
 
1286
  msgstr ""
1287
 
1288
+ #: inc/lp-core-functions.php:1176
1289
+ msgid "Zimbabwean dollar"
 
1290
  msgstr ""
1291
 
1292
+ #: inc/lp-core-functions.php:1177
1293
+ msgid "Jersey pound"
1294
  msgstr ""
1295
 
1296
+ #: inc/lp-core-functions.php:1464
1297
+ msgid "week"
1298
+ msgid_plural "weeks"
1299
+ msgstr[0] ""
1300
+ msgstr[1] ""
1301
 
1302
+ #: inc/lp-core-functions.php:1468
1303
+ msgid "day"
1304
+ msgid_plural "days"
1305
+ msgstr[0] ""
1306
+ msgstr[1] ""
1307
 
1308
+ #: inc/lp-core-functions.php:1473
1309
+ msgid "hour"
1310
+ msgid_plural "hours"
1311
+ msgstr[0] ""
1312
+ msgstr[1] ""
1313
+
1314
+ #: inc/lp-core-functions.php:1477
1315
+ msgid "minute"
1316
+ msgid_plural "minutes"
1317
+ msgstr[0] ""
1318
+ msgstr[1] ""
1319
+
1320
+ #: inc/lp-core-functions.php:1546 inc/admin/views/quiz/editor.php:29
1321
+ #: inc/admin/views/tools/course/html-course.php:29
1322
+ #: inc/admin/views/tools/course/html-user.php:29
1323
+ msgid "Name"
1324
  msgstr ""
1325
 
1326
+ #: inc/lp-core-functions.php:1548
1327
+ msgid "Your name"
 
1328
  msgstr ""
1329
 
1330
+ #: inc/lp-core-functions.php:1554 inc/admin/meta-box/fields/list-emails.php:28
1331
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:72
1332
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:74
1333
+ msgid "Email"
1334
  msgstr ""
1335
 
1336
+ #: inc/lp-core-functions.php:1556
1337
+ msgid "Your email address"
 
 
 
 
 
 
 
 
1338
  msgstr ""
1339
 
1340
+ #: inc/lp-core-functions.php:1562
1341
+ msgid "Phone"
1342
  msgstr ""
1343
 
1344
+ #: inc/lp-core-functions.php:1564
1345
+ msgid "Your phone number"
 
 
 
 
 
1346
  msgstr ""
1347
 
1348
+ #: inc/lp-core-functions.php:1594
1349
+ msgid "Please enter your name"
 
1350
  msgstr ""
1351
 
1352
+ #: inc/lp-core-functions.php:1599
1353
+ msgid "Please enter your email address"
1354
  msgstr ""
1355
 
1356
+ #: inc/lp-core-functions.php:1607
1357
+ msgid "Please moderate"
1358
  msgstr ""
1359
 
1360
+ #: inc/lp-core-functions.php:1618
1361
+ #, php-format
1362
+ msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
1363
  msgstr ""
1364
 
1365
+ #: inc/lp-core-functions.php:1619
1366
  #, php-format
1367
+ msgid "Name: %s"
1368
  msgstr ""
1369
 
1370
+ #: inc/lp-core-functions.php:1620
1371
+ #, php-format
1372
+ msgid "Email: %s"
1373
  msgstr ""
1374
 
1375
+ #: inc/lp-core-functions.php:1621
1376
+ #, php-format
1377
+ msgid "Phone: %s"
1378
  msgstr ""
1379
 
1380
+ #: inc/lp-core-functions.php:1627
1381
+ #, php-format
1382
+ msgid "Accept: %s"
1383
  msgstr ""
1384
 
1385
+ #: inc/lp-core-functions.php:1638
1386
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:109
1387
+ msgid "Your request has been sent! We will get back to you soon!"
 
1388
  msgstr ""
1389
 
1390
+ #: inc/lp-core-functions.php:2504
1391
+ #, php-format
1392
+ msgid "Congrats! You've enrolled the course \"%s\"."
1393
  msgstr ""
1394
 
1395
+ #: inc/lp-core-functions.php:2537
1396
+ msgid "Cart"
1397
  msgstr ""
1398
 
1399
+ #: inc/lp-core-functions.php:2541
1400
+ msgid "Enable cart"
 
1401
  msgstr ""
1402
 
1403
+ #: inc/lp-core-functions.php:2542
1404
+ msgid "Check this option to enable user purchase multiple courses at one time."
1405
  msgstr ""
1406
 
1407
+ #: inc/lp-core-functions.php:2548
1408
+ msgid "Add to cart redirect"
 
 
1409
  msgstr ""
1410
 
1411
+ #: inc/lp-core-functions.php:2549
1412
+ msgid "Redirect to checkout immediately after adding course to cart."
1413
  msgstr ""
1414
 
1415
+ #: inc/lp-core-functions.php:2555
1416
+ msgid "AJAX add to cart"
 
1417
  msgstr ""
1418
 
1419
+ #: inc/lp-core-functions.php:2556
1420
+ msgid "Using AJAX to add course to cart."
 
 
 
 
1421
  msgstr ""
1422
 
1423
+ #: inc/lp-core-functions.php:2562
1424
+ msgid "Cart page"
1425
  msgstr ""
1426
 
1427
+ #: inc/lp-core-functions.php:2701
1428
+ msgid "Are you sure you want to cancel order?"
 
1429
  msgstr ""
1430
 
1431
+ #: inc/lp-core-functions.php:2702
1432
+ msgid "Cancel Order"
 
1433
  msgstr ""
1434
 
1435
+ #: inc/lp-core-functions.php:2757 inc/course/lp-course-functions.php:1083
1436
+ #: inc/user/class-lp-profile.php:847 inc/user/class-lp-profile.php:881
1437
+ #: inc/user-item/class-lp-user-item-quiz.php:108
1438
+ #: inc/user-item/class-lp-user-item.php:562
1439
+ msgid "Passed"
1440
  msgstr ""
1441
 
1442
+ #: inc/lp-core-functions.php:2760 inc/course/lp-course-functions.php:1086
1443
+ #: inc/user/class-lp-profile.php:848 inc/user/class-lp-profile.php:882
1444
+ #: inc/user-item/class-lp-user-item-quiz.php:109
1445
+ #: inc/user-item/class-lp-user-item.php:563
1446
+ msgid "Failed"
1447
  msgstr ""
1448
 
1449
+ #: inc/lp-core-functions.php:2954
1450
+ msgctxt "static-page-name"
1451
+ msgid "Checkout"
 
 
 
 
1452
  msgstr ""
1453
 
1454
+ #: inc/lp-core-functions.php:2955
1455
+ msgctxt "static-page-name"
1456
+ msgid "Courses"
 
 
1457
  msgstr ""
1458
 
1459
+ #: inc/lp-core-functions.php:2956
1460
+ msgctxt "static-page-name"
1461
+ msgid "Profile"
1462
  msgstr ""
1463
 
1464
+ #: inc/lp-core-functions.php:2957
1465
+ msgctxt "static-page-name"
1466
+ msgid "Become a Teacher"
1467
  msgstr ""
1468
 
1469
+ #: inc/lp-deprecated.php:370 inc/lp-deprecated.php:402
1470
+ #: inc/admin/lp-admin-actions.php:60 inc/admin/lp-admin-functions.php:850
1471
+ #: inc/admin/lp-admin-functions.php:1015 inc/admin/lp-admin-functions.php:1217
1472
+ #: inc/admin/lp-admin-functions.php:2098
1473
+ #: inc/admin/views/statistics/courses.php:27
1474
+ #: inc/admin/views/statistics/courses.php:42
1475
+ #: inc/admin/views/statistics/general.php:43
1476
+ #: inc/admin/views/statistics/general.php:59
1477
+ #: inc/admin/views/statistics/orders.php:28
1478
+ #: inc/admin/views/statistics/orders.php:62
1479
+ #: inc/admin/views/statistics/users.php:29
1480
+ #: inc/admin/views/statistics/users.php:45
1481
+ #: inc/libraries/meta-box/inc/fields/select.php:92
1482
+ #: inc/user/class-lp-profile.php:813 inc/user/class-lp-profile.php:845
1483
+ #: inc/user/class-lp-profile.php:879
1484
+ #: templates/widgets/course-info/default.php:44
1485
+ msgid "All"
1486
  msgstr ""
1487
 
1488
+ #: inc/lp-deprecated.php:371
1489
+ msgid "Learning"
1490
  msgstr ""
1491
 
1492
+ #: inc/lp-deprecated.php:372 inc/custom-post-types/order.php:775
1493
+ #: inc/user/class-lp-profile.php:284
1494
+ msgid "Purchased"
1495
  msgstr ""
1496
 
1497
+ #: inc/lp-deprecated.php:373 inc/lp-deprecated.php:404
1498
+ #: inc/user/class-lp-profile.php:846 inc/user/class-lp-profile.php:880
1499
+ #: inc/user-item/class-lp-user-item.php:561
1500
+ msgid "Finished"
1501
  msgstr ""
1502
 
1503
+ #: inc/lp-deprecated.php:374 inc/user/class-lp-profile.php:277
1504
+ msgid "Owned"
 
1505
  msgstr ""
1506
 
1507
+ #: inc/lp-deprecated.php:403 inc/course/lp-course-functions.php:1089
1508
+ #: inc/user-item/class-lp-user-item-quiz.php:105
1509
+ #: inc/user-item/class-lp-user-item-quiz.php:106
1510
+ #: inc/user-item/class-lp-user-item.php:556
1511
+ #: inc/user-item/class-lp-user-item.php:557
1512
+ #: inc/user-item/class-lp-user-item.php:558
1513
+ msgid "In Progress"
1514
  msgstr ""
1515
 
1516
+ #: inc/lp-js-template.php:11
1517
+ msgid "--Select a Lesson--"
1518
  msgstr ""
1519
 
1520
+ #: inc/lp-strings.php:6
1521
+ msgid "You've already completed quiz."
1522
  msgstr ""
1523
 
1524
+ #: inc/lp-template-functions.php:55
1525
+ msgid "Your order is waiting for processing"
 
 
1526
  msgstr ""
1527
 
1528
+ #: inc/lp-template-functions.php:554
1529
+ msgid "Overview"
 
 
1530
  msgstr ""
1531
 
1532
+ #: inc/lp-template-functions.php:562 inc/admin/views/course/curriculum.php:15
1533
+ msgid "Curriculum"
 
 
1534
  msgstr ""
1535
 
1536
+ #: inc/lp-template-functions.php:568
1537
+ #: inc/emails/class-lp-email-cancelled-order-instructor.php:24
1538
+ #: inc/emails/class-lp-email-enrolled-course-instructor.php:27
1539
+ #: inc/emails/class-lp-email-finished-course-instructor.php:27
1540
+ #: inc/emails/class-lp-email-new-order-instructor.php:26
1541
+ #: templates/single-course/tabs/instructor.php:22
1542
+ msgid "Instructor"
1543
  msgstr ""
1544
 
1545
+ #: inc/lp-template-functions.php:1321
1546
+ msgid "Course Search Results"
 
1547
  msgstr ""
1548
 
1549
+ #: inc/lp-template-functions.php:1323 inc/admin/class-lp-admin.php:277
1550
+ #: inc/admin/lp-admin-actions.php:206
1551
+ #: inc/admin/settings/class-lp-settings-courses.php:12
1552
+ #: inc/admin/settings/class-lp-settings-profile.php:149
1553
+ #: inc/admin/settings/class-lp-settings-profile.php:274
1554
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:21
1555
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:28
1556
+ #: inc/admin/views/setup/steps/pages.php:22
1557
+ #: inc/admin/views/tools/course/html-user.php:30
1558
+ #: inc/custom-post-types/course.php:132 inc/custom-post-types/course.php:134
1559
+ #: inc/user/class-lp-profile.php:299
1560
+ msgid "Courses"
1561
  msgstr ""
1562
 
1563
+ #: inc/lp-template-functions.php:1456
1564
+ msgctxt "breadcrumb"
1565
+ msgid "Home"
 
 
 
 
 
 
 
1566
  msgstr ""
1567
 
1568
+ #: inc/lp-template-functions.php:2334
1569
+ #: inc/admin/settings/class-lp-settings-checkout.php:76
1570
+ #: inc/admin/settings/class-lp-settings-payments.php:131
1571
+ msgid "Order received"
1572
  msgstr ""
1573
 
1574
+ #: inc/lp-template-functions.php:2350
1575
+ #, php-format
1576
+ msgid "Access denied \"%s\""
1577
  msgstr ""
1578
 
1579
+ #: inc/lp-template-functions.php:2400
1580
+ #, php-format
1581
+ msgid "Search Results for: &ldquo;%s&rdquo;"
1582
  msgstr ""
1583
 
1584
+ #: inc/lp-template-functions.php:2403
1585
+ #, php-format
1586
+ msgid "&nbsp;&ndash; Page %s"
1587
  msgstr ""
1588
 
1589
+ #: inc/lp-template-functions.php:2667 inc/lp-template-functions.php:3237
1590
+ msgid "Final"
 
1591
  msgstr ""
1592
 
1593
+ #: inc/lp-template-functions.php:2676 inc/course/lp-course-functions.php:948
1594
+ #: inc/custom-post-types/abstract.php:795 inc/custom-post-types/lesson.php:319
1595
+ #: inc/custom-post-types/quiz.php:382
1596
+ #: templates/single-course/section/item-meta.php:25
1597
+ msgid "Preview"
1598
+ msgstr ""
1599
 
1600
+ #: inc/lp-template-functions.php:2972
1601
+ msgid "Fill out the form and send us your requesting."
 
1602
  msgstr ""
1603
 
1604
+ #: inc/lp-template-functions.php:3245 inc/custom-post-types/quiz.php:419
1605
  #, php-format
1606
+ msgid "%d question"
1607
+ msgid_plural "%d questions"
1608
  msgstr[0] ""
1609
  msgstr[1] ""
1610
 
1611
+ #: inc/lp-template-functions.php:3256
1612
+ #, php-format
1613
+ msgctxt "duration"
1614
+ msgid "%s day"
1615
  msgstr ""
1616
 
1617
+ #: inc/lp-template-functions.php:3257
1618
  #, php-format
1619
+ msgctxt "duration"
1620
+ msgid "%s hour"
 
 
 
 
 
 
1621
  msgstr ""
1622
 
1623
+ #: inc/lp-template-functions.php:3258
1624
  #, php-format
1625
+ msgctxt "duration"
1626
+ msgid "%s min"
 
 
 
 
 
 
1627
  msgstr ""
1628
 
1629
+ #: inc/lp-template-functions.php:3259
1630
  #, php-format
1631
+ msgctxt "duration"
1632
+ msgid "%s sec"
 
 
 
 
 
 
1633
  msgstr ""
1634
 
1635
+ #: inc/lp-template-functions.php:3271 inc/course/lp-course-functions.php:869
1636
+ msgid "Edit this item"
1637
  msgstr ""
1638
 
1639
+ #: inc/lp-template-functions.php:3326
1640
+ msgid "Back to class"
1641
  msgstr ""
1642
 
1643
+ #: inc/lp-template-functions.php:3442
1644
+ msgid "Popup links color"
1645
  msgstr ""
1646
 
1647
+ #: inc/lp-template-functions.php:3450
1648
+ msgid "Popup heading background"
 
1649
  msgstr ""
1650
 
1651
+ #: inc/lp-template-functions.php:3458
1652
+ msgid "Popup heading color"
1653
  msgstr ""
1654
 
1655
+ #: inc/lp-template-functions.php:3470
1656
+ msgid "Popup curriculum background"
 
1657
  msgstr ""
1658
 
1659
+ #: inc/lp-template-functions.php:3479
1660
+ msgid "Popup item color"
 
1661
  msgstr ""
1662
 
1663
+ #: inc/lp-template-functions.php:3487
1664
+ msgid "Popup active item background"
 
1665
  msgstr ""
1666
 
1667
+ #: inc/lp-template-functions.php:3495
1668
+ msgid "Popup active item color"
 
1669
  msgstr ""
1670
 
1671
+ #: inc/lp-template-functions.php:3503
1672
+ msgid "Popup content background"
 
1673
  msgstr ""
1674
 
1675
+ #: inc/lp-template-functions.php:3511
1676
+ msgid "Popup content color"
1677
  msgstr ""
1678
 
1679
+ #: inc/lp-template-functions.php:3519
1680
+ msgid "Section heading background"
 
 
 
 
1681
  msgstr ""
1682
 
1683
+ #: inc/lp-template-functions.php:3526
1684
+ msgid "Section heading color"
1685
  msgstr ""
1686
 
1687
+ #: inc/lp-template-functions.php:3533
1688
+ msgid "Section heading bottom color"
 
1689
  msgstr ""
1690
 
1691
+ #: inc/lp-template-functions.php:3541
1692
+ msgid "Lines color"
1693
  msgstr ""
1694
 
1695
+ #: inc/lp-template-functions.php:3552
1696
+ msgid "Profile cover background"
1697
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1698
 
1699
+ #: inc/lp-template-functions.php:3560
1700
+ msgid "Scrollbar"
1701
  msgstr ""
1702
 
1703
+ #: inc/lp-template-functions.php:3569
1704
+ msgid "Progress bar color"
 
 
 
 
 
1705
  msgstr ""
1706
 
1707
+ #: inc/lp-template-functions.php:3577
1708
+ msgid "Progress bar active color"
 
 
 
 
1709
  msgstr ""
1710
 
1711
+ #: inc/lp-webhooks.php:82
1712
  #, php-format
1713
+ msgid "LearnPress webhook %s process completed"
1714
  msgstr ""
1715
 
1716
+ #: inc/lp-webhooks.php:88
1717
+ msgid "LearnPress webhook process Complete"
 
1718
  msgstr ""
1719
 
1720
+ #: inc/abstracts/abstract-addon.php:185
1721
+ #, php-format
1722
+ msgid ""
1723
+ "<strong>%s</strong> add-on version %s requires <strong>LearnPress</strong> "
1724
+ "version %s or higher"
1725
  msgstr ""
1726
 
1727
+ #: inc/abstracts/abstract-addon.php:244
1728
+ #, php-format
1729
+ msgid "%s plugin file does not exist."
1730
  msgstr ""
1731
 
1732
+ #: inc/abstracts/abstract-addon.php:262
1733
+ #, php-format
1734
+ msgid "%s plugin class does not exist."
1735
  msgstr ""
1736
 
1737
+ #: inc/abstracts/abstract-object-data.php:341
1738
+ #, php-format
1739
+ msgid "The following these functions %s do not exists in %s"
1740
  msgstr ""
1741
 
1742
+ #: inc/abstracts/abstract-shortcode-courses.php:142
1743
+ #: inc/admin/views/tools/course/html-course.php:53
1744
+ #: templates/content-archive-course.php:74
1745
+ msgid "No course found."
1746
  msgstr ""
1747
 
1748
+ #: inc/admin/class-lp-admin-ajax.php:343
1749
+ msgid "Dismissed!"
1750
  msgstr ""
1751
 
1752
+ #: inc/admin/class-lp-admin-ajax.php:347
1753
+ msgid "Fail while joining newsletter! Please try again!"
 
 
1754
  msgstr ""
1755
 
1756
+ #: inc/admin/class-lp-admin-ajax.php:369
1757
+ msgid "Something went wrong: "
1758
  msgstr ""
1759
 
1760
+ #: inc/admin/class-lp-admin-ajax.php:372
1761
+ msgid ""
1762
+ "Thank you for subscribing! Please check and click the confirmation link from "
1763
+ "the email we've just sent to your mail box."
 
 
 
 
 
1764
  msgstr ""
1765
 
1766
+ #: inc/admin/class-lp-admin-ajax.php:388
1767
+ msgid "Ops! ID not found"
 
 
 
 
 
 
 
 
 
1768
  msgstr ""
1769
 
1770
+ #: inc/admin/class-lp-admin-ajax.php:417
1771
+ msgid "Duplicate post fail, please try again"
 
 
1772
  msgstr ""
1773
 
1774
+ #: inc/admin/class-lp-admin-ajax.php:570
1775
+ msgid "Access denied"
 
1776
  msgstr ""
1777
 
1778
+ #: inc/admin/class-lp-admin-ajax.php:582 inc/admin/class-lp-admin-ajax.php:622
1779
+ #: templates/order/order-details.php:18
1780
+ msgid "Invalid order"
1781
  msgstr ""
1782
 
1783
+ #: inc/admin/class-lp-admin-ajax.php:616
1784
+ msgid "Permission denied"
 
1785
  msgstr ""
1786
 
1787
+ #: inc/admin/class-lp-admin-ajax.php:814 inc/admin/class-lp-admin-ajax.php:987
1788
+ #: inc/admin/lp-admin-functions.php:253
1789
+ msgid "Edit Page"
1790
  msgstr ""
1791
 
1792
+ #: inc/admin/class-lp-admin-ajax.php:815 inc/admin/class-lp-admin-ajax.php:989
1793
+ #: inc/admin/lp-admin-functions.php:255
1794
+ msgid "View Page"
1795
  msgstr ""
1796
 
1797
+ #: inc/admin/class-lp-admin-ajax.php:817
1798
+ msgid "Error! Page creation failed. Please try again."
 
 
1799
  msgstr ""
1800
 
1801
+ #: inc/admin/class-lp-admin-ajax.php:820
1802
+ msgid "Empty page name!"
 
 
 
1803
  msgstr ""
1804
 
1805
+ #: inc/admin/class-lp-admin-ajax.php:854
1806
+ msgid "The required pages are successfully created."
1807
  msgstr ""
1808
 
1809
+ #: inc/admin/class-lp-admin-ajax.php:864
1810
+ msgid "Please try again."
1811
  msgstr ""
1812
 
1813
+ #: inc/admin/class-lp-admin-ajax.php:890
1814
+ msgid "Successfully import sample data."
1815
  msgstr ""
1816
 
1817
+ #: inc/admin/class-lp-admin-ajax.php:890
1818
+ msgid "View courses"
1819
  msgstr ""
1820
 
1821
+ #: inc/admin/class-lp-admin-ajax.php:894
1822
+ msgid "Failed to import sample data. Please try again."
1823
  msgstr ""
1824
 
1825
+ #: inc/admin/class-lp-admin-ajax.php:898
1826
+ msgid ""
1827
+ "Unknown error when installing/activating Import/Export add-on. Please try "
1828
+ "again!"
 
1829
  msgstr ""
1830
 
1831
+ #: inc/admin/class-lp-admin-ajax.php:914 inc/admin/class-lp-admin-ajax.php:935
1832
+ #: inc/admin/class-lp-admin-ajax.php:955
1833
+ msgid "You do not have the permission to deactivate plugins on this site."
 
1834
  msgstr ""
1835
 
1836
+ #: inc/admin/class-lp-admin-assets.php:38
1837
+ msgid "Ooops! Error."
 
1838
  msgstr ""
1839
 
1840
+ #: inc/admin/class-lp-admin-assets.php:39
1841
+ #: inc/emails/class-lp-email-cancelled-order-guest.php:27
1842
+ #: inc/emails/class-lp-email-completed-order-guest.php:29
1843
+ #: inc/emails/class-lp-email-new-order-guest.php:27
1844
+ #: inc/emails/class-lp-email-processing-order-guest.php:27
1845
+ msgid "Guest"
 
 
 
1846
  msgstr ""
1847
 
1848
+ #: inc/admin/class-lp-admin-assets.php:45
1849
+ msgid ""
1850
+ "Before taking this action, we strongly recommend you should backup your site "
1851
+ "first before proceeding. Should any issues come at hand, do not hesitate to "
1852
+ "contact our Support team. Are you sure to proceed the update protocol?"
1853
  msgstr ""
1854
 
1855
+ #: inc/admin/class-lp-admin-dashboard.php:19
1856
+ msgid "LearnPress order status"
 
 
1857
  msgstr ""
1858
 
1859
+ #: inc/admin/class-lp-admin-dashboard.php:24
1860
+ msgid "LearnPress status"
 
1861
  msgstr ""
1862
 
1863
+ #: inc/admin/class-lp-admin-dashboard.php:49
1864
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:30
1865
+ msgid "Total Raised"
 
1866
  msgstr ""
1867
 
1868
+ #: inc/admin/class-lp-admin-dashboard.php:65
1869
+ #: inc/admin/class-lp-admin-dashboard.php:67
1870
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:45
1871
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:50
1872
+ #, php-format
1873
+ msgid "%d order"
1874
+ msgid_plural "%d orders"
1875
+ msgstr[0] ""
1876
+ msgstr[1] ""
1877
 
1878
+ #: inc/admin/class-lp-admin-dashboard.php:83
1879
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:63
1880
+ msgid "Created by: "
1881
  msgstr ""
1882
 
1883
+ #: inc/admin/class-lp-admin-menu.php:69
1884
+ msgid "View Courses"
1885
  msgstr ""
1886
 
1887
+ #: inc/admin/class-lp-admin-menu.php:89
1888
+ msgid "Learning Management System"
1889
  msgstr ""
1890
 
1891
+ #: inc/admin/class-lp-admin-tools.php:129
1892
+ msgid "All courses, lessons, quizzes and questions have been removed"
1893
  msgstr ""
1894
 
1895
+ #: inc/admin/class-lp-admin-tools.php:192
1896
+ msgid "Outdated data from version older than 1.0 has been removed"
1897
  msgstr ""
1898
 
1899
+ #: inc/admin/class-lp-admin.php:62
1900
+ msgid "Available Courses"
1901
  msgstr ""
1902
 
1903
+ #: inc/admin/class-lp-admin.php:180
1904
+ msgid "Shop Page"
1905
  msgstr ""
1906
 
1907
+ #: inc/admin/class-lp-admin.php:184
1908
+ msgid "Cart Page"
 
1909
  msgstr ""
1910
 
1911
+ #: inc/admin/class-lp-admin.php:188 inc/admin/class-lp-admin.php:601
1912
+ msgid "Checkout Page"
 
1913
  msgstr ""
1914
 
1915
+ #: inc/admin/class-lp-admin.php:192
1916
+ msgid "My Account Page"
 
1917
  msgstr ""
1918
 
1919
+ #: inc/admin/class-lp-admin.php:196
1920
+ msgid "Terms and Conditions Page"
 
 
 
1921
  msgstr ""
1922
 
1923
+ #: inc/admin/class-lp-admin.php:213
1924
+ msgid "Account"
 
1925
  msgstr ""
1926
 
1927
+ #: inc/admin/class-lp-admin.php:214
1928
+ msgid "Billing"
 
 
 
1929
  msgstr ""
1930
 
1931
+ #: inc/admin/class-lp-admin.php:216 inc/admin/class-lp-admin.php:279
1932
+ #: inc/admin/settings/class-lp-settings-checkout.php:22
1933
+ #: inc/admin/views/setup/steps/pages.php:40
1934
+ msgid "Checkout"
 
 
 
 
1935
  msgstr ""
1936
 
1937
+ #: inc/admin/class-lp-admin.php:217
1938
+ msgid "Confirmation"
 
 
1939
  msgstr ""
1940
 
1941
+ #: inc/admin/class-lp-admin.php:218
1942
+ msgid "Invoice"
 
 
 
 
1943
  msgstr ""
1944
 
1945
+ #: inc/admin/class-lp-admin.php:219
1946
+ msgid "Levels"
 
 
 
1947
  msgstr ""
1948
 
1949
+ #: inc/admin/class-lp-admin.php:247
1950
+ msgid "Members"
 
 
1951
  msgstr ""
1952
 
1953
+ #: inc/admin/class-lp-admin.php:248
1954
+ msgid "Activity"
 
1955
  msgstr ""
1956
 
1957
+ #: inc/admin/class-lp-admin.php:249 templates/checkout/form-register.php:48
1958
+ #: templates/global/form-register.php:43
1959
+ msgid "Register"
 
1960
  msgstr ""
1961
 
1962
+ #: inc/admin/class-lp-admin.php:250
1963
+ msgid "Activate"
 
 
1964
  msgstr ""
1965
 
1966
+ #: inc/admin/class-lp-admin.php:278
1967
+ #: inc/admin/settings/class-lp-settings-profile.php:22
1968
+ #: inc/admin/views/setup/steps/pages.php:31
1969
+ msgid "Profile"
 
 
 
 
 
 
 
 
 
 
1970
  msgstr ""
1971
 
1972
+ #: inc/admin/class-lp-admin.php:280 inc/admin/views/setup/steps/pages.php:49
1973
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:121
1974
+ msgid "Become a Teacher"
 
 
 
 
 
 
1975
  msgstr ""
1976
 
1977
+ #: inc/admin/class-lp-admin.php:318
1978
+ msgid "LearnPress Page"
 
1979
  msgstr ""
1980
 
1981
+ #: inc/admin/class-lp-admin.php:360
1982
+ #, php-format
1983
+ msgid "LearnPress Pages (%d)"
1984
  msgstr ""
1985
 
1986
+ #: inc/admin/class-lp-admin.php:399
1987
+ msgctxt "pending-request"
1988
+ msgid "Accept"
1989
  msgstr ""
1990
 
1991
+ #: inc/admin/class-lp-admin.php:400
1992
+ msgctxt "pending-request"
1993
+ msgid "Deny"
1994
  msgstr ""
1995
 
1996
+ #: inc/admin/class-lp-admin.php:462
1997
+ #, php-format
1998
+ msgid "Pending Request %s"
1999
  msgstr ""
2000
 
2001
+ #: inc/admin/class-lp-admin.php:488
2002
+ msgid "Sorry, you are not allowed to edit this user."
2003
  msgstr ""
2004
 
2005
+ #: inc/admin/class-lp-admin.php:492
2006
+ #, php-format
2007
+ msgid "User has %s to become a teacher."
2008
  msgstr ""
2009
 
2010
+ #: inc/admin/class-lp-admin.php:577
2011
  #, php-format
2012
+ msgid ""
2013
+ "LearnPress requires permalink option <strong>Post name</strong> is enabled. "
2014
+ "Please enable it <a href=\"%s\">here</a> to ensure that all functions work "
2015
+ "properly."
2016
  msgstr ""
2017
 
2018
+ #: inc/admin/class-lp-admin.php:597
2019
+ msgid "Profile Page"
2020
  msgstr ""
2021
 
2022
+ #: inc/admin/class-lp-admin.php:626
2023
+ #, php-format
2024
+ msgid "The following required page(s) are currently missing: %s."
2025
  msgstr ""
2026
 
2027
+ #: inc/admin/class-lp-admin.php:627
2028
  #, php-format
2029
+ msgid ""
2030
+ "To ensure all functions work properly, please click <a class=\"button\" id="
2031
+ "\"learn-press-create-pages\" href=\"%s\">here</a> to create and set it up "
2032
+ "automatically."
2033
  msgstr ""
2034
 
2035
+ #: inc/admin/class-lp-admin.php:677
2036
  #, php-format
2037
+ msgid ""
2038
+ "If you like <strong>LearnPress</strong> please leave us a %s&#9733;&#9733;"
2039
+ "&#9733;&#9733;&#9733;%s rating. A huge thanks from LearnPress team for your "
2040
+ "generous."
2041
  msgstr ""
2042
 
2043
+ #: inc/admin/class-lp-admin.php:677
2044
+ msgid "Thanks :)"
 
 
 
2045
  msgstr ""
2046
 
2047
+ #: inc/admin/class-lp-install-sample-data.php:64
2048
+ msgid "Are you sure you want to install sample course data?"
2049
  msgstr ""
2050
 
2051
+ #: inc/admin/class-lp-install-sample-data.php:65
2052
+ msgid "Are you sure you want to delete sample course data?"
2053
  msgstr ""
2054
 
2055
+ #: inc/admin/class-lp-install-sample-data.php:128
2056
+ #, php-format
2057
+ msgid "Course \"%s\" has been created"
2058
  msgstr ""
2059
 
2060
+ #: inc/admin/class-lp-install-sample-data.php:130
2061
+ #: inc/admin/views/meta-boxes/course/assigned.php:22
2062
+ #: inc/admin/views/meta-boxes/quiz/assigned.php:28
2063
+ #: inc/admin/views/meta-boxes/quiz/assigned.php:38
2064
+ #: inc/custom-post-types/abstract.php:582
2065
+ #: inc/custom-post-types/abstract.php:774
2066
+ #: inc/custom-post-types/abstract.php:783
2067
+ #: inc/custom-post-types/question.php:376 inc/order/class-lp-order.php:928
2068
+ msgid "View"
2069
  msgstr ""
2070
 
2071
+ #: inc/admin/class-lp-install-sample-data.php:132
2072
+ #: inc/attributes/course.php:232 inc/custom-post-types/abstract.php:580
2073
+ #: inc/custom-post-types/question.php:374
2074
+ #: templates/content-lesson/no-content.php:22
2075
+ msgid "Edit"
2076
  msgstr ""
2077
 
2078
+ #: inc/admin/class-lp-install-sample-data.php:300
2079
+ #: inc/admin/views/tools/database/html-install-sample-data.php:25
2080
+ msgid "Sample course"
2081
  msgstr ""
2082
 
2083
+ #: inc/admin/class-lp-install-sample-data.php:606
2084
+ #: inc/admin/class-lp-install-sample-data.php:614
2085
+ msgctxt "install-sample-course"
2086
+ msgid " [TRUE]"
2087
  msgstr ""
2088
 
2089
+ #: inc/admin/class-lp-meta-box-tabs.php:29
2090
+ msgid "Meta box tabs"
2091
  msgstr ""
2092
 
2093
+ #: inc/admin/class-lp-modal-search-items.php:59
2094
+ #: inc/admin/class-lp-modal-search-users.php:49
2095
+ #: inc/admin/views/course/modal-choose-items.php:100
2096
+ #: inc/admin/views/quiz/modal-choose-items.php:88
2097
+ msgid "Add"
2098
+ msgstr ""
2099
 
2100
+ #: inc/admin/class-lp-modal-search-items.php:60
2101
+ #: inc/admin/class-lp-modal-search-users.php:50
2102
+ #: inc/admin/views/course/modal-choose-items.php:71
2103
+ #: inc/admin/views/meta-boxes/order/details.php:242
2104
+ #: inc/admin/views/quiz/modal-choose-items.php:58
2105
+ msgid "Close"
2106
  msgstr ""
2107
 
2108
+ #: inc/admin/class-lp-modal-search-items.php:61
2109
+ #: inc/admin/views/modal-search-items.php:11
2110
+ msgid "Search items"
2111
  msgstr ""
2112
 
2113
+ #: inc/admin/class-lp-modal-search-items.php:249
2114
+ #: inc/admin/class-lp-modal-search-users.php:184
2115
+ msgid "No item found"
 
2116
  msgstr ""
2117
 
2118
+ #: inc/admin/class-lp-modal-search-items.php:342
2119
+ msgid "There are no available lessons for this course, please use "
2120
  msgstr ""
2121
 
2122
+ #: inc/admin/class-lp-modal-search-items.php:343
2123
+ #: inc/admin/class-lp-modal-search-items.php:347
2124
+ #: inc/admin/class-lp-modal-search-items.php:351
2125
+ msgid "Add new item"
 
 
2126
  msgstr ""
2127
 
2128
+ #: inc/admin/class-lp-modal-search-items.php:346
2129
+ msgid "There are no available quizzes for this course, please use "
2130
  msgstr ""
2131
 
2132
+ #: inc/admin/class-lp-modal-search-items.php:350
2133
+ msgid "There are no available questions for this quiz, please use "
2134
  msgstr ""
2135
 
2136
+ #: inc/admin/class-lp-modal-search-users.php:51
2137
+ #: inc/admin/views/modal-search-users.php:10
2138
+ msgid "Search users"
2139
  msgstr ""
2140
 
2141
+ #: inc/admin/class-lp-plugin-install-list-table.php:162
2142
+ msgid "No plugin found."
 
 
 
 
 
2143
  msgstr ""
2144
 
2145
+ #: inc/admin/class-lp-plugin-install-list-table.php:296
2146
+ msgctxt "Plugin installer group title"
2147
+ msgid "Performance"
 
 
2148
  msgstr ""
2149
 
2150
+ #: inc/admin/class-lp-plugin-install-list-table.php:297
2151
+ msgctxt "Plugin installer group title"
2152
+ msgid "Social"
2153
  msgstr ""
2154
 
2155
+ #: inc/admin/class-lp-plugin-install-list-table.php:298
2156
+ msgctxt "Plugin installer group title"
2157
+ msgid "Tools"
 
 
2158
  msgstr ""
2159
 
2160
+ #: inc/admin/class-lp-plugin-install-list-table.php:341
2161
+ #, php-format
2162
+ msgid "By %s"
2163
  msgstr ""
2164
 
2165
+ #: inc/admin/class-lp-plugin-install-list-table.php:362
2166
+ #: inc/admin/helpers/class-lp-plugins-helper.php:238
2167
+ #, php-format
2168
+ msgid "Install %s now"
2169
  msgstr ""
2170
 
2171
+ #: inc/admin/class-lp-plugin-install-list-table.php:362
2172
+ msgid "Install and Active"
2173
  msgstr ""
2174
 
2175
+ #: inc/admin/class-lp-plugin-install-list-table.php:369
2176
+ #: inc/admin/helpers/class-lp-plugins-helper.php:245
2177
+ #, php-format
2178
+ msgid "Update %s now"
2179
  msgstr ""
2180
 
2181
+ #: inc/admin/class-lp-plugin-install-list-table.php:369
2182
+ #: inc/admin/helpers/class-lp-plugins-helper.php:245
2183
+ #: inc/admin/views/updates/html-update-message.php:17
2184
+ #: inc/admin/views/updates/0.9/step-repair-database.php:17
2185
+ msgid "Update Now"
2186
  msgstr ""
2187
 
2188
+ #: inc/admin/class-lp-plugin-install-list-table.php:376
2189
+ msgctxt "plugin"
2190
+ msgid "Enabled"
2191
  msgstr ""
2192
 
2193
+ #: inc/admin/class-lp-plugin-install-list-table.php:378
2194
+ msgctxt "plugin"
2195
+ msgid "Enable"
2196
  msgstr ""
2197
 
2198
+ #: inc/admin/class-lp-plugin-install-list-table.php:420
2199
+ msgid "Enabled"
 
2200
  msgstr ""
2201
 
2202
+ #: inc/admin/class-lp-plugin-install-list-table.php:422
2203
+ msgid "Disabled"
 
 
 
 
 
 
 
 
 
 
 
2204
  msgstr ""
2205
 
2206
+ #: inc/admin/class-lp-plugin-install-list-table.php:425
2207
+ msgid "Not Install"
2208
  msgstr ""
2209
 
2210
+ #: inc/admin/class-lp-plugin-install-list-table.php:454
2211
+ msgid "Last Updated:"
2212
  msgstr ""
2213
 
2214
+ #: inc/admin/class-lp-plugin-install-list-table.php:455
2215
+ #: inc/custom-post-types/order.php:842 inc/order/class-lp-order.php:147
2216
+ #: inc/user-item/class-lp-user-item.php:160
2217
+ #, php-format
2218
+ msgid "%s ago"
2219
  msgstr ""
2220
 
2221
+ #: inc/admin/class-lp-plugin-install-list-table.php:461
2222
+ msgctxt "Active plugin installs"
2223
+ msgid "1+ Million"
2224
  msgstr ""
2225
 
2226
+ #: inc/admin/class-lp-plugin-install-list-table.php:465
2227
+ #, php-format
2228
+ msgid "%s Active Installs"
2229
  msgstr ""
2230
 
2231
+ #: inc/admin/class-lp-plugin-install-list-table.php:471
2232
+ #: inc/admin/views/addons/html-loop-plugin.php:55
2233
+ msgid "Untested with your version of WordPress"
2234
  msgstr ""
2235
 
2236
+ #: inc/admin/class-lp-plugin-install-list-table.php:473
2237
+ #: inc/admin/views/addons/html-loop-plugin.php:57
2238
+ msgid "<strong>Incompatible</strong> with your version of WordPress"
 
2239
  msgstr ""
2240
 
2241
+ #: inc/admin/class-lp-plugin-install-list-table.php:475
2242
+ #: inc/admin/views/addons/html-loop-plugin.php:59
2243
+ msgid "<strong>Compatible</strong> with your version of WordPress"
2244
  msgstr ""
2245
 
2246
+ #: inc/admin/class-lp-reset-data.php:90
2247
+ msgid "Item progress deleted"
 
 
2248
  msgstr ""
2249
 
2250
+ #: inc/admin/class-lp-reset-data.php:92
2251
+ msgid "No data found"
 
2252
  msgstr ""
2253
 
2254
+ #: inc/admin/class-lp-setup-wizard.php:72
2255
+ msgctxt "static-page"
2256
+ msgid "LP Courses"
2257
  msgstr ""
2258
 
2259
+ #: inc/admin/class-lp-setup-wizard.php:73
2260
+ msgctxt "static-page"
2261
+ msgid "LP Profile"
2262
  msgstr ""
2263
 
2264
+ #: inc/admin/class-lp-setup-wizard.php:74
2265
+ msgctxt "static-page"
2266
+ msgid "LP Checkout"
2267
  msgstr ""
2268
 
2269
+ #: inc/admin/class-lp-setup-wizard.php:75
2270
+ msgctxt "static-page"
2271
+ msgid "LP Become Teacher"
2272
  msgstr ""
2273
 
2274
+ #: inc/admin/class-lp-setup-wizard.php:206
2275
+ msgid "Welcome"
2276
  msgstr ""
2277
 
2278
+ #: inc/admin/class-lp-setup-wizard.php:208
2279
+ #: inc/admin/views/setup/notice-setup.php:5
2280
+ msgid "Run setup wizard"
2281
  msgstr ""
2282
 
2283
+ #: inc/admin/class-lp-setup-wizard.php:211
2284
+ #: inc/admin/settings/class-lp-settings-general.php:52
2285
+ #: inc/admin/settings/class-lp-settings-general.php:57
2286
+ #: inc/admin/views/setup/steps/currency.php:17
2287
+ #: inc/admin/views/setup/steps/currency.php:21
2288
+ msgid "Currency"
2289
  msgstr ""
2290
 
2291
+ #: inc/admin/class-lp-setup-wizard.php:217
2292
+ #: inc/admin/views/setup/steps/pages.php:14
2293
+ msgid "Static Pages"
2294
  msgstr ""
2295
 
2296
+ #: inc/admin/class-lp-setup-wizard.php:221
2297
+ #: inc/admin/meta-box/fields/payment-order.php:29
2298
+ #: inc/admin/views/setup/steps/payment.php:16
2299
+ msgid "Payment"
2300
  msgstr ""
2301
 
2302
+ #: inc/admin/class-lp-setup-wizard.php:225
2303
+ #: inc/admin/settings/class-lp-settings-emails.php:26
2304
+ #: inc/admin/settings/class-lp-settings-emails.php:166
2305
+ msgid "Emails"
2306
  msgstr ""
2307
 
2308
+ #: inc/admin/class-lp-setup-wizard.php:229
2309
+ #: inc/admin/views/setup/content.php:92
2310
+ #: inc/admin/views/setup/steps/finish.php:12
2311
+ msgid "Finish"
2312
  msgstr ""
2313
 
2314
+ #: inc/admin/class-lp-setup-wizard.php:346
2315
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:91
2316
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:95
2317
+ msgid "Paypal"
2318
  msgstr ""
2319
 
2320
+ #: inc/admin/class-lp-setup-wizard.php:347
2321
+ msgid "Enter your Paypal email address to accept payment via Paypal."
2322
  msgstr ""
2323
 
2324
+ #: inc/admin/class-lp-upgrader.php:12
2325
+ msgid "Invalid Data provided."
2326
  msgstr ""
2327
 
2328
+ #: inc/admin/class-lp-upgrader.php:13
2329
+ msgid "Could not access filesystem."
2330
  msgstr ""
2331
 
2332
+ #: inc/admin/class-lp-upgrader.php:14
2333
+ msgid "Filesystem error."
 
2334
  msgstr ""
2335
 
2336
+ #: inc/admin/class-lp-upgrader.php:15
2337
+ msgid "Unable to locate WordPress Root directory."
 
2338
  msgstr ""
2339
 
2340
+ #: inc/admin/class-lp-upgrader.php:16
2341
+ msgid "Unable to locate WordPress Content directory (wp-content)."
2342
  msgstr ""
2343
 
2344
+ #: inc/admin/class-lp-upgrader.php:17
2345
+ msgid "Unable to locate WordPress Plugin directory."
2346
  msgstr ""
2347
 
2348
+ #: inc/admin/class-lp-upgrader.php:18
2349
+ msgid "Unable to locate WordPress Theme directory."
 
 
 
 
 
 
 
 
2350
  msgstr ""
2351
 
2352
+ #: inc/admin/class-lp-upgrader.php:20
2353
+ #, php-format
2354
+ msgid "Unable to locate necessary folder (%s)."
2355
  msgstr ""
2356
 
2357
+ #: inc/admin/class-lp-upgrader.php:22
2358
+ msgid "Download failed."
2359
  msgstr ""
2360
 
2361
+ #: inc/admin/class-lp-upgrader.php:23
2362
+ msgid "Installing the latest version&#8230;"
2363
  msgstr ""
2364
 
2365
+ #: inc/admin/class-lp-upgrader.php:24
2366
+ msgid "The package contains no files."
2367
  msgstr ""
2368
 
2369
+ #: inc/admin/class-lp-upgrader.php:25
2370
+ msgid "Destination folder already exists."
2371
  msgstr ""
2372
 
2373
+ #: inc/admin/class-lp-upgrader.php:26
2374
+ msgid "Could not create directory."
2375
  msgstr ""
2376
 
2377
+ #: inc/admin/class-lp-upgrader.php:27
2378
+ msgid "The package could not be installed."
 
 
2379
  msgstr ""
2380
 
2381
+ #: inc/admin/class-lp-upgrader.php:29
2382
+ msgid "Enabling Maintenance mode&#8230;"
2383
  msgstr ""
2384
 
2385
+ #: inc/admin/class-lp-upgrader.php:30
2386
+ msgid "Disabling Maintenance mode&#8230;"
2387
  msgstr ""
2388
 
2389
+ #: inc/admin/lp-admin-actions.php:61
2390
+ #: inc/admin/views/dashboard/plugin-status/html-results.php:31
2391
+ msgid "Published"
2392
  msgstr ""
2393
 
2394
+ #: inc/admin/lp-admin-actions.php:62
2395
+ msgid "Private"
2396
  msgstr ""
2397
 
2398
+ #: inc/admin/lp-admin-actions.php:63
2399
+ msgid "Pending Review"
2400
  msgstr ""
2401
 
2402
+ #: inc/admin/lp-admin-actions.php:64
2403
+ msgid "Scheduled"
2404
  msgstr ""
2405
 
2406
+ #: inc/admin/lp-admin-actions.php:65
2407
+ msgid "Draft"
2408
  msgstr ""
2409
 
2410
+ #: inc/admin/lp-admin-actions.php:66
2411
+ msgid "Trash"
2412
  msgstr ""
2413
 
2414
+ #: inc/admin/lp-admin-actions.php:144
2415
+ msgid "LearnPress Plugin"
2416
  msgstr ""
2417
 
2418
+ #: inc/admin/lp-admin-actions.php:148
2419
+ msgid "LearnPress Status"
 
2420
  msgstr ""
2421
 
2422
+ #: inc/admin/lp-admin-actions.php:212 inc/custom-post-types/course.php:1307
2423
+ msgid "Categories"
 
 
 
2424
  msgstr ""
2425
 
2426
+ #: inc/admin/lp-admin-actions.php:217 inc/custom-post-types/course.php:224
2427
+ msgid "Tags"
 
2428
  msgstr ""
2429
 
2430
+ #: inc/admin/lp-admin-functions.php:32
2431
+ msgid "Duplicate this course"
 
 
2432
  msgstr ""
2433
 
2434
+ #: inc/admin/lp-admin-functions.php:44
2435
+ #: inc/admin/meta-box/fields/course-permalink.php:47
2436
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:22
2437
+ #: inc/admin/views/settings/fields/course-permalink.php:31
2438
+ #: inc/admin/views/statistics/orders.php:47
2439
+ #: inc/custom-post-types/abstract.php:556 inc/custom-post-types/quiz.php:379
2440
+ #: templates/checkout/review-order.php:32
2441
+ #: templates/emails/order-items-table.php:66
2442
+ #: templates/order/order-details.php:28 templates/profile/tabs/courses.php:32
2443
+ #: templates/profile/tabs/quizzes.php:37
2444
+ #: templates/profile/tabs/courses/purchased.php:38
2445
+ msgid "Course"
2446
  msgstr ""
2447
 
2448
+ #: inc/admin/lp-admin-functions.php:52
2449
+ msgid "Duplicate this quiz"
 
 
2450
  msgstr ""
2451
 
2452
+ #: inc/admin/lp-admin-functions.php:56
2453
+ msgid "Duplicate this question"
 
2454
  msgstr ""
2455
 
2456
+ #: inc/admin/lp-admin-functions.php:60
2457
+ msgid "Duplicate this lesson"
 
2458
  msgstr ""
2459
 
2460
+ #: inc/admin/lp-admin-functions.php:183
2461
+ msgid "[ Add a new page ]"
 
 
2462
  msgstr ""
2463
 
2464
+ #: inc/admin/lp-admin-functions.php:206
2465
+ msgid "Select Page"
2466
  msgstr ""
2467
 
2468
+ #: inc/admin/lp-admin-functions.php:223
2469
+ msgid "Select a page&hellip;"
2470
  msgstr ""
2471
 
2472
+ #: inc/admin/lp-admin-functions.php:244
2473
+ msgid "Create"
2474
  msgstr ""
2475
 
2476
+ #: inc/admin/lp-admin-functions.php:247
2477
+ msgid "New page title"
2478
  msgstr ""
2479
 
2480
+ #: inc/admin/lp-admin-functions.php:248
2481
+ msgid "Ok [Enter]"
2482
  msgstr ""
2483
 
2484
+ #: inc/admin/lp-admin-functions.php:249
2485
+ msgid "Cancel [ESC]"
2486
  msgstr ""
2487
 
2488
+ #: inc/admin/lp-admin-functions.php:333
2489
+ msgid "Minutes"
2490
  msgstr ""
2491
 
2492
+ #: inc/admin/lp-admin-functions.php:376 inc/admin/lp-admin-functions.php:417
2493
+ msgid "Plain text"
2494
  msgstr ""
2495
 
2496
+ #: inc/admin/lp-admin-functions.php:377 inc/admin/lp-admin-functions.php:418
2497
+ #: inc/admin/settings/class-lp-settings-emails.php:147
2498
+ msgid "HTML"
2499
  msgstr ""
2500
 
2501
+ #: inc/admin/lp-admin-functions.php:578
2502
+ #: inc/admin/views/addons/html-loop-theme.php:51
2503
+ msgid "Get it now"
2504
  msgstr ""
2505
 
2506
+ #: inc/admin/lp-admin-functions.php:580
2507
+ #: inc/admin/views/addons/html-loop-theme.php:53
2508
+ msgid "View Demo"
 
 
2509
  msgstr ""
2510
 
2511
+ #: inc/admin/lp-admin-functions.php:855
2512
+ #: inc/admin/views/statistics/courses.php:9
2513
+ #: inc/admin/views/statistics/general.php:9
2514
+ #: inc/admin/views/statistics/orders.php:9
2515
+ #: inc/admin/views/statistics/users.php:9
2516
+ #: inc/admin/views/statistics/users.php:46
2517
+ msgid "Instructors"
2518
  msgstr ""
2519
 
2520
+ #: inc/admin/lp-admin-functions.php:860
2521
+ #: inc/admin/views/statistics/courses.php:8
2522
+ #: inc/admin/views/statistics/general.php:8
2523
+ #: inc/admin/views/statistics/orders.php:8
2524
+ #: inc/admin/views/statistics/users.php:8
2525
+ #: inc/admin/views/statistics/users.php:47
2526
+ #: inc/admin/views/tools/course/html-course.php:30
2527
+ #: inc/custom-post-types/course.php:1296 inc/custom-post-types/course.php:1303
2528
+ msgid "Students"
2529
  msgstr ""
2530
 
2531
+ #: inc/admin/lp-admin-functions.php:1020 inc/admin/lp-admin-functions.php:2103
2532
+ #: inc/admin/views/meta-boxes/course/review-logs.php:25
2533
+ #: inc/user/class-lp-profile.php:814
2534
+ msgid "Publish"
 
2535
  msgstr ""
2536
 
2537
+ #: inc/admin/lp-admin-functions.php:1025 inc/admin/lp-admin-functions.php:1227
2538
+ #: inc/admin/lp-admin-functions.php:2108
2539
+ #: inc/admin/views/statistics/courses.php:44
2540
+ #: inc/admin/views/statistics/general.php:61
2541
+ #: inc/admin/views/statistics/orders.php:64 inc/user/class-lp-profile.php:815
2542
+ msgid "Pending"
2543
  msgstr ""
2544
 
2545
+ #: inc/admin/lp-admin-functions.php:1030 inc/admin/lp-admin-functions.php:2113
2546
+ #: inc/admin/views/statistics/courses.php:45
2547
+ #: inc/admin/views/statistics/general.php:62
2548
+ msgid "Paid"
2549
  msgstr ""
2550
 
2551
+ #: inc/admin/lp-admin-functions.php:1035 inc/admin/lp-admin-functions.php:2118
2552
+ #: inc/admin/views/statistics/courses.php:46
2553
+ #: inc/admin/views/statistics/general.php:63
2554
+ #: inc/course/abstract-course.php:673 inc/custom-post-types/course.php:1374
2555
+ msgid "Free"
2556
  msgstr ""
2557
 
2558
+ #: inc/admin/lp-admin-functions.php:1254
2559
+ msgid "Pending Courses / Publish Courses"
2560
  msgstr ""
2561
 
2562
+ #: inc/admin/lp-admin-functions.php:1255
2563
+ msgid "Free Courses / Priced Courses"
2564
  msgstr ""
2565
 
2566
+ #: inc/admin/lp-admin-functions.php:1423
2567
+ msgid "Installed"
2568
  msgstr ""
2569
 
2570
+ #: inc/admin/lp-admin-functions.php:1456
2571
+ #, php-format
2572
+ msgid "The user %s has become a teacher"
2573
  msgstr ""
2574
 
2575
+ #: inc/admin/lp-admin-functions.php:1514
2576
+ msgid "You haven't got any courses yet! Would you like to import sample data?"
2577
  msgstr ""
2578
 
2579
+ #: inc/admin/lp-admin-functions.php:1515
2580
+ msgid "If yes, please install add-on name"
2581
  msgstr ""
2582
 
2583
+ #: inc/admin/lp-admin-functions.php:1516
2584
+ msgid "LearnPress Import/Export"
2585
  msgstr ""
2586
 
2587
+ #: inc/admin/lp-admin-functions.php:1517
2588
+ msgid "but don't worry because it is completely automated."
 
2589
  msgstr ""
2590
 
2591
+ #: inc/admin/lp-admin-functions.php:1518
2592
+ msgid "Import now"
2593
  msgstr ""
2594
 
2595
+ #: inc/admin/lp-admin-functions.php:1519
2596
+ msgid "No, thanks!"
2597
  msgstr ""
2598
 
2599
+ #: inc/admin/lp-admin-functions.php:1729
2600
+ msgid " Copy"
2601
  msgstr ""
2602
 
2603
+ #: inc/admin/lp-admin-functions.php:1822
2604
+ #, php-format
2605
+ msgid "Question id %s does not exist."
2606
  msgstr ""
2607
 
2608
+ #: inc/admin/lp-admin-functions.php:1825
2609
+ #, php-format
2610
+ msgid "Quiz id %s does not exist."
2611
  msgstr ""
2612
 
2613
+ #: inc/admin/editor/class-lp-admin-editor-course.php:71
2614
+ #: inc/curds/class-lp-course-curd.php:45
2615
+ msgid "New Course"
2616
  msgstr ""
2617
 
2618
+ #: inc/admin/editor/class-lp-admin-editor-question.php:104
2619
+ #: inc/curds/class-lp-question-curd.php:46
2620
+ msgid "New Question"
2621
  msgstr ""
2622
 
2623
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:45
2624
+ msgid "Invalid quiz"
2625
  msgstr ""
2626
 
2627
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:147
2628
+ #: inc/curds/class-lp-quiz-curd.php:85 inc/custom-post-types/quiz.php:97
2629
+ msgid "New Quiz"
2630
  msgstr ""
2631
 
2632
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:156
2633
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:591
2634
+ msgid "Quiz creation failed."
2635
  msgstr ""
2636
 
2637
+ #: inc/admin/helpers/class-lp-plugins-helper.php:238
2638
+ msgid "Install Now"
2639
  msgstr ""
2640
 
2641
+ #: inc/admin/helpers/class-lp-plugins-helper.php:252
2642
+ #: inc/admin/helpers/class-lp-plugins-helper.php:262
2643
+ #, php-format
2644
+ msgid "Disable %s now"
2645
  msgstr ""
2646
 
2647
+ #: inc/admin/helpers/class-lp-plugins-helper.php:252
2648
+ #: inc/admin/helpers/class-lp-plugins-helper.php:262
2649
+ msgid "Disable Now"
2650
  msgstr ""
2651
 
2652
+ #: inc/admin/helpers/class-lp-plugins-helper.php:254
2653
+ #: inc/admin/helpers/class-lp-plugins-helper.php:264
2654
+ #, php-format
2655
+ msgid "Enable %s now"
2656
  msgstr ""
2657
 
2658
+ #: inc/admin/helpers/class-lp-plugins-helper.php:254
2659
+ #: inc/admin/helpers/class-lp-plugins-helper.php:264
2660
+ msgid "Enable Now"
2661
  msgstr ""
2662
 
2663
+ #: inc/admin/helpers/class-lp-plugins-helper.php:269
2664
  #, php-format
2665
+ msgid "Buy %s now"
2666
  msgstr ""
2667
 
2668
+ #: inc/admin/helpers/class-lp-plugins-helper.php:269
2669
+ msgid "Buy Now"
2670
  msgstr ""
2671
 
2672
+ #: inc/admin/meta-box/fields/color-schema.php:99
2673
+ msgid "Save as new"
 
2674
  msgstr ""
2675
 
2676
+ #: inc/admin/meta-box/fields/color-schema.php:101
2677
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:100
2678
+ #: inc/admin/views/tools/course/html-user-item.php:28
2679
+ #: inc/widgets/course-filters/tmpl/default.php:85
2680
+ msgid "Reset"
 
 
 
 
 
2681
  msgstr ""
2682
 
2683
+ #: inc/admin/meta-box/fields/color-schema.php:102
2684
+ msgid "Use this colors"
 
2685
  msgstr ""
2686
 
2687
+ #: inc/admin/meta-box/fields/color-schema.php:103
2688
+ #: inc/admin/views/meta-boxes/course/review-logs.php:31
2689
+ #: inc/libraries/meta-box/inc/fields/autocomplete.php:23
2690
+ #: inc/libraries/meta-box/inc/fields/autocomplete.php:85
2691
+ #: inc/libraries/meta-box/inc/fields/autocomplete.php:97
2692
+ msgid "Delete"
2693
+ msgstr ""
2694
 
2695
+ #: inc/admin/meta-box/fields/course-permalink.php:36
2696
+ #: inc/admin/settings/class-lp-settings-courses.php:38
2697
+ #: inc/admin/views/settings/fields/course-permalink.php:14
2698
+ msgctxt "default-slug"
2699
+ msgid "courses"
2700
  msgstr ""
2701
 
2702
+ #: inc/admin/meta-box/fields/course-permalink.php:37
2703
+ #: inc/admin/views/settings/fields/course-permalink.php:15
2704
+ msgctxt "default-slug"
2705
+ msgid "course"
 
 
 
 
2706
  msgstr ""
2707
 
2708
+ #: inc/admin/meta-box/fields/course-permalink.php:42
2709
+ #: inc/admin/views/settings/fields/course-permalink.php:26
2710
+ msgid "Default"
2711
  msgstr ""
2712
 
2713
+ #: inc/admin/meta-box/fields/course-permalink.php:52
2714
+ #: inc/admin/views/settings/fields/course-permalink.php:36
2715
+ msgid "Courses base"
2716
  msgstr ""
2717
 
2718
+ #: inc/admin/meta-box/fields/course-permalink.php:57
2719
+ #: inc/admin/views/settings/fields/course-permalink.php:41
2720
+ msgid "Courses base with category"
2721
  msgstr ""
2722
 
2723
+ #: inc/admin/meta-box/fields/course-permalink.php:92
2724
+ #: inc/admin/views/settings/fields/course-permalink.php:77
2725
+ msgid "Custom Base"
 
2726
  msgstr ""
2727
 
2728
+ #: inc/admin/meta-box/fields/course-permalink.php:100
2729
+ #: inc/admin/views/settings/fields/course-permalink.php:84
2730
+ msgid ""
2731
+ "Enter a custom base to use. A base <strong>must</strong> be set or WordPress "
2732
+ "will use default values instead."
2733
  msgstr ""
2734
 
2735
+ #: inc/admin/meta-box/fields/email-content.php:66
2736
+ msgid "General setting"
2737
  msgstr ""
2738
 
2739
+ #: inc/admin/meta-box/fields/email-content.php:70
2740
  #, php-format
2741
  msgid ""
2742
+ "Choose <strong>General setting</strong> to apply the setting from Email <a "
2743
+ "href=\"%s\">General Options</a> "
2744
  msgstr ""
2745
 
2746
+ #: inc/admin/meta-box/fields/email-content.php:115
2747
+ #: inc/admin/views/settings/emails/email-template.php:52
2748
+ #, php-format
2749
+ msgid ""
2750
+ "This template has been overridden by your theme and can be found in: <code>"
2751
+ "%s</code>. <br />Please open the file in an editor program to edit"
2752
  msgstr ""
2753
 
2754
+ #: inc/admin/meta-box/fields/email-content.php:151
2755
+ #: inc/admin/views/settings/emails/email-template.php:77
2756
+ msgid "Click on variables to add it into email content."
2757
  msgstr ""
2758
 
2759
+ #: inc/admin/meta-box/fields/google-fonts.php:30
2760
+ msgid "Fonts"
2761
  msgstr ""
2762
 
2763
+ #: inc/admin/meta-box/fields/google-fonts.php:38
2764
+ msgid "Font families separated by |, eg: Open Sans|Roboto."
2765
  msgstr ""
2766
 
2767
+ #: inc/admin/meta-box/fields/google-fonts.php:40
2768
+ msgid "Subset"
2769
  msgstr ""
2770
 
2771
+ #: inc/admin/meta-box/fields/google-fonts.php:48
2772
+ msgid "Font subsets separated by comma, eg: greek,latin."
 
2773
  msgstr ""
2774
 
2775
+ #: inc/admin/meta-box/fields/image-dimensions.php:32
2776
+ #: inc/admin/views/settings/fields/image-size.php:13
2777
+ msgid "px"
2778
  msgstr ""
2779
 
2780
+ #: inc/admin/meta-box/fields/list-emails.php:29
2781
+ #: inc/admin/meta-box/fields/payment-order.php:31
2782
+ #: inc/admin/views/setup/setup-stripe.php:11
2783
+ msgid "Description"
2784
  msgstr ""
2785
 
2786
+ #: inc/admin/meta-box/fields/list-emails.php:70
2787
+ msgid ""
2788
+ "You can enable/disable each email by clicking on the status icon or apply "
2789
+ "status for all emails by clicking these buttons"
2790
  msgstr ""
2791
 
2792
+ #: inc/admin/meta-box/fields/list-emails.php:73
2793
+ msgid "Enable all"
2794
  msgstr ""
2795
 
2796
+ #: inc/admin/meta-box/fields/list-emails.php:76
2797
+ msgid "Disable all"
2798
  msgstr ""
2799
 
2800
+ #: inc/admin/meta-box/fields/payment-order.php:30
2801
+ #: inc/admin/views/tools/course/html-course.php:28
2802
+ #: inc/admin/views/tools/course/html-user.php:28
2803
+ msgid "ID"
2804
  msgstr ""
2805
 
2806
+ #: inc/admin/pointers/pointers.php:66
2807
+ msgid "Course Curriculum"
2808
  msgstr ""
2809
 
2810
+ #: inc/admin/pointers/pointers.php:67
2811
+ msgid ""
2812
+ "Build a course by selecting created lessons and quizzes or adding new ones. "
2813
+ "You can easily sort, edit, shortcut (l and q). With LearnPress, it's never "
2814
+ "been easier."
2815
  msgstr ""
2816
 
2817
+ #: inc/admin/settings/class-lp-settings-advanced.php:22
2818
+ #: inc/admin/settings/class-lp-settings-advanced.php:88
2819
+ msgid "Advanced"
2820
  msgstr ""
2821
 
2822
+ #: inc/admin/settings/class-lp-settings-advanced.php:53
2823
+ msgid "Enable custom colors"
2824
  msgstr ""
2825
 
2826
+ #: inc/admin/settings/class-lp-settings-advanced.php:57
2827
+ msgid "Use color schema for main colors."
2828
  msgstr ""
2829
 
2830
+ #: inc/admin/settings/class-lp-settings-advanced.php:60
2831
+ msgid "Color schema"
2832
  msgstr ""
2833
 
2834
+ #: inc/admin/settings/class-lp-settings-advanced.php:66
2835
+ msgid "Load css"
 
2836
  msgstr ""
2837
 
2838
+ #: inc/admin/settings/class-lp-settings-advanced.php:70
2839
+ msgid "Load default stylesheet for LearnPress."
2840
  msgstr ""
2841
 
2842
+ #: inc/admin/settings/class-lp-settings-advanced.php:73
2843
+ msgid "Debug mode"
2844
  msgstr ""
2845
 
2846
+ #: inc/admin/settings/class-lp-settings-advanced.php:77
2847
+ msgid "Turn on/off debug mode for developer."
2848
  msgstr ""
2849
 
2850
+ #: inc/admin/settings/class-lp-settings-advanced.php:80
2851
+ msgid "Hard cache"
2852
+ msgstr ""
2853
+
2854
+ #: inc/admin/settings/class-lp-settings-advanced.php:84
2855
+ msgid "Enable hard cache"
2856
+ msgstr ""
2857
+
2858
+ #: inc/admin/settings/class-lp-settings-advanced.php:88
2859
+ #, php-format
2860
+ msgid ""
2861
+ "Enable cache for static content such as content and settings of course, "
2862
+ "lesson, quiz. <a href=\"%s\">%s</a>"
2863
+ msgstr ""
2864
+
2865
+ #: inc/admin/settings/class-lp-settings-advanced.php:91
2866
+ msgid "Others"
2867
+ msgstr ""
2868
+
2869
+ #: inc/admin/settings/class-lp-settings-advanced.php:95
2870
+ msgid "Enable lesson video"
2871
+ msgstr ""
2872
+
2873
+ #: inc/admin/settings/class-lp-settings-advanced.php:99
2874
+ msgid ""
2875
+ "When this option is enabled, the first video embed in lesson content will be "
2876
+ "detected and move to the top."
2877
+ msgstr ""
2878
+
2879
+ #: inc/admin/settings/class-lp-settings-checkout.php:36
2880
+ #: inc/admin/settings/class-lp-settings-courses.php:66
2881
+ #: inc/admin/settings/class-lp-settings-general.php:16
2882
+ #: inc/admin/settings/class-lp-settings-general.php:40
2883
+ #: inc/admin/settings/class-lp-settings-payments.php:55
2884
+ #: inc/admin/settings/class-lp-settings-profile.php:54
2885
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:26
2886
+ #: inc/custom-post-types/course.php:578 inc/user/class-lp-profile.php:330
2887
+ msgid "General"
2888
+ msgstr ""
2889
+
2890
+ #: inc/admin/settings/class-lp-settings-checkout.php:59
2891
+ #: inc/admin/settings/class-lp-settings-payments.php:87
2892
+ msgid "Auto enroll"
2893
+ msgstr ""
2894
+
2895
+ #: inc/admin/settings/class-lp-settings-checkout.php:60
2896
+ #: inc/admin/settings/class-lp-settings-payments.php:91
2897
+ msgid "Auto enroll a user after they buy a course."
2898
+ msgstr ""
2899
+
2900
+ #: inc/admin/settings/class-lp-settings-checkout.php:66
2901
+ #: inc/admin/settings/class-lp-settings-payments.php:81
2902
+ msgid "Checkout page"
2903
+ msgstr ""
2904
+
2905
+ #: inc/admin/settings/class-lp-settings-checkout.php:72
2906
+ msgid "Checkout Endpoints"
2907
+ msgstr ""
2908
+
2909
+ #: inc/admin/settings/class-lp-settings-courses.php:24
2910
+ #: inc/custom-post-types/course.php:145
2911
+ msgctxt "slug"
2912
+ msgid "courses"
2913
+ msgstr ""
2914
+
2915
+ #: inc/admin/settings/class-lp-settings-courses.php:68
2916
+ #: inc/admin/settings/class-lp-settings-general.php:42
2917
+ #: inc/admin/settings/class-lp-settings-profile.php:56
2918
+ msgid "General settings."
2919
+ msgstr ""
2920
+
2921
+ #: inc/admin/settings/class-lp-settings-courses.php:71
2922
+ msgid "Review course before publishing"
2923
+ msgstr ""
2924
+
2925
+ #: inc/admin/settings/class-lp-settings-courses.php:72
2926
+ msgid "The course needs to be reviewed by admin before it can be published."
2927
+ msgstr ""
2928
+
2929
+ #: inc/admin/settings/class-lp-settings-courses.php:78
2930
+ msgid "Enable editing published course"
2931
+ msgstr ""
2932
+
2933
+ #: inc/admin/settings/class-lp-settings-courses.php:79
2934
+ msgid ""
2935
+ "Allow instructors to edit the course which were published without review."
2936
+ "<br /> If this option is disabled, the course status will be changed to "
2937
+ "Pending Review when the instructor update course."
2938
+ msgstr ""
2939
+
2940
+ #: inc/admin/settings/class-lp-settings-courses.php:99
2941
+ msgid "Archive"
2942
+ msgstr ""
2943
+
2944
+ #: inc/admin/settings/class-lp-settings-courses.php:101
2945
+ msgid "Those settings are applied to archive course page."
2946
+ msgstr ""
2947
+
2948
+ #: inc/admin/settings/class-lp-settings-courses.php:104
2949
+ msgid "Courses Page"
2950
+ msgstr ""
2951
+
2952
+ #: inc/admin/settings/class-lp-settings-courses.php:110
2953
+ #: inc/admin/settings/class-lp-settings-profile.php:109
2954
+ msgid "Courses per page"
2955
+ msgstr ""
2956
+
2957
+ #: inc/admin/settings/class-lp-settings-courses.php:111
2958
+ msgid "Number of courses displayed per page."
2959
+ msgstr ""
2960
+
2961
+ #: inc/admin/settings/class-lp-settings-courses.php:126
2962
+ msgid "Single course"
2963
+ msgstr ""
2964
+
2965
+ #: inc/admin/settings/class-lp-settings-courses.php:128
2966
+ msgid "Those settings are applied to single course page."
2967
+ msgstr ""
2968
+
2969
+ #: inc/admin/settings/class-lp-settings-courses.php:132
2970
+ msgid "Course category base"
2971
+ msgstr ""
2972
+
2973
+ #: inc/admin/settings/class-lp-settings-courses.php:138
2974
+ msgid "Course tag base"
2975
+ msgstr ""
2976
+
2977
+ #: inc/admin/settings/class-lp-settings-courses.php:144
2978
+ msgid "Single course permalink"
2979
+ msgstr ""
2980
+
2981
+ #: inc/admin/settings/class-lp-settings-courses.php:164
2982
+ msgid "Enrolled students number"
2983
+ msgstr ""
2984
+
2985
+ #: inc/admin/settings/class-lp-settings-courses.php:167
2986
+ msgid ""
2987
+ "Displays a fake numbers of enrolled students. Disable to show the real value."
2988
+ msgstr ""
2989
+
2990
+ #: inc/admin/settings/class-lp-settings-courses.php:175
2991
+ msgid "Course thumbnails"
2992
+ msgstr ""
2993
+
2994
+ #: inc/admin/settings/class-lp-settings-courses.php:177
2995
+ msgid "Thumbnail generation for archive/single course."
2996
+ msgstr ""
2997
+
2998
+ #: inc/admin/settings/class-lp-settings-courses.php:202
2999
+ msgid "Archive course"
3000
+ msgstr ""
3001
+
3002
+ #: inc/admin/settings/class-lp-settings-courses.php:206
3003
+ msgid "Turn on/off courses extra thumbnail."
3004
+ msgstr ""
3005
+
3006
+ #: inc/admin/settings/class-lp-settings-courses.php:209
3007
+ msgid "Thumbnail dimensions"
3008
+ msgstr ""
3009
+
3010
+ #: inc/admin/settings/class-lp-settings-emails.php:64
3011
+ msgid "General options"
3012
+ msgstr ""
3013
+
3014
+ #: inc/admin/settings/class-lp-settings-emails.php:112
3015
+ msgid "Email options"
3016
+ msgstr ""
3017
+
3018
+ #: inc/admin/settings/class-lp-settings-emails.php:114
3019
+ #: inc/admin/views/settings/emails/general.php:17
3020
+ msgid ""
3021
+ "The following options affect the sender (email address and name) used in "
3022
+ "LearnPress emails."
3023
+ msgstr ""
3024
+
3025
+ #: inc/admin/settings/class-lp-settings-emails.php:117
3026
+ msgid "From name"
3027
+ msgstr ""
3028
+
3029
+ #: inc/admin/settings/class-lp-settings-emails.php:123
3030
+ msgid "From email"
3031
+ msgstr ""
3032
+
3033
+ #: inc/admin/settings/class-lp-settings-emails.php:129
3034
+ msgid "Send email in background"
3035
+ msgstr ""
3036
+
3037
+ #: inc/admin/settings/class-lp-settings-emails.php:133
3038
+ msgid "Defer transaction email and runs in background."
3039
+ msgstr ""
3040
+
3041
+ #: inc/admin/settings/class-lp-settings-emails.php:136
3042
+ msgid "Email template"
3043
+ msgstr ""
3044
+
3045
+ #: inc/admin/settings/class-lp-settings-emails.php:140
3046
+ msgid "Default Email Content"
3047
+ msgstr ""
3048
+
3049
+ #: inc/admin/settings/class-lp-settings-emails.php:144
3050
+ msgid ""
3051
+ "Default email content type for all emails that set content type is "
3052
+ "<strong>General Settings</strong>."
3053
+ msgstr ""
3054
+
3055
+ #: inc/admin/settings/class-lp-settings-emails.php:146
3056
+ msgid "Plain Text"
3057
+ msgstr ""
3058
+
3059
+ #: inc/admin/settings/class-lp-settings-emails.php:151
3060
+ #: inc/admin/views/settings/emails/general.php:40
3061
+ msgid "Header image"
3062
+ msgstr ""
3063
+
3064
+ #: inc/admin/settings/class-lp-settings-emails.php:156
3065
+ #: inc/admin/views/settings/emails/general.php:43
3066
+ msgid "The image will be displayed in the top of the email."
3067
+ msgstr ""
3068
+
3069
+ #: inc/admin/settings/class-lp-settings-emails.php:159
3070
+ #: inc/admin/views/settings/emails/general.php:47
3071
+ msgid "Footer text"
3072
+ msgstr ""
3073
+
3074
+ #: inc/admin/settings/class-lp-settings-emails.php:163
3075
+ msgid "The texts display in the bottom of email."
3076
+ msgstr ""
3077
+
3078
+ #: inc/admin/settings/class-lp-settings-general.php:45
3079
+ msgid "Logout redirect"
3080
+ msgstr ""
3081
+
3082
+ #: inc/admin/settings/class-lp-settings-general.php:49
3083
+ msgid "The page where user will be redirected to after logging out."
3084
+ msgstr ""
3085
+
3086
+ #: inc/admin/settings/class-lp-settings-general.php:54
3087
+ msgid "Setting up your currency unit and its formatting."
3088
+ msgstr ""
3089
+
3090
+ #: inc/admin/settings/class-lp-settings-general.php:65
3091
+ #: inc/admin/views/setup/steps/currency.php:37
3092
+ msgid "Currency position"
3093
+ msgstr ""
3094
+
3095
+ #: inc/admin/settings/class-lp-settings-general.php:72
3096
+ #: inc/admin/views/setup/steps/currency.php:51
3097
+ msgid "Thousands Separator"
3098
+ msgstr ""
3099
+
3100
+ #: inc/admin/settings/class-lp-settings-general.php:78
3101
+ #: inc/admin/views/setup/steps/currency.php:56
3102
+ msgid "Decimals Separator"
3103
+ msgstr ""
3104
+
3105
+ #: inc/admin/settings/class-lp-settings-general.php:84
3106
+ #: inc/admin/views/setup/steps/currency.php:61
3107
+ msgid "Number of Decimals"
3108
+ msgstr ""
3109
+
3110
+ #: inc/admin/settings/class-lp-settings-pages.php:16
3111
+ msgid "Pages"
3112
+ msgstr ""
3113
+
3114
+ #: inc/admin/settings/class-lp-settings-pages.php:28
3115
+ msgid "Become a teacher"
3116
+ msgstr ""
3117
+
3118
+ #: inc/admin/settings/class-lp-settings-pages.php:39
3119
+ msgid "Become a teacher page"
3120
+ msgstr ""
3121
+
3122
+ #: inc/admin/settings/class-lp-settings-pages.php:45
3123
+ msgid "Instructors registration"
3124
+ msgstr ""
3125
+
3126
+ #: inc/admin/settings/class-lp-settings-pages.php:46
3127
+ msgid "Create option for instructors registration."
3128
+ msgstr ""
3129
+
3130
+ #: inc/admin/settings/class-lp-settings-payments.php:28
3131
+ #: inc/admin/settings/class-lp-settings-payments.php:143
3132
+ msgid "Payments"
3133
+ msgstr ""
3134
+
3135
+ #: inc/admin/settings/class-lp-settings-payments.php:94
3136
+ msgid "Enable guest checkout"
3137
+ msgstr ""
3138
+
3139
+ #: inc/admin/settings/class-lp-settings-payments.php:98
3140
+ msgid "Enable user buy course as a Guest."
3141
+ msgstr ""
3142
+
3143
+ #: inc/admin/settings/class-lp-settings-payments.php:101
3144
+ msgid "Enable login in checkout"
3145
+ msgstr ""
3146
+
3147
+ #: inc/admin/settings/class-lp-settings-payments.php:105
3148
+ msgid "Enable login form in checkout page."
3149
+ msgstr ""
3150
+
3151
+ #: inc/admin/settings/class-lp-settings-payments.php:108
3152
+ msgid "Enable registration in checkout"
3153
+ msgstr ""
3154
+
3155
+ #: inc/admin/settings/class-lp-settings-payments.php:112
3156
+ msgid "Enable registration form in checkout page."
3157
+ msgstr ""
3158
+
3159
+ #: inc/admin/settings/class-lp-settings-payments.php:115
3160
+ msgid "Terms & conditions page"
3161
+ msgstr ""
3162
+
3163
+ #: inc/admin/settings/class-lp-settings-payments.php:127
3164
+ msgid "Endpoints"
3165
+ msgstr ""
3166
+
3167
+ #: inc/admin/settings/class-lp-settings-payments.php:134
3168
+ msgid "lp-order-received"
3169
+ msgstr ""
3170
+
3171
+ #: inc/admin/settings/class-lp-settings-payments.php:136
3172
+ #, php-format
3173
+ msgid ""
3174
+ "Unique slug in checkout page to displays order details. Example: http://"
3175
+ "example.com/lp-checkout/%s/"
3176
+ msgstr ""
3177
+
3178
+ #: inc/admin/settings/class-lp-settings-payments.php:145
3179
+ msgid ""
3180
+ "All available payments are listed here. Drag and drop the payments to re-"
3181
+ "order."
3182
+ msgstr ""
3183
+
3184
+ #: inc/admin/settings/class-lp-settings-payments.php:148
3185
+ msgid "Payment order"
3186
+ msgstr ""
3187
+
3188
+ #: inc/admin/settings/class-lp-settings-profile.php:59
3189
+ msgid "Profile page"
3190
+ msgstr ""
3191
+
3192
+ #: inc/admin/settings/class-lp-settings-profile.php:65
3193
+ msgid "Add link to admin bar"
3194
+ msgstr ""
3195
+
3196
+ #: inc/admin/settings/class-lp-settings-profile.php:71
3197
+ msgid "Text link"
3198
+ msgstr ""
3199
+
3200
+ #: inc/admin/settings/class-lp-settings-profile.php:76
3201
+ msgid "If empty, please enter the name of the page used for profile."
3202
+ msgstr ""
3203
+
3204
+ #: inc/admin/settings/class-lp-settings-profile.php:89
3205
+ msgid "Target link"
3206
+ msgstr ""
3207
+
3208
+ #: inc/admin/settings/class-lp-settings-profile.php:94
3209
+ msgid "Open in same the window"
3210
+ msgstr ""
3211
+
3212
+ #: inc/admin/settings/class-lp-settings-profile.php:95
3213
+ msgid "Open in a new window"
3214
+ msgstr ""
3215
+
3216
+ #: inc/admin/settings/class-lp-settings-profile.php:114
3217
+ msgid "Number of courses displayed per page in profile."
3218
+ msgstr ""
3219
+
3220
+ #: inc/admin/settings/class-lp-settings-profile.php:117
3221
+ msgid "Enable login form"
3222
+ msgstr ""
3223
+
3224
+ #: inc/admin/settings/class-lp-settings-profile.php:121
3225
+ msgid "Enable login from profile if the user is not logged in."
3226
+ msgstr ""
3227
+
3228
+ #: inc/admin/settings/class-lp-settings-profile.php:124
3229
+ msgid "Enable register form"
3230
+ msgstr ""
3231
+
3232
+ #: inc/admin/settings/class-lp-settings-profile.php:128
3233
+ msgid "Enable register from profile if the user is not logged in."
3234
+ msgstr ""
3235
+
3236
+ #: inc/admin/settings/class-lp-settings-profile.php:136
3237
+ msgid "Sub Tab Slugs"
3238
+ msgstr ""
3239
+
3240
+ #: inc/admin/settings/class-lp-settings-profile.php:138
3241
+ msgid "The slugs of tabs display in profile page. Each tab should be unique."
3242
+ msgstr ""
3243
+
3244
+ #: inc/admin/settings/class-lp-settings-profile.php:141
3245
+ #: inc/admin/views/updates/0.9/step-upgraded.php:16
3246
+ #: inc/libraries/meta-box/inc/about/about.php:79
3247
+ #: inc/user/class-lp-profile.php:293
3248
+ msgid "Dashboard"
3249
+ msgstr ""
3250
+
3251
+ #: inc/admin/settings/class-lp-settings-profile.php:146
3252
+ #: inc/admin/settings/class-lp-settings-profile.php:154
3253
+ #: inc/admin/settings/class-lp-settings-profile.php:162
3254
+ #: inc/admin/settings/class-lp-settings-profile.php:170
3255
+ #: inc/admin/settings/class-lp-settings-profile.php:178
3256
+ #: inc/admin/settings/class-lp-settings-profile.php:197
3257
+ #: inc/admin/settings/class-lp-settings-profile.php:205
3258
+ #: inc/admin/settings/class-lp-settings-profile.php:213
3259
+ #: inc/admin/settings/class-lp-settings-profile.php:221
3260
+ #, php-format
3261
+ msgid "Example link is %s"
3262
+ msgstr ""
3263
+
3264
+ #: inc/admin/settings/class-lp-settings-profile.php:157
3265
+ #: inc/admin/settings/class-lp-settings-profile.php:291
3266
+ #: inc/custom-post-types/quiz.php:90 inc/custom-post-types/quiz.php:91
3267
+ #: inc/custom-post-types/quiz.php:95 inc/user/class-lp-profile.php:306
3268
+ #: templates/widgets/course-info/default.php:34
3269
+ msgid "Quizzes"
3270
+ msgstr ""
3271
+
3272
+ #: inc/admin/settings/class-lp-settings-profile.php:173
3273
+ #: inc/admin/views/meta-boxes/order/details.php:36
3274
+ #: inc/user/class-lp-profile.php:318
3275
+ msgid "Order details"
3276
+ msgstr ""
3277
+
3278
+ #: inc/admin/settings/class-lp-settings-profile.php:187
3279
+ msgid "Settings Tab"
3280
+ msgstr ""
3281
+
3282
+ #: inc/admin/settings/class-lp-settings-profile.php:189
3283
+ msgid "The slugs of sections in settings tab. Each slugs should be unique."
3284
+ msgstr ""
3285
+
3286
+ #: inc/admin/settings/class-lp-settings-profile.php:192
3287
+ msgid "Slug"
3288
+ msgstr ""
3289
+
3290
+ #: inc/admin/settings/class-lp-settings-profile.php:200
3291
+ msgid "Basic Information"
3292
+ msgstr ""
3293
+
3294
+ #: inc/admin/settings/class-lp-settings-profile.php:208
3295
+ #: inc/admin/settings/class-lp-settings-profile.php:229
3296
+ #: inc/user/class-lp-profile.php:348
3297
+ msgid "Avatar"
3298
+ msgstr ""
3299
+
3300
+ #: inc/admin/settings/class-lp-settings-profile.php:216
3301
+ msgid "Change Password"
3302
+ msgstr ""
3303
+
3304
+ #: inc/admin/settings/class-lp-settings-profile.php:231
3305
+ msgid "User avatar settings."
3306
+ msgstr ""
3307
+
3308
+ #: inc/admin/settings/class-lp-settings-profile.php:234
3309
+ msgid "Enable custom avatar"
3310
+ msgstr ""
3311
+
3312
+ #: inc/admin/settings/class-lp-settings-profile.php:240
3313
+ msgid "Size"
3314
+ msgstr ""
3315
+
3316
+ #: inc/admin/settings/class-lp-settings-profile.php:254
3317
+ msgid "The height and width of avatar should be equal."
3318
+ msgstr ""
3319
+
3320
+ #: inc/admin/settings/class-lp-settings-profile.php:262
3321
+ #: inc/user/class-lp-profile.php:357
3322
+ msgid "Publicity"
3323
+ msgstr ""
3324
+
3325
+ #: inc/admin/settings/class-lp-settings-profile.php:264
3326
+ msgid "Publicity and sharing user profile content."
3327
+ msgstr ""
3328
+
3329
+ #: inc/admin/settings/class-lp-settings-profile.php:267
3330
+ #: templates/profile/tabs/settings/publicity.php:38
3331
+ msgid "My dashboard"
3332
+ msgstr ""
3333
+
3334
+ #: inc/admin/settings/class-lp-settings-profile.php:271
3335
+ #: templates/profile/tabs/settings/publicity.php:43
3336
+ msgid ""
3337
+ "Public user profile content, if this option is turn off then other sections "
3338
+ "in profile also become invisible."
3339
+ msgstr ""
3340
+
3341
+ #: inc/admin/settings/class-lp-settings-profile.php:278
3342
+ msgid "Public user profile courses."
3343
+ msgstr ""
3344
+
3345
+ #: inc/admin/settings/class-lp-settings-profile.php:278
3346
+ msgid "Allow user to turn on/off sharing profile course option"
3347
+ msgstr ""
3348
+
3349
+ #: inc/admin/settings/class-lp-settings-profile.php:295
3350
+ msgid "Public user profile quizzes."
3351
+ msgstr ""
3352
+
3353
+ #: inc/admin/settings/class-lp-settings-profile.php:295
3354
+ msgid "Allow user to turn on/off sharing profile quizzes option"
3355
+ msgstr ""
3356
+
3357
+ #: inc/admin/settings/email-groups/class-lp-settings-become-teacher-emails.php:23
3358
+ msgid "Become an Instructor"
3359
+ msgstr ""
3360
+
3361
+ #: inc/admin/settings/email-groups/class-lp-settings-cancelled-order-emails.php:24
3362
+ msgid "Cancelled Order"
3363
+ msgstr ""
3364
+
3365
+ #: inc/admin/settings/email-groups/class-lp-settings-completed-order-emails.php:23
3366
+ msgid "Completed Order"
3367
+ msgstr ""
3368
+
3369
+ #: inc/admin/settings/email-groups/class-lp-settings-course-review-emails.php:23
3370
+ msgid "Review Course"
3371
+ msgstr ""
3372
+
3373
+ #: inc/admin/settings/email-groups/class-lp-settings-enrolled-course-emails.php:26
3374
+ msgid "Enrolled Course"
3375
+ msgstr ""
3376
+
3377
+ #: inc/admin/settings/email-groups/class-lp-settings-finished-course-emails.php:26
3378
+ msgid "Finished Course"
3379
+ msgstr ""
3380
+
3381
+ #: inc/admin/settings/email-groups/class-lp-settings-new-order-emails.php:24
3382
+ msgid "New Order"
3383
+ msgstr ""
3384
+
3385
+ #: inc/admin/settings/email-groups/class-lp-settings-processing-order-emails.php:22
3386
+ msgid "Processing Order"
3387
+ msgstr ""
3388
+
3389
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:16
3390
+ msgid "LearnPress Add-ons"
3391
+ msgstr ""
3392
+
3393
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:28
3394
+ #, php-format
3395
+ msgid "Installed (%d)"
3396
+ msgstr ""
3397
+
3398
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:29
3399
+ #, php-format
3400
+ msgid "Get more (%d)"
3401
+ msgstr ""
3402
+
3403
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:30
3404
+ #, php-format
3405
+ msgid "Themes (%d)"
3406
+ msgstr ""
3407
+
3408
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:57
3409
+ msgid "Search..."
3410
+ msgstr ""
3411
+
3412
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:15
3413
+ msgid "LearnPress Settings"
3414
+ msgstr ""
3415
+
3416
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:63
3417
+ #: inc/emails/class-lp-email-new-course.php:28
3418
+ #: inc/emails/class-lp-email-new-course.php:35
3419
+ msgid "New course"
3420
+ msgstr ""
3421
+
3422
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:95
3423
+ msgid "Save settings"
3424
+ msgstr ""
3425
+
3426
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:99
3427
+ msgid "Do you want to restore all settings to default?"
3428
+ msgstr ""
3429
+
3430
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:15
3431
+ msgid "Statistics"
3432
+ msgstr ""
3433
+
3434
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:16
3435
+ msgid "LearnPress Statistics"
3436
+ msgstr ""
3437
+
3438
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:27
3439
+ msgid "Users"
3440
+ msgstr ""
3441
+
3442
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:13
3443
+ msgid "Tools"
3444
+ msgstr ""
3445
+
3446
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:14
3447
+ msgid "LearnPress Tools"
3448
+ msgstr ""
3449
+
3450
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:20
3451
+ msgid "Template"
3452
+ msgstr ""
3453
+
3454
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:21
3455
+ msgid "Database"
3456
+ msgstr ""
3457
+
3458
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:23
3459
+ msgid "Cache"
3460
+ msgstr ""
3461
+
3462
+ #: inc/admin/views/html-admin-notice-templates.php:31
3463
+ #, php-format
3464
+ msgid ""
3465
+ "There is a new update of LearnPress. You may need to update your theme "
3466
+ "<strong>(%s)</strong> to avoid outdated template files."
3467
+ msgstr ""
3468
+
3469
+ #: inc/admin/views/html-admin-notice-templates.php:32
3470
+ #, php-format
3471
+ msgid ""
3472
+ "This is not a bug, don't worry. Read more about Outdated template files "
3473
+ "notice <a href=\"%s\" target=\"_blank\">here</a>."
3474
+ msgstr ""
3475
+
3476
+ #: inc/admin/views/html-admin-notice-templates.php:40
3477
+ msgid "View list of outdated templates"
3478
+ msgstr ""
3479
+
3480
+ #: inc/admin/views/html-admin-notice-templates.php:47
3481
+ msgid "Dismiss"
3482
+ msgstr ""
3483
+
3484
+ #: inc/admin/views/addons/html-loop-plugin.php:38
3485
+ #, php-format
3486
+ msgid "<cite>By %s</cite>"
3487
+ msgstr ""
3488
+
3489
+ #: inc/admin/views/addons/html-loop-plugin.php:44
3490
+ msgid "Version: "
3491
+ msgstr ""
3492
+
3493
+ #: inc/admin/views/addons/html-loop-theme.php:30
3494
+ msgid "$"
3495
+ msgstr ""
3496
+
3497
+ #: inc/admin/views/addons/html-loop-theme.php:33
3498
+ msgid " sales"
3499
+ msgstr ""
3500
+
3501
+ #: inc/admin/views/addons/html-plugins-installed.php:18
3502
+ msgid "There is no add-on installed."
3503
+ msgstr ""
3504
+
3505
+ #: inc/admin/views/addons/html-plugins-installed.php:25
3506
+ msgid "Installed add-ons"
3507
+ msgstr ""
3508
+
3509
+ #: inc/admin/views/addons/html-plugins-more.php:17
3510
+ #: inc/admin/views/addons/html-themes.php:16
3511
+ #, php-format
3512
+ msgid "Last checked %s. <a href=\"%s\">Check again</a>"
3513
+ msgstr ""
3514
+
3515
+ #: inc/admin/views/addons/html-plugins-more.php:28
3516
+ msgid "There is no available add-ons."
3517
+ msgstr ""
3518
+
3519
+ #: inc/admin/views/addons/html-plugins-more.php:36
3520
+ msgid "Free add-ons"
3521
+ msgstr ""
3522
+
3523
+ #: inc/admin/views/addons/html-plugins-more.php:41
3524
+ msgid "Premium add-ons"
3525
+ msgstr ""
3526
+
3527
+ #: inc/admin/views/addons/html-themes.php:25
3528
+ msgid "No related themes."
3529
+ msgstr ""
3530
+
3531
+ #: inc/admin/views/addons/html-themes.php:35
3532
+ msgid "Education Support"
3533
+ msgstr ""
3534
+
3535
+ #: inc/admin/views/addons/html-themes.php:39
3536
+ msgid "Other"
3537
+ msgstr ""
3538
+
3539
+ #: inc/admin/views/course/editor.php:25
3540
+ msgid "Something went wrong! Please reload to continue editing curriculum."
3541
+ msgstr ""
3542
+
3543
+ #: inc/admin/views/course/modal-choose-items.php:57
3544
+ #: inc/admin/views/quiz/modal-choose-items.php:52
3545
+ #: inc/custom-post-types/course.php:102 inc/custom-post-types/quiz.php:179
3546
+ msgid "Selected items"
3547
+ msgstr ""
3548
+
3549
+ #: inc/admin/views/course/modal-choose-items.php:77
3550
+ msgid "Type here to search item"
3551
+ msgstr ""
3552
+
3553
+ #: inc/admin/views/course/modal-choose-items.php:83
3554
+ #: inc/admin/views/quiz/modal-choose-items.php:70
3555
+ msgid "No item found."
3556
+ msgstr ""
3557
+
3558
+ #: inc/admin/views/course/modal-choose-items.php:101
3559
+ #: inc/admin/views/quiz/modal-choose-items.php:89
3560
+ msgid "Adding"
3561
+ msgstr ""
3562
+
3563
+ #: inc/admin/views/course/new-section.php:17
3564
+ msgid "Write section name and press Enter"
3565
+ msgstr ""
3566
+
3567
+ #: inc/admin/views/course/pagination.php:18
3568
+ #: inc/admin/views/quiz/pagination.php:16
3569
+ msgctxt "page-navigation"
3570
+ msgid "Previous"
3571
+ msgstr ""
3572
+
3573
+ #: inc/admin/views/course/pagination.php:20
3574
+ #: inc/admin/views/quiz/pagination.php:18
3575
+ msgctxt "page-navigation"
3576
+ msgid "Next"
3577
+ msgstr ""
3578
+
3579
+ #: inc/admin/views/course/section-item.php:36
3580
+ msgid "Remove from course"
3581
+ msgstr ""
3582
+
3583
+ #: inc/admin/views/course/section-item.php:40
3584
+ #: inc/admin/views/quiz/question-actions.php:50
3585
+ msgid "Move to trash"
3586
+ msgstr ""
3587
+
3588
+ #: inc/admin/views/course/section.php:21
3589
+ msgid "Enter the name section"
3590
+ msgstr ""
3591
+
3592
+ #: inc/admin/views/course/section.php:38
3593
+ msgid "Describe about this section"
3594
+ msgstr ""
3595
+
3596
+ #: inc/admin/views/course/section.php:56
3597
+ msgid "Select items"
3598
+ msgstr ""
3599
+
3600
+ #: inc/admin/views/course/section.php:61
3601
+ msgid "Are you sure?"
3602
+ msgstr ""
3603
+
3604
+ #: inc/admin/views/dashboard/plugin-status/html-no-data.php:4
3605
+ #: inc/libraries/meta-box/inc/fields/map.php:55
3606
+ #: inc/libraries/meta-box/inc/fields/osm.php:27
3607
+ msgid "No results found"
3608
+ msgstr ""
3609
+
3610
+ #: inc/admin/views/dashboard/plugin-status/html-results.php:17
3611
+ msgid "Downloaded"
3612
+ msgstr ""
3613
+
3614
+ #: inc/admin/views/dashboard/plugin-status/html-results.php:18
3615
+ msgid "Active Installed"
3616
+ msgstr ""
3617
+
3618
+ #: inc/admin/views/dashboard/plugin-status/html-results.php:32
3619
+ msgid "Updated"
3620
+ msgstr ""
3621
+
3622
+ #: inc/admin/views/dashboard/plugin-status/html-results.php:33
3623
+ msgid "Current Version"
3624
+ msgstr ""
3625
+
3626
+ #: inc/admin/views/meta-boxes/tabs.php:93
3627
+ msgid "Initializing..."
3628
+ msgstr ""
3629
+
3630
+ #: inc/admin/views/meta-boxes/course/assigned.php:27
3631
+ #: inc/admin/views/meta-boxes/quiz/assigned.php:49
3632
+ #: inc/custom-post-types/abstract.php:595
3633
+ #: inc/custom-post-types/question.php:379
3634
+ msgid "Not assigned yet"
3635
+ msgstr ""
3636
+
3637
+ #: inc/admin/views/meta-boxes/course/review-log.php:25
3638
+ msgid "Your course is pending for reviewing"
3639
+ msgstr ""
3640
+
3641
+ #: inc/admin/views/meta-boxes/course/review-log.php:27
3642
  msgid ""
3643
+ "Your course will not be submitted for reviewing until you check 'Submit for "
3644
+ "Review'"
3645
  msgstr ""
3646
 
3647
+ #: inc/admin/views/meta-boxes/course/review-log.php:31
3648
+ msgid "Submit for Review"
3649
  msgstr ""
3650
 
3651
+ #: inc/admin/views/meta-boxes/course/review-log.php:34
3652
+ #: inc/admin/views/meta-boxes/course/review-log.php:42
3653
+ msgid "Message to Reviewer"
3654
+ msgstr ""
3655
+
3656
+ #: inc/admin/views/meta-boxes/course/review-log.php:40
3657
  msgid ""
3658
+ "Warning! Your course will become Pending Review for admins to review before "
3659
+ "it can be published when you update."
3660
  msgstr ""
3661
 
3662
+ #: inc/admin/views/meta-boxes/course/review-log.php:48
3663
+ msgid "This course is pending for reviewing"
3664
+ msgstr ""
3665
+
3666
+ #: inc/admin/views/meta-boxes/course/review-log.php:51
3667
+ msgid "Message to Instructor"
3668
+ msgstr ""
3669
+
3670
+ #: inc/admin/views/meta-boxes/course/review-logs.php:7
3671
  #, php-format
3672
+ msgid "%d review"
3673
+ msgid_plural "%d reviews"
3674
  msgstr[0] ""
3675
  msgstr[1] ""
3676
 
3677
+ #: inc/admin/views/meta-boxes/course/review-logs.php:9
3678
+ msgid "This course has not got any reviews yet"
3679
  msgstr ""
3680
 
3681
+ #: inc/admin/views/meta-boxes/course/review-logs.php:25
3682
+ msgid "Rejected"
 
 
 
 
3683
  msgstr ""
3684
 
3685
+ #: inc/admin/views/meta-boxes/course/review-logs.php:25
3686
+ msgid "Submit for review"
3687
  msgstr ""
3688
 
3689
+ #: inc/admin/views/meta-boxes/course/review-logs.php:40
3690
+ msgid "View less"
 
3691
  msgstr ""
3692
 
3693
+ #: inc/admin/views/meta-boxes/course/review-logs.php:42
3694
+ msgid "View all"
 
3695
  msgstr ""
3696
 
3697
+ #: inc/admin/views/meta-boxes/order/actions.php:19
3698
+ msgid "Choose an action"
 
 
 
 
3699
  msgstr ""
3700
 
3701
+ #: inc/admin/views/meta-boxes/order/actions.php:20
3702
+ msgid "Trigger action of current order status"
 
3703
  msgstr ""
3704
 
3705
+ #: inc/admin/views/meta-boxes/order/actions.php:29
3706
+ msgid "Delete Permanently"
 
3707
  msgstr ""
3708
 
3709
+ #: inc/admin/views/meta-boxes/order/actions.php:31
3710
+ msgid "Move to Trash"
 
3711
  msgstr ""
3712
 
3713
+ #: inc/admin/views/meta-boxes/order/child-order.php:21
3714
+ #: inc/admin/views/meta-boxes/order/details.php:82
3715
+ #: inc/admin/views/meta-boxes/order/details.php:195
3716
+ #: inc/admin/views/meta-boxes/order/details.php:204
3717
+ msgid "Customer"
 
3718
  msgstr ""
3719
 
3720
+ #: inc/admin/views/meta-boxes/order/child-order.php:22
3721
+ #: inc/admin/views/meta-boxes/order/details.php:116
3722
+ #: templates/order/recover-form.php:22
3723
+ msgid "Order key"
3724
+ msgstr ""
3725
+
3726
+ #: inc/admin/views/meta-boxes/order/details.php:25
3727
+ #, php-format
3728
+ msgid "Order %s"
3729
+ msgstr ""
3730
+
3731
+ #: inc/admin/views/meta-boxes/order/details.php:38
3732
+ #: inc/admin/views/statistics/orders.php:46
3733
+ #: inc/custom-post-types/order.php:776
3734
+ #: templates/checkout/order-received.php:62
3735
+ #: templates/profile/tabs/courses.php:33 templates/profile/tabs/quizzes.php:39
3736
+ #: templates/profile/tabs/courses/purchased.php:39
3737
+ #: templates/profile/tabs/orders/list.php:33
3738
+ msgid "Date"
3739
+ msgstr ""
3740
+
3741
+ #: inc/admin/views/meta-boxes/order/details.php:72
3742
+ msgid "Customers"
3743
+ msgstr ""
3744
+
3745
+ #: inc/admin/views/meta-boxes/order/details.php:79
3746
+ #: inc/admin/views/meta-boxes/order/details.php:100
3747
+ #: inc/admin/views/meta-boxes/order/details.php:210
3748
+ msgid "Add multi users"
3749
+ msgstr ""
3750
+
3751
+ #: inc/admin/views/meta-boxes/order/details.php:93
3752
+ #: inc/admin/views/meta-boxes/order/details.php:200
3753
+ msgid "Change"
3754
+ msgstr ""
3755
+
3756
+ #: inc/admin/views/meta-boxes/order/details.php:98
3757
+ msgid "- Or -"
3758
+ msgstr ""
3759
+
3760
+ #: inc/admin/views/meta-boxes/order/details.php:105
3761
+ msgid ""
3762
+ "In order to change the order user, please change the order status to "
3763
+ "'Pending'."
3764
+ msgstr ""
3765
+
3766
+ #: inc/admin/views/meta-boxes/order/details.php:120
3767
+ msgid "Order Items"
3768
+ msgstr ""
3769
+
3770
+ #: inc/admin/views/meta-boxes/order/details.php:125
3771
+ #: inc/custom-post-types/course.php:105
3772
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:436
3773
+ #: templates/checkout/order-received.php:35
3774
+ msgid "Item"
3775
+ msgstr ""
3776
+
3777
+ #: inc/admin/views/meta-boxes/order/details.php:126
3778
+ msgid "Cost"
3779
+ msgstr ""
3780
+
3781
+ #: inc/admin/views/meta-boxes/order/details.php:127
3782
+ #: templates/emails/order-items-table.php:67
3783
+ msgid "Quantity"
3784
+ msgstr ""
3785
+
3786
+ #: inc/admin/views/meta-boxes/order/details.php:128
3787
+ msgid "Amount"
3788
+ msgstr ""
3789
+
3790
+ #: inc/admin/views/meta-boxes/order/details.php:138
3791
+ msgid "No order items"
3792
  msgstr ""
3793
 
3794
+ #: inc/admin/views/meta-boxes/order/details.php:144
3795
+ msgid "Sub Total"
 
3796
  msgstr ""
3797
 
3798
+ #: inc/admin/views/meta-boxes/order/details.php:158
3799
+ #: inc/custom-post-types/order.php:777
3800
+ #: templates/checkout/order-received.php:68
3801
+ #: templates/checkout/review-order.php:33
3802
+ #: templates/checkout/review-order.php:162
3803
+ #: templates/emails/order-items-table.php:96
3804
+ #: templates/emails/plain/order-items-table.php:60
3805
+ #: templates/order/order-details.php:29 templates/order/order-details.php:85
3806
+ #: templates/profile/tabs/orders/list.php:35
3807
+ msgid "Total"
3808
  msgstr ""
3809
 
3810
+ #: inc/admin/views/meta-boxes/order/details.php:174
3811
+ msgid "Add Item"
3812
  msgstr ""
3813
 
3814
+ #: inc/admin/views/meta-boxes/order/details.php:177
3815
+ msgid ""
3816
+ "In order to change the order item, please change the order status to "
3817
+ "'Pending'."
3818
  msgstr ""
3819
 
3820
+ #: inc/admin/views/meta-boxes/order/details.php:180
3821
+ msgid "Calculate Total"
3822
  msgstr ""
3823
 
3824
+ #: inc/admin/views/meta-boxes/order/details.php:188
3825
+ msgid "Customer Note"
3826
  msgstr ""
3827
 
3828
+ #: inc/admin/views/meta-boxes/order/details.php:236
3829
+ msgid "Type here to search the course"
3830
  msgstr ""
3831
 
3832
+ #: inc/admin/views/meta-boxes/order/details.php:239
3833
+ msgid "No results"
 
3834
  msgstr ""
3835
 
3836
+ #: inc/admin/views/question/actions.php:13
3837
+ msgid "Question Answers"
 
3838
  msgstr ""
3839
 
3840
+ #: inc/admin/views/question/answer.php:18
3841
+ #: inc/admin/views/quiz/question-answer.php:19
3842
+ msgid "Answer Text"
 
 
 
 
3843
  msgstr ""
3844
 
3845
+ #: inc/admin/views/question/answer.php:19
3846
+ #: inc/admin/views/quiz/question-answer.php:20
3847
+ msgid "Correct?"
3848
  msgstr ""
3849
 
3850
+ #: inc/admin/views/question/answer.php:35
3851
+ #: inc/admin/views/quiz/question-answer.php:34
3852
+ msgid "Add option"
 
 
3853
  msgstr ""
3854
 
3855
+ #: inc/admin/views/quiz/editor.php:16
3856
+ #: inc/admin/views/quiz/modal-choose-items.php:55
3857
+ #: inc/custom-post-types/question.php:188 inc/custom-post-types/quiz.php:184
3858
+ #: inc/custom-post-types/quiz.php:380 templates/content-quiz/intro.php:36
3859
+ msgid "Questions"
3860
  msgstr ""
3861
 
3862
+ #: inc/admin/views/quiz/editor.php:30 inc/admin/views/settings/payments.php:24
3863
+ #: inc/custom-post-types/question.php:338
3864
+ msgid "Type"
3865
  msgstr ""
3866
 
3867
+ #: inc/admin/views/quiz/editor.php:31
3868
+ #: inc/admin/views/tools/course/html-course.php:31
3869
+ #: inc/admin/views/tools/course/html-user.php:31
3870
+ msgid "Actions"
3871
  msgstr ""
3872
 
3873
+ #: inc/admin/views/quiz/editor.php:47
3874
+ msgid "Create a new question"
3875
  msgstr ""
3876
 
3877
+ #: inc/admin/views/quiz/editor.php:54
3878
+ msgid "Add as New..."
3879
  msgstr ""
3880
 
3881
+ #: inc/admin/views/quiz/editor.php:64
3882
+ #: inc/libraries/meta-box/inc/fields/file-input.php:43
3883
+ #: inc/libraries/meta-box/inc/fields/select.php:92
3884
+ msgid "Select"
 
 
 
 
 
 
 
 
 
3885
  msgstr ""
3886
 
3887
+ #: inc/admin/views/quiz/editor.php:78
3888
+ msgid "Something went wrong! Please reload to continue editing quiz questions."
 
 
 
 
 
 
 
3889
  msgstr ""
3890
 
3891
+ #: inc/admin/views/quiz/modal-choose-items.php:65
3892
+ msgid "Type here to search question"
 
 
 
 
 
 
 
3893
  msgstr ""
3894
 
3895
+ #: inc/admin/views/quiz/question-actions.php:46
3896
+ msgid "Remove from quiz"
 
 
 
 
 
 
3897
  msgstr ""
3898
 
3899
+ #: inc/admin/views/quiz/question-meta.php:19
3900
+ #: inc/question/class-lp-question.php:438
3901
+ msgid "Question Content"
 
 
 
 
 
 
3902
  msgstr ""
3903
 
3904
+ #: inc/admin/views/quiz/question-meta.php:31
3905
+ #: inc/custom-post-types/question.php:298
3906
+ msgid "Mark for this question"
 
 
 
 
 
 
 
3907
  msgstr ""
3908
 
3909
+ #: inc/admin/views/quiz/question-meta.php:37
3910
+ #: inc/custom-post-types/question.php:302
3911
+ msgid "Mark for choosing the right answer."
3912
  msgstr ""
3913
 
3914
+ #: inc/admin/views/quiz/question-meta.php:43
3915
+ #: inc/custom-post-types/question.php:307
3916
+ msgid "Question Explanation"
 
3917
  msgstr ""
3918
 
3919
+ #: inc/admin/views/quiz/question-meta.php:51
3920
+ #: inc/custom-post-types/question.php:310
3921
+ msgid ""
3922
+ "Explain why an option is true and other is false. The text will be shown "
3923
+ "when user click on 'Check answer' button."
3924
  msgstr ""
3925
 
3926
+ #: inc/admin/views/quiz/question-meta.php:57
3927
+ #: inc/custom-post-types/question.php:314
3928
+ msgid "Question Hint"
3929
  msgstr ""
3930
 
3931
+ #: inc/admin/views/quiz/question-meta.php:64
3932
+ #: inc/custom-post-types/question.php:317
3933
  msgid ""
3934
+ "Instruction for user to select the right answer. The text will be shown when "
3935
+ "users click the 'Hint' button."
3936
  msgstr ""
3937
 
3938
+ #: inc/admin/views/settings/payments.php:17
3939
+ #: inc/admin/views/settings/emails/become-a-teacher-request.php:25
3940
+ #: inc/admin/views/setup/setup-paypal.php:17
3941
+ #: inc/admin/views/setup/setup-stripe.php:3
3942
+ #: inc/emails/class-lp-email-new-course.php:131
3943
+ #: inc/emails/class-lp-email-published-course.php:122
3944
+ #: inc/emails/class-lp-email-rejected-course.php:119
3945
+ #: inc/emails/class-lp-email-updated-course.php:164
3946
+ #: inc/emails/class-lp-email-user-order-changed-status.php:136
3947
+ #: inc/emails/class-lp-email-user-order-completed.php:137
3948
+ #: inc/emails/class-lp-email.php:996
3949
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:500
3950
+ msgid "Enable"
3951
  msgstr ""
3952
 
3953
+ #: inc/admin/views/settings/payments.php:27
3954
+ msgid "Basic"
3955
  msgstr ""
3956
 
3957
+ #: inc/admin/views/settings/payments.php:28
3958
+ msgid "Security"
3959
  msgstr ""
3960
 
3961
+ #: inc/admin/views/settings/payments.php:33
3962
+ msgid "Email Address"
3963
  msgstr ""
3964
 
3965
+ #: inc/admin/views/settings/payments.php:42
3966
+ msgid "API Username"
3967
  msgstr ""
3968
 
3969
+ #: inc/admin/views/settings/payments.php:49
3970
+ msgid "API Password"
3971
  msgstr ""
3972
 
3973
+ #: inc/admin/views/settings/payments.php:56
3974
+ msgid "API Signature"
3975
  msgstr ""
3976
 
3977
+ #: inc/admin/views/settings/payments.php:68
3978
+ #: inc/admin/views/setup/setup-paypal.php:34
3979
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:526
3980
+ msgid "Sandbox Mode"
3981
  msgstr ""
3982
 
3983
+ #: inc/admin/views/settings/payments.php:76
3984
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:542
3985
+ msgid "Sandbox Email Address"
3986
  msgstr ""
3987
+
3988
+ #: inc/admin/views/settings/payments.php:85
3989
+ msgid "Sandbox API Username"
3990
  msgstr ""
3991
 
3992
+ #: inc/admin/views/settings/payments.php:93
3993
+ msgid "Sandbox API Password"
3994
  msgstr ""
3995
 
3996
+ #: inc/admin/views/settings/payments.php:101
3997
+ msgid "Sandbox API Signature"
 
3998
  msgstr ""
3999
 
4000
+ #: inc/admin/views/settings/setting-field.php:96
4001
+ msgid ""
4002
+ "The settings of this image size have been disabled because its values are "
4003
+ "being overwritten by a filter."
4004
  msgstr ""
4005
 
4006
+ #: inc/admin/views/settings/setting-field.php:108
4007
+ msgid "Hard Crop?"
4008
  msgstr ""
4009
 
4010
+ #: inc/admin/views/settings/emails/become-a-teacher-request.php:29
4011
+ msgid "Send notification when a user signs up to be a teacher"
4012
  msgstr ""
4013
 
4014
+ #: inc/admin/views/settings/emails/become-a-teacher-request.php:33
4015
+ #: inc/emails/class-lp-email-new-course.php:154
4016
+ #: inc/emails/class-lp-email-published-course.php:128
4017
+ #: inc/emails/class-lp-email-rejected-course.php:125
4018
+ #: inc/emails/class-lp-email-updated-course.php:170
4019
+ #: inc/emails/class-lp-email-user-order-changed-status.php:142
4020
+ #: inc/emails/class-lp-email-user-order-completed.php:143
4021
+ #: inc/emails/class-lp-email.php:1019
4022
+ msgid "Subject"
4023
  msgstr ""
4024
 
4025
+ #: inc/admin/views/settings/emails/become-a-teacher-request.php:37
4026
+ msgid "Email subject"
4027
  msgstr ""
4028
 
4029
+ #: inc/admin/views/settings/emails/become-a-teacher-request.php:41
4030
+ msgid "Message"
4031
  msgstr ""
4032
 
4033
+ #: inc/admin/views/settings/emails/email-template.php:6
4034
+ #: inc/admin/views/settings/emails/_email-template.php:3
4035
+ #: inc/emails/class-lp-email-new-course.php:188
4036
+ #: inc/emails/class-lp-email-published-course.php:162
4037
+ #: inc/emails/class-lp-email-rejected-course.php:159
4038
+ #: inc/emails/class-lp-email-updated-course.php:204
4039
+ #: inc/emails/class-lp-email-user-order-changed-status.php:176
4040
+ #: inc/emails/class-lp-email-user-order-completed.php:177
4041
+ #: inc/emails/class-lp-email.php:1053
4042
+ msgid "Email content"
4043
  msgstr ""
4044
 
4045
+ #: inc/admin/views/settings/emails/email-template.php:13
4046
+ #: inc/admin/views/settings/emails/_email-template.php:11
4047
+ msgid "HTML template"
4048
  msgstr ""
4049
 
4050
+ #: inc/admin/views/settings/emails/email-template.php:14
4051
+ #: inc/admin/views/settings/emails/_email-template.php:12
4052
+ msgid "Plain text template"
4053
  msgstr ""
4054
 
4055
+ #: inc/admin/views/settings/emails/email-template.php:87
4056
+ #: inc/admin/views/settings/emails/_email-template.php:78
4057
+ #, php-format
4058
+ msgid ""
4059
+ "To override and edit this email template copy <code>%s</code> to your theme "
4060
+ "folder: <code>%s</code>."
4061
  msgstr ""
4062
 
4063
+ #: inc/admin/views/settings/emails/general.php:15
4064
+ msgid "Email Options"
4065
  msgstr ""
4066
 
4067
+ #: inc/admin/views/settings/emails/general.php:23
4068
+ msgid "From Name"
 
4069
  msgstr ""
4070
 
4071
+ #: inc/admin/views/settings/emails/general.php:29
4072
+ msgid "From Email"
4073
  msgstr ""
4074
 
4075
+ #: inc/admin/views/settings/emails/general.php:36
4076
+ msgid "Email Template"
4077
  msgstr ""
4078
 
4079
+ #: inc/admin/views/settings/emails/general.php:50
4080
+ msgid "The texts display in the bottom of email"
4081
  msgstr ""
4082
 
4083
+ #: inc/admin/views/settings/emails/_email-template.php:36
4084
+ #, php-format
4085
+ msgid ""
4086
+ "This template has been overridden by your theme and can be found in: <code>"
4087
+ "%s</code>. Please open the file in an editor program to edit"
4088
  msgstr ""
4089
 
4090
+ #: inc/admin/views/settings/emails/_email-template.php:63
4091
+ #, php-format
4092
+ msgid ""
4093
+ "This template has been overridden by your theme and can be found in: <code>"
4094
+ "%s</code>."
4095
  msgstr ""
4096
 
4097
+ #: inc/admin/views/settings/emails/_email-template.php:68
4098
+ msgid "Delete template file"
4099
  msgstr ""
4100
 
4101
+ #: inc/admin/views/settings/emails/_email-template.php:83
4102
+ msgid "Copy file to theme"
4103
  msgstr ""
4104
 
4105
+ #: inc/admin/views/settings/emails/_email-template.php:89
4106
+ msgid "File not found."
4107
  msgstr ""
4108
 
4109
+ #: inc/admin/views/settings/fields/image-size.php:18
4110
+ msgid "Crop?"
4111
  msgstr ""
4112
 
4113
+ #: inc/admin/views/setup/content.php:47
4114
+ msgid "Skip to prev step"
4115
  msgstr ""
4116
 
4117
+ #: inc/admin/views/setup/content.php:60
4118
+ msgid "Skip to next step"
4119
  msgstr ""
4120
 
4121
+ #: inc/admin/views/setup/content.php:67
4122
+ #: inc/admin/views/setup/steps/finish.php:29
4123
+ msgid "Back to Dashboard"
4124
  msgstr ""
4125
 
4126
+ #: inc/admin/views/setup/content.php:75
4127
+ #: inc/admin/views/updates/update-screen.php:46
4128
+ #: inc/custom-post-types/course.php:101 inc/custom-post-types/quiz.php:178
4129
+ #: templates/checkout/form.php:89 templates/checkout/payment.php:132
4130
+ msgid "Back"
4131
  msgstr ""
4132
 
4133
+ #: inc/admin/views/setup/content.php:86
4134
+ #: templates/content-quiz/buttons/continue.php:26
4135
+ #: templates/single-course/buttons/continue.php:23
4136
+ msgid "Continue"
4137
  msgstr ""
4138
 
4139
+ #: inc/admin/views/setup/footer.php:15
4140
+ #, php-format
4141
+ msgid "LearnPress %s. Designed by @ThimPress."
4142
  msgstr ""
4143
 
4144
+ #: inc/admin/views/setup/header.php:17
4145
+ msgid "LearnPress &rsaquo; Setup Wizard"
 
 
4146
  msgstr ""
4147
 
4148
+ #: inc/admin/views/setup/notice-setup.php:2
4149
+ msgid "<strong>LearnPress has just successfully installed.</strong>"
4150
  msgstr ""
4151
 
4152
+ #: inc/admin/views/setup/notice-setup.php:6
4153
+ msgid "Skip"
4154
  msgstr ""
4155
 
4156
+ #: inc/admin/views/setup/setup-paypal.php:24
4157
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:506
4158
+ msgid "Paypal Email"
4159
  msgstr ""
4160
 
4161
+ #: inc/admin/views/setup/setup-paypal.php:29
4162
+ msgid "Your Paypal email in live mode."
4163
  msgstr ""
4164
 
4165
+ #: inc/admin/views/setup/setup-paypal.php:39
4166
+ #, php-format
4167
+ msgid ""
4168
+ "For testing purpose with Paypal sandbox mode. Create an account <a href=\"%s"
4169
+ "\">here</a>!"
4170
  msgstr ""
4171
 
4172
+ #: inc/admin/views/setup/setup-paypal.php:44
4173
+ msgid "Paypal Sandbox Email"
4174
  msgstr ""
4175
 
4176
+ #: inc/admin/views/setup/setup-paypal.php:49
4177
+ msgid "Your Paypal email in sandbox mode."
4178
  msgstr ""
4179
 
4180
+ #: inc/admin/views/setup/setup-stripe.php:7
4181
+ #: inc/widgets/course-attributes/course-attributes.php:11
4182
+ #: inc/widgets/course-filters/course-filters.php:11
4183
+ #: inc/widgets/course-info/course-info.php:46
4184
+ #: inc/widgets/course-progress/course-progress.php:46
4185
+ #: inc/widgets/featured-courses/featured-courses.php:45
4186
+ #: inc/widgets/popular-courses/popular-courses.php:46
4187
+ #: inc/widgets/recent-courses/recent-courses.php:46
4188
+ msgid "Title"
4189
  msgstr ""
4190
 
4191
+ #: inc/admin/views/setup/setup-stripe.php:15
4192
+ msgid "Live secret key"
4193
  msgstr ""
4194
 
4195
+ #: inc/admin/views/setup/setup-stripe.php:19
4196
+ msgid "Live publish key"
 
 
4197
  msgstr ""
4198
 
4199
+ #: inc/admin/views/setup/setup-stripe.php:24
4200
+ msgid "Test mode"
4201
  msgstr ""
4202
 
4203
+ #: inc/admin/views/setup/setup-stripe.php:28
4204
+ msgid "Test secret key"
4205
  msgstr ""
4206
 
4207
+ #: inc/admin/views/setup/setup-stripe.php:32
4208
+ msgid "Test publish key"
4209
  msgstr ""
4210
 
4211
+ #: inc/admin/views/setup/steps/emails.php:12
4212
+ msgid "Emails system"
 
 
4213
  msgstr ""
4214
 
4215
+ #: inc/admin/views/setup/steps/emails.php:14
4216
+ msgid "Emails are sent to users or teachers for each particular action."
4217
  msgstr ""
4218
 
4219
+ #: inc/admin/views/setup/steps/emails.php:15
4220
+ msgid "You can enable/disable each email in LearnPress settings later."
 
 
4221
  msgstr ""
4222
 
4223
+ #: inc/admin/views/setup/steps/emails.php:16
4224
+ msgid "But in right now, you can enable all emails to see how emails work."
 
 
4225
  msgstr ""
4226
 
4227
+ #: inc/admin/views/setup/steps/emails.php:17
4228
+ msgid "You can skip to next step if you don’t want to."
4229
  msgstr ""
4230
 
4231
+ #: inc/admin/views/setup/steps/emails.php:22
4232
+ msgid "Enable emails"
4233
  msgstr ""
4234
 
4235
+ #: inc/admin/views/setup/steps/finish.php:14
4236
+ msgid "Congrats! You are almost done with your settings."
4237
  msgstr ""
4238
 
4239
+ #: inc/admin/views/setup/steps/finish.php:16
4240
+ #: inc/admin/views/updates/0.9/step-upgraded.php:2
4241
+ msgid "What's next?"
4242
  msgstr ""
4243
 
4244
+ #: inc/admin/views/setup/steps/finish.php:22
4245
+ msgid "Install sample course"
4246
  msgstr ""
4247
 
4248
+ #: inc/admin/views/setup/steps/finish.php:25
4249
+ msgid "Create new course"
4250
  msgstr ""
4251
 
4252
+ #: inc/admin/views/setup/steps/finish.php:27
4253
+ msgid "Visit your site"
4254
  msgstr ""
4255
 
4256
+ #: inc/admin/views/setup/steps/pages.php:16
4257
  msgid ""
4258
+ "The pages will display content of LP's necessary pages, such as: Courses, "
4259
+ "Checkout, Profile"
4260
  msgstr ""
4261
 
4262
+ #: inc/admin/views/setup/steps/pages.php:17
4263
+ #, php-format
4264
+ msgid ""
4265
+ "If you are not sure, click <a href=\"%s\" id=\"create-pages\">here</a> to "
4266
+ "create pages automatically."
4267
  msgstr ""
4268
 
4269
+ #: inc/admin/views/setup/steps/pages.php:23
4270
+ msgid "Page will display all courses inside."
4271
  msgstr ""
4272
 
4273
+ #: inc/admin/views/setup/steps/pages.php:32
4274
+ msgid "Page will display content of user profile."
4275
  msgstr ""
4276
 
4277
+ #: inc/admin/views/setup/steps/pages.php:41
4278
+ msgid "Page will display content of form for processing checkout."
 
 
 
4279
  msgstr ""
4280
 
4281
+ #: inc/admin/views/setup/steps/pages.php:50
4282
+ msgid "Page will display the form for submitting request to become a teacher."
4283
  msgstr ""
4284
 
4285
+ #: inc/admin/views/setup/steps/welcome.php:12
4286
+ msgid "Welcome to LearnPress"
4287
  msgstr ""
4288
 
4289
+ #: inc/admin/views/setup/steps/welcome.php:14
4290
+ msgid "Thanks for choosing LearnPress to sell your courses online!"
4291
  msgstr ""
4292
 
4293
+ #: inc/admin/views/setup/steps/welcome.php:16
4294
+ msgid ""
4295
+ "Setup Wizard helps you config some basic information before publishing your "
4296
+ "site."
4297
  msgstr ""
4298
 
4299
+ #: inc/admin/views/statistics/courses.php:18
4300
+ #: inc/admin/views/statistics/general.php:33
4301
+ #: inc/admin/views/statistics/orders.php:19
4302
+ #: inc/admin/views/statistics/users.php:19
4303
+ msgid "Last 7 Days"
4304
  msgstr ""
4305
 
4306
+ #: inc/admin/views/statistics/courses.php:21
4307
+ #: inc/admin/views/statistics/general.php:36
4308
+ #: inc/admin/views/statistics/orders.php:22
4309
+ #: inc/admin/views/statistics/users.php:22
4310
+ msgid "Last 30 Days"
4311
  msgstr ""
4312
 
4313
+ #: inc/admin/views/statistics/courses.php:24
4314
+ #: inc/admin/views/statistics/general.php:40
4315
+ #: inc/admin/views/statistics/orders.php:25
4316
+ #: inc/admin/views/statistics/users.php:26
4317
+ msgid "Last 12 Months"
4318
  msgstr ""
4319
 
4320
+ #: inc/admin/views/statistics/courses.php:31
4321
+ #: inc/admin/views/statistics/general.php:47
4322
+ #: inc/admin/views/statistics/orders.php:32
4323
+ #: inc/admin/views/statistics/users.php:33
4324
+ msgid "From"
4325
  msgstr ""
4326
 
4327
+ #: inc/admin/views/statistics/courses.php:33
4328
+ #: inc/admin/views/statistics/general.php:49
4329
+ #: inc/admin/views/statistics/orders.php:34
4330
+ #: inc/admin/views/statistics/users.php:35
4331
+ msgid "To"
 
4332
  msgstr ""
4333
 
4334
+ #: inc/admin/views/statistics/courses.php:36
4335
+ #: inc/admin/views/statistics/general.php:53
4336
+ #: inc/admin/views/statistics/orders.php:37
4337
+ #: inc/admin/views/statistics/users.php:39
4338
+ msgid "Go"
4339
  msgstr ""
4340
 
4341
+ #: inc/admin/views/statistics/courses.php:43
4342
+ #: inc/admin/views/statistics/general.php:60
4343
+ msgid "Public"
4344
  msgstr ""
4345
 
4346
+ #: inc/admin/views/statistics/orders.php:44
4347
+ msgid "Sale by"
 
4348
  msgstr ""
4349
 
4350
+ #: inc/admin/views/statistics/orders.php:48
4351
+ msgid "Course Category"
4352
  msgstr ""
4353
 
4354
+ #: inc/admin/views/statistics/orders.php:51
4355
+ msgid "Select a course"
4356
  msgstr ""
4357
 
4358
+ #: inc/admin/views/statistics/orders.php:55
4359
+ msgid "Select a course category"
4360
  msgstr ""
4361
 
4362
+ #: inc/admin/views/tools/html-cache.php:12
4363
+ msgid "LearnPress hard cache"
4364
  msgstr ""
4365
 
4366
+ #: inc/admin/views/tools/html-cache.php:13
4367
+ msgid ""
4368
+ "Hard cache is build-in tool of LearnPress for caching of static content such "
4369
+ "as course, lesson, quiz."
4370
  msgstr ""
4371
 
4372
+ #: inc/admin/views/tools/html-cache.php:14
4373
+ msgid ""
4374
+ "When caching is enabled, the content will be cached when course is accessed "
4375
+ "in the first time."
4376
  msgstr ""
4377
 
4378
+ #: inc/admin/views/tools/html-cache.php:15
4379
+ msgid ""
4380
+ "And it will not change in all later accesses until the cache is cleared."
4381
  msgstr ""
4382
 
4383
+ #: inc/admin/views/tools/html-cache.php:16
4384
+ msgid ""
4385
+ "If the content is not changed after updating course, click the button below "
4386
+ "to flush the cache and apply changes."
4387
  msgstr ""
4388
 
4389
+ #: inc/admin/views/tools/html-cache.php:21
4390
+ msgid "Enable/Disable hard cache"
4391
  msgstr ""
4392
 
4393
+ #: inc/admin/views/tools/html-cache.php:25
4394
+ #: inc/admin/views/tools/html-cache.php:28
4395
+ msgid "Clear cache"
4396
  msgstr ""
4397
 
4398
+ #: inc/admin/views/tools/html-cache.php:26
4399
+ msgid "Cleaning..."
4400
  msgstr ""
4401
 
4402
+ #: inc/admin/views/tools/html-template.php:30
4403
+ #, php-format
4404
+ msgid "Override Templates (%s)"
4405
  msgstr ""
4406
 
4407
+ #: inc/admin/views/tools/html-template.php:38
4408
+ msgid "File"
4409
  msgstr ""
4410
 
4411
+ #: inc/admin/views/tools/html-template.php:41
4412
+ #, php-format
4413
+ msgid "All (%d)"
4414
  msgstr ""
4415
 
4416
+ #: inc/admin/views/tools/html-template.php:49
4417
+ #, php-format
4418
+ msgid "Outdated (%d)"
4419
  msgstr ""
4420
 
4421
+ #: inc/admin/views/tools/html-template.php:51
4422
+ #, php-format
4423
+ msgid "Unversioned (%d)"
4424
  msgstr ""
4425
 
4426
+ #: inc/admin/views/tools/html-template.php:55
4427
+ msgid "Version"
4428
  msgstr ""
4429
 
4430
+ #: inc/admin/views/tools/html-template.php:57
4431
+ msgid "Core version"
4432
  msgstr ""
4433
 
4434
+ #: inc/admin/views/tools/html-template.php:89
4435
+ msgid "There is no template file has overwritten"
4436
  msgstr ""
4437
 
4438
+ #: inc/admin/views/tools/subscription-button.php:14
4439
+ msgid ""
4440
+ "If you don't want to miss exclussive offers from us, join our newsletter."
4441
  msgstr ""
4442
 
4443
+ #: inc/admin/views/tools/subscription-button.php:17
4444
+ msgid "Sure! I want to get the latest news."
4445
  msgstr ""
4446
 
4447
+ #: inc/admin/views/tools/course/html-course.php:12
4448
+ msgid "Reset course progress"
 
4449
  msgstr ""
4450
 
4451
+ #: inc/admin/views/tools/course/html-course.php:14
4452
+ msgid ""
4453
+ "This action will reset progress of a course for all users have enrolled."
 
4454
  msgstr ""
4455
 
4456
+ #: inc/admin/views/tools/course/html-course.php:15
4457
+ msgid "Search results only show course have user data."
 
4458
  msgstr ""
4459
 
4460
+ #: inc/admin/views/tools/course/html-course.php:19
4461
+ msgid "Search course by name"
 
4462
  msgstr ""
4463
 
4464
+ #: inc/admin/views/tools/course/html-course.php:21
4465
+ #: inc/admin/views/tools/course/html-user.php:21 templates/search-form.php:29
4466
+ msgid "Search"
 
 
 
 
4467
  msgstr ""
4468
 
4469
+ #: inc/admin/views/tools/course/html-course.php:52
4470
+ msgid "Please enter at least 3 characters to searching courses."
 
 
 
4471
  msgstr ""
4472
 
4473
+ #: inc/admin/views/tools/course/html-course.php:54
4474
+ msgid "Searching course..."
 
 
 
 
 
 
4475
  msgstr ""
4476
 
4477
+ #: inc/admin/views/tools/course/html-course.php:62
4478
+ #: inc/admin/views/tools/course/html-user.php:70
4479
+ msgid ""
4480
+ "Are you sure to reset course progress of all users enrolled this course?"
 
4481
  msgstr ""
4482
 
4483
+ #: inc/admin/views/tools/course/html-user-item.php:12
4484
+ msgid "Reset item progress for an user"
4485
  msgstr ""
4486
 
4487
+ #: inc/admin/views/tools/course/html-user-item.php:14
4488
+ msgid "This action will reset progress of specific lesson or quiz."
4489
  msgstr ""
4490
 
4491
+ #: inc/admin/views/tools/course/html-user-item.php:18
4492
+ msgid "User ID or Email"
4493
  msgstr ""
4494
 
4495
+ #: inc/admin/views/tools/course/html-user-item.php:19
4496
+ msgid "Item ID (ID of quiz or lesson)"
 
4497
  msgstr ""
4498
 
4499
+ #: inc/admin/views/tools/course/html-user-item.php:35
4500
+ msgid "Are you sure to reset progress of this item?"
4501
  msgstr ""
4502
 
4503
+ #: inc/admin/views/tools/course/html-user.php:12
4504
+ msgid "Reset user progress"
4505
  msgstr ""
4506
 
4507
+ #: inc/admin/views/tools/course/html-user.php:14
4508
+ msgid ""
4509
+ "This action will reset progress of all courses that an user has enrolled."
4510
  msgstr ""
4511
 
4512
+ #: inc/admin/views/tools/course/html-user.php:15
4513
+ msgid "Search results only show users have course data."
4514
  msgstr ""
4515
 
4516
+ #: inc/admin/views/tools/course/html-user.php:19
4517
+ msgid "Search user by login name or email"
4518
  msgstr ""
4519
 
4520
+ #: inc/admin/views/tools/course/html-user.php:60
4521
+ msgid "Please enter at least 3 characters to searching users."
4522
  msgstr ""
4523
 
4524
+ #: inc/admin/views/tools/course/html-user.php:61
4525
+ msgid "No user found."
4526
  msgstr ""
4527
 
4528
+ #: inc/admin/views/tools/course/html-user.php:62
4529
+ msgid "Searching user..."
 
4530
  msgstr ""
4531
 
4532
+ #: inc/admin/views/tools/database/html-install-sample-data.php:16
4533
+ msgid "Install Sample Data"
 
4534
  msgstr ""
4535
 
4536
+ #: inc/admin/views/tools/database/html-install-sample-data.php:17
4537
+ msgid ""
4538
+ "Create a <strong>Sample course</strong> with lessons and quizzes. The "
4539
+ "content will be filled with <strong>Lorem</strong> text."
4540
  msgstr ""
4541
 
4542
+ #: inc/admin/views/tools/database/html-install-sample-data.php:19
4543
+ msgid "Options"
 
4544
  msgstr ""
4545
 
4546
+ #: inc/admin/views/tools/database/html-install-sample-data.php:23
4547
+ msgid "Course name"
 
4548
  msgstr ""
4549
 
4550
+ #: inc/admin/views/tools/database/html-install-sample-data.php:28
4551
+ msgid "Random number of sections in range"
4552
  msgstr ""
4553
 
4554
+ #: inc/admin/views/tools/database/html-install-sample-data.php:35
4555
+ msgid "Random number of items in range (each section)"
 
4556
  msgstr ""
4557
 
4558
+ #: inc/admin/views/tools/database/html-install-sample-data.php:42
4559
+ msgid "Random number of questions in range (each quiz)"
 
 
4560
  msgstr ""
4561
 
4562
+ #: inc/admin/views/tools/database/html-install-sample-data.php:49
4563
+ msgid "Random number of answers in range (each question)"
4564
  msgstr ""
4565
 
4566
+ #: inc/admin/views/tools/database/html-install-sample-data.php:60
4567
+ #: inc/admin/views/tools/database/html-install-sample-data.php:63
4568
+ msgid "Install"
4569
  msgstr ""
4570
 
4571
+ #: inc/admin/views/tools/database/html-install-sample-data.php:61
4572
+ msgid "Installing..."
4573
  msgstr ""
4574
 
4575
+ #: inc/admin/views/tools/database/html-install-sample-data.php:65
4576
+ msgid "Show options"
4577
  msgstr ""
4578
 
4579
+ #: inc/admin/views/tools/database/html-install-sample-data.php:67
4580
+ #: inc/admin/views/tools/database/html-install-sample-data.php:71
4581
+ msgid "Delete sample course"
4582
  msgstr ""
4583
 
4584
+ #: inc/admin/views/tools/database/html-install-sample-data.php:68
4585
+ msgid "Deleting..."
 
4586
  msgstr ""
4587
 
4588
+ #: inc/admin/views/tools/database/html-remove-database.php:12
4589
+ msgid "Remove current Data"
 
4590
  msgstr ""
4591
 
4592
+ #: inc/admin/views/tools/database/html-remove-database.php:13
4593
+ msgid "Remove all courses, lessons, quizzes and questions."
 
4594
  msgstr ""
4595
 
4596
+ #: inc/admin/views/tools/database/html-remove-database.php:16
4597
+ msgid "Be careful before using this action!"
4598
  msgstr ""
4599
 
4600
+ #: inc/admin/views/tools/database/html-remove-database.php:20
4601
+ #: inc/admin/views/tools/database/html-remove-outdated-data.php:20
4602
+ msgid "Check this box and click this button again to confirm."
4603
  msgstr ""
4604
 
4605
+ #: inc/admin/views/tools/database/html-remove-database.php:23
4606
+ #: inc/admin/views/tools/database/html-remove-outdated-data.php:23
4607
+ #: inc/libraries/meta-box/inc/fields/file-input.php:45
4608
+ #: templates/profile/tabs/settings/avatar.php:60
4609
+ msgid "Remove"
4610
  msgstr ""
4611
 
4612
+ #: inc/admin/views/tools/database/html-remove-outdated-data.php:12
4613
+ msgid "Remove outdated Data"
 
4614
  msgstr ""
4615
 
4616
+ #: inc/admin/views/tools/database/html-remove-outdated-data.php:13
4617
+ msgid ""
4618
+ "Remove all courses, lessons, quizzes and questions from version older than "
4619
+ "1.0."
4620
  msgstr ""
4621
 
4622
+ #: inc/admin/views/tools/database/html-remove-outdated-data.php:16
4623
+ msgid ""
4624
+ "Be careful before using this action! Only use this action in case all "
4625
+ "outdated data has been upgraded."
4626
  msgstr ""
4627
 
4628
+ #: inc/admin/views/tools/database/html-repair-database.php:12
4629
+ msgid "Repair Database"
4630
  msgstr ""
4631
 
4632
+ #: inc/admin/views/tools/database/html-repair-database.php:13
4633
+ msgid "Remove unwanted data and re-calculate relationship."
 
4634
  msgstr ""
4635
 
4636
+ #: inc/admin/views/tools/database/html-repair-database.php:24
4637
+ msgid "Re-count orders in each course"
 
 
 
 
4638
  msgstr ""
4639
 
4640
+ #: inc/admin/views/tools/database/html-repair-database.php:30
4641
+ msgid "Re-count orders for each user"
 
4642
  msgstr ""
4643
 
4644
+ #: inc/admin/views/tools/database/html-repair-database.php:36
4645
+ msgid "Re-count courses for each user"
 
 
4646
  msgstr ""
4647
 
4648
+ #: inc/admin/views/tools/database/html-repair-database.php:42
4649
+ msgid "Re-map final quiz for each course"
 
 
4650
  msgstr ""
4651
 
4652
+ #: inc/admin/views/tools/database/html-repair-database.php:48
4653
+ msgid "Re-calculate course result for users"
 
 
4654
  msgstr ""
4655
 
4656
+ #: inc/admin/views/tools/database/html-repair-database.php:54
4657
+ msgid "Re-calculate completed items for each users"
 
 
4658
  msgstr ""
4659
 
4660
+ #: inc/admin/views/tools/database/html-repair-database.php:59
4661
+ msgid "Repair now"
4662
  msgstr ""
4663
 
4664
+ #: inc/admin/views/tools/database/html-repair-database.php:62
4665
+ msgid "Check All"
4666
  msgstr ""
4667
 
4668
+ #: inc/admin/views/tools/database/html-upgrade-database.php:12
4669
+ msgid "Upgrade Database"
4670
  msgstr ""
4671
 
4672
+ #: inc/admin/views/tools/database/html-upgrade-database.php:13
4673
+ msgid ""
4674
+ "Force upgrade database to latest version. Please be careful before taking "
4675
+ "this action."
4676
  msgstr ""
4677
 
4678
+ #: inc/admin/views/updates/html-update-message.php:12
4679
+ msgid ""
4680
+ "<strong>LearnPress update</strong> – We need to update your database to the "
4681
+ "latest version."
4682
  msgstr ""
4683
 
4684
+ #: inc/admin/views/updates/html-updated-latest-message.php:16
4685
+ msgid "LearnPress has just updated to latest version."
4686
  msgstr ""
4687
 
4688
+ #: inc/admin/views/updates/html-updating-message.php:14
4689
+ msgid ""
4690
+ "<strong>LearnPress update</strong> – We are running updater to upgrade your "
4691
+ "database to the latest version."
4692
  msgstr ""
4693
 
4694
+ #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:14
4695
+ #, php-format
4696
+ msgid "Welcome to LearnPress %s"
4697
  msgstr ""
4698
 
4699
+ #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:15
4700
+ msgid ""
4701
+ "This is a <strong>BIG UPDATE</strong> and it allows you to do so much more!"
4702
  msgstr ""
4703
 
4704
+ #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:16
4705
+ msgid ""
4706
+ "If there's any issue, please be sure to backup your site, update your theme, "
4707
+ "contact supporter."
 
4708
  msgstr ""
4709
 
4710
+ #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:20
4711
+ msgid "Check what's new"
4712
  msgstr ""
4713
 
4714
+ #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:22
4715
+ msgid "Get support now"
4716
+ msgstr ""
4717
+
4718
+ #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:24
4719
+ msgid "Got it!"
4720
  msgstr ""
4721
 
4722
+ #: inc/admin/views/updates/update-screen.php:17
4723
+ msgid "LearnPress &rsaquo; Update Database"
4724
  msgstr ""
4725
 
4726
+ #: inc/admin/views/updates/update-screen.php:36
4727
+ msgid "LearnPress Update Database"
4728
  msgstr ""
4729
 
4730
+ #: inc/admin/views/updates/update-screen.php:38
4731
+ msgid "Before updating please ensure your site data is already backed up!"
4732
  msgstr ""
4733
 
4734
+ #: inc/admin/views/updates/update-screen.php:43
4735
+ msgid "Run Updater"
 
 
4736
  msgstr ""
4737
 
4738
+ #: inc/admin/views/updates/0.9/step-repair-database.php:1
4739
+ msgid "Update Database"
4740
  msgstr ""
4741
 
4742
+ #: inc/admin/views/updates/0.9/step-repair-database.php:4
4743
+ msgid "Update custom post type"
 
 
4744
  msgstr ""
4745
 
4746
+ #: inc/admin/views/updates/0.9/step-repair-database.php:7
4747
+ #: inc/admin/views/updates/0.9/step-repair-database.php:10
4748
+ msgid "Update post meta"
 
4749
  msgstr ""
4750
 
4751
+ #: inc/admin/views/updates/0.9/step-repair-database.php:14
4752
+ msgid "Updating! Please do not close this page until the work is done"
4753
  msgstr ""
4754
 
4755
+ #: inc/admin/views/updates/0.9/step-repair-database.php:18
4756
+ msgid "Rollback"
 
4757
  msgstr ""
4758
 
4759
+ #: inc/admin/views/updates/0.9/step-upgraded.php:1
4760
+ msgid "Upgrade completed successfully!"
 
4761
  msgstr ""
4762
 
4763
+ #: inc/admin/views/updates/0.9/step-upgraded.php:5
4764
+ msgid "Manage courses"
 
4765
  msgstr ""
4766
 
4767
+ #: inc/admin/views/updates/0.9/step-upgraded.php:8
4768
+ msgid "Create a new course"
 
4769
  msgstr ""
4770
 
4771
+ #: inc/admin/views/updates/0.9/step-upgraded.php:11
4772
+ msgid "Setting up your LearnPress"
 
4773
  msgstr ""
4774
 
4775
+ #: inc/admin/views/updates/0.9/step-upgraded.php:14
4776
+ msgid "Manage add-ons"
 
 
 
 
4777
  msgstr ""
4778
 
4779
+ #: inc/admin/views/updates/0.9/step-welcome.php:1
4780
+ msgid "Welcome to LearnPress!"
4781
  msgstr ""
4782
 
4783
+ #: inc/admin/views/updates/0.9/step-welcome.php:2
4784
+ msgid "Thank you for choosing LearnPress to sell your courses online!"
 
4785
  msgstr ""
4786
 
4787
+ #: inc/admin/views/updates/0.9/step-welcome.php:3
4788
  #, php-format
4789
  msgid ""
4790
+ "In version <strong>%s</strong> of LearnPress we have a big update and need "
4791
+ "to upgrade your database to ensure system works properly."
 
4792
  msgstr ""
4793
 
4794
+ #: inc/admin/views/updates/0.9/step-welcome.php:4
 
4795
  msgid ""
4796
+ "We are very careful in upgrading the database but be sure to backup your "
4797
+ "database before upgrading to avoid possible risks."
 
4798
  msgstr ""
4799
 
4800
+ #: inc/admin/views/updates/0.9/step-welcome.php:5
4801
+ msgid "Click <strong>Yes, upgrade!</strong> button to start."
4802
  msgstr ""
4803
 
4804
+ #: inc/admin/views/updates/0.9/step-welcome.php:7
4805
+ msgid "No, back to Admin"
4806
  msgstr ""
4807
 
4808
+ #: inc/admin/views/updates/0.9/step-welcome.php:8
4809
+ msgid "Yes, upgrade!"
4810
  msgstr ""
4811
 
4812
+ #: inc/admin/views/updates/0.9/update-wizard.php:6
4813
+ #: inc/admin/views/updates/0.9/update-wizard.php:19
4814
+ #, php-format
4815
+ msgid "LearnPress update version %s"
4816
  msgstr ""
4817
 
4818
+ #: inc/attributes/course.php:137 inc/attributes/course.php:295
4819
+ #: inc/attributes/course.php:308 inc/attributes/course.php:310
4820
+ msgid "Attributes"
4821
  msgstr ""
4822
 
4823
+ #: inc/attributes/course.php:207
4824
+ msgid "No terms found."
4825
  msgstr ""
4826
 
4827
+ #: inc/attributes/course.php:231
4828
+ #, php-format
4829
+ msgid "Edit &#8220;%s&#8221;"
4830
  msgstr ""
4831
 
4832
+ #: inc/attributes/course.php:238
4833
+ msgid "Clear"
4834
  msgstr ""
4835
 
4836
+ #: inc/attributes/course.php:253
4837
+ msgid "Terms"
 
4838
  msgstr ""
4839
 
4840
+ #: inc/attributes/course.php:306 inc/attributes/course.php:309
4841
+ msgid "Attribute"
4842
  msgstr ""
4843
 
4844
+ #: inc/attributes/course.php:311
4845
+ msgid "Add New Attribute"
4846
  msgstr ""
4847
 
4848
+ #: inc/attributes/course.php:312
4849
+ msgid "All Attributes"
4850
  msgstr ""
4851
 
4852
+ #: inc/attributes/course.php:356
4853
+ #, php-format
4854
+ msgid "Search Course %s"
4855
  msgstr ""
4856
 
4857
+ #: inc/attributes/course.php:357
4858
+ #, php-format
4859
+ msgid "All Course %s"
4860
  msgstr ""
4861
 
4862
+ #: inc/attributes/course.php:358
4863
+ #, php-format
4864
+ msgid "Parent Course %s"
4865
  msgstr ""
4866
 
4867
+ #: inc/attributes/course.php:359
4868
+ #, php-format
4869
+ msgid "Parent Course %s:"
4870
  msgstr ""
4871
 
4872
+ #: inc/attributes/course.php:360
4873
+ #, php-format
4874
+ msgid "Edit Course %s"
4875
  msgstr ""
4876
 
4877
+ #: inc/attributes/course.php:361
4878
+ #, php-format
4879
+ msgid "Update Course %s"
4880
  msgstr ""
4881
 
4882
+ #: inc/attributes/course.php:362
4883
+ #, php-format
4884
+ msgid "Add New Course %s"
4885
  msgstr ""
4886
 
4887
+ #: inc/attributes/course.php:363
4888
+ #, php-format
4889
+ msgid "New Course %s"
4890
  msgstr ""
4891
 
4892
+ #: inc/attributes/course.php:364
4893
  #, php-format
4894
+ msgid "No &quot;Course %s&quot; found"
 
 
 
 
 
 
 
4895
  msgstr ""
4896
 
4897
+ #: inc/background-process/class-lp-background-query-items.php:156
4898
+ #: inc/background-process/class-lp-background-query-items.php:207
4899
+ msgid "There is no items found!"
4900
  msgstr ""
4901
 
4902
+ #: inc/background-process/class-lp-background-query-items.php:161
4903
+ msgid "WP query plugins error!"
4904
  msgstr ""
4905
 
4906
+ #: inc/background-process/class-lp-background-query-items.php:164
4907
+ msgid "WP query plugins empty!"
 
 
4908
  msgstr ""
4909
 
4910
+ #: inc/background-process/class-lp-background-query-items.php:259
4911
+ msgid "There is no item found!"
4912
  msgstr ""
4913
 
4914
+ #: inc/cart/class-lp-cart.php:119
4915
+ msgid "Get cart should not be called before the wp_loaded action."
4916
  msgstr ""
4917
 
4918
+ #: inc/cart/class-lp-cart.php:144
4919
+ msgid "Sorry! This course is not purchasable."
4920
  msgstr ""
4921
 
4922
+ #: inc/cart/class-lp-cart.php:149
4923
+ msgid "Sorry! The number of enrolled students has reached limit"
 
 
4924
  msgstr ""
4925
 
4926
+ #: inc/cart/class-lp-cart.php:281
4927
+ #, php-format
4928
+ msgid ""
4929
+ "%s has been removed from your cart because it can no longer be purchased."
4930
  msgstr ""
4931
 
4932
+ #: inc/course/abstract-course.php:485
4933
+ msgid "You enrolled"
4934
  msgstr ""
4935
 
4936
+ #: inc/course/abstract-course.php:489
4937
+ #, php-format
4938
+ msgctxt "students-html"
4939
+ msgid "You and one student enrolled"
4940
+ msgid_plural ""
4941
+ "You and <span class=\"course-students-number\">%1$s</span> students enrolled"
4942
+ msgstr[0] ""
4943
+ msgstr[1] ""
4944
+
4945
+ #: inc/course/abstract-course.php:499
4946
+ #, php-format
4947
+ msgctxt "students-html"
4948
+ msgid "One student enrolled"
4949
+ msgid_plural ""
4950
+ "<span class=\"course-students-number\">%1$s</span> students enrolled"
4951
+ msgstr[0] ""
4952
+ msgstr[1] ""
4953
+
4954
+ #: inc/course/abstract-course.php:502
4955
+ msgid "No student enrolled"
4956
  msgstr ""
4957
 
4958
+ #: inc/course/abstract-course.php:754 inc/course/abstract-course.php:773
4959
+ #: inc/lesson/class-lp-lesson.php:104 inc/quiz/class-lp-quiz.php:552
4960
+ #, php-format
4961
+ msgid "The function %s doesn't exist"
4962
  msgstr ""
4963
 
4964
+ #: inc/course/abstract-course.php:1586
4965
+ #, php-format
4966
+ msgid "This course will end within next %s"
4967
  msgstr ""
4968
 
4969
+ #: inc/course/abstract-course.php:1662
4970
+ msgctxt "Text of Buy this course with external link"
4971
+ msgid "Buy this course"
4972
  msgstr ""
4973
 
4974
+ #: inc/course/abstract-course.php:1713
4975
+ msgid "Tags: "
4976
  msgstr ""
4977
 
4978
+ #: inc/course/lp-course-functions.php:187
4979
+ msgctxt "slug"
4980
+ msgid "uncategorized"
 
4981
  msgstr ""
4982
 
4983
+ #: inc/course/lp-course-functions.php:235
4984
  #, php-format
4985
+ msgid "The course %d does not exists"
4986
  msgstr ""
4987
 
4988
+ #: inc/course/lp-course-functions.php:951
4989
+ msgid "Permalink only available if the item is already assigned to a course."
4990
  msgstr ""
4991
 
4992
+ #: inc/course/lp-course-functions.php:1169
4993
+ #, php-format
4994
+ msgid "Welcome back, %s"
4995
  msgstr ""
4996
 
4997
+ #: inc/curds/class-lp-course-curd.php:27
4998
+ msgid "Course does not exist."
4999
  msgstr ""
5000
 
5001
+ #: inc/curds/class-lp-course-curd.php:125
5002
+ #: inc/curds/class-lp-lesson-curd.php:101
5003
+ #: inc/curds/class-lp-question-curd.php:161
5004
+ #: inc/curds/class-lp-quiz-curd.php:151
5005
+ msgid "<p>Op! ID not found</p>"
5006
  msgstr ""
5007
 
5008
+ #: inc/curds/class-lp-course-curd.php:129
5009
+ msgid "<p>Op! The course does not exist</p>"
5010
  msgstr ""
5011
 
5012
+ #: inc/curds/class-lp-course-curd.php:134
5013
+ msgid "<p>Sorry! You don't have permission to duplicate this course</p>"
 
 
5014
  msgstr ""
5015
 
5016
+ #: inc/curds/class-lp-course-curd.php:140
5017
+ msgid "<p>Sorry! Failed to duplicate course!</p>"
 
 
5018
  msgstr ""
5019
 
5020
+ #: inc/curds/class-lp-lesson-curd.php:34
5021
+ msgid "New Lesson"
 
 
5022
  msgstr ""
5023
 
5024
+ #: inc/curds/class-lp-lesson-curd.php:105
5025
+ msgid "<p>Op! The lesson does not exist</p>"
 
5026
  msgstr ""
5027
 
5028
+ #: inc/curds/class-lp-lesson-curd.php:110
5029
+ msgid "<p>Sorry! You don't have permission to duplicate this lesson</p>"
5030
  msgstr ""
5031
 
5032
+ #: inc/curds/class-lp-lesson-curd.php:117
5033
+ msgid "<p>Sorry! Failed to duplicate lesson!</p>"
5034
  msgstr ""
5035
 
5036
+ #: inc/curds/class-lp-lesson-curd.php:138
5037
+ #, php-format
5038
+ msgid "Invalid lesson with ID \"%d\"."
5039
  msgstr ""
5040
 
5041
+ #: inc/curds/class-lp-order-curd.php:420
5042
+ #, php-format
5043
+ msgid "Invalid order with ID \"%d\"."
5044
  msgstr ""
5045
 
5046
+ #: inc/curds/class-lp-order-curd.php:476
5047
+ #: templates/checkout/order-received.php:88
5048
+ msgid "Invalid order."
5049
  msgstr ""
5050
 
5051
+ #: inc/curds/class-lp-order-curd.php:480
5052
+ msgid "Order is already assigned."
5053
  msgstr ""
5054
 
5055
+ #: inc/curds/class-lp-order-curd.php:486
5056
+ msgid "User does not exist."
5057
  msgstr ""
5058
 
5059
+ #: inc/curds/class-lp-question-curd.php:28
5060
+ msgid "Question does not exist."
5061
  msgstr ""
5062
 
5063
+ #: inc/curds/class-lp-question-curd.php:165
5064
+ msgid "<p>Op! The question does not exist</p>"
5065
  msgstr ""
5066
 
5067
+ #: inc/curds/class-lp-question-curd.php:170
5068
+ msgid "<p>Sorry! You don't have permission to duplicate this question</p>"
5069
  msgstr ""
5070
 
5071
+ #: inc/curds/class-lp-question-curd.php:180
5072
+ msgid "<p>Sorry! Failed to duplicate question!</p>"
5073
  msgstr ""
5074
 
5075
+ #: inc/curds/class-lp-question-curd.php:241
5076
+ #, php-format
5077
+ msgid "Invalid question with ID \"%d\"."
5078
  msgstr ""
5079
 
5080
+ #: inc/curds/class-lp-quiz-curd.php:29
5081
+ msgid "Quiz does not exist."
5082
  msgstr ""
5083
 
5084
+ #: inc/curds/class-lp-quiz-curd.php:44
5085
+ #, php-format
5086
+ msgid "Invalid quiz with ID \"%d\"."
5087
  msgstr ""
5088
 
5089
+ #: inc/curds/class-lp-quiz-curd.php:155
5090
+ msgid "<p>Op! The quiz does not exist</p>"
5091
  msgstr ""
5092
 
5093
+ #: inc/curds/class-lp-quiz-curd.php:160
5094
+ msgid "<p>Sorry! You have not permission to duplicate this quiz</p>"
5095
  msgstr ""
5096
 
5097
+ #: inc/curds/class-lp-quiz-curd.php:167
5098
+ msgid "<p>Sorry! Failed to duplicate quiz!</p>"
5099
  msgstr ""
5100
 
5101
+ #: inc/curds/class-lp-user-curd.php:1257 inc/curds/class-lp-user-curd.php:1497
5102
+ msgid "course"
5103
  msgstr ""
5104
 
5105
+ #: inc/curds/class-lp-user-curd.php:1258 inc/curds/class-lp-user-curd.php:1498
5106
+ msgid "courses"
 
5107
  msgstr ""
5108
 
5109
+ #: inc/curds/class-lp-user-curd.php:1704
5110
+ msgid "quiz"
5111
  msgstr ""
5112
 
5113
+ #: inc/curds/class-lp-user-curd.php:1705
5114
+ msgid "quizzes"
 
 
 
5115
  msgstr ""
5116
 
5117
+ #: inc/curds/class-lp-user-curd.php:1762
5118
+ msgid "Please provide a valid email address."
5119
  msgstr ""
5120
 
5121
+ #: inc/curds/class-lp-user-curd.php:1766
5122
+ msgid ""
5123
+ "An account is already registered with your email address. Please log in."
5124
  msgstr ""
5125
 
5126
+ #: inc/curds/class-lp-user-curd.php:1772
5127
+ msgid "Please enter a valid account username."
5128
  msgstr ""
5129
 
5130
+ #: inc/curds/class-lp-user-curd.php:1776
5131
+ msgid ""
5132
+ "An account is already registered with that username. Please choose another."
5133
  msgstr ""
5134
 
5135
+ #: inc/curds/class-lp-user-curd.php:1788
5136
+ msgid "Failed to create user"
5137
  msgstr ""
5138
 
5139
+ #: inc/curds/class-lp-user-item-curd.php:21
5140
+ msgid "Quiz does not exists."
 
5141
  msgstr ""
5142
 
5143
+ #: inc/curds/class-lp-user-item-curd.php:34
5144
+ msgid "Invalid quiz."
 
5145
  msgstr ""
5146
 
5147
+ #: inc/custom-post-types/abstract.php:144
5148
+ #: inc/custom-post-types/abstract.php:160
5149
+ msgid "Search by user"
5150
  msgstr ""
5151
 
5152
+ #: inc/custom-post-types/abstract.php:211
5153
+ msgid ""
5154
+ "This item has already assigned to course. It will be removed from course if "
5155
+ "it is not published."
5156
  msgstr ""
5157
 
5158
+ #: inc/custom-post-types/abstract.php:222
5159
+ msgid ""
5160
+ "This question has already assigned to quiz. It will be removed from quiz if "
5161
+ "it is not published."
5162
  msgstr ""
5163
 
5164
+ #: inc/custom-post-types/abstract.php:562
5165
+ #, php-format
5166
+ msgid "Course (%d %s)"
5167
+ msgid_plural "Course (%d %s)"
5168
+ msgstr[0] ""
5169
+ msgstr[1] ""
5170
 
5171
+ #: inc/custom-post-types/abstract.php:589
5172
+ msgid "Remove Filter"
5173
  msgstr ""
5174
 
5175
+ #: inc/custom-post-types/abstract.php:754
5176
+ #: inc/custom-post-types/abstract.php:757
5177
+ msgid "updated."
5178
  msgstr ""
5179
 
5180
+ #: inc/custom-post-types/abstract.php:755
5181
+ msgid "Custom field updated."
5182
  msgstr ""
5183
 
5184
+ #: inc/custom-post-types/abstract.php:756
5185
+ msgid "Custom field deleted."
5186
  msgstr ""
5187
 
5188
+ #: inc/custom-post-types/abstract.php:759
5189
+ #, php-format
5190
+ msgid "Lesson restored to revision from %s"
5191
  msgstr ""
5192
 
5193
+ #: inc/custom-post-types/abstract.php:760
5194
+ msgid "published."
 
 
5195
  msgstr ""
5196
 
5197
+ #: inc/custom-post-types/abstract.php:761
5198
+ msgid "saved."
 
5199
  msgstr ""
5200
 
5201
+ #: inc/custom-post-types/abstract.php:762
5202
+ msgid "submitted."
 
 
5203
  msgstr ""
5204
 
5205
+ #: inc/custom-post-types/abstract.php:764
5206
+ #, php-format
5207
+ msgid "scheduled for: <strong>%1$s</strong>."
5208
  msgstr ""
5209
 
5210
+ #: inc/custom-post-types/abstract.php:766
5211
+ msgid "M j, Y @ G:i"
5212
  msgstr ""
5213
 
5214
+ #: inc/custom-post-types/abstract.php:768
5215
+ msgid "draft updated."
5216
  msgstr ""
5217
 
5218
+ #: inc/custom-post-types/course.php:100
5219
+ msgid "Create a new"
5220
  msgstr ""
5221
 
5222
+ #: inc/custom-post-types/course.php:103
5223
+ msgid "Do you want to remove item \"{{ITEM_NAME}}\" to trash?"
 
5224
  msgstr ""
5225
 
5226
+ #: inc/custom-post-types/course.php:106
5227
+ msgid "Items"
5228
  msgstr ""
5229
 
5230
+ #: inc/custom-post-types/course.php:108
5231
+ msgid "Course sale price must less than the regular price"
5232
  msgstr ""
5233
 
5234
+ #: inc/custom-post-types/course.php:109
5235
+ msgid "Course price must greater than the sale price"
5236
  msgstr ""
5237
 
5238
+ #: inc/custom-post-types/course.php:110
5239
+ msgid "Sale start date must before sale end date"
5240
  msgstr ""
5241
 
5242
+ #: inc/custom-post-types/course.php:111
5243
+ msgid "Sale end date must before sale start date"
5244
  msgstr ""
5245
 
5246
+ #: inc/custom-post-types/course.php:112
5247
+ msgid "Invalid date"
 
 
 
5248
  msgstr ""
5249
 
5250
+ #: inc/custom-post-types/course.php:130
5251
+ msgctxt "Post Type General Name"
5252
+ msgid "Courses"
5253
  msgstr ""
5254
 
5255
+ #: inc/custom-post-types/course.php:131
5256
+ msgctxt "Post Type Singular Name"
5257
+ msgid "Course"
5258
  msgstr ""
5259
 
5260
+ #: inc/custom-post-types/course.php:133
5261
+ msgid "Parent Item:"
5262
  msgstr ""
5263
 
5264
+ #: inc/custom-post-types/course.php:135
5265
+ msgid "View Course"
 
5266
  msgstr ""
5267
 
5268
+ #: inc/custom-post-types/course.php:136
5269
+ msgid "Add New Course"
5270
  msgstr ""
5271
 
5272
+ #: inc/custom-post-types/course.php:137 inc/custom-post-types/lesson.php:188
5273
+ #: inc/custom-post-types/order.php:915 inc/custom-post-types/question.php:191
5274
+ msgid "Add New"
5275
  msgstr ""
5276
 
5277
+ #: inc/custom-post-types/course.php:138
5278
+ msgid "Edit Course"
 
5279
  msgstr ""
5280
 
5281
+ #: inc/custom-post-types/course.php:139
5282
+ msgid "Update Course"
 
5283
  msgstr ""
5284
 
5285
+ #: inc/custom-post-types/course.php:140
5286
+ msgid "Search Courses"
 
5287
  msgstr ""
5288
 
5289
+ #: inc/custom-post-types/course.php:141
5290
  #, php-format
5291
+ msgid ""
5292
+ "You haven't had any courses yet. Click <a href=\"%s\">Add new</a> to start"
5293
  msgstr ""
5294
 
5295
+ #: inc/custom-post-types/course.php:142
5296
+ msgid "No course found in Trash"
 
5297
  msgstr ""
5298
 
5299
+ #: inc/custom-post-types/course.php:182 inc/custom-post-types/course.php:184
5300
+ msgid "Course Categories"
 
5301
  msgstr ""
5302
 
5303
+ #: inc/custom-post-types/course.php:185 inc/custom-post-types/course.php:186
5304
+ msgid "Category"
 
5305
  msgstr ""
5306
 
5307
+ #: inc/custom-post-types/course.php:187
5308
+ msgid "Add New Course Category"
 
5309
  msgstr ""
5310
 
5311
+ #: inc/custom-post-types/course.php:188
5312
+ msgid "All Categories"
 
5313
  msgstr ""
5314
 
5315
+ #: inc/custom-post-types/course.php:199
5316
+ msgctxt "slug"
5317
+ msgid "course-category"
 
 
5318
  msgstr ""
5319
 
5320
+ #: inc/custom-post-types/course.php:210
5321
+ msgid "Course Tags"
 
5322
  msgstr ""
5323
 
5324
+ #: inc/custom-post-types/course.php:211 inc/custom-post-types/question.php:164
5325
+ #: inc/custom-post-types/question.php:165
5326
+ #: inc/updates/_update-from-0.9.php:1194 inc/updates/_update-from-0.9.php:1195
5327
+ #: inc/updates/_update-from-0.9.php:1196 inc/updates/_update-from-0.9.php:1217
5328
+ #: inc/updates/_update-from-0.9.php:1218
5329
+ msgid "Tag"
5330
  msgstr ""
5331
 
5332
+ #: inc/custom-post-types/course.php:212
5333
+ msgid "Search Course Tags"
 
5334
  msgstr ""
5335
 
5336
+ #: inc/custom-post-types/course.php:213
5337
+ msgid "Popular Course Tags"
5338
  msgstr ""
5339
 
5340
+ #: inc/custom-post-types/course.php:214
5341
+ msgid "All Course Tags"
5342
  msgstr ""
5343
 
5344
+ #: inc/custom-post-types/course.php:217
5345
+ msgid "Edit Course Tag"
5346
  msgstr ""
5347
 
5348
+ #: inc/custom-post-types/course.php:218
5349
+ msgid "Update Course Tag"
5350
  msgstr ""
5351
 
5352
+ #: inc/custom-post-types/course.php:219
5353
+ msgid "Add New Course Tag"
 
 
5354
  msgstr ""
5355
 
5356
+ #: inc/custom-post-types/course.php:220
5357
+ msgid "New Course Tag Name"
5358
  msgstr ""
5359
 
5360
+ #: inc/custom-post-types/course.php:221
5361
+ msgid "Separate tags with commas"
5362
  msgstr ""
5363
 
5364
+ #: inc/custom-post-types/course.php:222
5365
+ msgid "Add or remove tags"
5366
  msgstr ""
5367
 
5368
+ #: inc/custom-post-types/course.php:223
5369
+ msgid "Choose from the most used tags"
5370
  msgstr ""
5371
 
5372
+ #: inc/custom-post-types/course.php:233
5373
+ msgctxt "slug"
5374
+ msgid "course-tag"
5375
  msgstr ""
5376
 
5377
+ #: inc/custom-post-types/course.php:375
5378
+ msgid "Sorry! You can not update a course while it is being viewed!"
5379
  msgstr ""
5380
 
5381
+ #: inc/custom-post-types/course.php:562
5382
+ msgid "Course Settings"
 
5383
  msgstr ""
5384
 
5385
+ #: inc/custom-post-types/course.php:584 inc/custom-post-types/lesson.php:316
5386
+ #: inc/custom-post-types/quiz.php:263 inc/custom-post-types/quiz.php:381
5387
+ #: templates/content-quiz/intro.php:28
5388
+ msgid "Duration"
5389
  msgstr ""
5390
 
5391
+ #: inc/custom-post-types/course.php:587
5392
+ msgid "The duration of the course."
5393
  msgstr ""
5394
 
5395
+ #: inc/custom-post-types/course.php:591
5396
+ msgid "Maximum Students"
5397
  msgstr ""
5398
 
5399
+ #: inc/custom-post-types/course.php:594
5400
+ msgid "Maximum number of students who can enroll in this course."
5401
  msgstr ""
5402
 
5403
+ #: inc/custom-post-types/course.php:598
5404
+ msgid "Students Enrolled"
5405
  msgstr ""
5406
 
5407
+ #: inc/custom-post-types/course.php:601
5408
+ msgid "How many students have taken this course."
5409
  msgstr ""
5410
 
5411
+ #: inc/custom-post-types/course.php:605
5412
+ msgid "Re-take Course"
5413
  msgstr ""
5414
 
5415
+ #: inc/custom-post-types/course.php:609
5416
+ msgid ""
5417
+ "How many times the user can re-take this course. Set to 0 to disable re-"
5418
+ "taking"
5419
  msgstr ""
5420
 
5421
+ #: inc/custom-post-types/course.php:613
5422
+ msgid "Featured"
 
 
 
5423
  msgstr ""
5424
 
5425
+ #: inc/custom-post-types/course.php:616
5426
+ msgid "Set course as featured."
5427
  msgstr ""
5428
 
5429
+ #: inc/custom-post-types/course.php:620
5430
+ msgid "Block Lessons"
5431
  msgstr ""
5432
 
5433
+ #: inc/custom-post-types/course.php:623
5434
+ msgid "Block lessons content when completed course."
5435
  msgstr ""
5436
 
5437
+ #: inc/custom-post-types/course.php:627
5438
+ msgid "External Link"
 
5439
  msgstr ""
5440
 
5441
+ #: inc/custom-post-types/course.php:630
5442
+ msgid "Redirect to this url when you press button buy this course."
 
5443
  msgstr ""
5444
 
5445
+ #: inc/custom-post-types/course.php:634
5446
+ msgid "Show item links"
5447
  msgstr ""
5448
 
5449
+ #: inc/custom-post-types/course.php:637
5450
+ msgid "Enable link of course items in case user can not view content of them."
5451
  msgstr ""
5452
 
5453
+ #: inc/custom-post-types/course.php:665
5454
+ msgid "The method to assess the result of a student for a course."
5455
  msgstr ""
5456
 
5457
+ #: inc/custom-post-types/course.php:668
5458
  msgid ""
5459
+ "<br /><strong>Note! </strong>No final quiz in course, please add a final quiz"
 
 
 
 
5460
  msgstr ""
5461
 
5462
+ #: inc/custom-post-types/course.php:685
5463
  msgid ""
5464
+ "This is conditional \"passing grade\" of Final quiz will apply for result of "
5465
+ "this course. When you change it here, the \"passing grade\" also change with "
5466
+ "new value for the Final quiz."
5467
  msgstr ""
5468
 
5469
+ #: inc/custom-post-types/course.php:691
5470
+ msgid ""
5471
+ "<p>Evaluate by number of lessons completed per number of total lessons.</p>"
5472
  msgstr ""
5473
 
5474
+ #: inc/custom-post-types/course.php:692
5475
+ msgid ""
5476
+ "E.g: Course has 10 lessons and user completed 5 lessons then the result = "
5477
+ "5/10 = 50.%"
5478
  msgstr ""
5479
 
5480
+ #: inc/custom-post-types/course.php:693
5481
+ msgid ""
5482
+ "Evaluate by results of final quiz in course. You have to add a quiz into end "
5483
+ "of course."
5484
  msgstr ""
5485
 
5486
+ #: inc/custom-post-types/course.php:694
5487
+ msgid ""
5488
+ "Evaluate by achieved points of completed quizzes per total point of all "
5489
+ "quizzes."
5490
  msgstr ""
5491
 
5492
+ #: inc/custom-post-types/course.php:695
5493
+ msgid ""
5494
+ "Evaluate by achieved points of quizzes passed per total point of all quizzes."
5495
  msgstr ""
5496
 
5497
+ #: inc/custom-post-types/course.php:696
5498
+ msgid ""
5499
+ "<p>Evaluate by number of quizzes completed per number of total quizzes.</p>"
5500
  msgstr ""
5501
 
5502
+ #: inc/custom-post-types/course.php:697
5503
+ msgid ""
5504
+ "<p>E.g: Course has 10 quizzes and user completed 5 quizzes then the result = "
5505
+ "5/10 = 50%.</p>"
5506
  msgstr ""
5507
 
5508
+ #: inc/custom-post-types/course.php:704
5509
+ msgid "Assessment"
5510
  msgstr ""
5511
 
5512
+ #: inc/custom-post-types/course.php:710
5513
+ msgid "Course result"
5514
  msgstr ""
5515
 
5516
+ #: inc/custom-post-types/course.php:715
5517
+ msgid "Evaluate via lessons"
 
5518
  msgstr ""
5519
 
5520
+ #: inc/custom-post-types/course.php:717
5521
+ msgid "Evaluate via results of the final quiz"
5522
  msgstr ""
5523
 
5524
+ #: inc/custom-post-types/course.php:720
5525
+ msgid "Evaluate via results of quizzes"
 
5526
  msgstr ""
5527
 
5528
+ #: inc/custom-post-types/course.php:722
5529
+ msgid "Evaluate via results of quizzes passed"
5530
  msgstr ""
5531
 
5532
+ #: inc/custom-post-types/course.php:724
5533
+ msgid "Evaluate via quizzes"
5534
  msgstr ""
5535
 
5536
+ #: inc/custom-post-types/course.php:731
5537
+ msgid "Passing condition value"
5538
  msgstr ""
5539
 
5540
+ #: inc/custom-post-types/course.php:736
5541
+ msgid ""
5542
+ "The percentage of quiz result or completed lessons to finish the course."
5543
  msgstr ""
5544
 
5545
+ #: inc/custom-post-types/course.php:767
5546
+ msgid "Pricing"
5547
  msgstr ""
5548
 
5549
+ #: inc/custom-post-types/course.php:799
5550
  #, php-format
5551
+ msgid ""
5552
+ "This course requires enrollment and the suggested price is <strong>%s</"
5553
+ "strong>"
5554
  msgstr ""
5555
 
5556
+ #: inc/custom-post-types/course.php:807
5557
+ msgid "This course is free."
5558
  msgstr ""
5559
 
5560
+ #: inc/custom-post-types/course.php:814
5561
+ #, php-format
5562
+ msgid "Course price in <strong>%s</strong> currency."
5563
  msgstr ""
5564
 
5565
+ #: inc/custom-post-types/course.php:828 inc/custom-post-types/course.php:1297
5566
+ #: inc/custom-post-types/course.php:1304
5567
+ #: templates/emails/order-items-table.php:68
5568
+ msgid "Price"
5569
  msgstr ""
5570
 
5571
+ #: inc/custom-post-types/course.php:838
5572
+ msgid "Sale Price"
5573
  msgstr ""
5574
 
5575
+ #: inc/custom-post-types/course.php:845
5576
+ #, php-format
5577
+ msgid "Course sale price in <strong>%s</strong> currency."
5578
  msgstr ""
5579
 
5580
+ #: inc/custom-post-types/course.php:846
5581
+ msgid "Leave blank to remove sale price."
 
 
5582
  msgstr ""
5583
 
5584
+ #: inc/custom-post-types/course.php:848
5585
+ msgid "Schedule"
5586
  msgstr ""
5587
 
5588
+ #: inc/custom-post-types/course.php:853
5589
+ msgid "Sale start date"
 
 
5590
  msgstr ""
5591
 
5592
+ #: inc/custom-post-types/course.php:861
5593
+ msgid "Sale end date"
5594
  msgstr ""
5595
 
5596
+ #: inc/custom-post-types/course.php:873
5597
+ msgid "Price set by Admin"
5598
  msgstr ""
5599
 
5600
+ #: inc/custom-post-types/course.php:877
5601
+ msgid "Not set"
5602
  msgstr ""
5603
 
5604
+ #: inc/custom-post-types/course.php:880
5605
+ msgid "Course Suggestion Price"
5606
  msgstr ""
5607
 
5608
+ #: inc/custom-post-types/course.php:885
5609
+ msgid "The course price you want to suggest for admin to set."
5610
  msgstr ""
5611
 
5612
+ #: inc/custom-post-types/course.php:896 inc/custom-post-types/course.php:1377
5613
+ msgid "No requirement enroll"
5614
  msgstr ""
5615
 
5616
+ #: inc/custom-post-types/course.php:899
5617
+ msgid "Require users logged in to study or public to all."
5618
  msgstr ""
5619
 
5620
+ #: inc/custom-post-types/course.php:939 inc/custom-post-types/course.php:951
5621
+ #: inc/custom-post-types/course.php:1294 inc/custom-post-types/course.php:1301
5622
+ #: inc/custom-post-types/lesson.php:310 inc/custom-post-types/question.php:336
5623
+ #: inc/custom-post-types/quiz.php:378
5624
+ msgid "Author"
5625
  msgstr ""
5626
 
5627
+ #: inc/custom-post-types/course.php:971
5628
+ msgid "Review Logs"
 
5629
  msgstr ""
5630
 
5631
+ #: inc/custom-post-types/course.php:1020
5632
+ msgid "Course Video"
5633
  msgstr ""
5634
 
5635
+ #: inc/custom-post-types/course.php:1025
5636
+ msgid "Video ID"
 
5637
  msgstr ""
5638
 
5639
+ #: inc/custom-post-types/course.php:1028
5640
+ msgid "The ID of Youtube or Vimeo video"
 
 
5641
  msgstr ""
5642
 
5643
+ #: inc/custom-post-types/course.php:1032
5644
+ msgid "Video Type"
 
5645
  msgstr ""
5646
 
5647
+ #: inc/custom-post-types/course.php:1035
5648
+ msgid "Chose video type"
 
 
 
5649
  msgstr ""
5650
 
5651
+ #: inc/custom-post-types/course.php:1038
5652
+ msgid "Youtube"
 
5653
  msgstr ""
5654
 
5655
+ #: inc/custom-post-types/course.php:1039
5656
+ msgid "Vimeo"
 
5657
  msgstr ""
5658
 
5659
+ #: inc/custom-post-types/course.php:1043
5660
+ msgid "Embed width"
5661
  msgstr ""
5662
 
5663
+ #: inc/custom-post-types/course.php:1046
5664
+ msgid "Set width of embed"
5665
  msgstr ""
5666
 
5667
+ #: inc/custom-post-types/course.php:1050
5668
+ msgid "Embed height"
5669
  msgstr ""
5670
 
5671
+ #: inc/custom-post-types/course.php:1053
5672
+ msgid "Set height of embed"
 
 
5673
  msgstr ""
5674
 
5675
+ #: inc/custom-post-types/course.php:1175
5676
+ msgid "Course has been approved by Reviewer"
5677
  msgstr ""
5678
 
5679
+ #: inc/custom-post-types/course.php:1180
5680
+ msgid "Course has been rejected by Reviewer"
5681
  msgstr ""
5682
 
5683
+ #: inc/custom-post-types/course.php:1185
5684
+ #, php-format
5685
+ msgid "Course has been submitted by %s"
 
5686
  msgstr ""
5687
 
5688
+ #: inc/custom-post-types/course.php:1190
5689
+ msgid "Course has been updated by Reviewer"
5690
  msgstr ""
5691
 
5692
+ #: inc/custom-post-types/course.php:1295 inc/custom-post-types/course.php:1302
5693
+ msgid "Content"
5694
  msgstr ""
5695
 
5696
+ #: inc/custom-post-types/course.php:1335
5697
+ #, php-format
5698
+ msgid "<strong>%d</strong> section"
5699
+ msgid_plural "<strong>%d</strong> sections"
5700
+ msgstr[0] ""
5701
+ msgstr[1] ""
5702
 
5703
+ #: inc/custom-post-types/course.php:1347
5704
+ #, php-format
5705
+ msgid "<strong>%d</strong> "
5706
+ msgid_plural "<strong>%d</strong> "
5707
+ msgstr[0] ""
5708
+ msgstr[1] ""
5709
 
5710
+ #: inc/custom-post-types/course.php:1357
5711
+ msgid "No content"
5712
  msgstr ""
5713
 
5714
+ #: inc/custom-post-types/lesson.php:98 inc/custom-post-types/question.php:64
5715
+ #: inc/custom-post-types/quiz.php:64
5716
  #, php-format
5717
+ msgid "Unassigned %s"
5718
  msgstr ""
5719
 
5720
+ #: inc/custom-post-types/lesson.php:114
5721
+ #, php-format
5722
+ msgid "Preview %s"
5723
  msgstr ""
5724
 
5725
+ #: inc/custom-post-types/lesson.php:131
5726
+ #, php-format
5727
+ msgid "No Preview %s"
5728
  msgstr ""
5729
 
5730
+ #: inc/custom-post-types/lesson.php:182 inc/custom-post-types/lesson.php:183
5731
+ #: inc/custom-post-types/lesson.php:186
5732
+ #: templates/widgets/course-info/default.php:29
5733
+ msgid "Lessons"
5734
  msgstr ""
5735
 
5736
+ #: inc/custom-post-types/lesson.php:185
5737
+ msgid "Add New Lesson"
 
 
5738
  msgstr ""
5739
 
5740
+ #: inc/custom-post-types/lesson.php:187
5741
+ msgid "View Lesson"
 
5742
  msgstr ""
5743
 
5744
+ #: inc/custom-post-types/lesson.php:189
5745
+ msgid "Edit Lesson"
5746
  msgstr ""
5747
 
5748
+ #: inc/custom-post-types/lesson.php:190
5749
+ msgid "Update Lesson"
5750
  msgstr ""
5751
 
5752
+ #: inc/custom-post-types/lesson.php:191
5753
+ msgid "Search Lessons"
5754
  msgstr ""
5755
 
5756
+ #: inc/custom-post-types/lesson.php:192
5757
+ msgid "No lesson found"
 
5758
  msgstr ""
5759
 
5760
+ #: inc/custom-post-types/lesson.php:193
5761
+ msgid "No lesson found in Trash"
5762
  msgstr ""
5763
 
5764
+ #: inc/custom-post-types/lesson.php:227
5765
+ msgid "Lesson Settings"
 
5766
  msgstr ""
5767
 
5768
+ #: inc/custom-post-types/lesson.php:231
5769
+ msgid "Lesson Duration"
 
5770
  msgstr ""
5771
 
5772
+ #: inc/custom-post-types/lesson.php:235
5773
+ msgid "Duration of the lesson. Set 0 to disable."
5774
  msgstr ""
5775
 
5776
+ #: inc/custom-post-types/lesson.php:239
5777
+ msgid "Preview Lesson"
5778
  msgstr ""
5779
 
5780
+ #: inc/custom-post-types/lesson.php:242
5781
+ msgid ""
5782
+ "If this is a preview lesson, then student can view this lesson content "
5783
+ "without taking the course."
5784
  msgstr ""
5785
 
5786
+ #: inc/custom-post-types/lesson.php:315
5787
+ msgid "Format"
 
5788
  msgstr ""
5789
 
5790
+ #: inc/custom-post-types/lesson.php:359
5791
+ msgid "Standard"
5792
  msgstr ""
5793
 
5794
+ #: inc/custom-post-types/lesson.php:429
5795
+ msgid "Please enter the title of the lesson"
 
5796
  msgstr ""
5797
 
5798
+ #: inc/custom-post-types/lesson.php:471 inc/custom-post-types/question.php:529
5799
+ #: inc/custom-post-types/quiz.php:617
5800
+ msgid "Assigned"
5801
  msgstr ""
5802
 
5803
+ #: inc/custom-post-types/order.php:473
5804
+ msgid "Order number, user name, user email, course name etc..."
 
5805
  msgstr ""
5806
 
5807
+ #: inc/custom-post-types/order.php:639
5808
+ msgid "Processing..."
 
 
 
 
 
 
 
5809
  msgstr ""
5810
 
5811
+ #: inc/custom-post-types/order.php:656 inc/custom-post-types/order.php:659
5812
+ msgid "Apply"
5813
  msgstr ""
5814
 
5815
+ #: inc/custom-post-types/order.php:697 inc/custom-post-types/order.php:914
5816
+ msgid "View Order"
 
 
 
5817
  msgstr ""
5818
 
5819
+ #: inc/custom-post-types/order.php:705
5820
+ msgid "View child orders"
5821
  msgstr ""
5822
 
5823
+ #: inc/custom-post-types/order.php:773 inc/custom-post-types/order.php:910
5824
+ #: templates/profile/tabs/orders/list.php:32
5825
+ msgid "Order"
5826
  msgstr ""
5827
 
5828
+ #: inc/custom-post-types/order.php:774
5829
+ msgid "Student"
 
 
5830
  msgstr ""
5831
 
5832
+ #: inc/custom-post-types/order.php:826 inc/order/class-lp-order.php:496
5833
+ msgid "(Guest)"
5834
  msgstr ""
5835
 
5836
+ #: inc/custom-post-types/order.php:856
5837
+ #: templates/checkout/order-received.php:43
5838
+ msgid "Course does not exist"
5839
  msgstr ""
5840
 
5841
+ #: inc/custom-post-types/order.php:858
5842
+ msgid "Deleted"
 
5843
  msgstr ""
5844
 
5845
+ #: inc/custom-post-types/order.php:873
5846
+ #: templates/checkout/order-received.php:57
5847
+ msgid "(No item)"
5848
  msgstr ""
5849
 
5850
+ #: inc/custom-post-types/order.php:881
5851
+ #, php-format
5852
+ msgid "Pay via <strong>%s</strong>"
5853
  msgstr ""
5854
 
5855
+ #: inc/custom-post-types/order.php:911
5856
+ msgid "Add New Order"
5857
  msgstr ""
5858
 
5859
+ #: inc/custom-post-types/order.php:912 inc/custom-post-types/order.php:995
5860
+ #: templates/order/order-details.php:23
5861
+ msgid "Order Details"
5862
  msgstr ""
5863
 
5864
+ #: inc/custom-post-types/order.php:916
5865
+ msgid "Update Order"
 
5866
  msgstr ""
5867
 
5868
+ #: inc/custom-post-types/order.php:917
5869
+ msgid "Search Orders"
 
5870
  msgstr ""
5871
 
5872
+ #: inc/custom-post-types/order.php:918
5873
+ msgid "No order found"
 
5874
  msgstr ""
5875
 
5876
+ #: inc/custom-post-types/order.php:919
5877
+ msgid "No order found in Trash"
 
5878
  msgstr ""
5879
 
5880
+ #: inc/custom-post-types/order.php:996
5881
+ msgid "Order Actions"
 
5882
  msgstr ""
5883
 
5884
+ #: inc/custom-post-types/question.php:148 inc/custom-post-types/quiz.php:180
5885
+ #: inc/question/class-lp-question.php:594
5886
+ msgid "New Option"
5887
  msgstr ""
5888
 
5889
+ #: inc/custom-post-types/question.php:163
5890
+ #: inc/updates/_update-from-0.9.php:1216
5891
+ msgid "Question Tag"
5892
  msgstr ""
5893
 
5894
+ #: inc/custom-post-types/question.php:166
5895
+ #: inc/updates/_update-from-0.9.php:1197 inc/updates/_update-from-0.9.php:1219
5896
+ msgid "Add New Tag"
5897
  msgstr ""
5898
 
5899
+ #: inc/custom-post-types/question.php:167
5900
+ #: inc/updates/_update-from-0.9.php:1198 inc/updates/_update-from-0.9.php:1220
5901
+ msgid "All Tags"
5902
  msgstr ""
5903
 
5904
+ #: inc/custom-post-types/question.php:185
5905
+ #: inc/custom-post-types/question.php:186
5906
+ msgid "Question Bank"
5907
  msgstr ""
5908
 
5909
+ #: inc/custom-post-types/question.php:187 inc/custom-post-types/quiz.php:183
5910
+ #: templates/content-quiz/progress.php:43
5911
+ msgid "Question"
5912
  msgstr ""
5913
 
5914
+ #: inc/custom-post-types/question.php:189
5915
+ msgid "View Question"
5916
  msgstr ""
5917
 
5918
+ #: inc/custom-post-types/question.php:190
5919
+ msgid "Add New Question"
 
 
 
5920
  msgstr ""
5921
 
5922
+ #: inc/custom-post-types/question.php:192
5923
+ msgid "Edit Question"
 
5924
  msgstr ""
5925
 
5926
+ #: inc/custom-post-types/question.php:193
5927
+ msgid "Update Question"
 
5928
  msgstr ""
5929
 
5930
+ #: inc/custom-post-types/question.php:194
5931
+ msgid "Search Questions"
5932
  msgstr ""
5933
 
5934
+ #: inc/custom-post-types/question.php:195
5935
+ msgid "No questions found"
5936
  msgstr ""
5937
 
5938
+ #: inc/custom-post-types/question.php:196
5939
+ msgid "No questions found in trash"
 
5940
  msgstr ""
5941
 
5942
+ #: inc/custom-post-types/quiz.php:93
5943
+ msgid "Add New Quiz"
 
 
5944
  msgstr ""
5945
 
5946
+ #: inc/custom-post-types/quiz.php:94
5947
+ msgid "Edit Quiz"
 
 
5948
  msgstr ""
5949
 
5950
+ #: inc/custom-post-types/quiz.php:96
5951
+ msgid "View Quiz"
5952
  msgstr ""
5953
 
5954
+ #: inc/custom-post-types/quiz.php:98
5955
+ msgid "Update Quiz"
5956
  msgstr ""
5957
 
5958
+ #: inc/custom-post-types/quiz.php:99
5959
+ msgid "Search Quizzes"
5960
  msgstr ""
5961
 
5962
+ #: inc/custom-post-types/quiz.php:100
5963
+ #, php-format
5964
+ msgid ""
5965
+ "You haven't had any quizzes yet. Click <a href=\"%s\">Add new</a> to start"
5966
  msgstr ""
5967
 
5968
+ #: inc/custom-post-types/quiz.php:101
5969
+ msgid "No quiz found in Trash"
5970
  msgstr ""
5971
 
5972
+ #: inc/custom-post-types/quiz.php:176
5973
+ msgid "Option"
5974
  msgstr ""
5975
 
5976
+ #: inc/custom-post-types/quiz.php:181
5977
+ msgid "Do you want to move question \"{{QUESTION_NAME}}\" to trash?"
5978
  msgstr ""
5979
 
5980
+ #: inc/custom-post-types/quiz.php:226
5981
+ msgid "General Settings"
 
5982
  msgstr ""
5983
 
5984
+ #: inc/custom-post-types/quiz.php:232
5985
+ msgid "Pagination Questions"
5986
  msgstr ""
5987
 
5988
+ #: inc/custom-post-types/quiz.php:233
5989
+ msgid ""
5990
+ "Show list of questions while doing quiz as ordered numbers (1, 2, 3, etc)."
5991
  msgstr ""
5992
 
5993
+ #: inc/custom-post-types/quiz.php:239
5994
+ msgid "Review Questions"
5995
  msgstr ""
5996
 
5997
+ #: inc/custom-post-types/quiz.php:242
5998
+ msgid "Allow re-viewing questions after completing quiz."
5999
  msgstr ""
6000
 
6001
+ #: inc/custom-post-types/quiz.php:246
6002
+ msgid "Show Correct Answer"
6003
  msgstr ""
6004
 
6005
+ #: inc/custom-post-types/quiz.php:249
6006
+ msgid "Show correct answer when reviewing questions."
6007
  msgstr ""
6008
 
6009
+ #: inc/custom-post-types/quiz.php:264
6010
+ msgid "Duration of the quiz. Set 0 to disable."
6011
  msgstr ""
6012
 
6013
+ #: inc/custom-post-types/quiz.php:279
6014
+ msgid "Minus Points"
 
 
 
 
 
 
 
 
 
6015
  msgstr ""
6016
 
6017
+ #: inc/custom-post-types/quiz.php:282
6018
+ msgid "How many points minus for each wrong question in quiz."
6019
  msgstr ""
6020
 
6021
+ #: inc/custom-post-types/quiz.php:288
6022
+ msgid "Minus For Skip"
6023
  msgstr ""
6024
 
6025
+ #: inc/custom-post-types/quiz.php:291
6026
+ msgid "Minus points for skip questions."
6027
  msgstr ""
6028
 
6029
+ #: inc/custom-post-types/quiz.php:305
6030
+ msgid "Passing Grade (<span>%</span>)"
6031
  msgstr ""
6032
 
6033
+ #: inc/custom-post-types/quiz.php:306
6034
+ msgid "Requires user reached this point to pass the quiz."
6035
  msgstr ""
6036
 
6037
+ #: inc/custom-post-types/quiz.php:315
6038
+ msgid "Re-take"
6039
  msgstr ""
6040
 
6041
+ #: inc/custom-post-types/quiz.php:318
6042
+ msgid ""
6043
+ "How many times the user can re-take this quiz. Set to 0 to disable re-taking."
6044
  msgstr ""
6045
 
6046
+ #: inc/custom-post-types/quiz.php:323
6047
+ msgid "Archive History"
6048
  msgstr ""
6049
 
6050
+ #: inc/custom-post-types/quiz.php:326
6051
+ msgid "Archive quiz results for each time."
6052
  msgstr ""
6053
 
6054
+ #: inc/custom-post-types/quiz.php:340
6055
+ msgid "Show Check Answer"
6056
  msgstr ""
6057
 
6058
+ #: inc/custom-post-types/quiz.php:343
6059
+ msgid ""
6060
+ "Show button to check answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
6061
+ "N = Number of check )."
6062
  msgstr ""
6063
 
6064
+ #: inc/custom-post-types/quiz.php:349
6065
+ msgid "Show Hint"
 
 
 
6066
  msgstr ""
6067
 
6068
+ #: inc/custom-post-types/quiz.php:352
6069
+ msgid ""
6070
+ "Show button to hint answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
6071
+ "N = Number of check )."
6072
  msgstr ""
6073
 
6074
+ #: inc/custom-post-types/quiz.php:419
6075
+ msgid "This quiz has no questions"
6076
  msgstr ""
6077
 
6078
+ #: inc/emails/class-lp-email-become-an-instructor.php:27
6079
+ msgid "Request"
6080
  msgstr ""
6081
 
6082
+ #: inc/emails/class-lp-email-become-an-instructor.php:28
6083
+ msgid "Become an instructor email."
6084
  msgstr ""
6085
 
6086
+ #: inc/emails/class-lp-email-become-an-instructor.php:30
6087
+ msgid "[{{site_title}}] Request to become an instructor"
 
6088
  msgstr ""
6089
 
6090
+ #: inc/emails/class-lp-email-become-an-instructor.php:31
6091
+ msgid "Become an instructor"
 
6092
  msgstr ""
6093
 
6094
+ #: inc/emails/class-lp-email-cancelled-order-admin.php:27
6095
+ #: inc/emails/class-lp-email-completed-order-admin.php:29
6096
+ #: inc/emails/class-lp-email-enrolled-course-admin.php:28
6097
+ #: inc/emails/class-lp-email-finished-course-admin.php:28
6098
+ #: inc/emails/class-lp-email-new-order-admin.php:27
6099
+ msgid "Admin"
6100
  msgstr ""
6101
 
6102
+ #: inc/emails/class-lp-email-cancelled-order-admin.php:28
6103
+ msgid "Send email to admin when order has been cancelled."
 
6104
  msgstr ""
6105
 
6106
+ #: inc/emails/class-lp-email-cancelled-order-admin.php:30
6107
+ #: inc/emails/class-lp-email-cancelled-order-instructor.php:27
6108
+ msgid "Order placed on {{order_date}} has been cancelled"
6109
  msgstr ""
6110
 
6111
+ #: inc/emails/class-lp-email-cancelled-order-admin.php:31
6112
+ #: inc/emails/class-lp-email-cancelled-order-instructor.php:28
6113
+ msgid "User order has been cancelled"
6114
  msgstr ""
6115
 
6116
+ #: inc/emails/class-lp-email-cancelled-order-guest.php:28
6117
+ msgid "Send email to guest when order has been cancelled."
6118
  msgstr ""
6119
 
6120
+ #: inc/emails/class-lp-email-cancelled-order-guest.php:30
6121
+ #: inc/emails/class-lp-email-cancelled-order-user.php:30
6122
+ msgid "Your order on {{order_date}} has been cancelled"
6123
  msgstr ""
6124
 
6125
+ #: inc/emails/class-lp-email-cancelled-order-guest.php:31
6126
+ #: inc/emails/class-lp-email-cancelled-order-user.php:31
6127
+ msgid "Your order has been cancelled"
6128
  msgstr ""
6129
 
6130
+ #: inc/emails/class-lp-email-cancelled-order-instructor.php:25
6131
+ msgid "Send email to course instructor when order has been cancelled"
6132
  msgstr ""
6133
 
6134
+ #: inc/emails/class-lp-email-cancelled-order-user.php:27
6135
+ #: inc/emails/class-lp-email-completed-order-user.php:29
6136
+ #: inc/emails/class-lp-email-enrolled-course-user.php:27
6137
+ #: inc/emails/class-lp-email-finished-course-user.php:27
6138
+ #: inc/emails/class-lp-email-new-order-user.php:27
6139
+ #: inc/emails/class-lp-email-processing-order-user.php:26
6140
+ msgid "User"
6141
  msgstr ""
6142
 
6143
+ #: inc/emails/class-lp-email-cancelled-order-user.php:28
6144
+ msgid "Send email to user when order has been cancelled."
6145
  msgstr ""
6146
 
6147
+ #: inc/emails/class-lp-email-completed-order-admin.php:30
6148
+ msgid "Send email to admin when an order has been completed."
 
6149
  msgstr ""
6150
 
6151
+ #: inc/emails/class-lp-email-completed-order-admin.php:32
6152
+ msgid "Order placed on {{order_date}} has been completed"
6153
  msgstr ""
6154
 
6155
+ #: inc/emails/class-lp-email-completed-order-admin.php:33
6156
+ msgid "User order has been completed"
 
 
 
6157
  msgstr ""
6158
 
6159
+ #: inc/emails/class-lp-email-completed-order-guest.php:30
6160
+ #: inc/emails/class-lp-email-new-order-guest.php:28
6161
+ msgid "Send email to the user who has bought course as guest."
 
6162
  msgstr ""
6163
 
6164
+ #: inc/emails/class-lp-email-completed-order-guest.php:32
6165
+ #: inc/emails/class-lp-email-completed-order-user.php:32
6166
+ msgid "Your order on {{order_date}} has completed"
6167
  msgstr ""
6168
 
6169
+ #: inc/emails/class-lp-email-completed-order-guest.php:33
6170
+ #: inc/emails/class-lp-email-completed-order-user.php:33
6171
+ msgid "Your order has completed"
6172
  msgstr ""
6173
 
6174
+ #: inc/emails/class-lp-email-completed-order-user.php:30
6175
+ msgid "Send email to the user who has bought course when order is completed."
6176
  msgstr ""
6177
 
6178
+ #: inc/emails/class-lp-email-enrolled-course-admin.php:29
6179
+ msgid "Send this email to admin when user has enrolled course."
 
 
 
6180
  msgstr ""
6181
 
6182
+ #: inc/emails/class-lp-email-enrolled-course-admin.php:30
6183
+ #: inc/emails/class-lp-email-enrolled-course-instructor.php:30
6184
+ msgid "{{user_display_name}} has enrolled course"
6185
  msgstr ""
6186
 
6187
+ #: inc/emails/class-lp-email-enrolled-course-admin.php:31
6188
+ #: inc/emails/class-lp-email-enrolled-course-instructor.php:31
6189
+ msgid "User has enrolled course"
6190
  msgstr ""
6191
 
6192
+ #: inc/emails/class-lp-email-enrolled-course-instructor.php:28
6193
+ msgid "Send this email to instructor when they have enrolled course."
6194
  msgstr ""
6195
 
6196
+ #: inc/emails/class-lp-email-enrolled-course-user.php:28
6197
+ msgid "Send this email to user when they have enrolled course."
6198
  msgstr ""
6199
 
6200
+ #: inc/emails/class-lp-email-enrolled-course-user.php:30
6201
+ msgid "[{{site_title}}] You have enrolled in course"
6202
  msgstr ""
6203
 
6204
+ #: inc/emails/class-lp-email-enrolled-course-user.php:31
6205
+ msgid "You have enrolled course"
6206
  msgstr ""
6207
 
6208
+ #: inc/emails/class-lp-email-finished-course-admin.php:29
6209
+ msgid "Send this email to admin when user has finished course."
 
 
6210
  msgstr ""
6211
 
6212
+ #: inc/emails/class-lp-email-finished-course-admin.php:30
6213
+ #: inc/emails/class-lp-email-finished-course-instructor.php:30
6214
+ msgid "{{user_display_name}} has finished course"
6215
  msgstr ""
6216
 
6217
+ #: inc/emails/class-lp-email-finished-course-admin.php:31
6218
+ #: inc/emails/class-lp-email-finished-course-instructor.php:31
6219
+ msgid "User has finished course"
6220
  msgstr ""
6221
 
6222
+ #: inc/emails/class-lp-email-finished-course-instructor.php:28
6223
+ msgid "Send this email to instructor when they have finished course."
 
6224
  msgstr ""
6225
 
6226
+ #: inc/emails/class-lp-email-finished-course-user.php:28
6227
+ msgid "Send this email to user when they have finished course."
 
6228
  msgstr ""
6229
 
6230
+ #: inc/emails/class-lp-email-finished-course-user.php:30
6231
+ msgid "[{{site_title}}] You have finished course"
6232
  msgstr ""
6233
 
6234
+ #: inc/emails/class-lp-email-finished-course-user.php:31
6235
+ msgid "You have finished course"
 
6236
  msgstr ""
6237
 
6238
+ #: inc/emails/class-lp-email-instructor-accepted.php:26
6239
+ msgid "Accepted"
6240
  msgstr ""
6241
 
6242
+ #: inc/emails/class-lp-email-instructor-accepted.php:27
6243
+ msgid "Become an instructor email accepted."
6244
  msgstr ""
6245
 
6246
+ #: inc/emails/class-lp-email-instructor-accepted.php:29
6247
+ msgid "[{{site_title}}] Your request to become an instructor accepted"
6248
  msgstr ""
6249
 
6250
+ #: inc/emails/class-lp-email-instructor-accepted.php:30
6251
+ msgid "Become an instructor accepted"
6252
  msgstr ""
6253
 
6254
+ #: inc/emails/class-lp-email-instructor-denied.php:26
6255
+ msgid "Denied"
6256
  msgstr ""
6257
 
6258
+ #: inc/emails/class-lp-email-instructor-denied.php:27
6259
+ msgid "Become an instructor email denied."
6260
  msgstr ""
6261
 
6262
+ #: inc/emails/class-lp-email-instructor-denied.php:29
6263
+ msgid "[{{site_title}}] Your request to become an instructor denied"
6264
  msgstr ""
6265
 
6266
+ #: inc/emails/class-lp-email-instructor-denied.php:30
6267
+ msgid "Become an instructor denied"
6268
  msgstr ""
6269
 
6270
+ #: inc/emails/class-lp-email-new-course.php:29
6271
+ msgid "Email settings when a new course is submitted for review."
6272
  msgstr ""
6273
 
6274
+ #: inc/emails/class-lp-email-new-course.php:34
 
6275
  msgid ""
6276
+ "[{{site_title}}] New course has been submitted for review ({{course_name}})"
 
6277
  msgstr ""
6278
 
6279
+ #: inc/emails/class-lp-email-new-course.php:137
6280
+ #: inc/emails/class-lp-email.php:1002
6281
+ msgid "Recipient(s)"
6282
  msgstr ""
6283
 
6284
+ #: inc/emails/class-lp-email-new-course.php:141
6285
+ #: inc/emails/class-lp-email.php:1006
6286
+ #, php-format
6287
+ msgid "Email recipient(s) (separated by comma), default: <code>%s</code>."
6288
  msgstr ""
6289
 
6290
+ #: inc/emails/class-lp-email-new-course.php:158
6291
+ #: inc/emails/class-lp-email-published-course.php:132
6292
+ #: inc/emails/class-lp-email-rejected-course.php:129
6293
+ #: inc/emails/class-lp-email-updated-course.php:174
6294
+ #: inc/emails/class-lp-email-user-order-changed-status.php:146
6295
+ #: inc/emails/class-lp-email-user-order-completed.php:147
6296
+ #: inc/emails/class-lp-email.php:1023
6297
+ #, php-format
6298
+ msgid "Email subject, default: <code>%s</code>."
6299
  msgstr ""
6300
 
6301
+ #: inc/emails/class-lp-email-new-course.php:171
6302
+ #: inc/emails/class-lp-email-published-course.php:145
6303
+ #: inc/emails/class-lp-email-rejected-course.php:142
6304
+ #: inc/emails/class-lp-email-updated-course.php:187
6305
+ #: inc/emails/class-lp-email-user-order-changed-status.php:159
6306
+ #: inc/emails/class-lp-email-user-order-completed.php:160
6307
+ #: inc/emails/class-lp-email.php:1036
6308
+ msgid "Heading"
6309
  msgstr ""
6310
 
6311
+ #: inc/emails/class-lp-email-new-course.php:175
6312
+ #: inc/emails/class-lp-email-published-course.php:149
6313
+ #: inc/emails/class-lp-email-rejected-course.php:146
6314
+ #: inc/emails/class-lp-email-updated-course.php:191
6315
+ #: inc/emails/class-lp-email-user-order-changed-status.php:163
6316
+ #: inc/emails/class-lp-email-user-order-completed.php:164
6317
+ #: inc/emails/class-lp-email.php:1040
6318
+ #, php-format
6319
+ msgid "Email heading, default: <code>%s</code>."
6320
  msgstr ""
6321
 
6322
+ #: inc/emails/class-lp-email-new-order-admin.php:28
6323
+ msgid "Send email to admin when new order is placed."
6324
  msgstr ""
6325
 
6326
+ #: inc/emails/class-lp-email-new-order-admin.php:30
6327
+ #: inc/emails/class-lp-email-new-order-instructor.php:29
6328
+ msgid "New order placed on {{order_date}}"
6329
  msgstr ""
6330
 
6331
+ #: inc/emails/class-lp-email-new-order-admin.php:31
6332
+ #: inc/emails/class-lp-email-new-order-instructor.php:30
6333
+ msgid "New user order"
6334
  msgstr ""
6335
 
6336
+ #: inc/emails/class-lp-email-new-order-guest.php:30
6337
+ #: inc/emails/class-lp-email-new-order-user.php:30
6338
+ #: inc/emails/class-lp-email-processing-order-guest.php:30
6339
+ #: inc/emails/class-lp-email-processing-order-user.php:29
6340
+ msgid "Your order placed on {{order_date}}"
6341
  msgstr ""
6342
 
6343
+ #: inc/emails/class-lp-email-new-order-guest.php:31
6344
+ #: inc/emails/class-lp-email-new-order-user.php:31
6345
+ #: inc/emails/class-lp-email-processing-order-guest.php:31
6346
+ #: inc/emails/class-lp-email-processing-order-user.php:30
6347
+ msgid "Thank you for your order"
6348
  msgstr ""
6349
 
6350
+ #: inc/emails/class-lp-email-new-order-instructor.php:27
6351
+ msgid "Send email to course's instructor when user has purchased course."
6352
  msgstr ""
6353
 
6354
+ #: inc/emails/class-lp-email-new-order-user.php:28
6355
+ msgid "Send email to the user who has bought course."
6356
  msgstr ""
6357
 
6358
+ #: inc/emails/class-lp-email-processing-order-guest.php:28
6359
+ msgid ""
6360
+ "Send email to user who has purchased course as a Guest when the order is "
6361
+ "processing."
6362
  msgstr ""
6363
 
6364
+ #: inc/emails/class-lp-email-processing-order-user.php:27
6365
+ msgid "Send email to user who has bought course whe the order is processing."
6366
  msgstr ""
6367
 
6368
+ #: inc/emails/class-lp-email-published-course.php:28
6369
+ msgid "Approved course"
6370
  msgstr ""
6371
 
6372
+ #: inc/emails/class-lp-email-published-course.php:29
6373
+ msgid "Settings for email when a course is approved."
6374
  msgstr ""
6375
 
6376
+ #: inc/emails/class-lp-email-published-course.php:34
6377
+ msgid "[{{site_title}}] Your course {{course_name}} has been approved"
 
 
 
6378
  msgstr ""
6379
 
6380
+ #: inc/emails/class-lp-email-published-course.php:35
6381
+ msgid "Course approved"
6382
  msgstr ""
6383
 
6384
+ #: inc/emails/class-lp-email-rejected-course.php:28
6385
+ #: inc/emails/class-lp-email-rejected-course.php:35
6386
+ msgid "Rejected course"
6387
  msgstr ""
6388
 
6389
+ #: inc/emails/class-lp-email-rejected-course.php:29
6390
+ msgid "Settings for email when a course is rejected."
6391
  msgstr ""
6392
 
6393
+ #: inc/emails/class-lp-email-rejected-course.php:34
6394
+ msgid "[{{site_title}}] Your course {{course_name}} has been rejected"
 
 
 
6395
  msgstr ""
6396
 
6397
+ #: inc/emails/class-lp-email-updated-course.php:32
6398
+ msgid "Updated course"
6399
  msgstr ""
6400
 
6401
+ #: inc/emails/class-lp-email-updated-course.php:33
6402
+ msgid "Send this email to users have purchased when the course is updated."
6403
  msgstr ""
6404
 
6405
+ #: inc/emails/class-lp-email-updated-course.php:38
6406
+ msgid "[{{site_title}}] The course ({{course_name}}) has just been updated."
6407
  msgstr ""
6408
 
6409
+ #: inc/emails/class-lp-email-updated-course.php:39
6410
+ msgid "Update course"
6411
+ msgstr ""
6412
+
6413
+ #: inc/emails/class-lp-email-user-order-changed-status.php:26
6414
+ msgid "User order changed status"
6415
  msgstr ""
6416
 
6417
+ #: inc/emails/class-lp-email-user-order-changed-status.php:27
6418
+ msgid "Send email to user when the order status is changed"
6419
  msgstr ""
6420
 
6421
+ #: inc/emails/class-lp-email-user-order-changed-status.php:32
6422
+ msgid "Your order {{order_date}} status has just been changed"
6423
  msgstr ""
6424
 
6425
+ #: inc/emails/class-lp-email-user-order-changed-status.php:33
6426
+ msgid "Your order {{order_number}} status has just been changed"
6427
  msgstr ""
6428
 
6429
+ #: inc/emails/class-lp-email-user-order-completed.php:27
6430
+ msgid "User order completed"
6431
  msgstr ""
6432
 
6433
+ #: inc/emails/class-lp-email-user-order-completed.php:28
6434
+ msgid "Send email to user when the order is completed"
6435
  msgstr ""
6436
 
6437
+ #: inc/emails/class-lp-email-user-order-completed.php:33
6438
+ msgid "Your order {{order_date}} is completed"
6439
  msgstr ""
6440
 
6441
+ #: inc/emails/class-lp-email-user-order-completed.php:34
6442
+ msgid "Your order {{order_number}} is completed"
 
6443
  msgstr ""
6444
 
6445
+ #: inc/gateways/class-lp-gateway-abstract.php:244
6446
+ msgid "%s has been deprecated. Please use % instead of."
6447
  msgstr ""
6448
 
6449
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:92
6450
+ msgid "Make payment via Paypal."
6451
  msgstr ""
6452
 
6453
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:96
6454
+ msgid "Pay with Paypal"
6455
  msgstr ""
6456
 
6457
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:242
6458
+ msgid "Error: order ID and key were not found in \"custom\"."
6459
  msgstr ""
6460
 
6461
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:250
6462
+ #, php-format
6463
+ msgid "Error: Order Keys do not match %s and %s."
6464
  msgstr ""
6465
 
6466
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:381
6467
+ msgid "IPN payment completed"
6468
  msgstr ""
6469
 
6470
+ #: inc/libraries/wp-background-process.php:421
6471
+ #, php-format
6472
+ msgid "Every %d minutes"
 
 
6473
  msgstr ""
6474
 
6475
+ #: inc/libraries/meta-box/inc/core.php:39
6476
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:25
6477
+ #: inc/libraries/meta-box/inc/about/sections/tabs.php:12
6478
+ #: inc/libraries/meta-box/inc/about/sections/welcome.php:20
6479
+ msgid "Extensions"
6480
  msgstr ""
6481
 
6482
+ #: inc/libraries/meta-box/inc/field.php:398
6483
+ msgid "+ Add more"
 
6484
  msgstr ""
6485
 
6486
+ #: inc/libraries/meta-box/inc/validation.php:50
6487
+ msgid "Please correct the errors highlighted below and try again."
 
6488
  msgstr ""
6489
 
6490
+ #: inc/libraries/meta-box/inc/about/about.php:50
6491
+ msgid "About"
 
6492
  msgstr ""
6493
 
6494
+ #: inc/libraries/meta-box/inc/about/about.php:62
6495
+ #: inc/libraries/meta-box/inc/about/about.php:63
6496
+ msgid "Meta Box"
6497
  msgstr ""
6498
 
6499
+ #: inc/libraries/meta-box/inc/about/about.php:78
6500
+ msgid "Welcome to Meta Box"
6501
  msgstr ""
6502
 
6503
+ #: inc/libraries/meta-box/inc/about/about.php:157
6504
+ #, php-format
6505
+ msgid ""
6506
+ "Please rate <strong>Meta Box</strong> <a href=\"%1$s\" target=\"_blank"
6507
+ "\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target="
6508
+ "\"_blank\">WordPress.org</a> to help us spread the word. Thank you from the "
6509
+ "Meta Box team!"
6510
  msgstr ""
6511
 
6512
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:11
6513
+ msgid ""
6514
+ "Extend custom fields in WordPress well beyond what others would ever "
6515
+ "consider ordinary! Save over 70% with our extensions bundles."
6516
  msgstr ""
6517
 
6518
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:11
6519
+ msgid "View Bundles"
6520
  msgstr ""
6521
 
6522
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:19
6523
+ msgid ""
6524
+ "Drag and drop your custom fields into place without a single line of code."
6525
+ msgstr ""
6526
+
6527
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:23
6528
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:47
6529
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:59
6530
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:71
6531
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:83
6532
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:95
6533
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:107
6534
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:119
6535
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:131
6536
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:143
6537
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:215
6538
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:227
6539
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:239
6540
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:287
6541
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:299
6542
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:311
6543
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:323
6544
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:335
6545
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:23
6546
+ msgid "Learn More"
6547
+ msgstr ""
6548
+
6549
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:31
6550
+ msgid ""
6551
+ "Create and manage custom post types easily in WordPress with an easy-to-use "
6552
+ "interface."
6553
  msgstr ""
6554
 
6555
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:35
6556
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:155
6557
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:167
6558
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:179
6559
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:191
6560
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:203
6561
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:251
6562
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:263
6563
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:275
6564
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:347
6565
+ msgid "Free Download"
6566
  msgstr ""
6567
 
6568
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:43
6569
+ msgid ""
6570
+ "Create repeatable groups of custom fields for better appearance and "
6571
+ "structure."
6572
  msgstr ""
6573
 
6574
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:55
6575
+ msgid "Create a powerful settings page for your theme, plugin or website."
6576
  msgstr ""
6577
 
6578
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:67
6579
+ msgid ""
6580
+ "Control the visibility of meta boxes and fields or even HTML elements with "
6581
+ "ease."
6582
  msgstr ""
6583
 
6584
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:79
6585
+ msgid "Easily add custom fields to categories, tags or any custom taxonomy."
6586
  msgstr ""
6587
 
6588
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:91
6589
+ msgid ""
6590
+ "Add custom fields to user profile (user meta) quickly with simple syntax."
6591
  msgstr ""
6592
 
6593
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:103
6594
+ msgid ""
6595
+ "Create register, login and edit user profile forms in the frontend. Embed "
6596
+ "everywhere with shortcodes."
 
6597
  msgstr ""
6598
 
6599
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:115
 
6600
  msgid ""
6601
+ "Create frontend forms for users to submit custom content. Embed everywhere "
6602
+ "with shortcode."
6603
  msgstr ""
6604
 
6605
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:127
6606
+ msgid "Add as many custom fields as you want and organize them into tabs."
6607
+ msgstr ""
6608
+
6609
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:139
6610
  msgid ""
6611
+ "Save custom fields data to custom table instead of the default meta tables. "
6612
+ "Reduce database size and increase performance."
6613
  msgstr ""
6614
 
6615
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:151
6616
+ msgid "Pull all meta value from posts, terms into the WP REST API responses."
6617
  msgstr ""
6618
 
6619
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:163
6620
+ msgid ""
6621
+ "A lightweight WordPress plugin for creating many-to-many relationships "
6622
+ "between posts, terms and users."
6623
  msgstr ""
6624
 
6625
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:175
6626
+ msgid ""
6627
+ "Integrates Meta Box and FacetWP, makes custom fields searchable and "
6628
+ "filterable in the frontend."
6629
  msgstr ""
6630
 
6631
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:187
6632
+ msgid ""
6633
+ "Select and show custom fields created by the Meta Box plugin in the Beaver "
6634
+ "Themer field connection."
6635
  msgstr ""
6636
 
6637
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:199
6638
+ msgid ""
6639
+ "Add custom fields to comments in WordPress. Support all field types and "
6640
+ "options."
6641
  msgstr ""
6642
 
6643
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:211
6644
+ msgid ""
6645
+ "Track changes of custom fields with WordPress revision. Save, compare, "
6646
+ "restore the changes easily."
6647
  msgstr ""
6648
 
6649
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:223
6650
+ msgid ""
6651
+ "Automatically and instantly populate location data with the power of Google "
6652
+ "Maps Geolocation API."
6653
  msgstr ""
6654
 
6655
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:235
6656
+ msgid ""
6657
+ "Display custom fields in table columns in admin screens for All Posts "
6658
+ "(types)."
6659
  msgstr ""
6660
 
6661
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:247
6662
+ msgid ""
6663
+ "Add content of custom fields to Yoast SEO Content Analysis to have better/"
6664
+ "correct SEO score."
6665
  msgstr ""
6666
 
6667
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:259
6668
+ msgid ""
6669
+ "Limit the number of characters or words entered for text and textarea fields."
 
6670
  msgstr ""
6671
 
6672
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:271
6673
+ msgid ""
6674
+ "Automatically updates all Meta Box extensions within the WordPress Admin "
6675
+ "area."
6676
  msgstr ""
6677
 
6678
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:283
6679
+ msgid "Define custom meta boxes and custom fields easier with templates."
 
 
 
 
 
 
 
6680
  msgstr ""
6681
 
6682
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:295
6683
+ msgid "Display help information for fields using beautiful tooltips."
6684
  msgstr ""
6685
 
6686
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:307
6687
+ msgid "Toggle meta boxes by page template, post format or taxonomy using JS."
6688
  msgstr ""
6689
 
6690
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:319
6691
+ msgid "Display fields more beautiful by putting them into 12-columns grid."
6692
  msgstr ""
6693
 
6694
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:331
6695
+ msgid "Show or hide meta boxes whenever and for whomever you choose."
 
6696
  msgstr ""
6697
 
6698
+ #: inc/libraries/meta-box/inc/about/sections/extensions.php:343
6699
+ msgid ""
6700
+ "Create and manage custom taxonomies with an easy-to-use interface in "
6701
+ "WordPress."
6702
  msgstr ""
6703
 
6704
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:12
6705
+ msgid "Getting Started With Online Generator"
6706
  msgstr ""
6707
 
6708
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:13
6709
+ msgid ""
6710
+ "The fastest way to getting started with Meta Box is use our online generator "
6711
+ "to generate meta boxes with custom fields. It provides a friendly UI for you "
6712
+ "to create meta boxes and custom fields just by drag and drop fields."
6713
  msgstr ""
6714
 
6715
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:15
6716
+ msgid "online generator"
6717
  msgstr ""
6718
 
6719
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:17
6720
+ msgid "Go to Online Generator"
6721
  msgstr ""
6722
 
6723
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:21
6724
+ msgid "Understand The Basics"
6725
  msgstr ""
6726
 
6727
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:22
6728
+ msgid ""
6729
+ "Meta Box doesn't have any admin page for configuration or settings. Instead "
6730
+ "of that, it provides a very powerful API to speed up the process of creating "
6731
+ "meta boxes and custom fields. It might take you a little time at first, but "
6732
+ "then you'll love the way it work because it helps you do and customize "
6733
+ "almost everything."
6734
  msgstr ""
6735
 
6736
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:26
6737
+ msgid ""
6738
+ "Wanna see more features that transform your WordPress website into a "
6739
+ "powerful CMS? Check out some extensions below:"
 
 
6740
  msgstr ""
6741
 
6742
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:28
6743
+ msgid "Meta Box Group"
6744
  msgstr ""
6745
 
6746
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:29
6747
+ msgid "Meta Box Conditional Logic"
6748
  msgstr ""
6749
 
6750
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:30
6751
+ msgid "MB Settings Page"
 
 
6752
  msgstr ""
6753
 
6754
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:31
6755
+ msgid "MB Term Meta"
 
 
6756
  msgstr ""
6757
 
6758
+ #: inc/libraries/meta-box/inc/about/sections/getting-started.php:33
6759
+ msgid "More Extensions"
 
 
6760
  msgstr ""
6761
 
6762
+ #: inc/libraries/meta-box/inc/about/sections/newsletter.php:11
6763
+ msgid "Meta Box Newsletter"
 
 
6764
  msgstr ""
6765
 
6766
+ #: inc/libraries/meta-box/inc/about/sections/newsletter.php:13
6767
+ msgid ""
6768
+ "Want to learn how to use Meta Box to its full potential? Sign up to get "
6769
+ "valuable tips and resources. We will never spam you."
6770
  msgstr ""
6771
 
6772
+ #: inc/libraries/meta-box/inc/about/sections/newsletter.php:15
6773
+ msgid "Subscribe"
 
 
6774
  msgstr ""
6775
 
6776
+ #: inc/libraries/meta-box/inc/about/sections/support.php:18
6777
+ #, php-format
6778
+ msgid ""
6779
+ "Still need help with Meta Box? We offer excellent support for you. But don't "
6780
+ "forget to check our <a href=\"%s\">documentation</a> first."
6781
  msgstr ""
6782
 
6783
+ #: inc/libraries/meta-box/inc/about/sections/support.php:23
6784
+ msgid "Free Support"
 
 
6785
  msgstr ""
6786
 
6787
+ #: inc/libraries/meta-box/inc/about/sections/support.php:24
6788
+ msgid ""
6789
+ "If you have any question about how to use the plugin, please open a new "
6790
+ "topic on WordPress.org support forum or open a new issue on Github "
6791
+ "(preferable). We will try to answer as soon as we can."
6792
  msgstr ""
6793
 
6794
+ #: inc/libraries/meta-box/inc/about/sections/support.php:25
6795
+ msgid "Go to Github"
6796
  msgstr ""
6797
 
6798
+ #: inc/libraries/meta-box/inc/about/sections/support.php:26
6799
+ msgid "Go to WordPress.org"
6800
  msgstr ""
6801
 
6802
+ #: inc/libraries/meta-box/inc/about/sections/support.php:30
6803
+ msgid "Premium Support"
 
6804
  msgstr ""
6805
 
6806
+ #: inc/libraries/meta-box/inc/about/sections/support.php:31
6807
+ msgid ""
6808
+ "For users that have bought premium extensions, the support is provided in "
6809
+ "the Meta Box Support forum. Any question will be answered with technical "
6810
+ "details within 24 hours."
6811
  msgstr ""
6812
 
6813
+ #: inc/libraries/meta-box/inc/about/sections/support.php:32
6814
+ msgid "Go to support forum"
 
6815
  msgstr ""
6816
 
6817
+ #: inc/libraries/meta-box/inc/about/sections/tabs.php:10
6818
+ msgid "Getting Started"
6819
  msgstr ""
6820
 
6821
+ #: inc/libraries/meta-box/inc/about/sections/tabs.php:13
6822
+ #: inc/libraries/meta-box/inc/about/sections/welcome.php:21
6823
+ msgid "Support"
 
6824
  msgstr ""
6825
 
6826
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:10
6827
+ msgid "Upgrade to Meta Box PRO"
6828
  msgstr ""
6829
 
6830
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:11
6831
+ msgid "Please upgrade to the PRO plan to unlock more awesome features."
6832
  msgstr ""
6833
 
6834
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:13
6835
+ msgid ""
6836
+ "Create custom fields with drag-n-drop interface - no coding knowledge "
6837
+ "required!"
6838
  msgstr ""
6839
 
6840
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:14
6841
+ msgid "Add custom fields to taxonomies or user profile."
 
6842
  msgstr ""
6843
 
6844
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:15
6845
+ msgid "Create custom settings pages."
 
6846
  msgstr ""
6847
 
6848
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:16
6849
+ msgid "Create frontend submission forms."
6850
  msgstr ""
6851
 
6852
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:17
6853
+ msgid "Save custom fields in custom tables."
6854
  msgstr ""
6855
 
6856
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:18
6857
+ msgid "And much more!"
 
6858
  msgstr ""
6859
 
6860
+ #: inc/libraries/meta-box/inc/about/sections/upgrade.php:20
6861
+ msgid "Get Meta Box PRO now"
 
6862
  msgstr ""
6863
 
6864
+ #: inc/libraries/meta-box/inc/about/sections/welcome.php:13
6865
+ #, php-format
6866
+ msgid "Welcome to %s"
6867
  msgstr ""
6868
 
6869
+ #: inc/libraries/meta-box/inc/about/sections/welcome.php:16
6870
+ msgid ""
6871
+ "Meta Box is a free Gutenberg and GDPR-compatible WordPress custom fields "
6872
+ "plugin and framework that makes quick work of customizing a website with—you "
6873
+ "guessed it—meta boxes and custom fields in WordPress. Follow the instruction "
6874
+ "below to get started!"
6875
  msgstr ""
6876
 
6877
+ #: inc/libraries/meta-box/inc/fields/background.php:64
6878
+ msgid "Background Image"
 
 
6879
  msgstr ""
6880
 
6881
+ #: inc/libraries/meta-box/inc/fields/background.php:78
6882
+ msgid "-- Background Repeat --"
6883
  msgstr ""
6884
 
6885
+ #: inc/libraries/meta-box/inc/fields/background.php:80
6886
+ msgid "No Repeat"
 
6887
  msgstr ""
6888
 
6889
+ #: inc/libraries/meta-box/inc/fields/background.php:81
6890
+ msgid "Repeat All"
6891
  msgstr ""
6892
 
6893
+ #: inc/libraries/meta-box/inc/fields/background.php:82
6894
+ msgid "Repeat Horizontally"
6895
  msgstr ""
6896
 
6897
+ #: inc/libraries/meta-box/inc/fields/background.php:83
6898
+ msgid "Repeat Vertically"
6899
  msgstr ""
6900
 
6901
+ #: inc/libraries/meta-box/inc/fields/background.php:84
6902
+ #: inc/libraries/meta-box/inc/fields/background.php:122
6903
+ #: inc/libraries/meta-box/inc/fields/background.php:136
6904
+ msgid "Inherit"
6905
  msgstr ""
6906
 
6907
+ #: inc/libraries/meta-box/inc/fields/background.php:96
6908
+ msgid "-- Background Position --"
 
6909
  msgstr ""
6910
 
6911
+ #: inc/libraries/meta-box/inc/fields/background.php:98
6912
+ msgid "Top Left"
 
6913
  msgstr ""
6914
 
6915
+ #: inc/libraries/meta-box/inc/fields/background.php:99
6916
+ msgid "Top Center"
 
6917
  msgstr ""
6918
 
6919
+ #: inc/libraries/meta-box/inc/fields/background.php:100
6920
+ msgid "Top Right"
6921
  msgstr ""
6922
 
6923
+ #: inc/libraries/meta-box/inc/fields/background.php:101
6924
+ msgid "Center Left"
6925
  msgstr ""
6926
 
6927
+ #: inc/libraries/meta-box/inc/fields/background.php:102
6928
+ msgid "Center Center"
6929
  msgstr ""
6930
 
6931
+ #: inc/libraries/meta-box/inc/fields/background.php:103
6932
+ msgid "Center Right"
6933
  msgstr ""
6934
 
6935
+ #: inc/libraries/meta-box/inc/fields/background.php:104
6936
+ msgid "Bottom Left"
6937
  msgstr ""
6938
 
6939
+ #: inc/libraries/meta-box/inc/fields/background.php:105
6940
+ msgid "Bottom Center"
6941
  msgstr ""
6942
 
6943
+ #: inc/libraries/meta-box/inc/fields/background.php:106
6944
+ msgid "Bottom Right"
 
 
6945
  msgstr ""
6946
 
6947
+ #: inc/libraries/meta-box/inc/fields/background.php:118
6948
+ msgid "-- Background Attachment --"
 
 
6949
  msgstr ""
6950
 
6951
+ #: inc/libraries/meta-box/inc/fields/background.php:120
6952
+ msgid "Fixed"
 
 
 
6953
  msgstr ""
6954
 
6955
+ #: inc/libraries/meta-box/inc/fields/background.php:121
6956
+ msgid "Scroll"
6957
+ msgstr ""
 
 
 
 
 
6958
 
6959
+ #: inc/libraries/meta-box/inc/fields/background.php:134
6960
+ msgid "-- Background Size --"
6961
  msgstr ""
6962
 
6963
+ #: inc/libraries/meta-box/inc/fields/background.php:137
6964
+ msgid "Cover"
6965
  msgstr ""
6966
 
6967
+ #: inc/libraries/meta-box/inc/fields/background.php:138
6968
+ msgid "Contain"
6969
  msgstr ""
6970
 
6971
+ #: inc/libraries/meta-box/inc/fields/button.php:34
6972
+ msgid "Click me"
6973
  msgstr ""
6974
 
6975
+ #: inc/libraries/meta-box/inc/fields/file-input.php:23
6976
+ msgid "Select File"
6977
  msgstr ""
6978
 
6979
+ #: inc/libraries/meta-box/inc/fields/file.php:24
6980
+ #, php-format
6981
+ msgid "You may only upload maximum %d file"
6982
  msgstr ""
6983
 
6984
+ #: inc/libraries/meta-box/inc/fields/file.php:26
6985
+ #, php-format
6986
+ msgid "You may only upload maximum %d files"
6987
  msgstr ""
6988
 
6989
+ #: inc/libraries/meta-box/inc/fields/file.php:57
6990
+ msgid "Error: Cannot delete file"
6991
  msgstr ""
6992
 
6993
+ #: inc/libraries/meta-box/inc/fields/file.php:70
6994
+ msgctxt "file upload"
6995
+ msgid "+ Add new file"
6996
  msgstr ""
6997
 
6998
+ #: inc/libraries/meta-box/inc/fields/file.php:125
6999
+ msgctxt "file upload"
7000
+ msgid "Delete"
7001
  msgstr ""
7002
 
7003
+ #: inc/libraries/meta-box/inc/fields/file.php:126
7004
+ msgctxt "file upload"
7005
+ msgid "Edit"
 
7006
  msgstr ""
7007
 
7008
+ #: inc/libraries/meta-box/inc/fields/input-list.php:92
7009
+ msgid "Select All / None"
 
7010
  msgstr ""
7011
 
7012
+ #: inc/libraries/meta-box/inc/fields/key-value.php:134
7013
+ msgid "Key"
 
7014
  msgstr ""
7015
 
7016
+ #: inc/libraries/meta-box/inc/fields/key-value.php:135
7017
+ msgid "Value"
 
7018
  msgstr ""
7019
 
7020
+ #: inc/libraries/meta-box/inc/fields/map.php:87
7021
+ #: inc/libraries/meta-box/inc/fields/osm.php:60
7022
+ msgid "Find Address"
7023
  msgstr ""
7024
 
7025
+ #: inc/libraries/meta-box/inc/fields/media.php:27
7026
+ msgctxt "media"
7027
+ msgid "+ Add Media"
 
 
7028
  msgstr ""
7029
 
7030
+ #: inc/libraries/meta-box/inc/fields/media.php:28
7031
+ msgctxt "media"
7032
+ msgid " file"
7033
  msgstr ""
7034
 
7035
+ #: inc/libraries/meta-box/inc/fields/media.php:29
7036
+ msgctxt "media"
7037
+ msgid " files"
7038
  msgstr ""
7039
 
7040
+ #: inc/libraries/meta-box/inc/fields/media.php:30
7041
+ msgctxt "media"
7042
+ msgid "Remove"
7043
  msgstr ""
7044
 
7045
+ #: inc/libraries/meta-box/inc/fields/media.php:31
7046
+ msgctxt "media"
7047
+ msgid "Edit"
7048
  msgstr ""
7049
 
7050
+ #: inc/libraries/meta-box/inc/fields/media.php:32
7051
+ msgctxt "media"
7052
+ msgid "View"
 
7053
  msgstr ""
7054
 
7055
+ #: inc/libraries/meta-box/inc/fields/media.php:33
7056
+ msgctxt "media"
7057
+ msgid "No Title"
 
7058
  msgstr ""
7059
 
7060
+ #: inc/libraries/meta-box/inc/fields/media.php:36
7061
+ msgctxt "media"
7062
+ msgid "Select Files"
7063
  msgstr ""
7064
 
7065
+ #: inc/libraries/meta-box/inc/fields/media.php:37
7066
+ msgctxt "media"
7067
+ msgid "or"
7068
  msgstr ""
7069
 
7070
+ #: inc/libraries/meta-box/inc/fields/media.php:38
7071
+ msgctxt "media"
7072
+ msgid "Drop files here to upload"
7073
  msgstr ""
7074
 
7075
+ #: inc/libraries/meta-box/inc/fields/oembed.php:24
7076
+ msgid "Embed HTML not available."
7077
  msgstr ""
7078
 
7079
+ #: inc/libraries/meta-box/inc/fields/post.php:35
7080
+ msgid "Select a post"
 
 
 
7081
  msgstr ""
7082
 
7083
+ #: inc/libraries/meta-box/inc/fields/post.php:41
7084
+ #: inc/libraries/meta-box/inc/fields/taxonomy.php:53
7085
  #, php-format
7086
+ msgid "Select a %s"
 
 
7087
  msgstr ""
7088
 
7089
+ #: inc/libraries/meta-box/inc/fields/select-advanced.php:47
7090
+ msgid "Select an item"
 
7091
  msgstr ""
7092
 
7093
+ #: inc/libraries/meta-box/inc/fields/select.php:92
7094
+ msgid "None"
 
 
7095
  msgstr ""
7096
 
7097
+ #: inc/libraries/meta-box/inc/fields/sidebar.php:23
7098
+ msgid "Select a sidebar"
7099
  msgstr ""
7100
 
7101
+ #: inc/libraries/meta-box/inc/fields/switch.php:93
7102
+ msgid "On"
7103
  msgstr ""
7104
 
7105
+ #: inc/libraries/meta-box/inc/fields/switch.php:94
7106
+ msgid "Off"
 
 
 
7107
  msgstr ""
7108
 
7109
+ #: inc/libraries/meta-box/inc/fields/taxonomy.php:47
7110
+ msgid "Select a term"
 
 
 
7111
  msgstr ""
7112
 
7113
+ #: inc/libraries/meta-box/inc/fields/thickbox-image.php:55
7114
+ msgctxt "image upload"
7115
+ msgid "Upload Images"
 
 
7116
  msgstr ""
7117
 
7118
+ #: inc/libraries/meta-box/inc/fields/user.php:24
7119
+ msgid "Select an user"
 
 
 
7120
  msgstr ""
7121
 
7122
+ #: inc/order/class-lp-order.php:186 inc/order/class-lp-order.php:205
7123
+ #: templates/checkout/order-received.php:25
7124
+ msgid "Thank you. Your order has been received."
 
 
7125
  msgstr ""
7126
 
7127
+ #: inc/order/class-lp-order.php:377
7128
+ msgid "Removed"
 
 
 
7129
  msgstr ""
7130
 
7131
+ #: inc/order/class-lp-order.php:494
7132
+ #, php-format
7133
+ msgid "%s (Guest)"
7134
  msgstr ""
7135
 
7136
+ #: inc/order/class-lp-order.php:981
7137
+ #, php-format
7138
+ msgctxt "full name"
7139
+ msgid "%1$s"
7140
  msgstr ""
7141
 
7142
+ #: inc/order/class-lp-order.php:1022
7143
+ msgid "No user assigned"
7144
  msgstr ""
7145
 
7146
+ #: inc/order/class-lp-order.php:1098
7147
+ msgid "Order on"
7148
+ msgstr ""
7149
+
7150
+ #: inc/order/lp-order-functions.php:67
7151
+ msgid "Invalid order ID when updating."
7152
+ msgstr ""
7153
+
7154
+ #: inc/order/lp-order-functions.php:705
7155
+ msgctxt "Order status"
7156
+ msgid "Pending Payment"
7157
  msgstr ""
7158
 
7159
+ #: inc/order/lp-order-functions.php:710
7160
+ #, php-format
7161
+ msgid "Pending Payment <span class=\"count\">(%s)</span>"
7162
+ msgid_plural "Pending Payment <span class=\"count\">(%s)</span>"
7163
+ msgstr[0] ""
7164
+ msgstr[1] ""
7165
+
7166
+ #: inc/order/lp-order-functions.php:713
7167
+ msgctxt "Order status"
7168
+ msgid "Processing"
7169
  msgstr ""
7170
 
7171
+ #: inc/order/lp-order-functions.php:718
7172
+ #, php-format
7173
+ msgid "Processing <span class=\"count\">(%s)</span>"
7174
+ msgid_plural "Processing <span class=\"count\">(%s)</span>"
7175
+ msgstr[0] ""
7176
+ msgstr[1] ""
7177
 
7178
+ #: inc/order/lp-order-functions.php:721
7179
+ msgctxt "Order status"
7180
+ msgid "Completed"
7181
  msgstr ""
7182
 
7183
+ #: inc/order/lp-order-functions.php:726
7184
+ #, php-format
7185
+ msgid "Completed <span class=\"count\">(%s)</span>"
7186
+ msgid_plural "Completed <span class=\"count\">(%s)</span>"
7187
+ msgstr[0] ""
7188
+ msgstr[1] ""
7189
 
7190
+ #: inc/order/lp-order-functions.php:729
7191
+ msgctxt "Order status"
7192
+ msgid "Cancelled"
7193
  msgstr ""
7194
 
7195
+ #: inc/order/lp-order-functions.php:734
7196
+ #, php-format
7197
+ msgid "Cancelled <span class=\"count\">(%s)</span>"
7198
+ msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
7199
+ msgstr[0] ""
7200
+ msgstr[1] ""
7201
 
7202
+ #: inc/order/lp-order-functions.php:737
7203
+ msgctxt "Order status"
7204
+ msgid "Failed"
7205
  msgstr ""
7206
 
7207
+ #: inc/order/lp-order-functions.php:742
7208
+ #, php-format
7209
+ msgid "Failed <span class=\"count\">(%s)</span>"
7210
+ msgid_plural "Failed <span class=\"count\">(%s)</span>"
7211
+ msgstr[0] ""
7212
+ msgstr[1] ""
7213
+
7214
+ #: inc/order/lp-order-functions.php:751
7215
+ msgid ""
7216
+ "Order received in case user buy a course but doesn't finalise the order."
7217
  msgstr ""
7218
 
7219
+ #: inc/order/lp-order-functions.php:752
7220
+ msgid "Payment received and the order is awaiting fulfillment."
7221
  msgstr ""
7222
 
7223
+ #: inc/order/lp-order-functions.php:753
7224
+ msgid "Order fulfilled and complete."
7225
  msgstr ""
7226
 
7227
+ #: inc/order/lp-order-functions.php:754
7228
+ msgid "The order is cancelled by an admin or the customer."
7229
  msgstr ""
7230
 
7231
+ #: inc/order/lp-order-functions.php:792
7232
+ #, php-format
7233
+ msgid "Order number <strong>%s</strong> not found"
7234
  msgstr ""
7235
 
7236
+ #: inc/order/lp-order-functions.php:795
7237
+ msgid "Order cancelled by customer"
7238
  msgstr ""
7239
 
7240
+ #: inc/order/lp-order-functions.php:798
7241
+ #, php-format
7242
+ msgid "Order number <strong>%s</strong> has been cancelled"
 
7243
  msgstr ""
7244
 
7245
+ #: inc/order/lp-order-functions.php:801
7246
+ #, php-format
7247
+ msgid "Order number <strong>%s</strong> can not be cancelled"
 
7248
  msgstr ""
7249
 
7250
+ #: inc/order/lp-order-functions.php:839
7251
+ #, php-format
7252
+ msgid "You have enrolled in this course. <a href=\"%s\">Order details</a>"
7253
  msgstr ""
7254
 
7255
+ #: inc/question/class-lp-question-true-or-false.php:52
7256
+ msgid "True"
 
 
7257
  msgstr ""
7258
 
7259
+ #: inc/question/class-lp-question-true-or-false.php:58
7260
+ msgid "False"
7261
  msgstr ""
7262
 
7263
+ #: inc/question/class-lp-question.php:311
7264
+ msgid "True Or False"
 
7265
  msgstr ""
7266
 
7267
+ #: inc/question/class-lp-question.php:312
7268
+ msgid "Multi Choice"
7269
  msgstr ""
7270
 
7271
+ #: inc/question/class-lp-question.php:313
7272
+ msgid "Single Choice"
 
7273
  msgstr ""
7274
 
7275
+ #: inc/question/class-lp-question.php:612
7276
+ msgid "First option"
7277
  msgstr ""
7278
 
7279
+ #: inc/question/class-lp-question.php:617
7280
+ msgid "Second option"
 
7281
  msgstr ""
7282
 
7283
+ #: inc/question/class-lp-question.php:622
7284
+ msgid "Third option"
 
7285
  msgstr ""
7286
 
7287
+ #: inc/quiz/class-lp-quiz-factory.php:513
7288
+ msgid "Something went wrong!"
 
7289
  msgstr ""
7290
 
7291
+ #: inc/quiz/class-lp-quiz.php:438 templates/content-quiz/intro.php:25
7292
+ #: templates/content-quiz/progress.php:47
7293
+ msgid "Unlimited"
7294
  msgstr ""
7295
 
7296
+ #: inc/quiz/class-lp-quiz.php:493
7297
+ msgid "Finish quiz"
7298
  msgstr ""
7299
 
7300
+ #: inc/quiz/class-lp-quiz.php:494
7301
+ msgid "Are you sure you want to finish this quiz?"
7302
  msgstr ""
7303
 
7304
+ #: inc/quiz/class-lp-quiz.php:497
7305
+ msgid "Retake quiz"
 
7306
  msgstr ""
7307
 
7308
+ #: inc/quiz/class-lp-quiz.php:498
7309
+ msgid "Are you sure you want to retake this quiz?"
7310
  msgstr ""
7311
 
7312
+ #: inc/quiz/class-lp-quiz.php:501
7313
+ msgid "Time's up!"
7314
  msgstr ""
7315
 
7316
+ #: inc/quiz/class-lp-quiz.php:502
7317
+ msgid "The time is up! Your quiz will automate come to finish"
 
 
7318
  msgstr ""
7319
 
7320
+ #: inc/quiz/class-lp-quiz.php:504
7321
+ msgid "Congrats! You have finished this quiz"
 
 
7322
  msgstr ""
7323
 
7324
+ #: inc/quiz/class-lp-quiz.php:505
7325
+ msgid ""
7326
+ "Congrats! You have re-taken this quiz. Please wait a moment and the page "
7327
+ "will reload"
7328
  msgstr ""
7329
 
7330
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
7331
+ #, php-format
7332
+ msgid "Please %s to send your request!"
7333
  msgstr ""
7334
 
7335
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
7336
+ msgctxt "become-teacher-form"
7337
+ msgid "login"
7338
  msgstr ""
7339
 
7340
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:42
7341
+ msgid "Your have already sent the request. Please wait for approvement."
7342
  msgstr ""
7343
 
7344
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:44
7345
+ msgid "You are a teacher!"
7346
  msgstr ""
7347
 
7348
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:103
7349
+ msgid "Please login to fill in this form."
7350
  msgstr ""
7351
 
7352
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:106
7353
+ msgid "You are a teacher now."
 
7354
  msgstr ""
7355
 
7356
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:112
7357
+ msgid "Your role is allowed to create a course."
 
7358
  msgstr ""
7359
 
7360
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:122
7361
+ msgid "Fill in your information and send us to become a teacher."
7362
  msgstr ""
7363
 
7364
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:123
7365
+ #: templates/global/become-teacher-form/button.php:18
7366
+ msgid "Submit"
7367
  msgstr ""
7368
 
7369
+ #: inc/shortcodes/class-lp-shortcode-course-curriculum.php:44
7370
+ msgid "Invalid course."
7371
  msgstr ""
7372
 
7373
+ #: inc/shortcodes/class-lp-shortcode-login-form.php:39
7374
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:41
7375
  #, php-format
7376
+ msgid "Your are logged in as %s. <a href=\"%s\">Log out</a>?"
7377
  msgstr ""
7378
 
7379
+ #: inc/shortcodes/class-lp-shortcode-login-form.php:61
7380
+ #: inc/shortcodes/class-lp-shortcode-login-form.php:63
7381
+ msgid "Username or email"
7382
  msgstr ""
7383
 
7384
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:86
7385
+ msgid ""
7386
+ "The password should be at least twelve characters long. To make it stronger, "
7387
+ "use upper and lower case letters, numbers, and symbols like ! \" ? $ % ^ & )"
7388
  msgstr ""
7389
 
7390
+ #: inc/updates/_update-from-0.9.php:1206
7391
+ msgctxt "Permalink Slug"
7392
+ msgid "lesson-tag"
7393
  msgstr ""
7394
 
7395
+ #: inc/updates/_update-from-0.9.php:1228
7396
+ msgctxt "Permalink Slug"
7397
+ msgid "question-tag"
7398
  msgstr ""
7399
 
7400
+ #: inc/user/abstract-lp-user.php:331
7401
+ msgid "You cannot start a quiz in preview mode."
7402
  msgstr ""
7403
 
7404
+ #: inc/user/abstract-lp-user.php:338
7405
+ msgid "Course does not exist or does not contain the quiz"
7406
  msgstr ""
7407
 
7408
+ #: inc/user/abstract-lp-user.php:345
7409
+ msgid "You have already finished the course of this quiz"
 
7410
  msgstr ""
7411
 
7412
+ #: inc/user/abstract-lp-user.php:349
7413
+ msgid "Please enroll course before starting quiz."
7414
  msgstr ""
7415
 
7416
+ #: inc/user/abstract-lp-user.php:354
7417
+ msgid "User has started or completed quiz"
7418
  msgstr ""
7419
 
7420
+ #: inc/user/abstract-lp-user.php:359
7421
+ msgid "You have to login for starting quiz."
7422
  msgstr ""
7423
 
7424
+ #: inc/user/abstract-lp-user.php:462
7425
+ msgid "Course is not exists or does not contain the quiz"
7426
  msgstr ""
7427
 
7428
+ #: inc/user/abstract-lp-user.php:467
7429
+ msgid "User has already finished course of this quiz"
7430
  msgstr ""
7431
 
7432
+ #: inc/user/abstract-lp-user.php:473
7433
+ msgid "User has completed quiz"
7434
  msgstr ""
7435
 
7436
+ #: inc/user/abstract-lp-user.php:515
7437
+ msgid "Course does not exist or does not contain the quiz."
7438
  msgstr ""
7439
 
7440
+ #: inc/user/abstract-lp-user.php:520
7441
+ msgid "You can not redo a quiz in a finished course."
7442
  msgstr ""
7443
 
7444
+ #: inc/user/abstract-lp-user.php:526
7445
  #, php-format
7446
+ msgid "%s::%s - User has not completed quiz."
 
 
 
 
 
 
7447
  msgstr ""
7448
 
7449
+ #: inc/user/abstract-lp-user.php:1031
7450
+ msgid "You can not hint question."
7451
  msgstr ""
7452
 
7453
+ #: inc/user/abstract-lp-user.php:1283 inc/user/abstract-lp-user.php:1702
7454
+ #: inc/user/abstract-lp-user.php:1714
7455
+ #, php-format
7456
+ msgid "The role %s for user doesn't exist"
7457
  msgstr ""
7458
 
7459
+ #: inc/user/abstract-lp-user.php:1964
7460
+ msgid "You can not complete a preview lesson."
7461
  msgstr ""
7462
 
7463
+ #: inc/user/abstract-lp-user.php:1970
7464
+ msgid "You have to enroll course to complete lesson."
7465
  msgstr ""
7466
 
7467
+ #: inc/user/abstract-lp-user.php:1981
7468
+ msgid "You have already completed this lesson."
7469
  msgstr ""
7470
 
7471
+ #: inc/user/abstract-lp-user.php:2407 inc/user/abstract-lp-user.php:2411
7472
+ msgid "Failed to enroll course."
7473
  msgstr ""
7474
 
7475
+ #: inc/user/abstract-lp-user.php:2415
7476
+ msgid "Please login to enroll course."
7477
  msgstr ""
7478
 
7479
+ #: inc/user/class-lp-profile.php:84
7480
+ msgid "Account information updated successful."
7481
  msgstr ""
7482
 
7483
+ #: inc/user/class-lp-profile.php:85
7484
+ msgid "Account avatar updated successful."
 
7485
  msgstr ""
7486
 
7487
+ #: inc/user/class-lp-profile.php:86
7488
+ msgid "Password updated successful."
7489
  msgstr ""
7490
 
7491
+ #: inc/user/class-lp-profile.php:87
7492
+ msgid "Account publicity updated successful."
 
7493
  msgstr ""
7494
 
7495
+ #: inc/user/class-lp-profile.php:849
7496
+ msgid "Not enrolled"
 
 
7497
  msgstr ""
7498
 
7499
+ #: inc/user/class-lp-user-factory.php:363
7500
+ msgid "Every 3 Minutes"
7501
  msgstr ""
7502
 
7503
+ #: inc/user/lp-user-functions.php:168
7504
+ msgctxt "User role"
7505
+ msgid "LP Instructor"
7506
  msgstr ""
7507
 
7508
+ #: inc/user/lp-user-functions.php:388
7509
+ msgid "Want to become an instructor?"
7510
  msgstr ""
7511
 
7512
+ #: inc/user/lp-user-functions.php:920
7513
+ msgid "Please login to enroll this course"
7514
  msgstr ""
7515
 
7516
+ #: inc/user/lp-user-functions.php:938
7517
+ msgid "You have already finished course"
7518
  msgstr ""
7519
 
7520
+ #: inc/user/lp-user-functions.php:941
7521
+ msgid "You have already enrolled in this course"
 
7522
  msgstr ""
7523
 
7524
+ #: inc/user/lp-user-functions.php:1234
7525
+ msgid "Old password incorrect!"
 
7526
  msgstr ""
7527
 
7528
+ #: inc/user/lp-user-functions.php:1241
7529
+ msgid "Confirmation password incorrect!"
 
7530
  msgstr ""
7531
 
7532
+ #: inc/user-item/class-lp-user-item-quiz.php:116
7533
+ msgid "Not Started"
7534
  msgstr ""
7535
 
7536
+ #: inc/user-item/class-lp-user-item-quiz.php:265
7537
+ msgid "passed"
 
 
7538
  msgstr ""
7539
 
7540
+ #: inc/user-item/class-lp-user-item-quiz.php:265
7541
+ msgid "failed"
 
7542
  msgstr ""
7543
 
7544
+ #: inc/user-item/class-lp-user-item-quiz.php:458
7545
+ msgid "Check question has reached limit."
 
7546
  msgstr ""
7547
 
7548
+ #: inc/user-item/class-lp-user-item-quiz.php:460
7549
+ msgid "You have already checked this question."
7550
  msgstr ""
7551
 
7552
+ #: inc/user-item/class-lp-user-item.php:559
7553
+ #: inc/user-item/class-lp-user-item.php:570
7554
+ msgid "Not Enrolled"
7555
  msgstr ""
7556
 
7557
+ #: inc/widgets/course-attributes/course-attributes.php:14
7558
+ msgid "Course attributes"
7559
  msgstr ""
7560
 
7561
+ #: inc/widgets/course-filters/course-filters.php:14
7562
+ msgid "Course filters"
 
 
7563
  msgstr ""
7564
 
7565
+ #: inc/widgets/course-filters/course-filters.php:17
7566
+ msgid "Filter by"
7567
  msgstr ""
7568
 
7569
+ #: inc/widgets/course-filters/course-filters.php:24
7570
+ msgid "Attribute operation"
7571
  msgstr ""
7572
 
7573
+ #: inc/widgets/course-filters/course-filters.php:29
7574
+ #: inc/widgets/course-filters/course-filters.php:39
7575
+ msgid "And"
7576
  msgstr ""
7577
 
7578
+ #: inc/widgets/course-filters/course-filters.php:30
7579
+ #: inc/widgets/course-filters/course-filters.php:40
7580
+ msgid "Or"
7581
  msgstr ""
7582
 
7583
+ #: inc/widgets/course-filters/course-filters.php:34
7584
+ msgid "Value operation"
7585
  msgstr ""
7586
 
7587
+ #: inc/widgets/course-filters/course-filters.php:44
7588
+ msgid "Ajax filter"
7589
  msgstr ""
7590
 
7591
+ #: inc/widgets/course-filters/course-filters.php:48
7592
+ msgid "Use ajax to fetch content while filtering"
7593
  msgstr ""
7594
 
7595
+ #: inc/widgets/course-filters/course-filters.php:51
7596
+ msgid "Button filter"
7597
  msgstr ""
7598
 
7599
+ #: inc/widgets/course-filters/course-filters.php:55
7600
+ msgid "If checked, user has to click this button to start filtering"
7601
  msgstr ""
7602
 
7603
+ #: inc/widgets/course-filters/tmpl/default.php:83
7604
+ msgid "Filter"
 
 
7605
  msgstr ""
7606
 
7607
+ #: inc/widgets/course-info/course-info.php:49
7608
+ msgid "Course Info"
7609
  msgstr ""
7610
 
7611
+ #: inc/widgets/course-info/course-info.php:52
7612
+ #: inc/widgets/course-progress/course-progress.php:52
7613
+ #: inc/widgets/featured-courses/featured-courses.php:95
7614
+ #: inc/widgets/popular-courses/popular-courses.php:96
7615
+ #: inc/widgets/recent-courses/recent-courses.php:96
7616
+ msgid "CSS Class"
7617
  msgstr ""
7618
 
7619
+ #: inc/widgets/course-progress/course-progress.php:49
7620
+ msgid "Course Progress"
7621
  msgstr ""
7622
 
7623
+ #: inc/widgets/featured-courses/featured-courses.php:48
7624
+ msgid "Featured Courses"
7625
  msgstr ""
7626
 
7627
+ #: inc/widgets/featured-courses/featured-courses.php:51
7628
+ #: inc/widgets/popular-courses/popular-courses.php:52
7629
+ #: inc/widgets/recent-courses/recent-courses.php:52
7630
+ msgid "Show teacher"
 
7631
  msgstr ""
7632
 
7633
+ #: inc/widgets/featured-courses/featured-courses.php:57
7634
+ #: inc/widgets/popular-courses/popular-courses.php:58
7635
+ #: inc/widgets/recent-courses/recent-courses.php:58
7636
+ msgid "Show lesson"
7637
  msgstr ""
7638
 
7639
+ #: inc/widgets/featured-courses/featured-courses.php:63
7640
+ #: inc/widgets/popular-courses/popular-courses.php:64
7641
+ #: inc/widgets/recent-courses/recent-courses.php:64
7642
+ msgid "Show Thumbnail"
7643
  msgstr ""
7644
+
7645
+ #: inc/widgets/featured-courses/featured-courses.php:69
7646
+ #: inc/widgets/popular-courses/popular-courses.php:70
7647
+ #: inc/widgets/recent-courses/recent-courses.php:70
7648
+ msgid "Limit"
7649
  msgstr ""
7650
 
7651
+ #: inc/widgets/featured-courses/featured-courses.php:76
7652
+ #: inc/widgets/popular-courses/popular-courses.php:77
7653
+ #: inc/widgets/recent-courses/recent-courses.php:77
7654
+ msgid "Description Length"
7655
  msgstr ""
7656
 
7657
+ #: inc/widgets/featured-courses/featured-courses.php:83
7658
+ #: inc/widgets/popular-courses/popular-courses.php:84
7659
+ #: inc/widgets/recent-courses/recent-courses.php:84
7660
+ msgid "Show Enrolled Students"
7661
  msgstr ""
7662
 
7663
+ #: inc/widgets/featured-courses/featured-courses.php:89
7664
+ #: inc/widgets/popular-courses/popular-courses.php:90
7665
+ #: inc/widgets/recent-courses/recent-courses.php:90
7666
+ msgid "Show Price"
7667
  msgstr ""
7668
 
7669
+ #: inc/widgets/featured-courses/featured-courses.php:101
7670
+ #: inc/widgets/popular-courses/popular-courses.php:102
7671
+ #: inc/widgets/recent-courses/recent-courses.php:102
7672
+ msgid "Go to Courses"
7673
  msgstr ""
7674
 
7675
+ #: inc/widgets/popular-courses/popular-courses.php:49
7676
+ msgid "Popular Courses"
7677
  msgstr ""
7678
 
7679
+ #: inc/widgets/recent-courses/recent-courses.php:49
7680
+ msgid "Recent Courses"
7681
  msgstr ""
7682
 
7683
+ #: templates/search-form.php:26
7684
+ msgid "Search course..."
7685
  msgstr ""
7686
 
7687
+ #: templates/checkout/form-logged-in.php:27
7688
+ #, php-format
7689
+ msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
7690
  msgstr ""
7691
 
7692
+ #: templates/checkout/form-logged-in.php:30
7693
+ msgid "Log out of this account"
7694
  msgstr ""
7695
 
7696
+ #: templates/checkout/form-logged-in.php:30
7697
+ msgid "Log out &raquo;"
 
7698
  msgstr ""
7699
 
7700
+ #: templates/checkout/form-login.php:34
7701
+ msgid "Returning customer"
 
7702
  msgstr ""
7703
 
7704
+ #: templates/checkout/form-login.php:35
7705
+ msgid "I am a returning customer."
7706
  msgstr ""
7707
 
7708
+ #: templates/checkout/form-login.php:102 templates/checkout/form-login.php:112
7709
+ #: templates/global/form-login.php:49
7710
+ msgid "Login"
7711
  msgstr ""
7712
 
7713
+ #: templates/checkout/form-register.php:36
7714
+ msgid "New Customer"
7715
  msgstr ""
7716
 
7717
+ #: templates/checkout/form-register.php:38
7718
+ msgid "Register Account"
7719
  msgstr ""
7720
 
7721
+ #: templates/checkout/form-register.php:40
7722
+ msgid ""
7723
+ "By creating an account you will be able to keep track of the course's "
7724
+ "progress you have previously enrolled."
7725
  msgstr ""
7726
 
7727
+ #: templates/checkout/form.php:96
7728
+ #, php-format
7729
+ msgid "Please login to continue checkout. %s"
7730
  msgstr ""
7731
 
7732
+ #: templates/checkout/form.php:96
7733
+ msgid "Login?"
7734
  msgstr ""
7735
 
7736
+ #: templates/checkout/form.php:103
7737
+ msgid "Continue checkout as Guest?"
 
7738
  msgstr ""
7739
 
7740
+ #: templates/checkout/guest-email.php:24
7741
+ msgid "Your email"
 
7742
  msgstr ""
7743
 
7744
+ #: templates/checkout/guest-email.php:25
7745
+ msgid "Your real email we will send the order code."
 
 
 
 
7746
  msgstr ""
7747
 
7748
+ #: templates/checkout/guest-email.php:35
7749
+ msgid "Your email is already exists. Checkout as this account?"
 
 
 
7750
  msgstr ""
7751
 
7752
+ #: templates/checkout/guest-email.php:42
 
7753
  msgid ""
7754
+ "Create new account with this email? Account information will be sent to this "
7755
+ "email."
7756
  msgstr ""
7757
 
7758
+ #: templates/checkout/order-comment.php:20
7759
+ msgid "Additional Information"
7760
  msgstr ""
7761
 
7762
+ #: templates/checkout/order-comment.php:23
7763
+ msgid "Note to administrator"
7764
  msgstr ""
7765
 
7766
+ #: templates/checkout/order-received.php:29
7767
+ #: templates/emails/order-items-table.php:41
7768
+ #: templates/emails/plain/order-items-table.php:24
7769
+ msgid "Order Number"
7770
  msgstr ""
7771
 
7772
+ #: templates/checkout/order-received.php:75 templates/checkout/payment.php:40
7773
+ #: templates/emails/order-items-table.php:49
7774
+ #: templates/emails/plain/order-items-table.php:28
7775
+ msgid "Payment Method"
7776
  msgstr ""
7777
 
7778
+ #: templates/checkout/payment.php:34
7779
+ msgid "No payment method is available."
7780
  msgstr ""
7781
 
7782
+ #: templates/checkout/review-order.php:20
7783
+ msgid "Your order"
7784
  msgstr ""
7785
 
7786
+ #: templates/checkout/review-order.php:130
7787
+ #: templates/order/order-details.php:81
7788
+ msgid "Subtotal"
7789
  msgstr ""
7790
 
7791
+ #: templates/checkout/term-conditions.php:20
7792
+ #, php-format
7793
+ msgid "I’ve read and accept the <a href=\"%s\">terms &amp; conditions.</a>"
7794
  msgstr ""
7795
 
7796
+ #: templates/content-lesson/block-content.php:17
7797
+ msgid "This lesson has been locked"
7798
  msgstr ""
7799
 
7800
+ #: templates/content-lesson/button-complete.php:29
7801
+ msgid "confirm-complete-lesson"
 
 
7802
  msgstr ""
7803
 
7804
+ #: templates/content-lesson/button-complete.php:46
7805
+ #: templates/content-quiz/buttons/complete.php:29
7806
+ msgid "Complete"
 
7807
  msgstr ""
7808
 
7809
+ #: templates/content-lesson/no-content.php:19
7810
+ msgid "Lesson content is empty."
 
7811
  msgstr ""
7812
 
7813
+ #: templates/content-question/explanation.php:23
7814
+ msgid "Explanation:"
7815
  msgstr ""
7816
 
7817
+ #: templates/content-question/hint.php:23
7818
+ msgid "Hint:"
 
 
7819
  msgstr ""
7820
 
7821
+ #: templates/content-question/multi-choice/answer-options.php:17
7822
+ #: templates/content-question/single-choice/answer-options.php:17
7823
+ msgid "Invalid question!"
7824
  msgstr ""
7825
 
7826
+ #: templates/content-quiz/history.php:34
7827
+ #, php-format
7828
+ msgid "Other results (newest %d items)"
7829
  msgstr ""
7830
 
7831
+ #: templates/content-quiz/history.php:53
7832
+ msgid "Time"
7833
  msgstr ""
7834
 
7835
+ #: templates/content-quiz/history.php:54
7836
+ msgid "Result"
7837
  msgstr ""
7838
 
7839
+ #: templates/content-quiz/history.php:83
7840
+ msgid "No history found!"
7841
  msgstr ""
7842
 
7843
+ #: templates/content-quiz/intro.php:24
7844
+ msgid "Attempts allowed"
7845
  msgstr ""
7846
 
7847
+ #: templates/content-quiz/intro.php:32
7848
+ msgid "Passing grade"
 
7849
  msgstr ""
7850
 
7851
+ #: templates/content-quiz/preview-mode.php:17
7852
+ msgid "You are currently viewing quiz in preview mode."
7853
  msgstr ""
7854
 
7855
+ #: templates/content-quiz/progress.php:40
7856
+ #: templates/single-course/section/title.php:52
7857
+ #, php-format
7858
+ msgid "%d/%d"
7859
  msgstr ""
7860
 
7861
+ #: templates/content-quiz/progress.php:50
7862
+ msgid "Time remaining"
 
7863
  msgstr ""
7864
 
7865
+ #: templates/content-quiz/progress.php:52
7866
+ msgid "Duration Unlimited"
7867
  msgstr ""
7868
 
7869
+ #: templates/content-quiz/result.php:28
7870
+ msgid "Your Result"
7871
  msgstr ""
7872
 
7873
+ #: templates/content-quiz/result.php:33
7874
+ #, php-format
7875
+ msgid "Your grade is <strong>%s</strong>"
7876
  msgstr ""
7877
 
7878
+ #: templates/content-quiz/result.php:38
7879
+ msgctxt "quiz-result"
7880
+ msgid "Time spend"
7881
  msgstr ""
7882
+
7883
+ #: templates/content-quiz/result.php:42
7884
+ msgctxt "quiz-result"
7885
+ msgid "Questions"
7886
  msgstr ""
7887
 
7888
+ #: templates/content-quiz/result.php:46
7889
+ msgctxt "quiz-result"
7890
+ msgid "Correct"
7891
  msgstr ""
7892
 
7893
+ #: templates/content-quiz/result.php:50
7894
+ msgctxt "quiz-result"
7895
+ msgid "Wrong"
7896
  msgstr ""
7897
 
7898
+ #: templates/content-quiz/result.php:54
7899
+ msgctxt "quiz-result"
7900
+ msgid "Skipped"
7901
  msgstr ""
7902
 
7903
+ #: templates/content-quiz/review-title.php:18
7904
+ #: templates/content-quiz/buttons/review.php:26
7905
+ msgid "Review"
7906
  msgstr ""
7907
 
7908
+ #: templates/content-quiz/buttons/check.php:24
7909
+ msgid "Checked"
7910
  msgstr ""
7911
 
7912
+ #: templates/content-quiz/buttons/check.php:24
7913
+ msgid "Check"
7914
  msgstr ""
7915
 
7916
+ #: templates/content-quiz/buttons/complete.php:23
7917
+ msgid "confirm-complete-quiz"
7918
  msgstr ""
7919
 
7920
+ #: templates/content-quiz/buttons/hint.php:21
7921
+ msgid "Hinted"
 
 
7922
  msgstr ""
7923
 
7924
+ #: templates/content-quiz/buttons/hint.php:21
7925
+ msgid "Hint"
7926
  msgstr ""
7927
 
7928
+ #: templates/content-quiz/buttons/nav.php:36
7929
+ msgctxt "quiz-question-navigation"
7930
+ msgid "Prev"
7931
  msgstr ""
7932
 
7933
+ #: templates/content-quiz/buttons/nav.php:57
7934
+ msgctxt "quiz-question-navigation"
7935
+ msgid "Next"
7936
  msgstr ""
7937
 
7938
+ #: templates/content-quiz/buttons/nav.php:78
7939
+ msgctxt "quiz-question-navigation"
7940
+ msgid "Skip"
7941
  msgstr ""
7942
 
7943
+ #: templates/content-quiz/buttons/redo.php:26
7944
+ msgid "confirm-redo-quiz"
 
7945
  msgstr ""
7946
 
7947
+ #: templates/content-quiz/buttons/redo.php:32
7948
+ msgid "Redo"
7949
  msgstr ""
7950
 
7951
+ #: templates/content-quiz/buttons/start.php:27
7952
+ msgid "Start"
7953
  msgstr ""
7954
 
7955
+ #: templates/content-quiz/buttons/summary.php:27
7956
+ msgid "Summary"
7957
  msgstr ""
7958
 
7959
+ #: templates/emails/order-items-table.php:36
7960
+ #: templates/emails/plain/order-items-table.php:22
7961
+ msgid "Order summary"
7962
  msgstr ""
7963
 
7964
+ #: templates/emails/order-items-table.php:45
7965
+ #: templates/emails/plain/order-items-table.php:26
7966
+ msgid "Purchase Date"
 
7967
  msgstr ""
7968
 
7969
+ #: templates/emails/order-items-table.php:57
7970
+ #: templates/emails/plain/order-items-table.php:32
7971
+ msgid "User Email"
7972
  msgstr ""
7973
 
7974
+ #: templates/emails/plain/order-items-table.php:48
7975
+ #, php-format
7976
+ msgid "Quantity: %s"
7977
  msgstr ""
7978
 
7979
+ #: templates/emails/plain/order-items-table.php:50
7980
+ #, php-format
7981
+ msgid "Cost: %s"
7982
  msgstr ""
7983
 
7984
+ #: templates/global/before-main-content.php:26
7985
+ msgid "LearnPress <strong>Checkout</strong> page is not set up. "
7986
  msgstr ""
7987
 
7988
+ #: templates/global/before-main-content.php:29
7989
+ msgid "Please contact administrator for setting up this page."
7990
  msgstr ""
7991
 
7992
+ #: templates/global/before-main-content.php:31
7993
+ #, php-format
7994
+ msgid ""
7995
+ "Please <a href=\\\"%s\\\" target=\\\"_blank\\\">setup</a> it so users can "
7996
+ "purchase courses."
7997
  msgstr ""
7998
 
7999
+ #: templates/global/block-content.php:18
8000
+ msgid ""
8001
+ "Content of this item has blocked because the course has exceeded duration."
8002
  msgstr ""
8003
 
8004
+ #: templates/global/form-login.php:23
8005
+ msgctxt "login-heading"
8006
+ msgid "Login"
8007
  msgstr ""
8008
 
8009
+ #: templates/global/form-login.php:43
8010
+ msgid "Remember me"
8011
  msgstr ""
8012
 
8013
+ #: templates/global/form-login.php:52
8014
+ msgid "Lost your password?"
8015
  msgstr ""
8016
 
8017
+ #: templates/global/form-register.php:23
8018
+ msgctxt "register-heading"
8019
+ msgid "Register"
8020
  msgstr ""
8021
 
8022
+ #: templates/global/restrict-access.php:28
8023
+ msgid ""
8024
+ "You have no permission to view this area. Please contact site's "
8025
+ "administrators for more details."
8026
  msgstr ""
8027
 
8028
+ #: templates/global/become-teacher-form/button.php:18
8029
+ msgid "Submitting"
8030
  msgstr ""
8031
 
8032
+ #: templates/order/confirm.php:25
8033
+ msgid ""
8034
+ "Unfortunately your order cannot be processed as the originating bank/"
8035
+ "merchant has declined your transaction."
8036
  msgstr ""
8037
 
8038
+ #: templates/order/confirm.php:29
8039
+ msgid "Please attempt your purchase again or go to your account page."
8040
  msgstr ""
8041
 
8042
+ #: templates/order/confirm.php:31
8043
+ msgid "Please attempt your purchase again."
8044
  msgstr ""
8045
 
8046
+ #: templates/order/confirm.php:48
8047
+ msgid "Order Number:"
8048
  msgstr ""
8049
 
8050
+ #: templates/order/confirm.php:52
8051
+ msgid "Date:"
8052
  msgstr ""
8053
 
8054
+ #: templates/order/confirm.php:56
8055
+ msgid "Total:"
8056
  msgstr ""
8057
 
8058
+ #: templates/order/confirm.php:61
8059
+ msgid "Payment Method:"
8060
  msgstr ""
8061
 
8062
+ #: templates/order/confirm.php:66
8063
+ msgid "Status:"
8064
  msgstr ""
8065
 
8066
+ #: templates/order/order-details.php:92
8067
+ #, php-format
8068
+ msgid "<strong>Order key:</strong> %s"
8069
  msgstr ""
8070
 
8071
+ #: templates/order/order-details.php:96
8072
+ msgid "Order status:"
8073
  msgstr ""
8074
 
8075
+ #: templates/order/recover-form.php:25
8076
+ msgid "Recover"
 
 
8077
  msgstr ""
8078
 
8079
+ #: templates/profile/dashboard-logged-in.php:26
8080
  #, php-format
8081
+ msgid "Hello <strong>%s</strong> (not %s? %s)"
 
 
8082
  msgstr ""
8083
 
8084
+ #: templates/profile/dashboard-logged-in.php:26
8085
+ msgid "Sign out"
8086
  msgstr ""
8087
 
8088
+ #: templates/profile/get-back-order.php:22
8089
+ #: templates/profile/tabs/orders/recover-my-order.php:23
8090
+ msgid "This order was checked out by you but there is no user was assigned to."
8091
  msgstr ""
8092
 
8093
+ #: templates/profile/get-back-order.php:23
8094
+ #: templates/profile/tabs/orders/recover-my-order.php:24
8095
+ msgid ""
8096
+ "If the order is made for another one, you can send the code below to them."
8097
  msgstr ""
8098
 
8099
+ #: templates/profile/get-back-order.php:24
8100
+ #: templates/profile/tabs/orders/recover-my-order.php:25
8101
+ msgid "If the order is made for yourself, you can assign it to you here."
8102
  msgstr ""
8103
 
8104
+ #: templates/profile/not-logged-in.php:19
8105
+ #, php-format
8106
+ msgid "Please <a href=\"%s\">login</a> to see your profile content"
8107
  msgstr ""
8108
 
8109
+ #: templates/profile/profile.php:47
8110
+ msgid "This user does not public their profile."
8111
  msgstr ""
8112
 
8113
+ #: templates/profile/tabs/courses.php:21
8114
+ msgid "You haven't got any courses yet!"
 
 
8115
  msgstr ""
8116
 
8117
+ #: templates/profile/tabs/courses.php:27
8118
+ #: templates/profile/tabs/courses/owned.php:25
8119
+ msgid "My Courses"
8120
  msgstr ""
8121
 
8122
+ #: templates/profile/tabs/courses.php:34
8123
+ #: templates/profile/tabs/courses/purchased.php:40
8124
+ msgid "Passing Grade"
8125
  msgstr ""
8126
 
8127
+ #: templates/profile/tabs/courses.php:35 templates/profile/tabs/quizzes.php:40
8128
+ #: templates/profile/tabs/courses/purchased.php:41
8129
+ msgid "Progress"
8130
  msgstr ""
8131
 
8132
+ #: templates/profile/tabs/quizzes.php:23
8133
+ msgid "My Quizzes"
8134
  msgstr ""
8135
 
8136
+ #: templates/profile/tabs/quizzes.php:41
8137
+ msgid "Interval"
8138
  msgstr ""
8139
 
8140
+ #: templates/profile/tabs/quizzes.php:97
8141
+ msgid "No quizzes!"
8142
  msgstr ""
8143
 
8144
+ #: templates/profile/tabs/courses/owned.php:37
8145
+ #: templates/profile/tabs/courses/purchased.php:82
8146
+ msgid "No courses!"
8147
  msgstr ""
8148
 
8149
+ #: templates/profile/tabs/courses/purchased.php:24
8150
+ msgid "Purchased Courses"
8151
  msgstr ""
8152
 
8153
+ #: templates/profile/tabs/orders/list.php:21
8154
+ msgid "No orders!"
8155
  msgstr ""
8156
 
8157
+ #: templates/profile/tabs/orders/list.php:26
8158
+ msgid "My Orders"
8159
  msgstr ""
8160
 
8161
+ #: templates/profile/tabs/orders/list.php:36
8162
+ msgid "Action"
 
 
8163
  msgstr ""
8164
 
8165
+ #: templates/profile/tabs/orders/order-message.php:19
8166
+ #, php-format
8167
+ msgid "This order is paid for %s"
8168
  msgstr ""
8169
 
8170
+ #: templates/profile/tabs/orders/order-message.php:25
8171
+ #, php-format
8172
+ msgid "This order is paid by %s"
8173
  msgstr ""
8174
 
8175
+ #: templates/profile/tabs/orders/recover-order.php:20
8176
+ msgid "If you have a valid order key you can recover it here."
 
 
 
8177
  msgstr ""
8178
 
8179
+ #: templates/profile/tabs/settings/avatar.php:58
8180
+ msgid "Upload"
 
 
8181
  msgstr ""
8182
 
8183
+ #: templates/profile/tabs/settings/avatar.php:76
8184
+ #: templates/profile/tabs/settings/basic-information.php:111
8185
+ #: templates/profile/tabs/settings/change-password.php:87
8186
+ #: templates/profile/tabs/settings/publicity.php:88
8187
+ msgid "Save changes"
8188
  msgstr ""
8189
 
8190
+ #: templates/profile/tabs/settings/basic-information.php:49
8191
+ msgid "Biographical Info"
8192
  msgstr ""
8193
 
8194
+ #: templates/profile/tabs/settings/basic-information.php:53
8195
+ msgid ""
8196
+ "Share a little biographical information to fill out your profile. This may "
8197
+ "be shown publicly."
8198
  msgstr ""
8199
 
8200
+ #: templates/profile/tabs/settings/basic-information.php:57
8201
+ msgid "First Name"
8202
  msgstr ""
8203
 
8204
+ #: templates/profile/tabs/settings/basic-information.php:65
8205
+ msgid "Last Name"
8206
  msgstr ""
8207
 
8208
+ #: templates/profile/tabs/settings/basic-information.php:73
8209
+ msgid "Nickname"
8210
  msgstr ""
8211
 
8212
+ #: templates/profile/tabs/settings/basic-information.php:81
8213
+ msgid "Display name publicly as"
8214
  msgstr ""
8215
 
8216
+ #: templates/profile/tabs/settings/change-password.php:43
8217
+ msgid "Old password"
8218
  msgstr ""
8219
 
8220
+ #: templates/profile/tabs/settings/change-password.php:49
8221
+ msgid "New password"
8222
  msgstr ""
8223
 
8224
+ #: templates/profile/tabs/settings/change-password.php:55
8225
+ msgid "Confirmation password"
8226
  msgstr ""
8227
 
8228
+ #: templates/profile/tabs/settings/change-password.php:59
8229
+ msgid "New password does not match!"
 
8230
  msgstr ""
8231
 
8232
+ #: templates/profile/tabs/settings/publicity.php:50
8233
+ msgid "My courses"
8234
  msgstr ""
8235
 
8236
+ #: templates/profile/tabs/settings/publicity.php:54
8237
+ msgid "Public your profile courses"
 
 
8238
  msgstr ""
8239
 
8240
+ #: templates/profile/tabs/settings/publicity.php:61
8241
+ msgid "My quizzes"
 
 
 
8242
  msgstr ""
8243
 
8244
+ #: templates/profile/tabs/settings/publicity.php:65
8245
+ msgid "Public your profile quizzes"
 
8246
  msgstr ""
8247
 
8248
+ #: templates/single-course/content-protected.php:25
8249
+ msgid "This content is protected, please enroll course to view this content!"
8250
  msgstr ""
8251
 
8252
+ #: templates/single-course/content-protected.php:29
8253
+ #, php-format
8254
  msgid ""
8255
+ "This content is protected, please <a href=\"%s\">login</a> and enroll course "
8256
+ "to view this content!"
8257
  msgstr ""
8258
 
8259
+ #: templates/single-course/description.php:25
8260
+ msgid "Course description"
8261
  msgstr ""
8262
 
8263
+ #: templates/single-course/instructor.php:22
8264
+ msgid "About the Instructor"
8265
  msgstr ""
8266
 
8267
+ #: templates/single-course/progress.php:38
8268
+ msgid "Items completed"
8269
  msgstr ""
8270
 
8271
+ #: templates/single-course/progress.php:42
8272
+ #, php-format
8273
+ msgid "%d of %d items"
8274
  msgstr ""
8275
 
8276
+ #: templates/single-course/progress.php:56
8277
+ msgid "Course results"
8278
  msgstr ""
8279
 
8280
+ #: templates/single-course/progress.php:80
8281
+ #, php-format
8282
+ msgid "Passing condition: %s%%"
8283
  msgstr ""
8284
 
8285
+ #: templates/single-course/remaining-time.php:22
8286
+ msgid "Enrolled"
 
 
8287
  msgstr ""
8288
 
8289
+ #: templates/single-course/remaining-time.php:25
8290
+ #, php-format
8291
+ msgid "You have %s remaining for the course"
8292
  msgstr ""
8293
 
8294
+ #: templates/single-course/students.php:29
8295
+ #, php-format
8296
+ msgid "%d students"
8297
  msgstr ""
8298
 
8299
+ #: templates/single-course/students.php:29
8300
+ #, php-format
8301
+ msgid "%d student"
8302
  msgstr ""
8303
 
8304
+ #: templates/single-course/buttons/enroll.php:32
8305
+ msgid "Enroll"
8306
  msgstr ""
8307
 
8308
+ #: templates/single-course/buttons/finish.php:22
8309
+ msgid "confirm-finish-course"
8310
  msgstr ""
8311
 
8312
+ #: templates/single-course/buttons/finish.php:24
8313
+ msgid "Finish course"
 
 
8314
  msgstr ""
8315
 
8316
+ #: templates/single-course/buttons/purchase.php:32
8317
+ msgid "Buy this course"
8318
  msgstr ""
8319
 
8320
+ #: templates/single-course/buttons/retake.php:30
8321
+ msgid "confirm-retake-course"
 
8322
  msgstr ""
8323
 
8324
+ #: templates/single-course/buttons/retake.php:39
8325
+ #, php-format
8326
+ msgid "Retake course (+%d)"
8327
  msgstr ""
8328
 
8329
+ #: templates/single-course/content-item/header.php:24
8330
+ msgid "Search item"
8331
  msgstr ""
8332
 
8333
+ #: templates/single-course/content-item/header.php:36
8334
+ msgid "Back to Course"
8335
+ msgstr ""
 
 
 
8336
 
8337
+ #: templates/single-course/content-item/nav.php:20
8338
+ msgctxt "course-item-navigation"
8339
+ msgid "Prev"
8340
  msgstr ""
8341
 
8342
+ #: templates/single-course/content-item/nav.php:29
8343
+ msgctxt "course-item-navigation"
8344
+ msgid "Next"
8345
  msgstr ""
8346
 
8347
+ #: templates/single-course/section/content.php:72
8348
+ msgid "No items in this section"
8349
  msgstr ""
8350
 
8351
+ #: templates/single-course/tabs/curriculum.php:47
8352
+ msgid "Curriculum is empty"
8353
  msgstr ""
8354
 
8355
+ #: templates/widgets/course-info/default.php:39
8356
+ msgid "Preview Lessons"
8357
  msgstr ""
8358
 
8359
+ #: templates/widgets/featured-courses/default.php:24
8360
+ #: templates/widgets/popular-courses/default.php:19
8361
+ #: templates/widgets/recent-courses/default.php:24
8362
+ msgid "No courses"
 
8363
  msgstr ""
8364
 
8365
+ #: templates/widgets/featured-courses/default.php:65
8366
+ #: templates/widgets/popular-courses/default.php:60
8367
+ #: templates/widgets/recent-courses/default.php:65
8368
+ msgid "..."
8369
  msgstr ""
8370
 
8371
+ #: templates/widgets/featured-courses/default.php:86
8372
+ #: templates/widgets/popular-courses/default.php:81
8373
+ #: templates/widgets/recent-courses/default.php:86
8374
+ #, php-format
8375
+ msgid "%d lessons"
8376
  msgstr ""
8377
 
8378
+ #: templates/widgets/featured-courses/default.php:86
8379
+ #: templates/widgets/popular-courses/default.php:81
8380
+ #: templates/widgets/recent-courses/default.php:86
8381
+ #, php-format
8382
+ msgid "%d lesson"
8383
  msgstr ""
learnpress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: LearnPress
4
  Plugin URI: http://thimpress.com/learnpress
5
  Description: LearnPress is a WordPress complete solution for creating a Learning Management System (LMS). It can help you to create courses, lessons and quizzes.
6
  Author: ThimPress
7
- Version: 3.2.5
8
  Author URI: http://thimpress.com
9
  Requires at least: 3.8
10
  Tested up to: 5.0.2
4
  Plugin URI: http://thimpress.com/learnpress
5
  Description: LearnPress is a WordPress complete solution for creating a Learning Management System (LMS). It can help you to create courses, lessons and quizzes.
6
  Author: ThimPress
7
+ Version: 3.2.5.1
8
  Author URI: http://thimpress.com
9
  Requires at least: 3.8
10
  Tested up to: 5.0.2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: WordPress LMS, LMS, eLearning, e-Learning, Learning Management System, LMS WordPress, Course, Courses, Quiz, Quizzes, Training, Guru, Sell Courses
5
  Requires at least: 3.8
6
  Tested up to: 5.0.2
7
- Stable tag: 3.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -199,6 +199,11 @@ https://www.transifex.com/projects/p/learnpress/
199
  8. Add-ons of LearnPress.
200
 
201
  == Changelog ==
 
 
 
 
 
202
  = 3.2.5 =
203
  ~ Fixed button for creating LP pages does not work properly.
204
  ~ Fixed warning when getting course items does not exists.
4
  Tags: WordPress LMS, LMS, eLearning, e-Learning, Learning Management System, LMS WordPress, Course, Courses, Quiz, Quizzes, Training, Guru, Sell Courses
5
  Requires at least: 3.8
6
  Tested up to: 5.0.2
7
+ Stable tag: 3.2.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
199
  8. Add-ons of LearnPress.
200
 
201
  == Changelog ==
202
+ = 3.2.5.1 =
203
+ ~ Fixed can not next/prev question when doing quiz.
204
+ ~ Fixed get wrong total student of a course.
205
+ ~ Updated language .POT file.
206
+
207
  = 3.2.5 =
208
  ~ Fixed button for creating LP pages does not work properly.
209
  ~ Fixed warning when getting course items does not exists.