LearnPress – WordPress LMS Plugin - Version 3.2.4

Version Description

~ Fixed cannot enroll course. ~ Fixed prev question button not working correct. ~ Fixed one extra answer option when add new question. ~ Fixed some deprecated keywords for PHP 7.3. ~ Fixed item is null for an item which doesn't support it's type (like assignment after deactivate). ~ Fixed bug the next and prev button not work in review mode of quiz.

Download this release

Release Info

Developer phonglq.foobla
Plugin Icon 128x128 LearnPress – WordPress LMS Plugin
Version 3.2.4
Comparing to
See all releases

Code changes from version 3.2.3 to 3.2.4

inc/abstracts/abstract-assets.php CHANGED
@@ -311,7 +311,10 @@ abstract class LP_Abstract_Assets {
311
  }
312
  }
313
  }
314
- $wp_scripts->print_extra_script( $handle );
 
 
 
315
  }
316
 
317
  }
311
  }
312
  }
313
  }
314
+
315
+ if ( is_admin() ) {
316
+ $wp_scripts->print_extra_script( $handle );
317
+ }
318
  }
319
 
320
  }
inc/admin/editor/class-lp-admin-editor-quiz.php CHANGED
@@ -80,8 +80,14 @@ class LP_Admin_Editor_Quiz extends LP_Admin_Editor {
80
  // question id
81
  $question_id = $question->get_id();
82
  // question answer
83
- $answers = array_values( $question->get_data( 'answer_options' ) );
84
-
 
 
 
 
 
 
85
  $data = wp_parse_args( $args, array(
86
  'id' => $question_id,
87
  'open' => false,
80
  // question id
81
  $question_id = $question->get_id();
82
  // question answer
83
+ $answer_options = $question->get_data( 'answer_options' );
84
+ $answer = array();
85
+ foreach($answer_options as $answer_option ){
86
+ if(!isset($answer[$answer_option['question_answer_id']])){
87
+ $answer[$answer_option['question_answer_id']]=$answer_option;
88
+ }
89
+ }
90
+ $answers = array_values( $answer );
91
  $data = wp_parse_args( $args, array(
92
  'id' => $question_id,
93
  'open' => false,
inc/admin/helpers/class-lp-plugins-helper.php CHANGED
@@ -59,6 +59,7 @@ class LP_Plugins_Helper {
59
  if ( ! $all_plugins ) {
60
  return array_key_exists( $type, self::$plugins ) ? self::$plugins[ $type ] : self::$plugins;
61
  }
 
62
  $wp_plugins = self::get_plugins_from_wp();
63
  $premium_plugins = self::get_premium_plugins();
64
  $wp_installed = array();
@@ -406,7 +407,6 @@ class LP_Plugins_Helper {
406
  */
407
  public static function init() {
408
  require_once( LP_PLUGIN_PATH . '/inc/admin/class-lp-upgrader.php' );
409
- add_filter( 'extra_plugin_headers', array( __CLASS__, 'add_on_header' ) );
410
 
411
  if ( ( LP_Request::get( 'force-check-update' ) !== 'yes' ) || ! wp_verify_nonce( LP_Request::get( '_wpnonce' ), 'lp-check-updates' ) ) {
412
  return;
@@ -418,5 +418,12 @@ class LP_Plugins_Helper {
418
  }
419
  }
420
 
 
 
 
 
 
 
 
421
  // Init hooks, etc...
422
  add_action( 'init', array( 'LP_Plugins_Helper', 'init' ) );
59
  if ( ! $all_plugins ) {
60
  return array_key_exists( $type, self::$plugins ) ? self::$plugins[ $type ] : self::$plugins;
61
  }
62
+
63
  $wp_plugins = self::get_plugins_from_wp();
64
  $premium_plugins = self::get_premium_plugins();
65
  $wp_installed = array();
407
  */
408
  public static function init() {
409
  require_once( LP_PLUGIN_PATH . '/inc/admin/class-lp-upgrader.php' );
 
410
 
411
  if ( ( LP_Request::get( 'force-check-update' ) !== 'yes' ) || ! wp_verify_nonce( LP_Request::get( '_wpnonce' ), 'lp-check-updates' ) ) {
412
  return;
418
  }
419
  }
420
 
421
+ /**
422
+ * Fixed issue addons page doesn't show installed addons.
423
+ *
424
+ * @since 3.2.4
425
+ */
426
+ add_filter( 'extra_plugin_headers', array( 'LP_Plugins_Helper', 'add_on_header' ) );
427
+
428
  // Init hooks, etc...
429
  add_action( 'init', array( 'LP_Plugins_Helper', 'init' ) );
inc/admin/meta-box/fields/pages-dropdown.php CHANGED
@@ -19,6 +19,13 @@ if ( ! class_exists( 'RWMB_Pages_Dropdown_Field' ) ) {
19
  * @return string
20
  */
21
  static function html( $meta, $field = '' ) {
 
 
 
 
 
 
 
22
  $args = array(
23
  'echo' => false,
24
  'name' => $field['id'],
19
  * @return string
20
  */
21
  static function html( $meta, $field = '' ) {
22
+ if( $field['std'] && function_exists('icl_object_id') ) {
23
+ $field_std = icl_object_id($field['std'],'page', false,ICL_LANGUAGE_CODE);
24
+ if( $field_std ) {
25
+ $field['std'] = $field_std;
26
+ }
27
+ }
28
+
29
  $args = array(
30
  'echo' => false,
31
  'name' => $field['id'],
inc/class-lp-install.php CHANGED
@@ -217,7 +217,7 @@ if ( ! function_exists( 'LP_Install' ) ) {
217
  break;
218
  default:
219
  if ( ! is_callable( array( $class, 'get_settings' ) ) ) {
220
- continue;
221
  }
222
 
223
  $options = $class->get_settings( '', '' );
217
  break;
218
  default:
219
  if ( ! is_callable( array( $class, 'get_settings' ) ) ) {
220
+ continue 2;
221
  }
222
 
223
  $options = $class->get_settings( '', '' );
inc/class-lp-schedules.php CHANGED
@@ -44,7 +44,7 @@ class LP_Schedules {
44
  ",
45
  $user_id, LP_ORDER_CPT, 'finished','0000-00-00 00:00:00' );
46
 
47
- $user_item_ids = $wpdb->get_results( $query );
48
 
49
  // $user_item_ids = array(99991,99992,99993,99994,99995);// test data
50
  if(!empty($user_item_ids)){
@@ -344,7 +344,7 @@ class LP_Schedules {
344
  case LP_LESSON_CPT:
345
  $duration = absint( get_post_meta( $row->item_id, '_lp_duration', true ) );
346
  if ( $duration <= 0 ) {
347
- continue;
348
  }
349
  if ( $row->item_type == LP_QUIZ_CPT ) {
350
  $results = $user->finish_quiz( $row->item_id, $course->get_id() );
44
  ",
45
  $user_id, LP_ORDER_CPT, 'finished','0000-00-00 00:00:00' );
46
 
47
+ $user_item_ids = $wpdb->get_col( $query );
48
 
49
  // $user_item_ids = array(99991,99992,99993,99994,99995);// test data
50
  if(!empty($user_item_ids)){
344
  case LP_LESSON_CPT:
345
  $duration = absint( get_post_meta( $row->item_id, '_lp_duration', true ) );
346
  if ( $duration <= 0 ) {
347
+ continue 2;
348
  }
349
  if ( $row->item_type == LP_QUIZ_CPT ) {
350
  $results = $user->finish_quiz( $row->item_id, $course->get_id() );
inc/course/class-lp-course-item.php CHANGED
@@ -308,7 +308,7 @@ if ( ! class_exists( 'LP_Course_Item' ) ) {
308
 
309
  }
310
 
311
- if ( $course ) {
312
  $item->set_course( $course );
313
  }
314
 
308
 
309
  }
310
 
311
+ if ( $course && $item) {
312
  $item->set_course( $course );
313
  }
314
 
inc/curds/class-lp-question-curd.php CHANGED
@@ -958,10 +958,10 @@ if ( ! class_exists( 'LP_Question_CURD' ) ) {
958
  $question_id = $return_id;
959
  }
960
 
961
- if ( false === ( $answer_options = LP_Hard_Cache::get( 'question-' . $question_id, 'question-answers' ) ) ) {
962
 
963
  $answer_options = $this->_read_answers( $question_id );
964
- LP_Hard_Cache::set( 'question-' . $question_id, $answer_options, 'question-answers' );
965
  }
966
 
967
  return $answer_options;
958
  $question_id = $return_id;
959
  }
960
 
961
+ if ( false === ( $answer_options = LP_Object_Cache::get( 'question-' . $question_id, 'question-answers' ) ) ) {
962
 
963
  $answer_options = $this->_read_answers( $question_id );
964
+ LP_Object_Cache::set( 'question-' . $question_id, $answer_options, 'question-answers' );
965
  }
966
 
967
  return $answer_options;
inc/curds/class-lp-user-item-curd.php CHANGED
@@ -512,7 +512,7 @@ class LP_User_Item_CURD implements LP_Interface_CURD {
512
  if ( $get_item_ids ) {
513
  foreach ( $get_item_ids as $item_id ) {
514
  $is_preview = get_post_meta( $item_id, '_lp_preview', true );#// == 'yes';
515
- if( $enrolled ){
516
  $is_preview = 'no';
517
  }
518
  if ( false === ( $cached = LP_Object_Cache::get( 'item-' . $user_id . '-' . $course_id . '-' . $item_id, 'learn-press/preview-items' ) ) ) {
@@ -550,7 +550,8 @@ class LP_User_Item_CURD implements LP_Interface_CURD {
550
  $user_id = get_current_user_id();
551
  }
552
 
553
- $user = learn_press_get_user( $user_id, false );
 
554
  $current_item = LP_Global::course_item();
555
  $get_item_ids = $course->get_item_ids();
556
  $enrolled = $user ? $user->has_enrolled_course( $course_id ) : false;
@@ -561,6 +562,10 @@ class LP_User_Item_CURD implements LP_Interface_CURD {
561
  foreach ( $get_item_ids as $item_id ) {
562
  $item = $course->get_item( $item_id );
563
 
 
 
 
 
564
  $defaults = array_merge(
565
  array(
566
  'course-item',
512
  if ( $get_item_ids ) {
513
  foreach ( $get_item_ids as $item_id ) {
514
  $is_preview = get_post_meta( $item_id, '_lp_preview', true );#// == 'yes';
515
+ if ( $enrolled ) {
516
  $is_preview = 'no';
517
  }
518
  if ( false === ( $cached = LP_Object_Cache::get( 'item-' . $user_id . '-' . $course_id . '-' . $item_id, 'learn-press/preview-items' ) ) ) {
550
  $user_id = get_current_user_id();
551
  }
552
 
553
+ //$user = learn_press_get_user( $user_id, false ); tested on client site and this function not work. Use the below line instead of!
554
+ $user = learn_press_get_current_user();
555
  $current_item = LP_Global::course_item();
556
  $get_item_ids = $course->get_item_ids();
557
  $enrolled = $user ? $user->has_enrolled_course( $course_id ) : false;
562
  foreach ( $get_item_ids as $item_id ) {
563
  $item = $course->get_item( $item_id );
564
 
565
+ if ( ! $item ) {
566
+ continue;
567
+ }
568
+
569
  $defaults = array_merge(
570
  array(
571
  'course-item',
inc/gateways/paypal/paypal-ipn/ipn.php CHANGED
@@ -17,7 +17,6 @@
17
  * @license http://opensource.org/licenses/gpl-3.0.html
18
  */
19
 
20
- defined('ABSPATH') or die();
21
 
22
  /*
23
  Since this script is executed on the back end between the PayPal server and this
17
  * @license http://opensource.org/licenses/gpl-3.0.html
18
  */
19
 
 
20
 
21
  /*
22
  Since this script is executed on the back end between the PayPal server and this
inc/lp-constants.php CHANGED
@@ -4,7 +4,7 @@
4
  */
5
  $upload_dir = wp_upload_dir();
6
  // version
7
- define( 'LEARNPRESS_VERSION', '3.2.3' );
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.4' );
8
 
9
  define( 'LP_WP_CONTENT', basename( WP_CONTENT_DIR ) );
10
 
inc/lp-core-functions.php CHANGED
@@ -636,7 +636,11 @@ if ( ! function_exists( 'learn_press_is_ajax' ) ) {
636
  * @return int
637
  */
638
  function learn_press_get_page_id( $name ) {
639
- return apply_filters( 'learn_press_get_page_id', LP_Settings::instance()->get( "{$name}_page_id", false ), $name );
 
 
 
 
640
  }
641
 
642
  /**
@@ -2462,7 +2466,7 @@ function learn_press_auto_enroll_user_to_courses( $order_id ) {
2462
  return $return;
2463
  }
2464
 
2465
- add_action( 'learn_press_order_status_completed', 'learn_press_auto_enroll_user_to_courses' );
2466
 
2467
  /**
2468
  * Return true if enable cart
636
  * @return int
637
  */
638
  function learn_press_get_page_id( $name ) {
639
+ $page_id = LP_Settings::instance()->get( "{$name}_page_id", false );
640
+ if(function_exists('icl_object_id')){
641
+ $page_id = icl_object_id($page_id,'page', false,ICL_LANGUAGE_CODE);
642
+ }
643
+ return apply_filters( 'learn_press_get_page_id', $page_id, $name );
644
  }
645
 
646
  /**
2466
  return $return;
2467
  }
2468
 
2469
+ // add_action( 'learn_press_order_status_completed', 'learn_press_auto_enroll_user_to_courses' );
2470
 
2471
  /**
2472
  * Return true if enable cart
inc/quiz/class-lp-quiz-factory.php CHANGED
@@ -186,18 +186,31 @@ if ( ! class_exists( 'LP_Quiz_Factory' ) ) {
186
  */
187
  public static function nav_question() {
188
  $return = self::maybe_save_questions( 'nav-question' );
189
-
190
  if ( is_array( $return ) ) {
191
- $nav = LP_Request::get( 'nav' );
192
  $quiz = learn_press_get_quiz( $return['quiz_id'] );
193
  $redirect = false;
194
-
195
- if ( $nav === 'prev' && ! empty( $return['prev_question'] ) ) {
196
  $redirect = $quiz->get_question_link( $return['prev_question'] );
197
  } elseif ( ! empty( $return['next_question'] ) ) {
198
  $redirect = $quiz->get_question_link( $return['next_question'] );
199
  }
200
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  if($redirect){
202
  wp_safe_redirect($redirect);
203
  exit();
186
  */
187
  public static function nav_question() {
188
  $return = self::maybe_save_questions( 'nav-question' );
189
+ $nav = LP_Request::get( 'nav-type' );
190
  if ( is_array( $return ) ) {
 
191
  $quiz = learn_press_get_quiz( $return['quiz_id'] );
192
  $redirect = false;
193
+ if ( $nav === 'prev-question' && ! empty( $return['prev_question'] ) ) {
 
194
  $redirect = $quiz->get_question_link( $return['prev_question'] );
195
  } elseif ( ! empty( $return['next_question'] ) ) {
196
  $redirect = $quiz->get_question_link( $return['next_question'] );
197
  }
198
+ if($redirect){
199
+ wp_safe_redirect($redirect);
200
+ exit();
201
+ }
202
+ } else {
203
+ $quiz_id = LP_Request::get('quiz-id');
204
+ $question_id = LP_Request::get('question-id');
205
+ $quiz = learn_press_get_quiz( $quiz_id );
206
+
207
+ if ( $nav === 'prev-question' && $question_id ) {
208
+ $prev_question_id = $quiz->get_prev_question($question_id);
209
+ $redirect = $quiz->get_question_link( $prev_question_id );
210
+ } else {
211
+ $next_question_id = $quiz->get_next_question($question_id);
212
+ $redirect = $quiz->get_question_link( $next_question_id );
213
+ }
214
  if($redirect){
215
  wp_safe_redirect($redirect);
216
  exit();
inc/user/abstract-lp-user.php CHANGED
@@ -337,7 +337,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
337
  if ( false === ( $course_id = $this->_verify_course_item( $quiz_id, $course_id ) ) ) {
338
  throw new Exception( __( 'Course does not exist or does not contain the quiz', 'learnpress' ), LP_INVALID_QUIZ_OR_COURSE );
339
  }
340
-
341
  $access_level = $this->get_course_access_level( $course_id );
342
 
343
  // If user has already finished the course
@@ -345,7 +345,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
345
  throw new Exception( __( 'You have already finished the course of this quiz', 'learnpress' ), LP_COURSE_IS_FINISHED );
346
  }
347
 
348
- if ( $access_level < LP_COURSE_ACCESS_LEVEL_60 ) {
349
  throw new Exception( __( 'Please enroll course before starting quiz.', 'learnpress' ), LP_COURSE_IS_FINISHED );
350
  }
351
 
@@ -353,9 +353,6 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
353
  if ( $this->has_item_status( array( 'started', 'completed' ), $quiz_id, $course_id ) ) {
354
  throw new Exception( __( 'User has started or completed quiz', 'learnpress' ), LP_QUIZ_HAS_STARTED_OR_COMPLETED );
355
  }
356
-
357
- $course = learn_press_get_course( $course_id );
358
- $quiz = learn_press_get_quiz( $quiz_id );
359
  $user = LP_Global::user();
360
 
361
  if ( $course->is_required_enroll() && $user->is_guest()/* && ! $quiz->get_preview() */ ) {
337
  if ( false === ( $course_id = $this->_verify_course_item( $quiz_id, $course_id ) ) ) {
338
  throw new Exception( __( 'Course does not exist or does not contain the quiz', 'learnpress' ), LP_INVALID_QUIZ_OR_COURSE );
339
  }
340
+ $course = learn_press_get_course( $course_id );
341
  $access_level = $this->get_course_access_level( $course_id );
342
 
343
  // If user has already finished the course
345
  throw new Exception( __( 'You have already finished the course of this quiz', 'learnpress' ), LP_COURSE_IS_FINISHED );
346
  }
347
 
348
+ if ( $course->is_required_enroll() && $access_level < LP_COURSE_ACCESS_LEVEL_60 ) {
349
  throw new Exception( __( 'Please enroll course before starting quiz.', 'learnpress' ), LP_COURSE_IS_FINISHED );
350
  }
351
 
353
  if ( $this->has_item_status( array( 'started', 'completed' ), $quiz_id, $course_id ) ) {
354
  throw new Exception( __( 'User has started or completed quiz', 'learnpress' ), LP_QUIZ_HAS_STARTED_OR_COMPLETED );
355
  }
 
 
 
356
  $user = LP_Global::user();
357
 
358
  if ( $course->is_required_enroll() && $user->is_guest()/* && ! $quiz->get_preview() */ ) {
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-07-03 10:35+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,1629 +17,1698 @@ 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:371
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/lp-template-functions.php:2664
32
- #: inc/course/lp-course-functions.php:540
33
- #: inc/custom-post-types/lesson.php:204
34
- #: inc/admin/settings/class-lp-settings-courses.php:150
35
- msgid "Lesson"
36
  msgstr ""
37
 
38
- #: inc/lp-core-functions.php:352
39
- #: inc/lp-template-functions.php:2654
40
- #: inc/course/lp-course-functions.php:541
41
- #: inc/custom-post-types/question.php:337
42
- #: inc/custom-post-types/quiz.php:92
43
- #: inc/admin/settings/class-lp-settings-courses.php:157
44
- #: templates/profile/tabs/quizzes.php:38
45
- msgid "Quiz"
46
  msgstr ""
47
 
48
- #: inc/lp-core-functions.php:677
49
- #: inc/admin/class-lp-modal-search-users.php:135
50
- #: inc/admin/class-lp-modal-search-items.php:210
51
- msgid "<"
52
  msgstr ""
53
 
54
- #: inc/lp-core-functions.php:678
55
- #: inc/admin/class-lp-modal-search-users.php:136
56
- #: inc/admin/class-lp-modal-search-items.php:211
57
- msgid ">"
58
  msgstr ""
59
 
60
- #: inc/lp-core-functions.php:756
61
- msgid "Minute(s)"
62
  msgstr ""
63
 
64
- #: inc/lp-core-functions.php:757
65
- msgid "Hour(s)"
66
  msgstr ""
67
 
68
- #: inc/lp-core-functions.php:758
69
- msgid "Day(s)"
 
70
  msgstr ""
71
 
72
- #: inc/lp-core-functions.php:759
73
- msgid "Week(s)"
 
 
74
  msgstr ""
75
 
76
- #: inc/lp-core-functions.php:904
77
- msgid "Left"
78
  msgstr ""
79
 
80
- #: inc/lp-core-functions.php:905
81
- msgid "Right"
 
82
  msgstr ""
83
 
84
- #: inc/lp-core-functions.php:906
85
- msgid "Left with space"
86
  msgstr ""
87
 
88
- #: inc/lp-core-functions.php:907
89
- msgid "Right with space"
90
  msgstr ""
91
 
92
- #: inc/lp-core-functions.php:971
93
- msgid "Afghan afghani"
 
94
  msgstr ""
95
 
96
- #: inc/lp-core-functions.php:972
97
- msgid "Albanian lek"
98
  msgstr ""
99
 
100
- #: inc/lp-core-functions.php:973
101
- msgid "Algerian dinar"
102
  msgstr ""
103
 
104
- #: inc/lp-core-functions.php:974
105
- msgid "Euro"
 
 
 
106
  msgstr ""
107
 
108
- #: inc/lp-core-functions.php:975
109
- msgid "Angolan kwanza"
 
 
110
  msgstr ""
111
 
112
- #: inc/lp-core-functions.php:976
113
- msgid "East Caribbean dollar"
 
 
 
114
  msgstr ""
115
 
116
- #: inc/lp-core-functions.php:977
117
- msgid "Argentine peso"
 
 
118
  msgstr ""
119
 
120
- #: inc/lp-core-functions.php:978
121
- msgid "Armenian dram"
122
  msgstr ""
123
 
124
- #: inc/lp-core-functions.php:979
125
- msgid "Aruban florin"
126
  msgstr ""
127
 
128
- #: inc/lp-core-functions.php:980
129
- msgid "Australian dollar"
130
  msgstr ""
131
 
132
- #: inc/lp-core-functions.php:981
133
- msgid "Azerbaijani manat"
134
  msgstr ""
135
 
136
- #: inc/lp-core-functions.php:982
137
- msgid "Bahamian dollar"
 
 
 
138
  msgstr ""
139
 
140
- #: inc/lp-core-functions.php:983
141
- msgid "Bahraini dinar"
 
 
 
 
142
  msgstr ""
143
 
144
- #: inc/lp-core-functions.php:984
145
- msgid "Bangladeshi taka"
146
  msgstr ""
147
 
148
- #: inc/lp-core-functions.php:985
149
- msgid "Barbadian dollar"
 
150
  msgstr ""
151
 
152
- #: inc/lp-core-functions.php:986
153
- msgid "Belarusian ruble"
 
154
  msgstr ""
155
 
156
- #: inc/lp-core-functions.php:987
157
- msgid "Belizean dollar"
 
158
  msgstr ""
159
 
160
- #: inc/lp-core-functions.php:988
161
- msgid "West African CFA franc"
 
162
  msgstr ""
163
 
164
- #: inc/lp-core-functions.php:989
165
- msgid "Bermudian dollar"
 
166
  msgstr ""
167
 
168
- #: inc/lp-core-functions.php:990
169
- msgid "Bhutanese ngultrum"
170
  msgstr ""
171
 
172
- #: inc/lp-core-functions.php:991
173
- msgid "Bolivian boliviano"
174
  msgstr ""
175
 
176
- #: inc/lp-core-functions.php:992
177
- msgid "US dollar"
 
 
 
178
  msgstr ""
179
 
180
- #: inc/lp-core-functions.php:993
181
- msgid "Bosnia and Herzegovina convertible mark"
 
 
 
 
 
182
  msgstr ""
183
 
184
- #: inc/lp-core-functions.php:994
185
- msgid "Botswana pula"
 
 
186
  msgstr ""
187
 
188
- #: inc/lp-core-functions.php:995
189
- msgid "Brazilian real"
190
  msgstr ""
191
 
192
- #: inc/lp-core-functions.php:996
193
- msgid "Brunei dollar"
194
  msgstr ""
195
 
196
- #: inc/lp-core-functions.php:997
197
- msgid "Bulgarian lev"
198
  msgstr ""
199
 
200
- #: inc/lp-core-functions.php:998
201
- msgid "Burmese kyat"
202
  msgstr ""
203
 
204
- #: inc/lp-core-functions.php:999
205
- msgid "Burundian franc"
206
  msgstr ""
207
 
208
- #: inc/lp-core-functions.php:1000
209
- msgid "Cambodian riel"
210
  msgstr ""
211
 
212
- #: inc/lp-core-functions.php:1001
213
- msgid "Central African CFA franc"
 
214
  msgstr ""
215
 
216
- #: inc/lp-core-functions.php:1002
217
- msgid "Canadian dollar"
218
  msgstr ""
219
 
220
- #: inc/lp-core-functions.php:1003
221
- msgid "Cape Verdean escudo"
 
 
222
  msgstr ""
223
 
224
- #: inc/lp-core-functions.php:1004
225
- msgid "Cayman Islands dollar"
226
  msgstr ""
227
 
228
- #: inc/lp-core-functions.php:1005
229
- msgid "Chilean peso"
230
  msgstr ""
231
 
232
- #: inc/lp-core-functions.php:1006
233
- msgid "Chinese renminbi"
234
  msgstr ""
235
 
236
- #: inc/lp-core-functions.php:1007
237
- msgid "Colombian peso"
238
  msgstr ""
239
 
240
- #: inc/lp-core-functions.php:1008
241
- msgid "Comorian franc"
242
  msgstr ""
243
 
244
- #: inc/lp-core-functions.php:1009
245
- msgid "Congolese franc"
246
  msgstr ""
247
 
248
- #: inc/lp-core-functions.php:1010
249
- msgid "New Zealand dollar"
250
  msgstr ""
251
 
252
- #: inc/lp-core-functions.php:1011
253
- msgid "Costa Rican colón"
254
  msgstr ""
255
 
256
- #: inc/lp-core-functions.php:1012
257
- msgid "Croatian kuna"
258
  msgstr ""
259
 
260
- #: inc/lp-core-functions.php:1013
261
- msgid "Cuban peso"
262
  msgstr ""
263
 
264
- #: inc/lp-core-functions.php:1014
265
- msgid "Netherlands Antilles guilder"
 
 
 
266
  msgstr ""
267
 
268
- #: inc/lp-core-functions.php:1015
269
- msgid "Czech koruna"
270
  msgstr ""
271
 
272
- #: inc/lp-core-functions.php:1016
273
- msgid "Danish krone"
274
  msgstr ""
275
 
276
- #: inc/lp-core-functions.php:1017
277
- msgid "Djiboutian franc"
278
  msgstr ""
279
 
280
- #: inc/lp-core-functions.php:1018
281
- msgid "Dominican peso"
282
  msgstr ""
283
 
284
- #: inc/lp-core-functions.php:1019
285
- msgid "Egyptian pound"
286
  msgstr ""
287
 
288
- #: inc/lp-core-functions.php:1020
289
- msgid "Salvadoran colón"
290
  msgstr ""
291
 
292
- #: inc/lp-core-functions.php:1021
293
- msgid "Eritrean nakfa"
294
  msgstr ""
295
 
296
- #: inc/lp-core-functions.php:1022
297
- msgid "Ethiopian birr"
298
  msgstr ""
299
 
300
- #: inc/lp-core-functions.php:1023
301
- msgid "Falkland Islands pound"
302
  msgstr ""
303
 
304
- #: inc/lp-core-functions.php:1024
305
- msgid "Fijian dollar"
 
 
 
 
 
306
  msgstr ""
307
 
308
- #: inc/lp-core-functions.php:1025
309
- msgid "CFP franc"
310
  msgstr ""
311
 
312
- #: inc/lp-core-functions.php:1026
313
- msgid "Gambian dalasi"
314
  msgstr ""
315
 
316
- #: inc/lp-core-functions.php:1027
317
- msgid "Georgian lari"
318
  msgstr ""
319
 
320
- #: inc/lp-core-functions.php:1028
321
- msgid "Ghanian cedi"
322
  msgstr ""
323
 
324
- #: inc/lp-core-functions.php:1029
325
- msgid "Gibraltar pound"
326
  msgstr ""
327
 
328
- #: inc/lp-core-functions.php:1030
329
- msgid "Guatemalan quetzal"
330
  msgstr ""
331
 
332
- #: inc/lp-core-functions.php:1031
333
- msgid "British pound"
334
  msgstr ""
335
 
336
- #: inc/lp-core-functions.php:1032
337
- msgid "Guinean franc"
338
  msgstr ""
339
 
340
- #: inc/lp-core-functions.php:1033
341
- msgid "Guyanese dollar"
342
  msgstr ""
343
 
344
- #: inc/lp-core-functions.php:1034
345
- msgid "Haitian gourde"
346
  msgstr ""
347
 
348
- #: inc/lp-core-functions.php:1035
349
- msgid "Honduran lempira"
350
  msgstr ""
351
 
352
- #: inc/lp-core-functions.php:1036
353
- msgid "Hong Kong dollar"
354
  msgstr ""
355
 
356
- #: inc/lp-core-functions.php:1037
357
- msgid "Hungarian forint"
358
  msgstr ""
359
 
360
- #: inc/lp-core-functions.php:1038
361
- msgid "Icelandic króna"
362
  msgstr ""
363
 
364
- #: inc/lp-core-functions.php:1039
365
- msgid "Indian rupee"
366
  msgstr ""
367
 
368
- #: inc/lp-core-functions.php:1040
369
- msgid "Indonesian rupiah"
 
 
 
 
 
 
370
  msgstr ""
371
 
372
- #: inc/lp-core-functions.php:1041
373
- msgid "Iranian rial"
374
  msgstr ""
375
 
376
- #: inc/lp-core-functions.php:1042
377
- msgid "Iraqi dinar"
 
 
 
 
378
  msgstr ""
379
 
380
- #: inc/lp-core-functions.php:1043
381
- msgid "Israeli new sheqel"
 
 
382
  msgstr ""
383
 
384
- #: inc/lp-core-functions.php:1044
385
- msgid "Jamaican dollar"
386
  msgstr ""
387
 
388
- #: inc/lp-core-functions.php:1045
389
- msgid "Japanese yen "
390
  msgstr ""
391
 
392
- #: inc/lp-core-functions.php:1046
393
- msgid "Jordanian dinar"
 
394
  msgstr ""
395
 
396
- #: inc/lp-core-functions.php:1047
397
- msgid "Kazakhstani tenge"
398
  msgstr ""
399
 
400
- #: inc/lp-core-functions.php:1048
401
- msgid "Kenyan shilling"
 
 
402
  msgstr ""
403
 
404
- #: inc/lp-core-functions.php:1049
405
- msgid "North Korean won"
406
  msgstr ""
407
 
408
- #: inc/lp-core-functions.php:1050
409
- msgid "Kuwaiti dinar"
410
  msgstr ""
411
 
412
- #: inc/lp-core-functions.php:1051
413
- msgid "Kyrgyzstani som"
 
 
 
414
  msgstr ""
415
 
416
- #: inc/lp-core-functions.php:1052
417
- msgid "South Korean won"
 
418
  msgstr ""
419
 
420
- #: inc/lp-core-functions.php:1053
421
- msgid "Lao kip"
 
422
  msgstr ""
423
 
424
- #: inc/lp-core-functions.php:1054
425
- msgid "Latvian lats"
426
  msgstr ""
427
 
428
- #: inc/lp-core-functions.php:1055
429
- msgid "Lebanese pound"
 
430
  msgstr ""
431
 
432
- #: inc/lp-core-functions.php:1056
433
- msgid "Lesotho loti"
434
  msgstr ""
435
 
436
- #: inc/lp-core-functions.php:1057
437
- msgid "Liberian dollar"
438
  msgstr ""
439
 
440
- #: inc/lp-core-functions.php:1058
441
- #: inc/lp-core-functions.php:1129
442
- msgid "Libyan dinar"
443
  msgstr ""
444
 
445
- #: inc/lp-core-functions.php:1059
446
- msgid "Swiss franc"
 
447
  msgstr ""
448
 
449
- #: inc/lp-core-functions.php:1060
450
- msgid "Lithuanian litas"
451
  msgstr ""
452
 
453
- #: inc/lp-core-functions.php:1061
454
- msgid "Macanese pataca"
455
  msgstr ""
456
 
457
- #: inc/lp-core-functions.php:1062
458
- msgid "Macedonian denar"
459
  msgstr ""
460
 
461
- #: inc/lp-core-functions.php:1063
462
- msgid "Malagasy ariary"
463
  msgstr ""
464
 
465
- #: inc/lp-core-functions.php:1064
466
- msgid "Malawian kwacha"
 
467
  msgstr ""
468
 
469
- #: inc/lp-core-functions.php:1065
470
- msgid "Malaysian ringgit"
471
  msgstr ""
472
 
473
- #: inc/lp-core-functions.php:1066
474
- msgid "Maldivian rufiyaa"
 
475
  msgstr ""
476
 
477
- #: inc/lp-core-functions.php:1067
478
- msgid "Mauritanian ouguiya"
479
  msgstr ""
480
 
481
- #: inc/lp-core-functions.php:1068
482
- msgid "Mauritian rupee"
483
  msgstr ""
484
 
485
- #: inc/lp-core-functions.php:1069
486
- msgid "Mexican peso"
487
  msgstr ""
488
 
489
- #: inc/lp-core-functions.php:1070
490
- msgid "Moldovan leu"
491
  msgstr ""
492
 
493
- #: inc/lp-core-functions.php:1071
494
- msgid "Mongolian tugrik"
 
495
  msgstr ""
496
 
497
- #: inc/lp-core-functions.php:1072
498
- msgid "Moroccan dirham"
 
499
  msgstr ""
500
 
501
- #: inc/lp-core-functions.php:1073
502
- msgid "Mozambican metical"
 
503
  msgstr ""
504
 
505
- #: inc/lp-core-functions.php:1074
506
- msgid "Namibian dollar"
507
  msgstr ""
508
 
509
- #: inc/lp-core-functions.php:1075
510
- msgid "Nepalese rupee"
511
  msgstr ""
512
 
513
- #: inc/lp-core-functions.php:1076
514
- msgid "Nicaraguan córdoba"
515
  msgstr ""
516
 
517
- #: inc/lp-core-functions.php:1077
518
- msgid "Nigerian naira"
519
  msgstr ""
520
 
521
- #: inc/lp-core-functions.php:1078
522
- msgid "Norwegian krone"
 
523
  msgstr ""
524
 
525
- #: inc/lp-core-functions.php:1079
526
- msgid "Omani rial"
 
527
  msgstr ""
528
 
529
- #: inc/lp-core-functions.php:1080
530
- msgid "Pakistani rupee"
 
531
  msgstr ""
532
 
533
- #: inc/lp-core-functions.php:1081
534
- msgid "Panamanian balboa"
 
535
  msgstr ""
536
 
537
- #: inc/lp-core-functions.php:1082
538
- msgid "Papua New Guinea kina"
 
539
  msgstr ""
540
 
541
- #: inc/lp-core-functions.php:1083
542
- msgid "Paraguayan guarani"
 
543
  msgstr ""
544
 
545
- #: inc/lp-core-functions.php:1084
546
- msgid "Peruvian nuevo sol"
 
 
547
  msgstr ""
548
 
549
- #: inc/lp-core-functions.php:1085
550
- msgid "Philippine peso"
 
 
 
 
551
  msgstr ""
552
 
553
- #: inc/lp-core-functions.php:1086
554
- msgid "Polish zloty"
 
555
  msgstr ""
556
 
557
- #: inc/lp-core-functions.php:1087
558
- msgid "Qatari riyal"
 
559
  msgstr ""
560
 
561
- #: inc/lp-core-functions.php:1088
562
- msgid "Romanian leu"
563
  msgstr ""
564
 
565
- #: inc/lp-core-functions.php:1089
566
- msgid "Russian ruble"
567
  msgstr ""
568
 
569
- #: inc/lp-core-functions.php:1090
570
- msgid "Rwandan franc"
571
  msgstr ""
572
 
573
- #: inc/lp-core-functions.php:1091
574
- msgid "Samoan tālā"
575
  msgstr ""
576
 
577
- #: inc/lp-core-functions.php:1092
578
- msgid "São Tomé and Príncipe dobra"
579
  msgstr ""
580
 
581
- #: inc/lp-core-functions.php:1093
582
- msgid "Saudi riyal"
583
  msgstr ""
584
 
585
- #: inc/lp-core-functions.php:1094
586
- msgid "Serbian dinar"
587
  msgstr ""
588
 
589
- #: inc/lp-core-functions.php:1095
590
- msgid "Seychellois rupee"
591
  msgstr ""
592
 
593
- #: inc/lp-core-functions.php:1096
594
- msgid "Sierra Leonean leone"
595
  msgstr ""
596
 
597
- #: inc/lp-core-functions.php:1097
598
- msgid "Singapore dollar"
599
  msgstr ""
600
 
601
- #: inc/lp-core-functions.php:1098
602
- msgid "Solomon Islands dollar"
603
  msgstr ""
604
 
605
- #: inc/lp-core-functions.php:1099
606
- msgid "Somali shilling"
607
  msgstr ""
608
 
609
- #: inc/lp-core-functions.php:1100
610
- msgid "South African rand"
611
  msgstr ""
612
 
613
- #: inc/lp-core-functions.php:1101
614
- msgid "Sri Lankan rupee"
615
  msgstr ""
616
 
617
- #: inc/lp-core-functions.php:1102
618
- msgid "St. Helena pound"
619
  msgstr ""
620
 
621
- #: inc/lp-core-functions.php:1103
622
- msgid "Sudanese pound"
623
  msgstr ""
624
 
625
- #: inc/lp-core-functions.php:1104
626
- msgid "Surinamese dollar"
627
  msgstr ""
628
 
629
- #: inc/lp-core-functions.php:1105
630
- msgid "Swazi lilangeni"
631
  msgstr ""
632
 
633
- #: inc/lp-core-functions.php:1106
634
- msgid "Swedish krona"
635
  msgstr ""
636
 
637
- #: inc/lp-core-functions.php:1107
638
- msgid "Syrian pound"
639
  msgstr ""
640
 
641
- #: inc/lp-core-functions.php:1108
642
- msgid "New Taiwan dollar"
643
  msgstr ""
644
 
645
- #: inc/lp-core-functions.php:1109
646
- msgid "Tajikistani somoni"
647
  msgstr ""
648
 
649
- #: inc/lp-core-functions.php:1110
650
- msgid "Tanzanian shilling"
651
  msgstr ""
652
 
653
- #: inc/lp-core-functions.php:1111
654
- msgid "Thai baht "
655
  msgstr ""
656
 
657
- #: inc/lp-core-functions.php:1112
658
- msgid "Tongan pa’anga"
659
  msgstr ""
660
 
661
- #: inc/lp-core-functions.php:1113
662
- msgid "Trinidad and Tobago dollar"
663
  msgstr ""
664
 
665
- #: inc/lp-core-functions.php:1114
666
- msgid "Tunisian dinar"
667
  msgstr ""
668
 
669
- #: inc/lp-core-functions.php:1115
670
- msgid "Turkish lira"
671
  msgstr ""
672
 
673
- #: inc/lp-core-functions.php:1116
674
- msgid "Turkmenistani manat"
675
  msgstr ""
676
 
677
- #: inc/lp-core-functions.php:1117
678
- msgid "Ugandan shilling"
679
  msgstr ""
680
 
681
- #: inc/lp-core-functions.php:1118
682
- msgid "Ukrainian hryvnia"
683
  msgstr ""
684
 
685
- #: inc/lp-core-functions.php:1119
686
- msgid "United Arab Emirates dirham"
687
  msgstr ""
688
 
689
- #: inc/lp-core-functions.php:1120
690
- msgid "Uruguayan peso"
691
  msgstr ""
692
 
693
- #: inc/lp-core-functions.php:1121
694
- msgid "Uzbekistani som"
695
  msgstr ""
696
 
697
- #: inc/lp-core-functions.php:1122
698
- msgid "Vanuatu vatu"
699
  msgstr ""
700
 
701
- #: inc/lp-core-functions.php:1123
702
- msgid "Venezuelan bolivar"
703
  msgstr ""
704
 
705
- #: inc/lp-core-functions.php:1124
706
- msgid "Vietnamese dong"
707
  msgstr ""
708
 
709
- #: inc/lp-core-functions.php:1125
710
- msgid "Yemeni rial"
711
  msgstr ""
712
 
713
- #: inc/lp-core-functions.php:1126
714
- msgid "Zambian kwacha"
715
  msgstr ""
716
 
717
- #: inc/lp-core-functions.php:1127
718
- msgid "Zimbabwean dollar"
719
  msgstr ""
720
 
721
- #: inc/lp-core-functions.php:1128
722
- msgid "Jersey pound"
723
  msgstr ""
724
 
725
- #: inc/lp-core-functions.php:1415
726
- msgid "week"
727
- msgid_plural "weeks"
728
- msgstr[0] ""
729
- msgstr[1] ""
730
-
731
- #: inc/lp-core-functions.php:1419
732
- msgid "day"
733
- msgid_plural "days"
734
- msgstr[0] ""
735
- msgstr[1] ""
736
-
737
- #: inc/lp-core-functions.php:1424
738
- msgid "hour"
739
- msgid_plural "hours"
740
- msgstr[0] ""
741
- msgstr[1] ""
742
-
743
- #: inc/lp-core-functions.php:1428
744
- msgid "minute"
745
- msgid_plural "minutes"
746
- msgstr[0] ""
747
- msgstr[1] ""
748
-
749
- #: inc/lp-core-functions.php:1497
750
- #: inc/admin/views/quiz/editor.php:29
751
- #: inc/admin/views/tools/course/html-course.php:29
752
- #: inc/admin/views/tools/course/html-user.php:29
753
- msgid "Name"
754
  msgstr ""
755
 
756
- #: inc/lp-core-functions.php:1499
757
- msgid "Your name"
758
  msgstr ""
759
 
760
- #: inc/lp-core-functions.php:1505
761
- #: inc/shortcodes/class-lp-shortcode-register-form.php:72
762
- #: inc/shortcodes/class-lp-shortcode-register-form.php:74
763
- #: inc/admin/meta-box/fields/list-emails.php:28
764
- msgid "Email"
765
  msgstr ""
766
 
767
- #: inc/lp-core-functions.php:1507
768
- msgid "Your email address"
769
  msgstr ""
770
 
771
- #: inc/lp-core-functions.php:1513
772
- msgid "Phone"
773
  msgstr ""
774
 
775
- #: inc/lp-core-functions.php:1515
776
- msgid "Your phone number"
777
  msgstr ""
778
 
779
- #: inc/lp-core-functions.php:1519
780
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:41
781
- msgid "Message"
782
  msgstr ""
783
 
784
- #: inc/lp-core-functions.php:1521
785
- msgid "Your message"
786
  msgstr ""
787
 
788
- #: inc/lp-core-functions.php:1552
789
- msgid "Please enter your name"
790
  msgstr ""
791
 
792
- #: inc/lp-core-functions.php:1557
793
- msgid "Please enter your email address"
794
  msgstr ""
795
 
796
- #: inc/lp-core-functions.php:1565
797
- msgid "Please moderate"
798
  msgstr ""
799
 
800
- #: inc/lp-core-functions.php:1576
801
- #, php-format
802
- msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
803
  msgstr ""
804
 
805
- #: inc/lp-core-functions.php:1577
806
- #, php-format
807
- msgid "Name: %s"
808
  msgstr ""
809
 
810
- #: inc/lp-core-functions.php:1578
811
- #, php-format
812
- msgid "Email: %s"
813
  msgstr ""
814
 
815
- #: inc/lp-core-functions.php:1579
816
- #, php-format
817
- msgid "Phone: %s"
818
  msgstr ""
819
 
820
- #: inc/lp-core-functions.php:1580
821
- #, php-format
822
- msgid "Message: %s"
823
  msgstr ""
824
 
825
- #: inc/lp-core-functions.php:1586
826
- #, php-format
827
- msgid "Accept: %s"
828
  msgstr ""
829
 
830
- #: inc/lp-core-functions.php:1597
831
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:109
832
- msgid "Your request has been sent! We will get back to you soon!"
833
  msgstr ""
834
 
835
- #: inc/lp-core-functions.php:2215
836
- #: inc/class-lp-assets.php:48
837
- msgid "OK"
838
  msgstr ""
839
 
840
- #: inc/lp-core-functions.php:2216
841
- #: inc/class-lp-assets.php:49
842
- #: inc/class-lp-install.php:513
843
- #: inc/order/class-lp-order.php:940
844
- #: inc/custom-post-types/course.php:868
845
- #: inc/admin/class-lp-admin-ajax.php:723
846
- #: inc/admin/class-lp-admin.php:215
847
- #: templates/checkout/form-login.php:103
848
- msgid "Cancel"
849
  msgstr ""
850
 
851
- #: inc/lp-core-functions.php:2217
852
- #: inc/class-lp-assets.php:50
853
- #: inc/class-lp-gdpr.php:426
854
- #: inc/libraries/meta-box/inc/fields/checkbox.php:53
855
- msgid "Yes"
856
  msgstr ""
857
 
858
- #: inc/lp-core-functions.php:2218
859
- #: inc/class-lp-assets.php:51
860
- #: inc/class-lp-gdpr.php:426
861
- #: templates/content-quiz/intro.php:25
862
- #: inc/libraries/meta-box/inc/fields/checkbox.php:53
863
- msgid "No"
864
  msgstr ""
865
 
866
- #: inc/lp-core-functions.php:2463
867
- #, php-format
868
- msgid "Congrats! You've enrolled the course \"%s\"."
869
  msgstr ""
870
 
871
- #: inc/lp-core-functions.php:2496
872
- msgid "Cart"
873
  msgstr ""
874
 
875
- #: inc/lp-core-functions.php:2500
876
- msgid "Enable cart"
877
  msgstr ""
878
 
879
- #: inc/lp-core-functions.php:2501
880
- msgid "Check this option to enable user purchase multiple courses at one time."
881
  msgstr ""
882
 
883
- #: inc/lp-core-functions.php:2507
884
- msgid "Add to cart redirect"
885
  msgstr ""
886
 
887
- #: inc/lp-core-functions.php:2508
888
- msgid "Redirect to checkout immediately after adding course to cart."
889
  msgstr ""
890
 
891
- #: inc/lp-core-functions.php:2514
892
- msgid "AJAX add to cart"
893
  msgstr ""
894
 
895
- #: inc/lp-core-functions.php:2515
896
- msgid "Using AJAX to add course to cart."
897
  msgstr ""
898
 
899
- #: inc/lp-core-functions.php:2521
900
- msgid "Cart page"
901
  msgstr ""
902
 
903
- #: inc/lp-core-functions.php:2659
904
- msgid "Are you sure you want to cancel order?"
905
  msgstr ""
906
 
907
- #: inc/lp-core-functions.php:2660
908
- msgid "Cancel Order"
909
  msgstr ""
910
 
911
- #: inc/lp-core-functions.php:2715
912
- #: inc/course/lp-course-functions.php:1007
913
- #: inc/user/class-lp-profile.php:847
914
- #: inc/user/class-lp-profile.php:881
915
- #: inc/user-item/class-lp-user-item.php:320
916
- msgid "Passed"
917
  msgstr ""
918
 
919
- #: inc/lp-core-functions.php:2718
920
- #: inc/course/lp-course-functions.php:1010
921
- #: inc/user/class-lp-profile.php:848
922
- #: inc/user/class-lp-profile.php:882
923
- #: inc/user-item/class-lp-user-item.php:321
924
- msgid "Failed"
925
  msgstr ""
926
 
927
- #: inc/lp-core-functions.php:2910
928
- msgctxt "static-page-name"
929
- msgid "Checkout"
930
  msgstr ""
931
 
932
- #: inc/lp-core-functions.php:2911
933
- msgctxt "static-page-name"
934
- msgid "Courses"
935
  msgstr ""
936
 
937
- #: inc/lp-core-functions.php:2912
938
- msgctxt "static-page-name"
939
- msgid "Profile"
940
  msgstr ""
941
 
942
- #: inc/lp-core-functions.php:2913
943
- msgctxt "static-page-name"
944
- msgid "Become a Teacher"
945
  msgstr ""
946
 
947
- #: inc/class-lp-assets.php:58
948
- #: inc/class-lp-assets.php:65
949
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:124
950
- #: templates/checkout/payment.php:20
951
- msgid "Processing"
952
  msgstr ""
953
 
954
- #: inc/class-lp-assets.php:59
955
- #: inc/class-lp-assets.php:66
956
- msgid "Redirecting"
957
  msgstr ""
958
 
959
- #: inc/class-lp-assets.php:60
960
- msgid "Invalid field"
961
  msgstr ""
962
 
963
- #: inc/class-lp-assets.php:61
964
- #: inc/attributes/course.php:103
965
- msgid "Unknown error"
966
  msgstr ""
967
 
968
- #: inc/class-lp-assets.php:62
969
- #: templates/checkout/payment.php:19
970
- msgid "Place order"
971
  msgstr ""
972
 
973
- #: inc/class-lp-emails.php:136
974
- #: inc/class-lp-emails.php:143
975
- msgid "Cheatin&#8217; huh?"
976
  msgstr ""
977
 
978
- #: inc/class-lp-widget.php:213
979
- #, php-format
980
- msgid "Function %s should be overwritten in child class"
981
  msgstr ""
982
 
983
- #: inc/class-lp-forms-handler.php:39
984
- #: inc/class-lp-forms-handler.php:116
985
- #: inc/class-lp-forms-handler.php:197
986
- #, php-format
987
- msgid "Field \"%s\" is required."
988
  msgstr ""
989
 
990
- #: inc/class-lp-forms-handler.php:52
991
- msgid "Thank you! Your message has been sent."
992
  msgstr ""
993
 
994
- #: inc/class-lp-forms-handler.php:76
995
- msgid "Your email does not exist!"
996
  msgstr ""
997
 
998
- #: inc/class-lp-forms-handler.php:150
999
- msgid "Login successfully."
1000
  msgstr ""
1001
 
1002
- #: inc/class-lp-forms-handler.php:236
1003
- msgid "Register successfully."
1004
  msgstr ""
1005
 
1006
- #: inc/class-lp-forms-handler.php:261
1007
- msgid "Password is too short!"
1008
  msgstr ""
1009
 
1010
- #: inc/class-lp-forms-handler.php:265
1011
- msgid "Password can not have spacing!"
1012
  msgstr ""
1013
 
1014
- #: inc/class-lp-forms-handler.php:269
1015
- msgid "Password must include at least one letter!"
1016
  msgstr ""
1017
 
1018
- #: inc/class-lp-forms-handler.php:273
1019
- msgid "Password must include at least one capitalized letter!"
1020
  msgstr ""
1021
 
1022
- #: inc/class-lp-forms-handler.php:277
1023
- msgid "Password must include at least one number!"
1024
  msgstr ""
1025
 
1026
- #: inc/class-lp-forms-handler.php:281
1027
- msgid "Password must include at least one of these characters ~!@#$%^&*() !"
1028
  msgstr ""
1029
 
1030
- #: inc/lp-deprecated.php:370
1031
- #: inc/lp-deprecated.php:402
1032
- #: inc/admin/lp-admin-actions.php:59
1033
- #: inc/admin/lp-admin-functions.php:835
1034
- #: inc/admin/lp-admin-functions.php:1000
1035
- #: inc/admin/lp-admin-functions.php:1202
1036
- #: inc/admin/lp-admin-functions.php:2083
1037
- #: inc/user/class-lp-profile.php:813
1038
- #: inc/user/class-lp-profile.php:845
1039
- #: inc/user/class-lp-profile.php:879
1040
- #: templates/widgets/course-info/default.php:44
1041
- #: inc/admin/views/statistics/courses.php:27
1042
- #: inc/admin/views/statistics/courses.php:42
1043
- #: inc/admin/views/statistics/users.php:29
1044
- #: inc/admin/views/statistics/users.php:45
1045
- #: inc/admin/views/statistics/general.php:43
1046
- #: inc/admin/views/statistics/general.php:59
1047
- #: inc/admin/views/statistics/orders.php:28
1048
- #: inc/admin/views/statistics/orders.php:62
1049
- #: inc/libraries/meta-box/inc/fields/select.php:87
1050
- msgid "All"
1051
  msgstr ""
1052
 
1053
- #: inc/lp-deprecated.php:371
1054
- msgid "Learning"
1055
  msgstr ""
1056
 
1057
- #: inc/lp-deprecated.php:372
1058
- #: inc/custom-post-types/order.php:756
1059
- #: inc/user/class-lp-profile.php:284
1060
- msgid "Purchased"
1061
  msgstr ""
1062
 
1063
- #: inc/lp-deprecated.php:373
1064
- #: inc/lp-deprecated.php:404
1065
- #: inc/user/class-lp-profile.php:846
1066
- #: inc/user/class-lp-profile.php:880
1067
- #: inc/user-item/class-lp-user-item.php:319
1068
- msgid "Finished"
1069
  msgstr ""
1070
 
1071
- #: inc/lp-deprecated.php:374
1072
- #: inc/user/class-lp-profile.php:277
1073
- msgid "Owned"
1074
  msgstr ""
1075
 
1076
- #: inc/lp-deprecated.php:403
1077
- #: inc/course/lp-course-functions.php:1013
1078
- #: inc/user-item/class-lp-user-item.php:314
1079
- #: inc/user-item/class-lp-user-item.php:315
1080
- #: inc/user-item/class-lp-user-item.php:316
1081
- msgid "In Progress"
1082
  msgstr ""
1083
 
1084
- #: inc/class-lp-request-handler.php:147
1085
- msgid "You have already purchased this course and haven't finished it."
1086
  msgstr ""
1087
 
1088
- #: inc/class-lp-request-handler.php:155
1089
- msgid ""
1090
- "You have already purchased this course and the order is still processing..."
1091
  msgstr ""
1092
 
1093
- #: inc/class-lp-request-handler.php:178
1094
- msgid "You have finished course."
1095
  msgstr ""
1096
 
1097
- #: inc/class-lp-request-handler.php:194
1098
- msgid "You have to purchase the course before enrolling."
1099
  msgstr ""
1100
 
1101
- #: inc/class-lp-request-handler.php:231
1102
- msgid "Invalid action."
1103
  msgstr ""
1104
 
1105
- #: inc/class-lp-request-handler.php:285
1106
- #: inc/class-lp-request-handler.php:319
1107
- #, php-format
1108
- msgid "You can not enroll course &quot;%s&quot"
1109
  msgstr ""
1110
 
1111
- #: inc/class-lp-request-handler.php:311
1112
- #: inc/course/lp-course-functions.php:1107
1113
- msgid "Invalid request!"
1114
  msgstr ""
1115
 
1116
- #: inc/class-lp-request-handler.php:336
1117
- #, php-format
1118
- msgid "Congrats! You have enrolled &quot;%s&quot"
1119
  msgstr ""
1120
 
1121
- #: inc/class-lp-request-handler.php:366
1122
- msgid "Checkout page hasn't been setup or page does not exists."
1123
  msgstr ""
1124
 
1125
- #: inc/class-lp-request-handler.php:368
1126
- msgid "Checkout error! Please contact with admin for getting more information."
1127
  msgstr ""
1128
 
1129
- #: inc/class-lp-strings.php:16
1130
- #, php-format
1131
- msgid "Do you want to redo quiz \"%s\"?"
1132
  msgstr ""
1133
 
1134
- #: inc/class-lp-strings.php:17
1135
- #, php-format
1136
- msgid "Do you want to complete quiz \"%s\"?"
1137
  msgstr ""
1138
 
1139
- #: inc/class-lp-strings.php:18
1140
- #, php-format
1141
- msgid "Do you want to complete lesson \"%s\"?"
1142
  msgstr ""
1143
 
1144
- #: inc/class-lp-strings.php:19
1145
- #, php-format
1146
- msgid "Do you want to finish course \"%s\"?"
1147
  msgstr ""
1148
 
1149
- #: inc/class-lp-strings.php:20
1150
- #, php-format
1151
- msgid "Do you want to retake course \"%s\"?"
1152
  msgstr ""
1153
 
1154
- #: inc/class-lp-ajax.php:109
1155
- msgid "Sorry! Registration is not allowed on this site."
1156
  msgstr ""
1157
 
1158
- #: inc/class-lp-ajax.php:113
1159
- msgid "Bad request."
1160
  msgstr ""
1161
 
1162
- #: inc/class-lp-ajax.php:192
1163
- #, php-format
1164
- msgid "The order %s has been successfully recovered."
1165
  msgstr ""
1166
 
1167
- #: inc/class-lp-ajax.php:246
1168
- #: inc/admin/class-lp-admin-ajax.php:926
1169
- msgid "Profile picture upload failed"
1170
  msgstr ""
1171
 
1172
- #: inc/class-lp-ajax.php:269
1173
- msgid "Access denied!"
1174
  msgstr ""
1175
 
1176
- #: inc/class-lp-ajax.php:278
1177
- #, php-format
1178
- msgid "You have finished this course \"%s\""
1179
  msgstr ""
1180
 
1181
- #: inc/class-lp-ajax.php:281
1182
- msgid ""
1183
- "Error! You cannot finish this course. Please contact your administrator for "
1184
- "more information."
1185
  msgstr ""
1186
 
1187
- #: inc/class-lp-ajax.php:314
1188
- msgid "Error! Invalid lesson or failed security check."
1189
  msgstr ""
1190
 
1191
- #: inc/class-lp-ajax.php:324
1192
- #, php-format
1193
- msgid "Congrats! You have completed \"%s\"."
1194
  msgstr ""
1195
 
1196
- #: inc/class-lp-ajax.php:362
1197
- msgid "Error! Invalid course or failed security check."
1198
  msgstr ""
1199
 
1200
- #: inc/class-lp-ajax.php:366
1201
- msgid "Error!"
1202
  msgstr ""
1203
 
1204
- #: inc/class-lp-ajax.php:368
1205
- #, php-format
1206
- msgid "You have retaken the course \"%s\""
1207
  msgstr ""
1208
 
1209
- #: inc/class-lp-ajax.php:372
1210
- msgid "Error! You can not retake the course"
1211
  msgstr ""
1212
 
1213
- #: inc/class-lp-backward-plugins.php:40
1214
- msgid ""
1215
- "There are some add-ons had gone outdated and might conflict with <strong>"
1216
- "LearnPress</strong> that need to be deactivated. Please upgrade them to the "
1217
- "newest version to ensure stability and performance of your site."
1218
  msgstr ""
1219
 
1220
- #: inc/class-lp-backward-plugins.php:95
1221
- #, php-format
1222
- msgid ""
1223
- "LearnPress plugin slug should be <strong>%s</strong> to make sure it works "
1224
- "properly. Currently, it is <strong>%s</strong>. Please correct it's name and "
1225
- "active again. <a href=\"%s\">Back</a>"
1226
  msgstr ""
1227
 
1228
- #: inc/class-lp-breadcrumb.php:125
1229
- msgid "Error 404"
1230
  msgstr ""
1231
 
1232
- #: inc/class-lp-breadcrumb.php:224
1233
- #, php-format
1234
- msgid "Courses tagged &ldquo;%s&rdquo;"
1235
  msgstr ""
1236
 
1237
- #: inc/class-lp-breadcrumb.php:278
1238
- #, php-format
1239
- msgid "Posts tagged &ldquo;%s&rdquo;"
1240
  msgstr ""
1241
 
1242
- #: inc/class-lp-breadcrumb.php:355
1243
- #, php-format
1244
- msgid "Author: %s"
1245
  msgstr ""
1246
 
1247
- #: inc/class-lp-breadcrumb.php:388
1248
- #, php-format
1249
- msgid "Search results for &ldquo;%s&rdquo;"
1250
  msgstr ""
1251
 
1252
- #: inc/class-lp-breadcrumb.php:397
1253
- #, php-format
1254
- msgid "Page %d"
1255
  msgstr ""
1256
 
1257
- #: inc/class-lp-page-controller.php:122
1258
- msgid "You can not view this item or it does not exist!"
1259
  msgstr ""
1260
 
1261
- #: inc/class-lp-page-controller.php:150
1262
- #: templates/content-question/single-choice/answer-options.php:17
1263
- #: templates/content-question/multi-choice/answer-options.php:17
1264
- msgid "Invalid question!"
1265
  msgstr ""
1266
 
1267
- #: inc/class-lp-page-controller.php:396
1268
- #, php-format
1269
- msgid "The user %s is not available!"
1270
  msgstr ""
1271
 
1272
- #: inc/class-lp-preview-course.php:40
1273
- msgid "Preview Course"
1274
  msgstr ""
1275
 
1276
- #: inc/class-lp-preview-course.php:83
1277
- #: inc/class-lp-preview-course.php:100
1278
- msgid "Invalid preview item."
1279
  msgstr ""
1280
 
1281
- #: inc/class-lp-preview-course.php:106
1282
- msgid "Access denied."
1283
  msgstr ""
1284
 
1285
- #: inc/class-lp-preview-course.php:178
1286
- #, php-format
1287
- msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
1288
  msgstr ""
1289
 
1290
- #: inc/lp-js-template.php:11
1291
- msgid "--Select a Lesson--"
1292
  msgstr ""
1293
 
1294
- #: inc/class-lp-gdpr.php:49
1295
- msgid "LearnPress Owned Courses"
1296
  msgstr ""
1297
 
1298
- #: inc/class-lp-gdpr.php:57
1299
- msgid "LearnPress Orders"
1300
  msgstr ""
1301
 
1302
- #: inc/class-lp-gdpr.php:65
1303
- msgid "LearnPress Purchased Courses"
1304
  msgstr ""
1305
 
1306
- #: inc/class-lp-gdpr.php:73
1307
- msgid "LearnPress User Profile"
1308
  msgstr ""
1309
 
1310
- #: inc/class-lp-gdpr.php:98
1311
- msgid "Profile Settings"
1312
  msgstr ""
1313
 
1314
- #: inc/class-lp-gdpr.php:147
1315
- msgid "Order ID"
1316
  msgstr ""
1317
 
1318
- #: inc/class-lp-gdpr.php:151
1319
- msgid "Order Date"
1320
  msgstr ""
1321
 
1322
- #: inc/class-lp-gdpr.php:155
1323
- msgid "Order status"
1324
  msgstr ""
1325
 
1326
- #: inc/class-lp-gdpr.php:159
1327
- msgid "Order Total"
1328
  msgstr ""
1329
 
1330
- #: inc/class-lp-gdpr.php:165
1331
- #: inc/custom-post-types/order.php:887
1332
- #: inc/custom-post-types/order.php:888
1333
- #: inc/custom-post-types/order.php:892
1334
- #: inc/user/class-lp-profile.php:312
1335
- #: inc/admin/settings/class-lp-settings-profile.php:165
1336
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:22
1337
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:29
1338
- msgid "Orders"
1339
  msgstr ""
1340
 
1341
- #: inc/class-lp-gdpr.php:213
1342
- #: inc/class-lp-gdpr.php:332
1343
- msgid "Course Author"
1344
  msgstr ""
1345
 
1346
- #: inc/class-lp-gdpr.php:217
1347
- #: inc/class-lp-gdpr.php:336
1348
- msgid "Course Name"
1349
  msgstr ""
1350
 
1351
- #: inc/class-lp-gdpr.php:221
1352
- #: inc/class-lp-gdpr.php:340
1353
- msgid "Course Date"
1354
  msgstr ""
1355
 
1356
- #: inc/class-lp-gdpr.php:225
1357
- #: inc/class-lp-gdpr.php:344
1358
- msgid "Course URL"
1359
  msgstr ""
1360
 
1361
- #: inc/class-lp-gdpr.php:231
1362
- msgid "Owned Course"
1363
  msgstr ""
1364
 
1365
- #: inc/class-lp-gdpr.php:264
1366
- #: inc/class-lp-gdpr.php:400
1367
- msgid "Item Name"
1368
  msgstr ""
1369
 
1370
- #: inc/class-lp-gdpr.php:268
1371
- #: inc/class-lp-gdpr.php:404
1372
- msgid "Item Type"
1373
  msgstr ""
1374
 
1375
- #: inc/class-lp-gdpr.php:272
1376
- #: inc/class-lp-gdpr.php:408
1377
- msgid "Item URL"
1378
  msgstr ""
1379
 
1380
- #: inc/class-lp-gdpr.php:279
1381
- #: inc/class-lp-gdpr.php:432
1382
- msgid "Course Items"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1383
  msgstr ""
1384
 
1385
- #: inc/class-lp-gdpr.php:348
1386
- msgid "Enrolled Date"
1387
  msgstr ""
1388
 
1389
- #: inc/class-lp-gdpr.php:352
1390
- msgid "Finished Date"
 
 
1391
  msgstr ""
1392
 
1393
- #: inc/class-lp-gdpr.php:356
1394
- msgid "Course Status"
1395
  msgstr ""
1396
 
1397
- #: inc/class-lp-gdpr.php:360
1398
- msgid "Course Grade"
1399
  msgstr ""
1400
 
1401
- #: inc/class-lp-gdpr.php:361
1402
- #: templates/content-quiz/result.php:33
1403
- msgid "Ungraded"
1404
  msgstr ""
1405
 
1406
- #: inc/class-lp-gdpr.php:366
1407
- msgid "Purchased Course"
1408
  msgstr ""
1409
 
1410
- #: inc/class-lp-gdpr.php:415
1411
- #: inc/custom-post-types/order.php:759
1412
- #: inc/custom-post-types/order.php:759
1413
- #: templates/emails/order-items-table.php:53
1414
- #: templates/emails/plain/order-items-table.php:30
1415
- #: inc/admin/meta-box/fields/payment-order.php:32
1416
- #: inc/admin/meta-box/fields/list-emails.php:30
1417
- #: templates/profile/tabs/orders/list.php:34
1418
- #: inc/admin/views/meta-boxes/order/details.php:57
1419
- msgid "Status"
1420
  msgstr ""
1421
 
1422
- #: inc/class-lp-gdpr.php:420
1423
- msgid "Grade"
1424
  msgstr ""
1425
 
1426
- #: inc/class-lp-gdpr.php:425
1427
- #: inc/admin/lp-admin-functions.php:1207
1428
- #: inc/user-item/class-lp-user-item.php:318
1429
- #: templates/content-lesson/button-complete.php:36
1430
- #: inc/admin/views/statistics/orders.php:63
1431
- msgid "Completed"
1432
  msgstr ""
1433
 
1434
- #: inc/class-lp-query-list-table.php:28
1435
- #: inc/custom-post-types/course.php:95
1436
- msgid "item"
1437
  msgstr ""
1438
 
1439
- #: inc/class-lp-query-list-table.php:29
1440
- msgid "items"
 
1441
  msgstr ""
1442
 
1443
- #: inc/class-lp-query-list-table.php:140
1444
- msgid "Displaying {{from}} to {{to}} of {{total}} {{item_name}}."
 
1445
  msgstr ""
1446
 
1447
- #: inc/class-lp-query-list-table.php:142
1448
- msgid "Displaying {{from}} to {{to}} of {{total}}."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1449
  msgstr ""
1450
 
1451
  #: inc/lp-template-functions.php:55
1452
  msgid "Your order is waiting for processing"
1453
  msgstr ""
1454
 
1455
- #: inc/lp-template-functions.php:550
1456
  msgid "Overview"
1457
  msgstr ""
1458
 
1459
- #: inc/lp-template-functions.php:558
1460
- #: inc/admin/views/course/curriculum.php:15
1461
  msgid "Curriculum"
1462
  msgstr ""
1463
 
1464
- #: inc/lp-template-functions.php:564
1465
- #: inc/emails/class-lp-email-new-order-instructor.php:26
1466
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:27
1467
  #: inc/emails/class-lp-email-cancelled-order-instructor.php:24
 
1468
  #: inc/emails/class-lp-email-finished-course-instructor.php:27
 
1469
  #: templates/single-course/tabs/instructor.php:22
1470
  msgid "Instructor"
1471
  msgstr ""
1472
 
1473
- #: inc/lp-template-functions.php:1315
1474
  msgid "Course Search Results"
1475
  msgstr ""
1476
 
1477
- #: inc/lp-template-functions.php:1317
1478
- #: inc/custom-post-types/course.php:128
1479
- #: inc/custom-post-types/course.php:130
1480
- #: inc/admin/lp-admin-actions.php:213
1481
- #: inc/admin/class-lp-admin.php:277
1482
- #: inc/user/class-lp-profile.php:299
1483
  #: inc/admin/settings/class-lp-settings-profile.php:149
1484
  #: inc/admin/settings/class-lp-settings-profile.php:274
1485
- #: inc/admin/settings/class-lp-settings-courses.php:12
1486
  #: inc/admin/sub-menus/class-lp-submenu-statistics.php:21
1487
  #: inc/admin/sub-menus/class-lp-submenu-statistics.php:28
1488
- #: inc/admin/views/tools/course/html-user.php:30
1489
  #: inc/admin/views/setup/steps/pages.php:22
 
 
 
1490
  msgid "Courses"
1491
  msgstr ""
1492
 
1493
- #: inc/lp-template-functions.php:1450
1494
  msgctxt "breadcrumb"
1495
  msgid "Home"
1496
  msgstr ""
1497
 
1498
- #: inc/lp-template-functions.php:2325
1499
- #: inc/admin/settings/class-lp-settings-payments.php:131
1500
  #: inc/admin/settings/class-lp-settings-checkout.php:76
 
1501
  msgid "Order received"
1502
  msgstr ""
1503
 
1504
- #: inc/lp-template-functions.php:2341
1505
  #, php-format
1506
  msgid "Access denied \"%s\""
1507
  msgstr ""
1508
 
1509
- #: inc/lp-template-functions.php:2391
1510
  #, php-format
1511
  msgid "Search Results for: &ldquo;%s&rdquo;"
1512
  msgstr ""
1513
 
1514
- #: inc/lp-template-functions.php:2394
1515
  #, php-format
1516
  msgid "&nbsp;&ndash; Page %s"
1517
  msgstr ""
1518
 
1519
- #: inc/lp-template-functions.php:2658
1520
- #: inc/lp-template-functions.php:3218
1521
  msgid "Final"
1522
  msgstr ""
1523
 
1524
- #: inc/lp-template-functions.php:2667
1525
- #: inc/course/lp-course-functions.php:889
1526
- #: inc/custom-post-types/abstract.php:777
1527
- #: inc/custom-post-types/lesson.php:339
1528
  #: inc/custom-post-types/quiz.php:382
1529
  #: templates/single-course/section/item-meta.php:25
1530
  msgid "Preview"
1531
  msgstr ""
1532
 
1533
- #: inc/lp-template-functions.php:2963
1534
  msgid "Fill out the form and send us your requesting."
1535
  msgstr ""
1536
 
1537
- #: inc/lp-template-functions.php:3226
1538
- #: inc/custom-post-types/quiz.php:419
1539
  #, php-format
1540
  msgid "%d question"
1541
  msgid_plural "%d questions"
1542
  msgstr[0] ""
1543
  msgstr[1] ""
1544
 
1545
- #: inc/lp-template-functions.php:3237
1546
  #, php-format
1547
  msgctxt "duration"
1548
  msgid "%s day"
1549
  msgstr ""
1550
 
1551
- #: inc/lp-template-functions.php:3238
1552
  #, php-format
1553
  msgctxt "duration"
1554
  msgid "%s hour"
1555
  msgstr ""
1556
 
1557
- #: inc/lp-template-functions.php:3239
1558
  #, php-format
1559
  msgctxt "duration"
1560
  msgid "%s min"
1561
  msgstr ""
1562
 
1563
- #: inc/lp-template-functions.php:3240
1564
  #, php-format
1565
  msgctxt "duration"
1566
  msgid "%s sec"
1567
  msgstr ""
1568
 
1569
- #: inc/lp-template-functions.php:3252
1570
- #: inc/course/lp-course-functions.php:810
1571
  msgid "Edit this item"
1572
  msgstr ""
1573
 
1574
- #: inc/lp-template-functions.php:3307
1575
  msgid "Back to class"
1576
  msgstr ""
1577
 
1578
- #: inc/lp-template-functions.php:3423
1579
  msgid "Popup links color"
1580
  msgstr ""
1581
 
1582
- #: inc/lp-template-functions.php:3431
1583
  msgid "Popup heading background"
1584
  msgstr ""
1585
 
1586
- #: inc/lp-template-functions.php:3439
1587
  msgid "Popup heading color"
1588
  msgstr ""
1589
 
1590
- #: inc/lp-template-functions.php:3451
1591
  msgid "Popup curriculum background"
1592
  msgstr ""
1593
 
1594
- #: inc/lp-template-functions.php:3460
1595
  msgid "Popup item color"
1596
  msgstr ""
1597
 
1598
- #: inc/lp-template-functions.php:3468
1599
  msgid "Popup active item background"
1600
  msgstr ""
1601
 
1602
- #: inc/lp-template-functions.php:3476
1603
  msgid "Popup active item color"
1604
  msgstr ""
1605
 
1606
- #: inc/lp-template-functions.php:3484
1607
  msgid "Popup content background"
1608
  msgstr ""
1609
 
1610
- #: inc/lp-template-functions.php:3492
1611
  msgid "Popup content color"
1612
  msgstr ""
1613
 
1614
- #: inc/lp-template-functions.php:3500
1615
  msgid "Section heading background"
1616
  msgstr ""
1617
 
1618
- #: inc/lp-template-functions.php:3507
1619
  msgid "Section heading color"
1620
  msgstr ""
1621
 
1622
- #: inc/lp-template-functions.php:3514
1623
  msgid "Section heading bottom color"
1624
  msgstr ""
1625
 
1626
- #: inc/lp-template-functions.php:3522
1627
  msgid "Lines color"
1628
  msgstr ""
1629
 
1630
- #: inc/lp-template-functions.php:3533
1631
  msgid "Profile cover background"
1632
  msgstr ""
1633
 
1634
- #: inc/lp-template-functions.php:3541
1635
  msgid "Scrollbar"
1636
  msgstr ""
1637
 
1638
- #: inc/lp-template-functions.php:3550
1639
  msgid "Progress bar color"
1640
  msgstr ""
1641
 
1642
- #: inc/lp-template-functions.php:3558
1643
  msgid "Progress bar active color"
1644
  msgstr ""
1645
 
@@ -1652,6349 +1721,6663 @@ msgstr ""
1652
  msgid "LearnPress webhook process Complete"
1653
  msgstr ""
1654
 
1655
- #: inc/class-lp-shortcodes.php:225
1656
- msgid "Forgot password?"
 
 
 
1657
  msgstr ""
1658
 
1659
- #: inc/class-lp-shortcodes.php:227
1660
- msgid "Create new account"
 
1661
  msgstr ""
1662
 
1663
- #: inc/class-lp-install.php:512
1664
- msgid ""
1665
- "It seems like you have updated LearnPress from an older version and there "
1666
- "are some outdated courses or data that need to be upgraded."
1667
  msgstr ""
1668
 
1669
- #: inc/class-lp-install.php:513
1670
- msgid "Do not ask again."
 
1671
  msgstr ""
1672
 
1673
- #: inc/class-lp-install.php:513
1674
- msgid "Ok"
 
 
1675
  msgstr ""
1676
 
1677
- #: inc/class-lp-install.php:514
1678
- #: inc/admin/views/tools/database/html-upgrade-database.php:17
1679
- msgid "Upgrade now"
1680
  msgstr ""
1681
 
1682
- #: inc/class-lp-install.php:514
1683
- msgid "No, thank!"
 
 
 
 
1684
  msgstr ""
1685
 
1686
- #: inc/class-lp-install.php:521
1687
  msgid ""
1688
- "LearnPress has been updated and the database needs to be upgraded before you "
1689
- "can work with it. Please notify the site administrator."
1690
  msgstr ""
1691
 
1692
- #: inc/class-lp-install.php:540
1693
- msgid "Thank you for using LearnPress"
1694
  msgstr ""
1695
 
1696
- #: inc/abstract-settings.php:69
1697
- #: inc/admin/settings/abstract-settings-page.php:49
1698
- msgid "No setting available."
1699
  msgstr ""
1700
 
1701
- #: inc/class-lp-multi-language.php:52
1702
- #: inc/custom-post-types/question.php:294
1703
- #: inc/user/class-lp-profile.php:325
1704
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:14
1705
- #: inc/admin/views/quiz/question-meta.php:12
1706
- msgid "Settings"
1707
  msgstr ""
1708
 
1709
- #: inc/class-lp-multi-language.php:53
1710
- #: inc/libraries/meta-box/inc/core.php:38
1711
- msgid "Documentation"
1712
  msgstr ""
1713
 
1714
- #: inc/class-lp-multi-language.php:54
1715
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:15
1716
- msgid "Add-ons"
1717
  msgstr ""
1718
 
1719
- #: inc/class-lp-checkout.php:160
1720
- #: inc/class-lp-checkout.php:425
1721
- msgid "Please enter your email."
1722
  msgstr ""
1723
 
1724
- #: inc/class-lp-checkout.php:165
1725
- msgid "You must accept our Terms & Conditions."
 
1726
  msgstr ""
1727
 
1728
- #: inc/class-lp-checkout.php:210
1729
- #: inc/shortcodes/class-lp-shortcode-register-form.php:64
1730
- #: inc/shortcodes/class-lp-shortcode-register-form.php:66
1731
- msgid "Username"
1732
  msgstr ""
1733
 
1734
- #: inc/class-lp-checkout.php:211
1735
- #: inc/user/class-lp-profile.php:336
1736
- #: inc/shortcodes/class-lp-shortcode-login-form.php:69
1737
- #: inc/shortcodes/class-lp-shortcode-login-form.php:71
1738
- #: inc/shortcodes/class-lp-shortcode-register-form.php:80
1739
- #: inc/shortcodes/class-lp-shortcode-register-form.php:82
1740
- msgid "Password"
1741
  msgstr ""
1742
 
1743
- #: inc/class-lp-checkout.php:267
1744
- #: inc/class-lp-checkout.php:276
1745
- #: inc/class-lp-checkout.php:315
1746
- #, php-format
1747
- msgid "Error %d: Unable to create order. Please try again."
1748
  msgstr ""
1749
 
1750
- #: inc/class-lp-checkout.php:309
1751
- msgid "Item does not exist!"
1752
  msgstr ""
1753
 
1754
- #: inc/class-lp-checkout.php:339
1755
- msgid "Unable to checkout. Order creation failed."
1756
  msgstr ""
1757
 
1758
- #: inc/class-lp-checkout.php:416
1759
- msgid "Please enter username."
1760
  msgstr ""
1761
 
1762
- #: inc/class-lp-checkout.php:420
1763
- msgid "Please enter user password"
1764
  msgstr ""
1765
 
1766
- #: inc/class-lp-checkout.php:505
1767
- msgid "No payment method is selected"
 
 
1768
  msgstr ""
1769
 
1770
- #: inc/class-lp-checkout.php:545
1771
- #: templates/checkout/empty-cart.php:19
1772
- msgid "Your cart is currently empty."
1773
  msgstr ""
1774
 
1775
- #: inc/class-lp-checkout.php:564
1776
- #, php-format
1777
- msgid "Item \"%s\" is not purchasable."
1778
  msgstr ""
1779
 
1780
- #: inc/class-lp-market-products.php:12
1781
- #: inc/admin/class-lp-admin-menu.php:90
1782
- #: inc/admin/lp-admin-functions.php:1582
1783
- #: inc/admin/class-lp-admin.php:103
1784
- #: inc/admin/class-lp-admin.php:105
1785
- #: inc/admin/settings/class-lp-settings-emails.php:161
1786
- msgid "LearnPress"
1787
  msgstr ""
1788
 
1789
- #: inc/class-lp-market-products.php:13
1790
- msgid "Ahihi"
 
 
 
1791
  msgstr ""
1792
 
1793
- #: templates/search-form.php:26
1794
- msgid "Search course..."
1795
  msgstr ""
1796
 
1797
- #: templates/search-form.php:29
1798
- #: inc/admin/views/tools/course/html-course.php:21
1799
- #: inc/admin/views/tools/course/html-user.php:21
1800
- msgid "Search"
1801
  msgstr ""
1802
 
1803
- #: templates/content-archive-course.php:74
1804
- #: inc/abstracts/abstract-shortcode-courses.php:142
1805
- #: inc/admin/views/tools/course/html-course.php:53
1806
- msgid "No course found."
1807
  msgstr ""
1808
 
1809
- #: inc/order/class-lp-order.php:198
1810
- #: inc/order/class-lp-order.php:217
1811
- #: templates/checkout/order-received.php:25
1812
- msgid "Thank you. Your order has been received."
1813
- msgstr ""
 
 
 
 
1814
 
1815
- #: inc/order/class-lp-order.php:389
1816
- msgid "Removed"
 
1817
  msgstr ""
1818
 
1819
- #: inc/order/class-lp-order.php:506
1820
- #, php-format
1821
- msgid "%s (Guest)"
1822
  msgstr ""
1823
 
1824
- #: inc/order/class-lp-order.php:508
1825
- #: inc/custom-post-types/order.php:807
1826
- msgid "(Guest)"
1827
  msgstr ""
1828
 
1829
- #: inc/order/class-lp-order.php:933
1830
- #: inc/custom-post-types/question.php:376
1831
- #: inc/custom-post-types/abstract.php:582
1832
- #: inc/custom-post-types/abstract.php:756
1833
- #: inc/custom-post-types/abstract.php:765
1834
- #: inc/admin/class-lp-install-sample-data.php:130
1835
- #: inc/admin/views/meta-boxes/course/assigned.php:22
1836
- #: inc/admin/views/meta-boxes/quiz/assigned.php:28
1837
- #: inc/admin/views/meta-boxes/quiz/assigned.php:38
1838
- msgid "View"
1839
  msgstr ""
1840
 
1841
- #: inc/order/class-lp-order.php:986
1842
- #, php-format
1843
- msgctxt "full name"
1844
- msgid "%1$s"
1845
  msgstr ""
1846
 
1847
- #: inc/order/class-lp-order.php:1027
1848
- msgid "No user assigned"
1849
  msgstr ""
1850
 
1851
- #: inc/order/class-lp-order.php:1102
1852
- msgid "Order on"
1853
  msgstr ""
1854
 
1855
- #: inc/order/lp-order-functions.php:67
1856
- msgid "Invalid order ID when updating."
1857
  msgstr ""
1858
 
1859
- #: inc/order/lp-order-functions.php:705
1860
- msgctxt "Order status"
1861
- msgid "Pending Payment"
1862
  msgstr ""
1863
 
1864
- #: inc/order/lp-order-functions.php:710
1865
- #, php-format
1866
- msgid "Pending Payment <span class=\"count\">(%s)</span>"
1867
- msgid_plural "Pending Payment <span class=\"count\">(%s)</span>"
1868
- msgstr[0] ""
1869
- msgstr[1] ""
1870
-
1871
- #: inc/order/lp-order-functions.php:713
1872
- msgctxt "Order status"
1873
- msgid "Processing"
1874
  msgstr ""
1875
 
1876
- #: inc/order/lp-order-functions.php:718
1877
- #, php-format
1878
- msgid "Processing <span class=\"count\">(%s)</span>"
1879
- msgid_plural "Processing <span class=\"count\">(%s)</span>"
1880
- msgstr[0] ""
1881
- msgstr[1] ""
1882
 
1883
- #: inc/order/lp-order-functions.php:721
1884
- msgctxt "Order status"
1885
- msgid "Completed"
1886
  msgstr ""
1887
 
1888
- #: inc/order/lp-order-functions.php:726
1889
- #, php-format
1890
- msgid "Completed <span class=\"count\">(%s)</span>"
1891
- msgid_plural "Completed <span class=\"count\">(%s)</span>"
1892
- msgstr[0] ""
1893
- msgstr[1] ""
1894
 
1895
- #: inc/order/lp-order-functions.php:729
1896
- msgctxt "Order status"
1897
- msgid "Cancelled"
 
1898
  msgstr ""
1899
 
1900
- #: inc/order/lp-order-functions.php:734
1901
- #, php-format
1902
- msgid "Cancelled <span class=\"count\">(%s)</span>"
1903
- msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
1904
- msgstr[0] ""
1905
- msgstr[1] ""
1906
 
1907
- #: inc/order/lp-order-functions.php:737
1908
- msgctxt "Order status"
1909
- msgid "Failed"
1910
  msgstr ""
1911
 
1912
- #: inc/order/lp-order-functions.php:742
1913
- #, php-format
1914
- msgid "Failed <span class=\"count\">(%s)</span>"
1915
- msgid_plural "Failed <span class=\"count\">(%s)</span>"
1916
- msgstr[0] ""
1917
- msgstr[1] ""
1918
 
1919
- #: inc/order/lp-order-functions.php:751
1920
- msgid ""
1921
- "Order received in case user buy a course but doesn't finalise the order."
1922
  msgstr ""
1923
 
1924
- #: inc/order/lp-order-functions.php:752
1925
- msgid "Payment received and the order is awaiting fulfillment."
1926
  msgstr ""
1927
 
1928
- #: inc/order/lp-order-functions.php:753
1929
- msgid "Order fulfilled and complete."
 
1930
  msgstr ""
1931
 
1932
- #: inc/order/lp-order-functions.php:754
1933
- msgid "The order is cancelled by an admin or the customer."
1934
  msgstr ""
1935
 
1936
- #: inc/order/lp-order-functions.php:792
1937
- #, php-format
1938
- msgid "Order number <strong>%s</strong> not found"
 
1939
  msgstr ""
1940
 
1941
- #: inc/order/lp-order-functions.php:795
1942
- msgid "Order cancelled by customer"
 
1943
  msgstr ""
1944
 
1945
- #: inc/order/lp-order-functions.php:798
1946
- #, php-format
1947
- msgid "Order number <strong>%s</strong> has been cancelled"
1948
  msgstr ""
1949
 
1950
- #: inc/order/lp-order-functions.php:801
1951
  #, php-format
1952
- msgid "Order number <strong>%s</strong> can not be cancelled"
1953
  msgstr ""
1954
 
1955
- #: inc/order/lp-order-functions.php:839
1956
- #, php-format
1957
- msgid "You have enrolled in this course. <a href=\"%s\">Order details</a>"
1958
  msgstr ""
1959
 
1960
- #: inc/course/lp-course-functions.php:169
1961
- msgctxt "slug"
1962
- msgid "uncategorized"
1963
  msgstr ""
1964
 
1965
- #: inc/course/lp-course-functions.php:217
1966
  #, php-format
1967
- msgid "The course %d does not exists"
1968
  msgstr ""
1969
 
1970
- #: inc/course/lp-course-functions.php:892
1971
- msgid "Permalink only available if the item is already assigned to a course."
1972
  msgstr ""
1973
 
1974
- #: inc/course/lp-course-functions.php:1125
1975
  #, php-format
1976
- msgid "Welcome back, %s"
1977
- msgstr ""
1978
-
1979
- #: inc/course/abstract-course.php:539
1980
- msgid "You enrolled"
1981
  msgstr ""
1982
 
1983
- #: inc/course/abstract-course.php:542
1984
- #, php-format
1985
- msgctxt "students-html"
1986
- msgid "You and one student enrolled"
1987
- msgid_plural ""
1988
- "You and <span class=\"course-students-number\">%1$s</span> students enrolled"
1989
- msgstr[0] ""
1990
- msgstr[1] ""
1991
-
1992
- #: inc/course/abstract-course.php:553
1993
  #, php-format
1994
- msgctxt "students-html"
1995
- msgid "One student enrolled"
1996
- msgid_plural ""
1997
- "<span class=\"course-students-number\">%1$s</span> students enrolled"
1998
- msgstr[0] ""
1999
- msgstr[1] ""
2000
-
2001
- #: inc/course/abstract-course.php:556
2002
- msgid "No student enrolled"
2003
  msgstr ""
2004
 
2005
- #: inc/course/abstract-course.php:731
2006
- #: inc/custom-post-types/course.php:1380
2007
- #: inc/admin/lp-admin-functions.php:1020
2008
- #: inc/admin/lp-admin-functions.php:2103
2009
- #: inc/admin/views/statistics/courses.php:46
2010
- #: inc/admin/views/statistics/general.php:63
2011
- msgid "Free"
2012
  msgstr ""
2013
 
2014
- #: inc/course/abstract-course.php:813
2015
- #: inc/course/abstract-course.php:832
2016
- #: inc/quiz/class-lp-quiz.php:524
2017
- #: inc/lesson/class-lp-lesson.php:104
2018
  #, php-format
2019
- msgid "The function %s doesn't exist"
2020
  msgstr ""
2021
 
2022
- #: inc/course/abstract-course.php:1192
2023
  #, php-format
2024
- msgid "%d of %d items completed"
 
 
 
2025
  msgstr ""
2026
 
2027
- #: inc/course/abstract-course.php:1195
2028
- #: inc/course/abstract-course.php:1197
2029
  #, php-format
2030
- msgid "%d%% completed"
 
 
 
2031
  msgstr ""
2032
 
2033
- #: inc/course/abstract-course.php:1674
2034
- #, php-format
2035
- msgid "This course will end within next %s"
2036
  msgstr ""
2037
 
2038
- #: inc/course/abstract-course.php:1781
2039
- msgctxt "Text of Buy this course with external link"
2040
- msgid "Buy this course"
2041
  msgstr ""
2042
 
2043
- #: inc/course/abstract-course.php:1848
2044
- msgid "Tags: "
2045
  msgstr ""
2046
 
2047
- #: inc/custom-post-types/order.php:511
2048
- msgid "Order number, user name, user email, course name etc..."
 
2049
  msgstr ""
2050
 
2051
- #: inc/custom-post-types/order.php:620
2052
- msgid "Processing..."
 
 
 
 
 
 
 
2053
  msgstr ""
2054
 
2055
- #: inc/custom-post-types/order.php:637
2056
- #: inc/custom-post-types/order.php:640
2057
- msgid "Apply"
 
 
2058
  msgstr ""
2059
 
2060
- #: inc/custom-post-types/order.php:678
2061
- #: inc/custom-post-types/order.php:893
2062
- msgid "View Order"
2063
  msgstr ""
2064
 
2065
- #: inc/custom-post-types/order.php:686
2066
- msgid "View child orders"
 
 
2067
  msgstr ""
2068
 
2069
- #: inc/custom-post-types/order.php:754
2070
- #: inc/custom-post-types/order.php:889
2071
- #: templates/profile/tabs/orders/list.php:32
2072
- msgid "Order"
2073
  msgstr ""
2074
 
2075
- #: inc/custom-post-types/order.php:755
2076
- msgid "Student"
 
 
 
2077
  msgstr ""
2078
 
2079
- #: inc/custom-post-types/order.php:757
2080
- #: templates/checkout/order-received.php:62
2081
- #: templates/profile/tabs/quizzes.php:39
2082
- #: templates/profile/tabs/courses.php:33
2083
- #: inc/admin/views/statistics/orders.php:46
2084
- #: templates/profile/tabs/courses/purchased.php:39
2085
- #: templates/profile/tabs/orders/list.php:33
2086
- #: inc/admin/views/meta-boxes/order/details.php:38
2087
- msgid "Date"
2088
  msgstr ""
2089
 
2090
- #: inc/custom-post-types/order.php:758
2091
- #: templates/order/order-details.php:29
2092
- #: templates/order/order-details.php:85
2093
- #: templates/emails/order-items-table.php:96
2094
- #: templates/checkout/review-order.php:33
2095
- #: templates/checkout/review-order.php:162
2096
- #: templates/checkout/order-received.php:68
2097
- #: templates/emails/plain/order-items-table.php:60
2098
- #: templates/profile/tabs/orders/list.php:35
2099
- #: inc/admin/views/meta-boxes/order/details.php:158
2100
- msgid "Total"
2101
  msgstr ""
2102
 
2103
- #: inc/custom-post-types/order.php:824
2104
- #: inc/admin/class-lp-plugin-install-list-table.php:455
2105
- #, php-format
2106
- msgid "%s ago"
2107
  msgstr ""
2108
 
2109
- #: inc/custom-post-types/order.php:838
2110
- #: templates/checkout/order-received.php:43
2111
- msgid "Course does not exist"
2112
  msgstr ""
2113
 
2114
- #: inc/custom-post-types/order.php:852
2115
- #: templates/checkout/order-received.php:57
2116
- msgid "(No item)"
 
2117
  msgstr ""
2118
 
2119