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
- #: inc/custom-post-types/order.php:860
2120
- #, php-format
2121
- msgid "Pay via <strong>%s</strong>"
2122
  msgstr ""
2123
 
2124
- #: inc/custom-post-types/order.php:890
2125
- msgid "Add New Order"
2126
  msgstr ""
2127
 
2128
- #: inc/custom-post-types/order.php:891
2129
- #: inc/custom-post-types/order.php:974
2130
- #: templates/order/order-details.php:23
2131
- msgid "Order Details"
2132
  msgstr ""
2133
 
2134
- #: inc/custom-post-types/order.php:894
2135
- #: inc/custom-post-types/question.php:190
2136
- #: inc/custom-post-types/lesson.php:208
2137
- #: inc/custom-post-types/course.php:133
2138
- msgid "Add New"
2139
  msgstr ""
2140
 
2141
- #: inc/custom-post-types/order.php:895
2142
- msgid "Update Order"
 
2143
  msgstr ""
2144
 
2145
- #: inc/custom-post-types/order.php:896
2146
- msgid "Search Orders"
 
2147
  msgstr ""
2148
 
2149
- #: inc/custom-post-types/order.php:897
2150
- msgid "No order found"
 
2151
  msgstr ""
2152
 
2153
- #: inc/custom-post-types/order.php:898
2154
- msgid "No order found in Trash"
 
2155
  msgstr ""
2156
 
2157
- #: inc/custom-post-types/order.php:975
2158
- msgid "Order Actions"
 
 
2159
  msgstr ""
2160
 
2161
- #: inc/custom-post-types/question.php:64
2162
- #: inc/custom-post-types/lesson.php:118
2163
- #: inc/custom-post-types/quiz.php:64
2164
- #, php-format
2165
- msgid "Unassigned %s"
2166
  msgstr ""
2167
 
2168
- #: inc/custom-post-types/question.php:147
2169
- #: inc/custom-post-types/quiz.php:180
2170
- #: inc/question/class-lp-question.php:568
2171
- msgid "New Option"
2172
  msgstr ""
2173
 
2174
- #: inc/custom-post-types/question.php:162
2175
- #: inc/updates/_update-from-0.9.php:1216
2176
- msgid "Question Tag"
 
 
2177
  msgstr ""
2178
 
2179
- #: inc/custom-post-types/question.php:163
2180
- #: inc/custom-post-types/question.php:164
2181
- #: inc/custom-post-types/course.php:207
2182
- #: inc/updates/_update-from-0.9.php:1194
2183
- #: inc/updates/_update-from-0.9.php:1195
2184
- #: inc/updates/_update-from-0.9.php:1196
2185
- #: inc/updates/_update-from-0.9.php:1217
2186
- #: inc/updates/_update-from-0.9.php:1218
2187
- msgid "Tag"
2188
  msgstr ""
2189
 
2190
- #: inc/custom-post-types/question.php:165
2191
- #: inc/updates/_update-from-0.9.php:1197
2192
- #: inc/updates/_update-from-0.9.php:1219
2193
- msgid "Add New Tag"
2194
  msgstr ""
2195
 
2196
- #: inc/custom-post-types/question.php:166
2197
- #: inc/updates/_update-from-0.9.php:1198
2198
- #: inc/updates/_update-from-0.9.php:1220
2199
- msgid "All Tags"
2200
  msgstr ""
2201
 
2202
- #: inc/custom-post-types/question.php:184
2203
- #: inc/custom-post-types/question.php:185
2204
- msgid "Question Bank"
2205
  msgstr ""
2206
 
2207
- #: inc/custom-post-types/question.php:186
2208
- #: inc/custom-post-types/quiz.php:183
2209
- #: templates/content-quiz/progress.php:43
2210
- msgid "Question"
2211
  msgstr ""
2212
 
2213
- #: inc/custom-post-types/question.php:187
2214
- #: inc/custom-post-types/quiz.php:184
2215
- #: inc/custom-post-types/quiz.php:380
2216
- #: templates/content-quiz/intro.php:36
2217
- #: inc/admin/views/quiz/editor.php:16
2218
- #: inc/admin/views/quiz/modal-choose-items.php:55
2219
- msgid "Questions"
2220
  msgstr ""
2221
 
2222
- #: inc/custom-post-types/question.php:188
2223
- msgid "View Question"
 
 
 
2224
  msgstr ""
2225
 
2226
- #: inc/custom-post-types/question.php:189
2227
- msgid "Add New Question"
 
2228
  msgstr ""
2229
 
2230
- #: inc/custom-post-types/question.php:191
2231
- msgid "Edit Question"
 
2232
  msgstr ""
2233
 
2234
- #: inc/custom-post-types/question.php:192
2235
- msgid "Update Question"
 
2236
  msgstr ""
2237
 
2238
- #: inc/custom-post-types/question.php:193
2239
- msgid "Search Questions"
 
2240
  msgstr ""
2241
 
2242
- #: inc/custom-post-types/question.php:194
2243
- msgid "No questions found"
 
2244
  msgstr ""
2245
 
2246
- #: inc/custom-post-types/question.php:195
2247
- msgid "No questions found in trash"
2248
  msgstr ""
2249
 
2250
- #: inc/custom-post-types/question.php:298
2251
- #: inc/admin/views/quiz/question-meta.php:31
2252
- msgid "Mark for this question"
2253
  msgstr ""
2254
 
2255
- #: inc/custom-post-types/question.php:302
2256
- #: inc/admin/views/quiz/question-meta.php:37
2257
- msgid "Mark for choosing the right answer."
2258
  msgstr ""
2259
 
2260
- #: inc/custom-post-types/question.php:307
2261
- #: inc/admin/views/quiz/question-meta.php:43
2262
- msgid "Question Explanation"
2263
  msgstr ""
2264
 
2265
- #: inc/custom-post-types/question.php:310
2266
- #: inc/admin/views/quiz/question-meta.php:51
2267
- msgid ""
2268
- "Explain why an option is true and other is false. The text will be shown "
2269
- "when user click on 'Check answer' button."
2270
  msgstr ""
2271
 
2272
- #: inc/custom-post-types/question.php:314
2273
- #: inc/admin/views/quiz/question-meta.php:57
2274
- msgid "Question Hint"
2275
  msgstr ""
2276
 
2277
- #: inc/custom-post-types/question.php:317
2278
- #: inc/admin/views/quiz/question-meta.php:64
2279
- msgid ""
2280
- "Instruction for user to select the right answer. The text will be shown when "
2281
- "users click the 'Hint' button."
2282
  msgstr ""
2283
 
2284
- #: inc/custom-post-types/question.php:336
2285
- #: inc/custom-post-types/lesson.php:330
2286
- #: inc/custom-post-types/course.php:943
2287
- #: inc/custom-post-types/course.php:949
2288
- #: inc/custom-post-types/course.php:1290
2289
- #: inc/custom-post-types/course.php:1297
2290
- #: inc/custom-post-types/quiz.php:378
2291
- msgid "Author"
2292
  msgstr ""
2293
 
2294
- #: inc/custom-post-types/question.php:338
2295
- #: inc/admin/views/settings/payments.php:24
2296
- #: inc/admin/views/quiz/editor.php:30
2297
- msgid "Type"
 
 
2298
  msgstr ""
2299
 
2300
- #: inc/custom-post-types/question.php:374
2301
- #: inc/custom-post-types/abstract.php:580
2302
- #: inc/admin/class-lp-install-sample-data.php:132
2303
- #: inc/attributes/course.php:232
2304
- #: templates/content-lesson/no-content.php:22
2305
- msgid "Edit"
2306
  msgstr ""
2307
 
2308
- #: inc/custom-post-types/question.php:379
2309
- #: inc/custom-post-types/abstract.php:595
2310
- #: inc/admin/views/meta-boxes/course/assigned.php:27
2311
- #: inc/admin/views/meta-boxes/quiz/assigned.php:49
2312
- msgid "Not assigned yet"
2313
  msgstr ""
2314
 
2315
- #: inc/custom-post-types/question.php:533
2316
- #: inc/custom-post-types/lesson.php:499
2317
- #: inc/custom-post-types/quiz.php:654
2318
- msgid "Assigned"
2319
  msgstr ""
2320
 
2321
- #: inc/custom-post-types/abstract.php:144
2322
- #: inc/custom-post-types/abstract.php:160
2323
- msgid "Search by user"
 
2324
  msgstr ""
2325
 
2326
- #: inc/custom-post-types/abstract.php:211
2327
- msgid ""
2328
- "This item has already assigned to course. It will be removed from course if "
2329
- "it is not published."
2330
  msgstr ""
2331
 
2332
- #: inc/custom-post-types/abstract.php:222
2333
- msgid ""
2334
- "This question has already assigned to quiz. It will be removed from quiz if "
2335
- "it is not published."
2336
  msgstr ""
2337
 
2338
- #: inc/custom-post-types/abstract.php:556
2339
- #: inc/admin/lp-admin-functions.php:44
2340
- #: templates/order/order-details.php:28
2341
- #: templates/emails/order-items-table.php:66
2342
- #: templates/checkout/review-order.php:32
2343
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:22
2344
- #: templates/profile/tabs/quizzes.php:37
2345
- #: templates/profile/tabs/courses.php:32
2346
- #: inc/admin/meta-box/fields/course-permalink.php:47
2347
- #: inc/admin/views/statistics/orders.php:47
2348
- #: templates/profile/tabs/courses/purchased.php:38
2349
- #: inc/admin/views/settings/fields/course-permalink.php:31
2350
- msgid "Course"
2351
  msgstr ""
2352
 
2353
- #: inc/custom-post-types/abstract.php:562
2354
- #, php-format
2355
- msgid "Course (%d %s)"
2356
- msgid_plural "Course (%d %s)"
2357
- msgstr[0] ""
2358
- msgstr[1] ""
2359
-
2360
- #: inc/custom-post-types/abstract.php:589
2361
- msgid "Remove Filter"
2362
  msgstr ""
2363
 
2364
- #: inc/custom-post-types/abstract.php:736
2365
- #: inc/custom-post-types/abstract.php:739
2366
- msgid "updated."
2367
  msgstr ""
2368
 
2369
- #: inc/custom-post-types/abstract.php:737
2370
- msgid "Custom field updated."
2371
  msgstr ""
2372
 
2373
- #: inc/custom-post-types/abstract.php:738
2374
- msgid "Custom field deleted."
2375
  msgstr ""
2376
 
2377
- #: inc/custom-post-types/abstract.php:741
2378
- #, php-format
2379
- msgid "Lesson restored to revision from %s"
2380
  msgstr ""
2381
 
2382
- #: inc/custom-post-types/abstract.php:742
2383
- msgid "published."
2384
  msgstr ""
2385
 
2386
- #: inc/custom-post-types/abstract.php:743
2387
- msgid "saved."
 
2388
  msgstr ""
2389
 
2390
- #: inc/custom-post-types/abstract.php:744
2391
- msgid "submitted."
2392
  msgstr ""
2393
 
2394
- #: inc/custom-post-types/abstract.php:746
2395
- #, php-format
2396
- msgid "scheduled for: <strong>%1$s</strong>."
2397
  msgstr ""
2398
 
2399
- #: inc/custom-post-types/abstract.php:748
2400
- msgid "M j, Y @ G:i"
2401
  msgstr ""
2402
 
2403
- #: inc/custom-post-types/abstract.php:750
2404
- msgid "draft updated."
2405
  msgstr ""
2406
 
2407
- #: inc/custom-post-types/lesson.php:134
2408
- #, php-format
2409
- msgid "Preview %s"
2410
  msgstr ""
2411
 
2412
- #: inc/custom-post-types/lesson.php:151
2413
- #, php-format
2414
- msgid "No Preview %s"
2415
  msgstr ""
2416
 
2417
- #: inc/custom-post-types/lesson.php:202
2418
- #: inc/custom-post-types/lesson.php:203
2419
- #: inc/custom-post-types/lesson.php:206
2420
- #: templates/widgets/course-info/default.php:29
2421
- msgid "Lessons"
2422
  msgstr ""
2423
 
2424
- #: inc/custom-post-types/lesson.php:205
2425
- msgid "Add New Lesson"
2426
  msgstr ""
2427
 
2428
- #: inc/custom-post-types/lesson.php:207
2429
- msgid "View Lesson"
 
2430
  msgstr ""
2431
 
2432
- #: inc/custom-post-types/lesson.php:209
2433
- msgid "Edit Lesson"
2434
  msgstr ""
2435
 
2436
- #: inc/custom-post-types/lesson.php:210
2437
- msgid "Update Lesson"
2438
  msgstr ""
2439
 
2440
- #: inc/custom-post-types/lesson.php:211
2441
- msgid "Search Lessons"
2442
  msgstr ""
2443
 
2444
- #: inc/custom-post-types/lesson.php:212
2445
- msgid "No lesson found"
2446
  msgstr ""
2447
 
2448
- #: inc/custom-post-types/lesson.php:213
2449
- msgid "No lesson found in Trash"
2450
  msgstr ""
2451
 
2452
- #: inc/custom-post-types/lesson.php:247
2453
- msgid "Lesson Settings"
2454
  msgstr ""
2455
 
2456
- #: inc/custom-post-types/lesson.php:251
2457
- msgid "Lesson Duration"
2458
  msgstr ""
2459
 
2460
- #: inc/custom-post-types/lesson.php:255
2461
- msgid "Duration of the lesson. Set 0 to disable."
2462
  msgstr ""
2463
 
2464
- #: inc/custom-post-types/lesson.php:259
2465
- msgid "Preview Lesson"
2466
  msgstr ""
2467
 
2468
- #: inc/custom-post-types/lesson.php:262
2469
- msgid ""
2470
- "If this is a preview lesson, then student can view this lesson content "
2471
- "without taking the course."
2472
  msgstr ""
2473
 
2474
- #: inc/custom-post-types/lesson.php:335
2475
- msgid "Format"
 
 
 
 
 
 
 
 
 
 
2476
  msgstr ""
2477
 
2478
- #: inc/custom-post-types/lesson.php:336
2479
- #: inc/custom-post-types/course.php:581
2480
- #: inc/custom-post-types/quiz.php:263
2481
- #: inc/custom-post-types/quiz.php:381
2482
- #: templates/content-quiz/intro.php:28
2483
- msgid "Duration"
2484
  msgstr ""
2485
 
2486
- #: inc/custom-post-types/lesson.php:379
2487
- msgid "Standard"
2488
  msgstr ""
2489
 
2490
- #: inc/custom-post-types/lesson.php:457
2491
- msgid "Please enter the title of the lesson"
2492
  msgstr ""
2493
 
2494
- #: inc/custom-post-types/course.php:96
2495
- msgid "Create a new"
2496
  msgstr ""
2497
 
2498
- #: inc/custom-post-types/course.php:97
2499
- #: inc/custom-post-types/quiz.php:178
2500
- #: templates/checkout/payment.php:132
2501
- #: templates/checkout/form.php:89
2502
- #: inc/admin/views/setup/content.php:75
2503
- #: inc/admin/views/updates/update-screen.php:46
2504
- msgid "Back"
2505
  msgstr ""
2506
 
2507
- #: inc/custom-post-types/course.php:98
2508
- #: inc/custom-post-types/quiz.php:179
2509
- #: inc/admin/views/course/modal-choose-items.php:57
2510
- #: inc/admin/views/quiz/modal-choose-items.php:52
2511
- msgid "Selected items"
2512
  msgstr ""
2513
 
2514
- #: inc/custom-post-types/course.php:99
2515
- msgid "Do you want to remove item \"{{ITEM_NAME}}\" to trash?"
2516
  msgstr ""
2517
 
2518
- #: inc/custom-post-types/course.php:101
2519
- #: templates/checkout/order-received.php:35
2520
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:434
2521
- #: inc/admin/views/meta-boxes/order/details.php:125
2522
- msgid "Item"
2523
  msgstr ""
2524
 
2525
- #: inc/custom-post-types/course.php:102
2526
- msgid "Items"
2527
  msgstr ""
2528
 
2529
- #: inc/custom-post-types/course.php:104
2530
- msgid "Course sale price must less than the regular price"
2531
  msgstr ""
2532
 
2533
- #: inc/custom-post-types/course.php:105
2534
- msgid "Course price must greater than the sale price"
2535
  msgstr ""
2536
 
2537
- #: inc/custom-post-types/course.php:106
2538
- msgid "Sale start date must before sale end date"
2539
  msgstr ""
2540
 
2541
- #: inc/custom-post-types/course.php:107
2542
- msgid "Sale end date must before sale start date"
 
2543
  msgstr ""
2544
 
2545
- #: inc/custom-post-types/course.php:108
2546
- msgid "Invalid date"
 
2547
  msgstr ""
2548
 
2549
- #: inc/custom-post-types/course.php:126
2550
- msgctxt "Post Type General Name"
2551
- msgid "Courses"
2552
  msgstr ""
2553
 
2554
- #: inc/custom-post-types/course.php:127
2555
- msgctxt "Post Type Singular Name"
2556
- msgid "Course"
 
 
 
 
2557
  msgstr ""
2558
 
2559
- #: inc/custom-post-types/course.php:129
2560
- msgid "Parent Item:"
 
 
 
 
 
 
 
2561
  msgstr ""
2562
 
2563
- #: inc/custom-post-types/course.php:131
2564
- msgid "View Course"
 
 
2565
  msgstr ""
2566
 
2567
- #: inc/custom-post-types/course.php:132
2568
- msgid "Add New Course"
 
 
 
 
2569
  msgstr ""
2570
 
2571
- #: inc/custom-post-types/course.php:134
2572
- msgid "Edit Course"
2573
- msgstr ""
2574
-
2575
- #: inc/custom-post-types/course.php:135
2576
- msgid "Update Course"
2577
  msgstr ""
2578
 
2579
- #: inc/custom-post-types/course.php:136
2580
- msgid "Search Courses"
 
 
 
2581
  msgstr ""
2582
 
2583
- #: inc/custom-post-types/course.php:137
2584
- #, php-format
2585
- msgid ""
2586
- "You haven't had any courses yet. Click <a href=\"%s\">Add new</a> to start"
2587
  msgstr ""
2588
 
2589
- #: inc/custom-post-types/course.php:138
2590
- msgid "No course found in Trash"
2591
  msgstr ""
2592
 
2593
- #: inc/custom-post-types/course.php:141
2594
- #: inc/admin/settings/class-lp-settings-courses.php:24
2595
- msgctxt "slug"
2596
- msgid "courses"
2597
  msgstr ""
2598
 
2599
- #: inc/custom-post-types/course.php:178
2600
- #: inc/custom-post-types/course.php:180
2601
- msgid "Course Categories"
2602
  msgstr ""
2603
 
2604
- #: inc/custom-post-types/course.php:181
2605
- #: inc/custom-post-types/course.php:182
2606
- msgid "Category"
2607
  msgstr ""
2608
 
2609
- #: inc/custom-post-types/course.php:183
2610
- msgid "Add New Course Category"
2611
  msgstr ""
2612
 
2613
- #: inc/custom-post-types/course.php:184
2614
- msgid "All Categories"
2615
  msgstr ""
2616
 
2617
- #: inc/custom-post-types/course.php:195
2618
- msgctxt "slug"
2619
- msgid "course-category"
2620
  msgstr ""
2621
 
2622
- #: inc/custom-post-types/course.php:206
2623
- msgid "Course Tags"
2624
  msgstr ""
2625
 
2626
- #: inc/custom-post-types/course.php:208
2627
- msgid "Search Course Tags"
2628
  msgstr ""
2629
 
2630
- #: inc/custom-post-types/course.php:209
2631
- msgid "Popular Course Tags"
2632
  msgstr ""
2633
 
2634
- #: inc/custom-post-types/course.php:210
2635
- msgid "All Course Tags"
 
2636
  msgstr ""
2637
 
2638
- #: inc/custom-post-types/course.php:213
2639
- msgid "Edit Course Tag"
 
2640
  msgstr ""
2641
 
2642
- #: inc/custom-post-types/course.php:214
2643
- msgid "Update Course Tag"
 
2644
  msgstr ""
2645
 
2646
- #: inc/custom-post-types/course.php:215
2647
- msgid "Add New Course Tag"
 
2648
  msgstr ""
2649
 
2650
- #: inc/custom-post-types/course.php:216
2651
- msgid "New Course Tag Name"
2652
  msgstr ""
2653
 
2654
- #: inc/custom-post-types/course.php:217
2655
- msgid "Separate tags with commas"
 
2656
  msgstr ""
2657
 
2658
- #: inc/custom-post-types/course.php:218
2659
- msgid "Add or remove tags"
 
2660
  msgstr ""
2661
 
2662
- #: inc/custom-post-types/course.php:219
2663
- msgid "Choose from the most used tags"
2664
  msgstr ""
2665
 
2666
- #: inc/custom-post-types/course.php:220
2667
- #: inc/admin/lp-admin-actions.php:224
2668
- msgid "Tags"
 
2669
  msgstr ""
2670
 
2671
- #: inc/custom-post-types/course.php:229
2672
- msgctxt "slug"
2673
- msgid "course-tag"
2674
  msgstr ""
2675
 
2676
- #: inc/custom-post-types/course.php:368
2677
- msgid "Sorry! You can not update a course while it is being viewed!"
 
 
2678
  msgstr ""
2679
 
2680
- #: inc/custom-post-types/course.php:559
2681
- msgid "Course Settings"
 
2682
  msgstr ""
2683
 
2684
- #: inc/custom-post-types/course.php:575
2685
- #: inc/user/class-lp-profile.php:330
2686
- #: inc/admin/settings/class-lp-settings-profile.php:54
2687
- #: inc/admin/settings/class-lp-settings-payments.php:55
2688
- #: inc/admin/settings/class-lp-settings-general.php:16
2689
- #: inc/admin/settings/class-lp-settings-general.php:40
2690
- #: inc/admin/settings/class-lp-settings-checkout.php:36
2691
- #: inc/admin/settings/class-lp-settings-courses.php:66
2692
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:26
2693
- msgid "General"
2694
  msgstr ""
2695
 
2696
- #: inc/custom-post-types/course.php:584
2697
- msgid "The duration of the course."
2698
  msgstr ""
2699
 
2700
- #: inc/custom-post-types/course.php:588
2701
- msgid "Maximum Students"
2702
  msgstr ""
2703
 
2704
- #: inc/custom-post-types/course.php:591
2705
- msgid "Maximum number of students who can enroll in this course."
 
 
 
2706
  msgstr ""
2707
 
2708
- #: inc/custom-post-types/course.php:595
2709
- msgid "Students Enrolled"
2710
  msgstr ""
2711
 
2712
- #: inc/custom-post-types/course.php:598
2713
- msgid "How many students have taken this course."
 
 
 
 
2714
  msgstr ""
2715
 
2716
- #: inc/custom-post-types/course.php:609
2717
- msgid "Re-take Course"
 
 
 
2718
  msgstr ""
2719
 
2720
- #: inc/custom-post-types/course.php:613
2721
- msgid ""
2722
- "How many times the user can re-take this course. Set to 0 to disable re-"
2723
- "taking"
2724
  msgstr ""
2725
 
2726
- #: inc/custom-post-types/course.php:617
2727
- msgid "Featured"
 
2728
  msgstr ""
2729
 
2730
- #: inc/custom-post-types/course.php:620
2731
- msgid "Set course as featured."
 
2732
  msgstr ""
2733
 
2734
- #: inc/custom-post-types/course.php:624
2735
- msgid "Block Lessons"
 
2736
  msgstr ""
2737
 
2738
- #: inc/custom-post-types/course.php:627
2739
- msgid "Block lessons content when completed course."
 
2740
  msgstr ""
2741
 
2742
- #: inc/custom-post-types/course.php:631
2743
- msgid "External Link"
 
 
 
2744
  msgstr ""
2745
 
2746
- #: inc/custom-post-types/course.php:634
2747
- msgid "Redirect to this url when you press button buy this course."
2748
  msgstr ""
2749
 
2750
- #: inc/custom-post-types/course.php:638
2751
- msgid "Submission Form"
 
 
 
2752
  msgstr ""
2753
 
2754
- #: inc/custom-post-types/course.php:641
 
 
2755
  msgid ""
2756
- "If this option is ON, then guess can click on the link of items but only see "
2757
- "the submission form."
2758
  msgstr ""
2759
 
2760
- #: inc/custom-post-types/course.php:669
2761
- msgid "The method to assess the result of a student for a course."
 
2762
  msgstr ""
2763
 
2764
- #: inc/custom-post-types/course.php:672
2765
- msgid ""
2766
- "<br /><strong>Note! </strong>No final quiz in course, please add a final quiz"
2767
  msgstr ""
2768
 
2769
- #: inc/custom-post-types/course.php:689
2770
- msgid ""
2771
- "This is conditional \"passing grade\" of Final quiz will apply for result of "
2772
- "this course. When you change it here, the \"passing grade\" also change with "
2773
- "new value for the Final quiz."
2774
  msgstr ""
2775
 
2776
- #: inc/custom-post-types/course.php:695
2777
- msgid ""
2778
- "<p>Evaluate by number of lessons completed per number of total lessons.</p>"
2779
  msgstr ""
2780
 
2781
- #: inc/custom-post-types/course.php:696
2782
- msgid ""
2783
- "E.g: Course has 10 lessons and user completed 5 lessons then the result = "
2784
- "5/10 = 50.%"
2785
  msgstr ""
2786
 
2787
- #: inc/custom-post-types/course.php:697
2788
- msgid ""
2789
- "Evaluate by results of final quiz in course. You have to add a quiz into end "
2790
- "of course."
2791
  msgstr ""
2792
 
2793
- #: inc/custom-post-types/course.php:698
2794
- msgid ""
2795
- "Evaluate by achieved points of completed quizzes per total point of all "
2796
- "quizzes."
2797
  msgstr ""
2798
 
2799
- #: inc/custom-post-types/course.php:699
2800
  msgid ""
2801
- "Evaluate by achieved points of quizzes passed per total point of all quizzes."
 
2802
  msgstr ""
2803
 
2804
- #: inc/custom-post-types/course.php:700
2805
- msgid ""
2806
- "<p>Evaluate by number of quizzes completed per number of total quizzes.</p>"
2807
  msgstr ""
2808
 
2809
- #: inc/custom-post-types/course.php:701
2810
- msgid ""
2811
- "<p>E.g: Course has 10 quizzes and user completed 5 quizzes then the result = "
2812
- "5/10 = 50%.</p>"
2813
  msgstr ""
2814
 
2815
- #: inc/custom-post-types/course.php:708
2816
- msgid "Assessment"
 
 
2817
  msgstr ""
2818
 
2819
- #: inc/custom-post-types/course.php:714
2820
- msgid "Course result"
2821
  msgstr ""
2822
 
2823
- #: inc/custom-post-types/course.php:719
2824
- msgid "Evaluate via lessons"
 
 
 
2825
  msgstr ""
2826
 
2827
- #: inc/custom-post-types/course.php:721
2828
- msgid "Evaluate via results of the final quiz"
 
2829
  msgstr ""
2830
 
2831
- #: inc/custom-post-types/course.php:724
2832
- msgid "Evaluate via results of quizzes"
2833
  msgstr ""
2834
 
2835
- #: inc/custom-post-types/course.php:726
2836
- msgid "Evaluate via results of quizzes passed"
2837
  msgstr ""
2838
 
2839
- #: inc/custom-post-types/course.php:728
2840
- msgid "Evaluate via quizzes"
2841
  msgstr ""
2842
 
2843
- #: inc/custom-post-types/course.php:735
2844
- msgid "Passing condition value"
2845
  msgstr ""
2846
 
2847
- #: inc/custom-post-types/course.php:740
2848
- msgid ""
2849
- "The percentage of quiz result or completed lessons to finish the course."
2850
  msgstr ""
2851
 
2852
- #: inc/custom-post-types/course.php:771
2853
- msgid "Pricing"
2854
  msgstr ""
2855
 
2856
- #: inc/custom-post-types/course.php:803
2857
- #, php-format
2858
- msgid ""
2859
- "This course requires enrollment and the suggested price is <strong>"
2860
- "%s</strong>"
2861
  msgstr ""
2862
 
2863
- #: inc/custom-post-types/course.php:811
2864
- msgid "This course is free."
2865
- msgstr ""
2866
-
2867
- #: inc/custom-post-types/course.php:818
2868
- #, php-format
2869
- msgid "Course price in <strong>%s</strong> currency."
2870
- msgstr ""
2871
-
2872
- #: inc/custom-post-types/course.php:832
2873
- #: inc/custom-post-types/course.php:1293
2874
- #: inc/custom-post-types/course.php:1300
2875
- #: templates/emails/order-items-table.php:68
2876
- msgid "Price"
2877
  msgstr ""
2878
 
2879
- #: inc/custom-post-types/course.php:842
2880
- msgid "Sale Price"
2881
  msgstr ""
2882
 
2883
- #: inc/custom-post-types/course.php:849
2884
  #, php-format
2885
- msgid "Course sale price in <strong>%s</strong> currency."
 
 
2886
  msgstr ""
2887
 
2888
- #: inc/custom-post-types/course.php:850
2889
- msgid "Leave blank to remove sale price."
2890
  msgstr ""
2891
 
2892
- #: inc/custom-post-types/course.php:852
2893
- msgid "Schedule"
2894
  msgstr ""
2895
 
2896
- #: inc/custom-post-types/course.php:857
2897
- msgid "Sale start date"
 
 
2898
  msgstr ""
2899
 
2900
- #: inc/custom-post-types/course.php:865
2901
- msgid "Sale end date"
 
 
 
 
 
 
 
2902
  msgstr ""
2903
 
2904
- #: inc/custom-post-types/course.php:877
2905
- msgid "Price set by Admin"
 
2906
  msgstr ""
2907
 
2908
- #: inc/custom-post-types/course.php:881
2909
- msgid "Not set"
 
2910
  msgstr ""
2911
 
2912
- #: inc/custom-post-types/course.php:884
2913
- msgid "Course Suggestion Price"
 
2914
  msgstr ""
2915
 
2916
- #: inc/custom-post-types/course.php:889
2917
- msgid "The course price you want to suggest for admin to set."
2918
  msgstr ""
2919
 
2920
- #: inc/custom-post-types/course.php:900
2921
- #: inc/custom-post-types/course.php:1383
2922
- msgid "No requirement enroll"
 
2923
  msgstr ""
2924
 
2925
- #: inc/custom-post-types/course.php:903
2926
- msgid "Require users logged in to study or public to all."
 
 
2927
  msgstr ""
2928
 
2929
- #: inc/custom-post-types/course.php:971
2930
- msgid "Review Logs"
2931
  msgstr ""
2932
 
2933
- #: inc/custom-post-types/course.php:1020
2934
- msgid "Course Video"
2935
  msgstr ""
2936
 
2937
- #: inc/custom-post-types/course.php:1025
2938
- msgid "Video ID"
2939
  msgstr ""
2940
 
2941
- #: inc/custom-post-types/course.php:1028
2942
- msgid "The ID of Youtube or Vimeo video"
 
 
 
2943
  msgstr ""
2944
 
2945
- #: inc/custom-post-types/course.php:1032
2946
- msgid "Video Type"
2947
  msgstr ""
2948
 
2949
- #: inc/custom-post-types/course.php:1035
2950
- msgid "Chose video type"
2951
  msgstr ""
2952
 
2953
- #: inc/custom-post-types/course.php:1038
2954
- msgid "Youtube"
2955
  msgstr ""
2956
 
2957
- #: inc/custom-post-types/course.php:1039
2958
- msgid "Vimeo"
 
2959
  msgstr ""
2960
 
2961
- #: inc/custom-post-types/course.php:1043
2962
- msgid "Embed width"
2963
  msgstr ""
2964
 
2965
- #: inc/custom-post-types/course.php:1046
2966
- msgid "Set width of embed"
2967
  msgstr ""
2968
 
2969
- #: inc/custom-post-types/course.php:1050
2970
- msgid "Embed height"
2971
  msgstr ""
2972
 
2973
- #: inc/custom-post-types/course.php:1053
2974
- msgid "Set height of embed"
2975
  msgstr ""
2976
 
2977
- #: inc/custom-post-types/course.php:1175
2978
- msgid "Course has been approved by Reviewer"
2979
  msgstr ""
2980
 
2981
- #: inc/custom-post-types/course.php:1180
2982
- msgid "Course has been rejected by Reviewer"
2983
  msgstr ""
2984
 
2985
- #: inc/custom-post-types/course.php:1185
2986
- #, php-format
2987
- msgid "Course has been submitted by %s"
2988
  msgstr ""
2989
 
2990
- #: inc/custom-post-types/course.php:1190
2991
- msgid "Course has been updated by Reviewer"
 
2992
  msgstr ""
2993
 
2994
- #: inc/custom-post-types/course.php:1291
2995
- #: inc/custom-post-types/course.php:1298
2996
- msgid "Content"
2997
  msgstr ""
2998
 
2999
- #: inc/custom-post-types/course.php:1292
3000
- #: inc/custom-post-types/course.php:1299
3001
- #: inc/admin/lp-admin-functions.php:845
3002
- #: inc/admin/views/statistics/courses.php:8
3003
- #: inc/admin/views/statistics/users.php:8
3004
- #: inc/admin/views/statistics/users.php:47
3005
- #: inc/admin/views/statistics/general.php:8
3006
- #: inc/admin/views/statistics/orders.php:8
3007
- #: inc/admin/views/tools/course/html-course.php:30
3008
- msgid "Students"
3009
  msgstr ""
3010
 
3011
- #: inc/custom-post-types/course.php:1303
3012
- #: inc/admin/lp-admin-actions.php:219
3013
- msgid "Categories"
3014
  msgstr ""
3015
 
3016
- #: inc/custom-post-types/course.php:1352
3017
- #, php-format
3018
- msgid "%d section"
3019
- msgid_plural "%d sections"
3020
- msgstr[0] ""
3021
- msgstr[1] ""
3022
-
3023
- #: inc/custom-post-types/course.php:1352
3024
- msgid "0 section"
3025
  msgstr ""
3026
 
3027
- #: inc/custom-post-types/course.php:1354
3028
- #: templates/widgets/featured-courses/default.php:86
3029
- #: templates/widgets/popular-courses/default.php:81
3030
- #: templates/widgets/recent-courses/default.php:86
3031
- #, php-format
3032
- msgid "%d lesson"
3033
- msgid_plural "%d lessons"
3034
- msgstr[0] ""
3035
- msgstr[1] ""
3036
-
3037
- #: inc/custom-post-types/course.php:1354
3038
- msgid "0 lesson"
3039
  msgstr ""
3040
 
3041
- #: inc/custom-post-types/course.php:1356
3042
- #, php-format
3043
- msgid "%d quiz"
3044
- msgid_plural "%d quizzes"
3045
- msgstr[0] ""
3046
- msgstr[1] ""
3047
-
3048
- #: inc/custom-post-types/course.php:1356
3049
- msgid "0 quiz"
3050
  msgstr ""
3051
 
3052
- #: inc/custom-post-types/course.php:1363
3053
- msgid "No content"
3054
  msgstr ""
3055
 
3056
- #: inc/custom-post-types/quiz.php:90
3057
- #: inc/custom-post-types/quiz.php:91
3058
- #: inc/custom-post-types/quiz.php:95
3059
- #: inc/user/class-lp-profile.php:306
3060
- #: inc/admin/settings/class-lp-settings-profile.php:157
3061
- #: inc/admin/settings/class-lp-settings-profile.php:291
3062
- #: templates/widgets/course-info/default.php:34
3063
- msgid "Quizzes"
3064
  msgstr ""
3065
 
3066
- #: inc/custom-post-types/quiz.php:93
3067
- msgid "Add New Quiz"
3068
  msgstr ""
3069
 
3070
- #: inc/custom-post-types/quiz.php:94
3071
- msgid "Edit Quiz"
3072
  msgstr ""
3073
 
3074
- #: inc/custom-post-types/quiz.php:96
3075
- msgid "View Quiz"
3076
  msgstr ""
3077
 
3078
- #: inc/custom-post-types/quiz.php:97
3079
- #: inc/curds/class-lp-quiz-curd.php:83
3080
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:141
3081
- msgid "New Quiz"
3082
  msgstr ""
3083
 
3084
- #: inc/custom-post-types/quiz.php:98
3085
- msgid "Update Quiz"
3086
  msgstr ""
3087
 
3088
- #: inc/custom-post-types/quiz.php:99
3089
- msgid "Search Quizzes"
3090
  msgstr ""
3091
 
3092
- #: inc/custom-post-types/quiz.php:100
3093
- #, php-format
3094
  msgid ""
3095
- "You haven't had any quizzes yet. Click <a href=\"%s\">Add new</a> to start"
 
3096
  msgstr ""
3097
 
3098
- #: inc/custom-post-types/quiz.php:101
3099
- msgid "No quiz found in Trash"
3100
  msgstr ""
3101
 
3102
- #: inc/custom-post-types/quiz.php:176
3103
- msgid "Option"
 
3104
  msgstr ""
3105
 
3106
- #: inc/custom-post-types/quiz.php:181
3107
- msgid "Do you want to move question \"{{QUESTION_NAME}}\" to trash?"
 
3108
  msgstr ""
3109
 
3110
- #: inc/custom-post-types/quiz.php:226
3111
- msgid "General Settings"
 
3112
  msgstr ""
3113
 
3114
- #: inc/custom-post-types/quiz.php:232
3115
- msgid "Pagination Questions"
3116
  msgstr ""
3117
 
3118
- #: inc/custom-post-types/quiz.php:233
3119
- msgid ""
3120
- "Show list of questions while doing quiz as ordered numbers (1, 2, 3, etc)."
3121
  msgstr ""
3122
 
3123
- #: inc/custom-post-types/quiz.php:239
3124
- msgid "Review Questions"
3125
  msgstr ""
3126
 
3127
- #: inc/custom-post-types/quiz.php:242
3128
- msgid "Allow re-viewing questions after completing quiz."
3129
  msgstr ""
3130
 
3131
- #: inc/custom-post-types/quiz.php:246
3132
- msgid "Show Correct Answer"
 
3133
  msgstr ""
3134
 
3135
- #: inc/custom-post-types/quiz.php:249
3136
- msgid "Show correct answer when reviewing questions."
 
3137
  msgstr ""
3138
 
3139
- #: inc/custom-post-types/quiz.php:264
3140
- msgid "Duration of the quiz. Set 0 to disable."
3141
- msgstr ""
 
3142
 
3143
- #: inc/custom-post-types/quiz.php:272
3144
- msgid "Preview Quiz"
 
3145
  msgstr ""
3146
 
3147
- #: inc/custom-post-types/quiz.php:275
3148
- msgid ""
3149
- "If this is a preview quiz, then student can do this quiz without taking the "
3150
- "course."
3151
  msgstr ""
3152
 
3153
- #: inc/custom-post-types/quiz.php:279
3154
- msgid "Minus Points"
3155
  msgstr ""
3156
 
3157
- #: inc/custom-post-types/quiz.php:282
3158
- msgid "How many points minus for each wrong question in quiz."
3159
  msgstr ""
3160
 
3161
- #: inc/custom-post-types/quiz.php:288
3162
- msgid "Minus For Skip"
3163
  msgstr ""
3164
 
3165
- #: inc/custom-post-types/quiz.php:291
3166
- msgid "Minus points for skip questions."
3167
  msgstr ""
3168
 
3169
- #: inc/custom-post-types/quiz.php:305
3170
- msgid "Passing Grade (<span>%</span>)"
 
3171
  msgstr ""
3172
 
3173
- #: inc/custom-post-types/quiz.php:306
3174
- msgid "Requires user reached this point to pass the quiz."
3175
  msgstr ""
3176
 
3177
- #: inc/custom-post-types/quiz.php:315
3178
- msgid "Re-take"
3179
  msgstr ""
3180
 
3181
- #: inc/custom-post-types/quiz.php:318
3182
- msgid ""
3183
- "How many times the user can re-take this quiz. Set to 0 to disable re-taking."
3184
  msgstr ""
3185
 
3186
- #: inc/custom-post-types/quiz.php:323
3187
- msgid "Archive History"
3188
  msgstr ""
3189
 
3190
- #: inc/custom-post-types/quiz.php:326
3191
- msgid "Archive quiz results for each time."
3192
  msgstr ""
3193
 
3194
- #: inc/custom-post-types/quiz.php:340
3195
- msgid "Show Check Answer"
3196
  msgstr ""
3197
 
3198
- #: inc/custom-post-types/quiz.php:343
3199
- msgid ""
3200
- "Show button to check answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
3201
- "N = Number of check )."
3202
  msgstr ""
3203
 
3204
- #: inc/custom-post-types/quiz.php:349
3205
- msgid "Show Hint"
3206
  msgstr ""
3207
 
3208
- #: inc/custom-post-types/quiz.php:352
 
 
 
 
 
3209
  msgid ""
3210
- "Show button to hint answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
3211
- "N = Number of check )."
3212
  msgstr ""
3213
 
3214
- #: inc/custom-post-types/quiz.php:419
3215
- msgid "This quiz has no questions"
 
 
3216
  msgstr ""
3217
 
3218
- #: inc/emails/class-lp-email-new-order-instructor.php:27
3219
- msgid "Send email to course's instructor when user has purchased course."
3220
  msgstr ""
3221
 
3222
- #: inc/emails/class-lp-email-new-order-instructor.php:29
3223
- #: inc/emails/class-lp-email-new-order-admin.php:30
3224
- msgid "New order placed on {{order_date}}"
3225
  msgstr ""
3226
 
3227
- #: inc/emails/class-lp-email-new-order-instructor.php:30
3228
- #: inc/emails/class-lp-email-new-order-admin.php:31
3229
- msgid "New user order"
3230
  msgstr ""
3231
 
3232
- #: inc/emails/class-lp-email-completed-order-guest.php:29
3233
- #: inc/emails/class-lp-email-cancelled-order-guest.php:27
3234
- #: inc/emails/class-lp-email-processing-order-guest.php:27
3235
- #: inc/emails/class-lp-email-new-order-guest.php:27
3236
- #: inc/admin/class-lp-admin-assets.php:39
3237
- msgid "Guest"
3238
  msgstr ""
3239
 
3240
- #: inc/emails/class-lp-email-completed-order-guest.php:30
3241
- #: inc/emails/class-lp-email-new-order-guest.php:28
3242
- msgid "Send email to the user who has bought course as guest."
3243
  msgstr ""
3244
 
3245
- #: inc/emails/class-lp-email-completed-order-guest.php:32
3246
- #: inc/emails/class-lp-email-completed-order-user.php:32
3247
- msgid "Your order on {{order_date}} has completed"
3248
  msgstr ""
3249
 
3250
- #: inc/emails/class-lp-email-completed-order-guest.php:33
3251
- #: inc/emails/class-lp-email-completed-order-user.php:33
3252
- msgid "Your order has completed"
3253
  msgstr ""
3254
 
3255
- #: inc/emails/class-lp-email-finished-course-admin.php:28
3256
- #: inc/emails/class-lp-email-cancelled-order-admin.php:27
3257
- #: inc/emails/class-lp-email-new-order-admin.php:27
3258
- #: inc/emails/class-lp-email-completed-order-admin.php:29
3259
- #: inc/emails/class-lp-email-enrolled-course-admin.php:28
3260
- msgid "Admin"
3261
  msgstr ""
3262
 
3263
- #: inc/emails/class-lp-email-finished-course-admin.php:29
3264
- msgid "Send this email to admin when user has finished course."
3265
  msgstr ""
3266
 
3267
- #: inc/emails/class-lp-email-finished-course-admin.php:30
3268
- #: inc/emails/class-lp-email-finished-course-instructor.php:30
3269
- msgid "{{user_display_name}} has finished course"
3270
  msgstr ""
3271
 
3272
- #: inc/emails/class-lp-email-finished-course-admin.php:31
3273
- #: inc/emails/class-lp-email-finished-course-instructor.php:31
3274
- msgid "User has finished course"
3275
  msgstr ""
3276
 
3277
- #: inc/emails/class-lp-email-instructor-accepted.php:26
3278
- msgid "Accepted"
3279
  msgstr ""
3280
 
3281
- #: inc/emails/class-lp-email-instructor-accepted.php:27
3282
- msgid "Become an instructor email accepted."
3283
  msgstr ""
3284
 
3285
- #: inc/emails/class-lp-email-instructor-accepted.php:29
3286
- msgid "[{{site_title}}] Your request to become an instructor accepted"
3287
  msgstr ""
3288
 
3289
- #: inc/emails/class-lp-email-instructor-accepted.php:30
3290
- msgid "Become an instructor accepted"
3291
  msgstr ""
3292
 
3293
- #: inc/emails/class-lp-email-cancelled-order-admin.php:28
3294
- msgid "Send email to admin when order has been cancelled."
 
 
 
3295
  msgstr ""
3296
 
3297
- #: inc/emails/class-lp-email-cancelled-order-admin.php:30
3298
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:27
3299
- msgid "Order placed on {{order_date}} has been cancelled"
 
 
 
 
 
 
 
 
3300
  msgstr ""
3301
 
3302
- #: inc/emails/class-lp-email-cancelled-order-admin.php:31
3303
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:28
3304
- msgid "User order has been cancelled"
 
 
 
3305
  msgstr ""
3306
 
3307
- #: inc/emails/class-lp-email-new-order-user.php:27
3308
- #: inc/emails/class-lp-email-finished-course-user.php:27
3309
- #: inc/emails/class-lp-email-enrolled-course-user.php:27
3310
- #: inc/emails/class-lp-email-completed-order-user.php:29
3311
- #: inc/emails/class-lp-email-processing-order-user.php:26
3312
- #: inc/emails/class-lp-email-cancelled-order-user.php:27
3313
- msgid "User"
3314
  msgstr ""
3315
 
3316
- #: inc/emails/class-lp-email-new-order-user.php:28
3317
- msgid "Send email to the user who has bought course."
3318
  msgstr ""
3319
 
3320
- #: inc/emails/class-lp-email-new-order-user.php:30
3321
- #: inc/emails/class-lp-email-processing-order-guest.php:30
3322
- #: inc/emails/class-lp-email-new-order-guest.php:30
3323
- #: inc/emails/class-lp-email-processing-order-user.php:29
3324
- msgid "Your order placed on {{order_date}}"
3325
  msgstr ""
3326
 
3327
- #: inc/emails/class-lp-email-new-order-user.php:31
3328
- #: inc/emails/class-lp-email-processing-order-guest.php:31
3329
- #: inc/emails/class-lp-email-new-order-guest.php:31
3330
- #: inc/emails/class-lp-email-processing-order-user.php:30
3331
- msgid "Thank you for your order"
3332
  msgstr ""
3333
 
3334
- #: inc/emails/class-lp-email-published-course.php:28
3335
- msgid "Approved course"
3336
  msgstr ""
3337
 
3338
- #: inc/emails/class-lp-email-published-course.php:29
3339
- msgid "Settings for email when a course is approved."
 
 
3340
  msgstr ""
3341
 
3342
- #: inc/emails/class-lp-email-published-course.php:34
3343
- msgid "[{{site_title}}] Your course {{course_name}} has been approved"
3344
  msgstr ""
3345
 
3346
- #: inc/emails/class-lp-email-published-course.php:35
3347
- msgid "Course approved"
3348
  msgstr ""
3349
 
3350
- #: inc/emails/class-lp-email-published-course.php:122
3351
- #: inc/emails/class-lp-email.php:996
3352
- #: inc/emails/class-lp-email-new-course.php:131
3353
- #: inc/emails/class-lp-email-user-order-completed.php:137
3354
- #: inc/emails/class-lp-email-rejected-course.php:119
3355
- #: inc/emails/class-lp-email-updated-course.php:164
3356
- #: inc/emails/class-lp-email-user-order-changed-status.php:136
3357
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:498
3358
- #: inc/admin/views/settings/payments.php:17
3359
- #: inc/admin/views/setup/setup-paypal.php:17
3360
- #: inc/admin/views/setup/setup-stripe.php:3
3361
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:25
3362
- msgid "Enable"
3363
  msgstr ""
3364
 
3365
- #: inc/emails/class-lp-email-published-course.php:128
3366
- #: inc/emails/class-lp-email.php:1019
3367
- #: inc/emails/class-lp-email-new-course.php:154
3368
- #: inc/emails/class-lp-email-user-order-completed.php:143
3369
- #: inc/emails/class-lp-email-rejected-course.php:125
3370
- #: inc/emails/class-lp-email-updated-course.php:170
3371
- #: inc/emails/class-lp-email-user-order-changed-status.php:142
3372
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:33
3373
- msgid "Subject"
3374
  msgstr ""
3375
 
3376
- #: inc/emails/class-lp-email-published-course.php:132
3377
- #: inc/emails/class-lp-email.php:1023
3378
- #: inc/emails/class-lp-email-new-course.php:158
3379
- #: inc/emails/class-lp-email-user-order-completed.php:147
3380
- #: inc/emails/class-lp-email-rejected-course.php:129
3381
- #: inc/emails/class-lp-email-updated-course.php:174
3382
- #: inc/emails/class-lp-email-user-order-changed-status.php:146
3383
- #, php-format
3384
- msgid "Email subject, default: <code>%s</code>."
3385
  msgstr ""
3386
 
3387
- #: inc/emails/class-lp-email-published-course.php:145
3388
- #: inc/emails/class-lp-email.php:1036
3389
- #: inc/emails/class-lp-email-new-course.php:171
3390
- #: inc/emails/class-lp-email-user-order-completed.php:160
3391
- #: inc/emails/class-lp-email-rejected-course.php:142
3392
- #: inc/emails/class-lp-email-updated-course.php:187
3393
- #: inc/emails/class-lp-email-user-order-changed-status.php:159
3394
- msgid "Heading"
3395
  msgstr ""
3396
 
3397
- #: inc/emails/class-lp-email-published-course.php:149
3398
- #: inc/emails/class-lp-email.php:1040
3399
- #: inc/emails/class-lp-email-new-course.php:175
3400
- #: inc/emails/class-lp-email-user-order-completed.php:164
3401
- #: inc/emails/class-lp-email-rejected-course.php:146
3402
- #: inc/emails/class-lp-email-updated-course.php:191
3403
- #: inc/emails/class-lp-email-user-order-changed-status.php:163
3404
- #, php-format
3405
- msgid "Email heading, default: <code>%s</code>."
3406
  msgstr ""
3407
 
3408
- #: inc/emails/class-lp-email-published-course.php:162
3409
- #: inc/emails/class-lp-email.php:1053
3410
- #: inc/emails/class-lp-email-new-course.php:188
3411
- #: inc/emails/class-lp-email-user-order-completed.php:177
3412
- #: inc/emails/class-lp-email-rejected-course.php:159
3413
- #: inc/emails/class-lp-email-updated-course.php:204
3414
- #: inc/emails/class-lp-email-user-order-changed-status.php:176
3415
- #: inc/admin/views/settings/emails/email-template.php:6
3416
- #: inc/admin/views/settings/emails/_email-template.php:3
3417
- msgid "Email content"
3418
  msgstr ""
3419
 
3420
- #: inc/emails/class-lp-email.php:1002
3421
- #: inc/emails/class-lp-email-new-course.php:137
3422
- msgid "Recipient(s)"
 
 
3423
  msgstr ""
3424
 
3425
- #: inc/emails/class-lp-email.php:1006
3426
- #: inc/emails/class-lp-email-new-course.php:141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3427
  #, php-format
3428
- msgid "Email recipient(s) (separated by comma), default: <code>%s</code>."
3429
  msgstr ""
3430
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3431
  #: inc/emails/class-lp-email-new-course.php:28
3432
  #: inc/emails/class-lp-email-new-course.php:35
3433
  msgid "New course"
3434
  msgstr ""
3435
 
3436
- #: inc/emails/class-lp-email-new-course.php:29
3437
- msgid "Email settings when a new course is submitted for review."
3438
  msgstr ""
3439
 
3440
- #: inc/emails/class-lp-email-new-course.php:34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3441
  msgid ""
3442
- "[{{site_title}}] New course has been submitted for review ({{course_name}})"
 
3443
  msgstr ""
3444
 
3445
- #: inc/emails/class-lp-email-finished-course-user.php:28
3446
- msgid "Send this email to user when they have finished course."
 
 
 
3447
  msgstr ""
3448
 
3449
- #: inc/emails/class-lp-email-finished-course-user.php:30
3450
- msgid "[{{site_title}}] You have finished course"
3451
  msgstr ""
3452
 
3453
- #: inc/emails/class-lp-email-finished-course-user.php:31
3454
- msgid "You have finished course"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3455
  msgstr ""
3456
 
3457
- #: inc/emails/class-lp-email-enrolled-course-user.php:28
3458
- msgid "Send this email to user when they have enrolled course."
3459
  msgstr ""
3460
 
3461
- #: inc/emails/class-lp-email-enrolled-course-user.php:30
3462
- msgid "[{{site_title}}] You have enrolled in course"
 
 
 
 
 
 
 
3463
  msgstr ""
3464
 
3465
- #: inc/emails/class-lp-email-enrolled-course-user.php:31
3466
- msgid "You have enrolled course"
3467
  msgstr ""
3468
 
3469
- #: inc/emails/class-lp-email-user-order-completed.php:27
3470
- msgid "User order completed"
3471
  msgstr ""
3472
 
3473
- #: inc/emails/class-lp-email-user-order-completed.php:28
3474
- msgid "Send email to user when the order is completed"
3475
  msgstr ""
3476
 
3477
- #: inc/emails/class-lp-email-user-order-completed.php:33
3478
- msgid "Your order {{order_date}} is completed"
3479
  msgstr ""
3480
 
3481
- #: inc/emails/class-lp-email-user-order-completed.php:34
3482
- msgid "Your order {{order_number}} is completed"
3483
  msgstr ""
3484
 
3485
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:28
3486
- msgid "Send this email to instructor when they have enrolled course."
3487
  msgstr ""
3488
 
3489
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:30
3490
- #: inc/emails/class-lp-email-enrolled-course-admin.php:30
3491
- msgid "{{user_display_name}} has enrolled course"
3492
  msgstr ""
3493
 
3494
- #: inc/emails/class-lp-email-enrolled-course-instructor.php:31
3495
- #: inc/emails/class-lp-email-enrolled-course-admin.php:31
3496
- msgid "User has enrolled course"
3497
  msgstr ""
3498
 
3499
- #: inc/emails/class-lp-email-new-order-admin.php:28
3500
- msgid "Send email to admin when new order is placed."
 
 
 
3501
  msgstr ""
3502
 
3503
- #: inc/emails/class-lp-email-completed-order-admin.php:30
3504
- msgid "Send email to admin when an order has been completed."
 
 
3505
  msgstr ""
3506
 
3507
- #: inc/emails/class-lp-email-completed-order-admin.php:32
3508
- msgid "Order placed on {{order_date}} has been completed"
 
3509
  msgstr ""
3510
 
3511
- #: inc/emails/class-lp-email-completed-order-admin.php:33
3512
- msgid "User order has been completed"
 
 
 
 
 
 
3513
  msgstr ""
3514
 
3515
- #: inc/emails/class-lp-email-cancelled-order-instructor.php:25
3516
- msgid "Send email to course instructor when order has been cancelled"
3517
  msgstr ""
3518
 
3519
- #: inc/emails/class-lp-email-cancelled-order-guest.php:28
3520
- msgid "Send email to guest when order has been cancelled."
 
 
3521
  msgstr ""
3522
 
3523
- #: inc/emails/class-lp-email-cancelled-order-guest.php:30
3524
- #: inc/emails/class-lp-email-cancelled-order-user.php:30
3525
- msgid "Your order on {{order_date}} has been cancelled"
3526
  msgstr ""
3527
 
3528
- #: inc/emails/class-lp-email-cancelled-order-guest.php:31
3529
- #: inc/emails/class-lp-email-cancelled-order-user.php:31
3530
- msgid "Your order has been cancelled"
3531
  msgstr ""
3532
 
3533
- #: inc/emails/class-lp-email-enrolled-course-admin.php:29
3534
- msgid "Send this email to admin when user has enrolled course."
 
 
3535
  msgstr ""
3536
 
3537
- #: inc/emails/class-lp-email-finished-course-instructor.php:28
3538
- msgid "Send this email to instructor when they have finished course."
3539
  msgstr ""
3540
 
3541
- #: inc/emails/class-lp-email-rejected-course.php:28
3542
- #: inc/emails/class-lp-email-rejected-course.php:35
3543
- msgid "Rejected course"
 
 
3544
  msgstr ""
3545
 
3546
- #: inc/emails/class-lp-email-rejected-course.php:29
3547
- msgid "Settings for email when a course is rejected."
3548
  msgstr ""
3549
 
3550
- #: inc/emails/class-lp-email-rejected-course.php:34
3551
- msgid "[{{site_title}}] Your course {{course_name}} has been rejected"
 
3552
  msgstr ""
3553
 
3554
- #: inc/emails/class-lp-email-updated-course.php:32
3555
- msgid "Updated course"
3556
  msgstr ""
3557
 
3558
- #: inc/emails/class-lp-email-updated-course.php:33
3559
- msgid "Send this email to users have purchased when the course is updated."
3560
  msgstr ""
3561
 
3562
- #: inc/emails/class-lp-email-updated-course.php:38
3563
- msgid "[{{site_title}}] The course ({{course_name}}) has just been updated."
3564
  msgstr ""
3565
 
3566
- #: inc/emails/class-lp-email-updated-course.php:39
3567
- msgid "Update course"
 
 
 
 
 
 
 
 
3568
  msgstr ""
3569
 
3570
- #: inc/emails/class-lp-email-become-an-instructor.php:27
3571
- msgid "Request"
3572
  msgstr ""
3573
 
3574
- #: inc/emails/class-lp-email-become-an-instructor.php:28
3575
- msgid "Become an instructor email."
 
 
3576
  msgstr ""
3577
 
3578
- #: inc/emails/class-lp-email-become-an-instructor.php:30
3579
- msgid "[{{site_title}}] Request to become an instructor"
3580
  msgstr ""
3581
 
3582
- #: inc/emails/class-lp-email-become-an-instructor.php:31
3583
- msgid "Become an instructor"
3584
  msgstr ""
3585
 
3586
- #: inc/emails/class-lp-email-instructor-denied.php:26
3587
- msgid "Denied"
3588
  msgstr ""
3589
 
3590
- #: inc/emails/class-lp-email-instructor-denied.php:27
3591
- msgid "Become an instructor email denied."
3592
  msgstr ""
3593
 
3594
- #: inc/emails/class-lp-email-instructor-denied.php:29
3595
- msgid "[{{site_title}}] Your request to become an instructor denied"
3596
  msgstr ""
3597
 
3598
- #: inc/emails/class-lp-email-instructor-denied.php:30
3599
- msgid "Become an instructor denied"
 
3600
  msgstr ""
3601
 
3602
- #: inc/emails/class-lp-email-completed-order-user.php:30
3603
- msgid "Send email to the user who has bought course when order is completed."
 
3604
  msgstr ""
3605
 
3606
- #: inc/emails/class-lp-email-processing-order-guest.php:28
3607
- msgid ""
3608
- "Send email to user who has purchased course as a Guest when the order is "
3609
- "processing."
3610
  msgstr ""
3611
 
3612
- #: inc/emails/class-lp-email-user-order-changed-status.php:26
3613
- msgid "User order changed status"
 
 
 
3614
  msgstr ""
3615
 
3616
- #: inc/emails/class-lp-email-user-order-changed-status.php:27
3617
- msgid "Send email to user when the order status is changed"
 
3618
  msgstr ""
3619
 
3620
- #: inc/emails/class-lp-email-user-order-changed-status.php:32
3621
- msgid "Your order {{order_date}} status has just been changed"
 
 
3622
  msgstr ""
3623
 
3624
- #: inc/emails/class-lp-email-user-order-changed-status.php:33
3625
- msgid "Your order {{order_number}} status has just been changed"
3626
  msgstr ""
3627
 
3628
- #: inc/emails/class-lp-email-processing-order-user.php:27
3629
- msgid "Send email to user who has bought course whe the order is processing."
3630
  msgstr ""
3631
 
3632
- #: inc/emails/class-lp-email-cancelled-order-user.php:28
3633
- msgid "Send email to user when order has been cancelled."
 
 
3634
  msgstr ""
3635
 
3636
- #: inc/admin/class-lp-admin-ajax.php:200
3637
- msgid "Dismissed!"
3638
  msgstr ""
3639
 
3640
- #: inc/admin/class-lp-admin-ajax.php:204
3641
- msgid "Fail while joining newsletter! Please try again!"
3642
  msgstr ""
3643
 
3644
- #: inc/admin/class-lp-admin-ajax.php:226
3645
- msgid "Something went wrong: "
3646
  msgstr ""
3647
 
3648
- #: inc/admin/class-lp-admin-ajax.php:229
3649
- msgid ""
3650
- "Thank you for subscribing! Please check and click the confirmation link from "
3651
- "the email we've just sent to your mail box."
3652
  msgstr ""
3653
 
3654
- #: inc/admin/class-lp-admin-ajax.php:245
3655
- msgid "Ops! ID not found"
 
3656
  msgstr ""
3657
 
3658
- #: inc/admin/class-lp-admin-ajax.php:274
3659
- msgid "Duplicate post fail, please try again"
 
3660
  msgstr ""
3661
 
3662
- #: inc/admin/class-lp-admin-ajax.php:427
3663
- msgid "Access denied"
 
3664
  msgstr ""
3665
 
3666
- #: inc/admin/class-lp-admin-ajax.php:439
3667
- #: inc/admin/class-lp-admin-ajax.php:485
3668
- #: templates/order/order-details.php:18
3669
- msgid "Invalid order"
 
3670
  msgstr ""
3671
 
3672
- #: inc/admin/class-lp-admin-ajax.php:473
3673
- msgid "Permission denied"
 
3674
  msgstr ""
3675
 
3676
- #: inc/admin/class-lp-admin-ajax.php:672
3677
- #: inc/admin/class-lp-admin-ajax.php:845
3678
- #: inc/admin/lp-admin-functions.php:253
3679
- msgid "Edit Page"
 
3680
  msgstr ""
3681
 
3682
- #: inc/admin/class-lp-admin-ajax.php:673
3683
- #: inc/admin/class-lp-admin-ajax.php:847
3684
- #: inc/admin/lp-admin-functions.php:255
3685
- msgid "View Page"
 
 
 
 
 
 
 
 
 
3686
  msgstr ""
3687
 
3688
- #: inc/admin/class-lp-admin-ajax.php:675
3689
- msgid "Error! Page creation failed. Please try again."
3690
  msgstr ""
3691
 
3692
- #: inc/admin/class-lp-admin-ajax.php:678
3693
- msgid "Empty page name!"
3694
  msgstr ""
3695
 
3696
- #: inc/admin/class-lp-admin-ajax.php:712
3697
- msgid "The required pages are successfully created."
3698
  msgstr ""
3699
 
3700
- #: inc/admin/class-lp-admin-ajax.php:722
3701
- msgid "Please try again."
3702
  msgstr ""
3703
 
3704
- #: inc/admin/class-lp-admin-ajax.php:748
3705
- msgid "Successfully import sample data."
3706
  msgstr ""
3707
 
3708
- #: inc/admin/class-lp-admin-ajax.php:748
3709
- msgid "View courses"
3710
  msgstr ""
3711
 
3712
- #: inc/admin/class-lp-admin-ajax.php:752
3713
- msgid "Failed to import sample data. Please try again."
 
 
3714
  msgstr ""
3715
 
3716
- #: inc/admin/class-lp-admin-ajax.php:756
3717
- msgid ""
3718
- "Unknown error when installing/activating Import/Export add-on. Please try "
3719
- "again!"
3720
  msgstr ""
3721
 
3722
- #: inc/admin/class-lp-admin-ajax.php:772
3723
- #: inc/admin/class-lp-admin-ajax.php:793
3724
- #: inc/admin/class-lp-admin-ajax.php:813
3725
- msgid "You do not have the permission to deactivate plugins on this site."
3726
  msgstr ""
3727
 
3728
- #: inc/admin/class-lp-meta-box-tabs.php:29
3729
- msgid "Meta box tabs"
3730
  msgstr ""
3731
 
3732
- #: inc/admin/class-lp-admin-assets.php:38
3733
- msgid "Ooops! Error."
3734
  msgstr ""
3735
 
3736
- #: inc/admin/class-lp-admin-assets.php:45
3737
  msgid ""
3738
- "Before taking this action, we strongly recommend you should backup your site "
3739
- "first before proceeding. Should any issues come at hand, do not hesitate to "
3740
- "contact our Support team. Are you sure to proceed the update protocol?"
3741
- msgstr ""
3742
-
3743
- #: inc/admin/class-lp-admin-tools.php:129
3744
- msgid "All courses, lessons, quizzes and questions have been removed"
3745
  msgstr ""
3746
 
3747
- #: inc/admin/class-lp-admin-tools.php:192
3748
- msgid "Outdated data from version older than 1.0 has been removed"
3749
  msgstr ""
3750
 
3751
- #: inc/admin/class-lp-install-sample-data.php:64
3752
- msgid "Are you sure you want to install sample course data?"
3753
  msgstr ""
3754
 
3755
- #: inc/admin/class-lp-install-sample-data.php:65
3756
- msgid "Are you sure you want to delete sample course data?"
 
 
 
 
 
 
 
3757
  msgstr ""
3758
 
3759
- #: inc/admin/class-lp-install-sample-data.php:128
3760
- #, php-format
3761
- msgid "Course \"%s\" has been created"
3762
  msgstr ""
3763
 
3764
- #: inc/admin/class-lp-install-sample-data.php:300
3765
- #: inc/admin/views/tools/database/html-install-sample-data.php:25
3766
- msgid "Sample course"
3767
  msgstr ""
3768
 
3769
- #: inc/admin/class-lp-install-sample-data.php:606
3770
- #: inc/admin/class-lp-install-sample-data.php:614
3771
- msgctxt "install-sample-course"
3772
- msgid " [TRUE]"
 
 
 
 
 
 
3773
  msgstr ""
3774
 
3775
- #: inc/admin/class-lp-modal-search-users.php:49
3776
- #: inc/admin/class-lp-modal-search-items.php:59
3777
- #: inc/admin/views/course/modal-choose-items.php:100
3778
- #: inc/admin/views/quiz/modal-choose-items.php:88
3779
- msgid "Add"
3780
  msgstr ""
3781
 
3782
- #: inc/admin/class-lp-modal-search-users.php:50
3783
- #: inc/admin/class-lp-modal-search-items.php:60
3784
- #: inc/admin/views/course/modal-choose-items.php:71
3785
- #: inc/admin/views/quiz/modal-choose-items.php:58
3786
- #: inc/admin/views/meta-boxes/order/details.php:242
3787
- msgid "Close"
3788
  msgstr ""
3789
 
3790
- #: inc/admin/class-lp-modal-search-users.php:51
3791
- #: inc/admin/views/modal-search-users.php:10
3792
- msgid "Search users"
 
 
 
3793
  msgstr ""
3794
 
3795
- #: inc/admin/class-lp-modal-search-users.php:184
3796
- #: inc/admin/class-lp-modal-search-items.php:249
3797
- msgid "No item found"
3798
  msgstr ""
3799
 
3800
- #: inc/admin/lp-admin-actions.php:60
3801
- #: inc/admin/views/dashboard/plugin-status/html-results.php:31
3802
- msgid "Published"
3803
  msgstr ""
3804
 
3805
- #: inc/admin/lp-admin-actions.php:61
3806
- msgid "Private"
3807
  msgstr ""
3808
 
3809
- #: inc/admin/lp-admin-actions.php:62
3810
- msgid "Pending Review"
3811
  msgstr ""
3812
 
3813
- #: inc/admin/lp-admin-actions.php:63
3814
- msgid "Scheduled"
3815
  msgstr ""
3816
 
3817
- #: inc/admin/lp-admin-actions.php:64
3818
- msgid "Draft"
 
 
 
3819
  msgstr ""
3820
 
3821
- #: inc/admin/lp-admin-actions.php:65
3822
- msgid "Trash"
 
 
 
3823
  msgstr ""
3824
 
3825
- #: inc/admin/lp-admin-actions.php:143
3826
- msgid "LearnPress Plugin"
3827
  msgstr ""
3828
 
3829
- #: inc/admin/lp-admin-actions.php:147
3830
- msgid "LearnPress Status"
3831
  msgstr ""
3832
 
3833
- #: inc/admin/class-lp-admin-menu.php:69
3834
- msgid "View Courses"
3835
  msgstr ""
3836
 
3837
- #: inc/admin/class-lp-admin-menu.php:89
3838
- msgid "Learning Management System"
3839
  msgstr ""
3840
 
3841
- #: inc/admin/lp-admin-functions.php:32
3842
- msgid "Duplicate this course"
3843
  msgstr ""
3844
 
3845
- #: inc/admin/lp-admin-functions.php:52
3846
- msgid "Duplicate this quiz"
3847
  msgstr ""
3848
 
3849
- #: inc/admin/lp-admin-functions.php:56
3850
- msgid "Duplicate this question"
 
3851
  msgstr ""
3852
 
3853
- #: inc/admin/lp-admin-functions.php:60
3854
- msgid "Duplicate this lesson"
 
 
 
3855
  msgstr ""
3856
 
3857
- #: inc/admin/lp-admin-functions.php:183
3858
- msgid "[ Add a new page ]"
 
 
3859
  msgstr ""
3860
 
3861
- #: inc/admin/lp-admin-functions.php:206
3862
- msgid "Select Page"
 
3863
  msgstr ""
3864
 
3865
- #: inc/admin/lp-admin-functions.php:223
3866
- msgid "Select a page&hellip;"
3867
  msgstr ""
3868
 
3869
- #: inc/admin/lp-admin-functions.php:244
3870
- msgid "Create"
3871
  msgstr ""
3872
 
3873
- #: inc/admin/lp-admin-functions.php:247
3874
- msgid "New page title"
3875
  msgstr ""
3876
 
3877
- #: inc/admin/lp-admin-functions.php:248
3878
- msgid "Ok [Enter]"
 
3879
  msgstr ""
3880
 
3881
- #: inc/admin/lp-admin-functions.php:249
3882
- msgid "Cancel [ESC]"
3883
  msgstr ""
3884
 
3885
- #: inc/admin/lp-admin-functions.php:333
3886
- msgid "Minutes"
 
 
 
3887
  msgstr ""
3888
 
3889
- #: inc/admin/lp-admin-functions.php:376
3890
- #: inc/admin/lp-admin-functions.php:417
3891
- msgid "Plain text"
3892
  msgstr ""
3893
 
3894
- #: inc/admin/lp-admin-functions.php:377
3895
- #: inc/admin/lp-admin-functions.php:418
3896
- #: inc/admin/settings/class-lp-settings-emails.php:147
3897
- msgid "HTML"
3898
  msgstr ""
3899
 
3900
- #: inc/admin/lp-admin-functions.php:561
3901
- #: inc/admin/views/addons/html-loop-theme.php:51
3902
- msgid "Get it now"
 
 
 
 
 
 
3903
  msgstr ""
3904
 
3905
- #: inc/admin/lp-admin-functions.php:563
3906
- #: inc/admin/views/addons/html-loop-theme.php:53
3907
- msgid "View Demo"
3908
  msgstr ""
3909
 
3910
- #: inc/admin/lp-admin-functions.php:840
3911
- #: inc/admin/views/statistics/courses.php:9
3912
- #: inc/admin/views/statistics/users.php:9
3913
- #: inc/admin/views/statistics/users.php:46
3914
- #: inc/admin/views/statistics/general.php:9
3915
- #: inc/admin/views/statistics/orders.php:9
3916
- msgid "Instructors"
3917
  msgstr ""
3918
 
3919
- #: inc/admin/lp-admin-functions.php:1005
3920
- #: inc/admin/lp-admin-functions.php:2088
3921
- #: inc/user/class-lp-profile.php:814
3922
- #: inc/admin/views/meta-boxes/course/review-logs.php:25
3923
- msgid "Publish"
3924
  msgstr ""
3925
 
3926
- #: inc/admin/lp-admin-functions.php:1010
3927
- #: inc/admin/lp-admin-functions.php:1212
3928
- #: inc/admin/lp-admin-functions.php:2093
3929
- #: inc/user/class-lp-profile.php:815
3930
- #: inc/admin/views/statistics/courses.php:44
3931
- #: inc/admin/views/statistics/general.php:61
3932
- #: inc/admin/views/statistics/orders.php:64
3933
- msgid "Pending"
3934
  msgstr ""
3935
 
3936
- #: inc/admin/lp-admin-functions.php:1015
3937
- #: inc/admin/lp-admin-functions.php:2098
3938
- #: inc/admin/views/statistics/courses.php:45
3939
- #: inc/admin/views/statistics/general.php:62
3940
- msgid "Paid"
3941
  msgstr ""
3942
 
3943
- #: inc/admin/lp-admin-functions.php:1239
3944
- msgid "Pending Courses / Publish Courses"
3945
  msgstr ""
3946
 
3947
- #: inc/admin/lp-admin-functions.php:1240
3948
- msgid "Free Courses / Priced Courses"
3949
  msgstr ""
3950
 
3951
- #: inc/admin/lp-admin-functions.php:1408
3952
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:41
3953
- msgid "Installed"
3954
  msgstr ""
3955
 
3956
- #: inc/admin/lp-admin-functions.php:1441
3957
- #, php-format
3958
- msgid "The user %s has become a teacher"
3959
  msgstr ""
3960
 
3961
- #: inc/admin/lp-admin-functions.php:1499
3962
- msgid "You haven't got any courses yet! Would you like to import sample data?"
3963
  msgstr ""
3964
 
3965
- #: inc/admin/lp-admin-functions.php:1500
3966
- msgid "If yes, please install add-on name"
3967
  msgstr ""
3968
 
3969
- #: inc/admin/lp-admin-functions.php:1501
3970
- msgid "LearnPress Import/Export"
3971
  msgstr ""
3972
 
3973
- #: inc/admin/lp-admin-functions.php:1502
3974
- msgid "but don't worry because it is completely automated."
 
3975
  msgstr ""
3976
 
3977
- #: inc/admin/lp-admin-functions.php:1503
3978
- msgid "Import now"
3979
  msgstr ""
3980
 
3981
- #: inc/admin/lp-admin-functions.php:1504
3982
- msgid "No, thanks!"
3983
  msgstr ""
3984
 
3985
- #: inc/admin/lp-admin-functions.php:1714
3986
- msgid " Copy"
3987
  msgstr ""
3988
 
3989
- #: inc/admin/lp-admin-functions.php:1807
3990
- #, php-format
3991
- msgid "Question id %s does not exist."
 
3992
  msgstr ""
3993
 
3994
- #: inc/admin/lp-admin-functions.php:1810
3995
  #, php-format
3996
- msgid "Quiz id %s does not exist."
 
 
3997
  msgstr ""
3998
 
3999
- #: inc/admin/class-lp-plugin-install-list-table.php:162
4000
- msgid "No plugin found."
4001
  msgstr ""
4002
 
4003
- #: inc/admin/class-lp-plugin-install-list-table.php:341
4004
- #, php-format
4005
- msgid "By %s"
4006
  msgstr ""
4007
 
4008
- #: inc/admin/class-lp-plugin-install-list-table.php:362
4009
- #, php-format
4010
- msgid "Install %s now"
4011
  msgstr ""
4012
 
4013
- #: inc/admin/class-lp-plugin-install-list-table.php:362
4014
- msgid "Install and Active"
4015
  msgstr ""
4016
 
4017
- #: inc/admin/class-lp-plugin-install-list-table.php:369
4018
- #, php-format
4019
- msgid "Update %s now"
4020
  msgstr ""
4021
 
4022
- #: inc/admin/class-lp-plugin-install-list-table.php:369
4023
- #: inc/admin/views/updates/html-update-message.php:17
4024
- #: inc/admin/views/updates/0.9/step-repair-database.php:17
4025
- msgid "Update Now"
4026
  msgstr ""
4027
 
4028
- #: inc/admin/class-lp-plugin-install-list-table.php:420
4029
- msgid "Enabled"
 
 
4030
  msgstr ""
4031
 
4032
- #: inc/admin/class-lp-plugin-install-list-table.php:422
4033
- msgid "Disabled"
 
 
 
4034
  msgstr ""
4035
 
4036
- #: inc/admin/class-lp-plugin-install-list-table.php:425
4037
- msgid "Not Install"
 
 
 
4038
  msgstr ""
4039
 
4040
- #: inc/admin/class-lp-plugin-install-list-table.php:454
4041
- msgid "Last Updated:"
 
 
 
4042
  msgstr ""
4043
 
4044
- #: inc/admin/class-lp-plugin-install-list-table.php:465
4045
- #, php-format
4046
- msgid "%s Active Installs"
 
 
4047
  msgstr ""
4048
 
4049
- #: inc/admin/class-lp-plugin-install-list-table.php:471
4050
- #: inc/admin/views/addons/html-loop-plugin.php:54
4051
- msgid "Untested with your version of WordPress"
 
 
4052
  msgstr ""
4053
 
4054
- #: inc/admin/class-lp-plugin-install-list-table.php:473
4055
- #: inc/admin/views/addons/html-loop-plugin.php:56
4056
- msgid "<strong>Incompatible</strong> with your version of WordPress"
 
 
4057
  msgstr ""
4058
 
4059
- #: inc/admin/class-lp-plugin-install-list-table.php:475
4060
- #: inc/admin/views/addons/html-loop-plugin.php:58
4061
- msgid "<strong>Compatible</strong> with your version of WordPress"
4062
  msgstr ""
4063
 
4064
- #: inc/admin/class-lp-reset-data.php:90
4065
- msgid "Item progress deleted"
4066
  msgstr ""
4067
 
4068
- #: inc/admin/class-lp-reset-data.php:92
4069
- msgid "No data found"
4070
  msgstr ""
4071
 
4072
- #: inc/admin/class-lp-setup-wizard.php:72
4073
- msgctxt "static-page"
4074
- msgid "LP Courses"
4075
  msgstr ""
4076
 
4077
- #: inc/admin/class-lp-setup-wizard.php:73
4078
- msgctxt "static-page"
4079
- msgid "LP Profile"
4080
  msgstr ""
4081
 
4082
- #: inc/admin/class-lp-setup-wizard.php:74
4083
- msgctxt "static-page"
4084
- msgid "LP Checkout"
4085
  msgstr ""
4086
 
4087
- #: inc/admin/class-lp-setup-wizard.php:75
4088
- msgctxt "static-page"
4089
- msgid "LP Become Teacher"
 
4090
  msgstr ""
4091
 
4092
- #: inc/admin/class-lp-setup-wizard.php:206
4093
- msgid "Welcome"
 
 
4094
  msgstr ""
4095
 
4096
- #: inc/admin/class-lp-setup-wizard.php:208
4097
- #: inc/admin/views/setup/notice-setup.php:5
4098
- msgid "Run setup wizard"
4099
  msgstr ""
4100
 
4101
- #: inc/admin/class-lp-setup-wizard.php:211
4102
- #: inc/admin/settings/class-lp-settings-general.php:52
4103
- #: inc/admin/settings/class-lp-settings-general.php:57
4104
- #: inc/admin/views/setup/steps/currency.php:17
4105
- #: inc/admin/views/setup/steps/currency.php:21
4106
- msgid "Currency"
4107
  msgstr ""
4108
 
4109
- #: inc/admin/class-lp-setup-wizard.php:217
4110
- #: inc/admin/views/setup/steps/pages.php:14
4111
- msgid "Static Pages"
4112
  msgstr ""
4113
 
4114
- #: inc/admin/class-lp-setup-wizard.php:221
4115
- #: inc/admin/meta-box/fields/payment-order.php:29
4116
- #: inc/admin/views/setup/steps/payment.php:16
4117
- msgid "Payment"
4118
  msgstr ""
4119
 
4120
- #: inc/admin/class-lp-setup-wizard.php:225
4121
- #: inc/admin/settings/class-lp-settings-emails.php:26
4122
- #: inc/admin/settings/class-lp-settings-emails.php:166
4123
- msgid "Emails"
4124
  msgstr ""
4125
 
4126
- #: inc/admin/class-lp-setup-wizard.php:229
4127
- #: inc/admin/views/setup/content.php:92
4128
- #: inc/admin/views/setup/steps/finish.php:12
4129
- msgid "Finish"
4130
  msgstr ""
4131
 
4132
- #: inc/admin/class-lp-setup-wizard.php:346
4133
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:91
4134
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:95
4135
- msgid "Paypal"
4136
  msgstr ""
4137
 
4138
- #: inc/admin/class-lp-setup-wizard.php:347
4139
- msgid "Enter your Paypal email address to accept payment via Paypal."
 
4140
  msgstr ""
4141
 
4142
- #: inc/admin/class-lp-admin.php:62
4143
- msgid "Available Courses"
 
4144
  msgstr ""
4145
 
4146
- #: inc/admin/class-lp-admin.php:180
4147
- msgid "Shop Page"
 
4148
  msgstr ""
4149
 
4150
- #: inc/admin/class-lp-admin.php:184
4151
- msgid "Cart Page"
4152
  msgstr ""
4153
 
4154
- #: inc/admin/class-lp-admin.php:188
4155
- #: inc/admin/class-lp-admin.php:601
4156
- msgid "Checkout Page"
4157
  msgstr ""
4158
 
4159
- #: inc/admin/class-lp-admin.php:192
4160
- msgid "My Account Page"
4161
  msgstr ""
4162
 
4163
- #: inc/admin/class-lp-admin.php:196
4164
- msgid "Terms and Conditions Page"
 
4165
  msgstr ""
4166
 
4167
- #: inc/admin/class-lp-admin.php:213
4168
- msgid "Account"
4169
  msgstr ""
4170
 
4171
- #: inc/admin/class-lp-admin.php:214
4172
- msgid "Billing"
4173
  msgstr ""
4174
 
4175
- #: inc/admin/class-lp-admin.php:216
4176
- #: inc/admin/class-lp-admin.php:279
4177
- #: inc/admin/settings/class-lp-settings-checkout.php:22
4178
- #: inc/admin/views/setup/steps/pages.php:40
4179
- msgid "Checkout"
4180
  msgstr ""
4181
 
4182
- #: inc/admin/class-lp-admin.php:217
4183
- msgid "Confirmation"
4184
  msgstr ""
4185
 
4186
- #: inc/admin/class-lp-admin.php:218
4187
- msgid "Invoice"
4188
  msgstr ""
4189
 
4190
- #: inc/admin/class-lp-admin.php:219
4191
- msgid "Levels"
 
4192
  msgstr ""
4193
 
4194
- #: inc/admin/class-lp-admin.php:247
4195
- msgid "Members"
4196
  msgstr ""
4197
 
4198
- #: inc/admin/class-lp-admin.php:248
4199
- msgid "Activity"
4200
  msgstr ""
4201
 
4202
- #: inc/admin/class-lp-admin.php:249
4203
- #: templates/checkout/form-register.php:48
4204
- #: templates/global/form-register.php:43
4205
- msgid "Register"
4206
  msgstr ""
4207
 
4208
- #: inc/admin/class-lp-admin.php:250
4209
- msgid "Activate"
4210
  msgstr ""
4211
 
4212
- #: inc/admin/class-lp-admin.php:278
4213
- #: inc/admin/settings/class-lp-settings-profile.php:22
4214
- #: inc/admin/views/setup/steps/pages.php:31
4215
- msgid "Profile"
4216
  msgstr ""
4217
 
4218
- #: inc/admin/class-lp-admin.php:280
4219
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:121
4220
- #: inc/admin/views/setup/steps/pages.php:49
4221
- msgid "Become a Teacher"
4222
  msgstr ""
4223
 
4224
- #: inc/admin/class-lp-admin.php:318
4225
- msgid "LearnPress Page"
4226
  msgstr ""
4227
 
4228
- #: inc/admin/class-lp-admin.php:360
4229
- #, php-format
4230
- msgid "LearnPress Pages (%d)"
4231
  msgstr ""
4232
 
4233
- #: inc/admin/class-lp-admin.php:399
4234
- msgctxt "pending-request"
4235
- msgid "Accept"
4236
  msgstr ""
4237
 
4238
- #: inc/admin/class-lp-admin.php:400
4239
- msgctxt "pending-request"
4240
- msgid "Deny"
4241
  msgstr ""
4242
 
4243
- #: inc/admin/class-lp-admin.php:462
4244
- #, php-format
4245
- msgid "Pending Request %s"
4246
  msgstr ""
4247
 
4248
- #: inc/admin/class-lp-admin.php:492
4249
- #, php-format
4250
- msgid "User has %s to become a teacher."
4251
  msgstr ""
4252
 
4253
- #: inc/admin/class-lp-admin.php:577
4254
- #, php-format
4255
- msgid ""
4256
- "LearnPress requires permalink option <strong>Post name</strong> is enabled. "
4257
- "Please enable it <a href=\"%s\">here</a> to ensure that all functions work "
4258
- "properly."
4259
  msgstr ""
4260
 
4261
- #: inc/admin/class-lp-admin.php:597
4262
- msgid "Profile Page"
4263
  msgstr ""
4264
 
4265
- #: inc/admin/class-lp-admin.php:626
4266
- #, php-format
4267
- msgid "The following required page(s) are currently missing: %s."
4268
  msgstr ""
4269
 
4270
- #: inc/admin/class-lp-admin.php:627
4271
- #, php-format
4272
- msgid ""
4273
- "To ensure all functions work properly, please click <a class=\"button\" "
4274
- "id=\"learn-press-create-pages\" href=\"%s\">here</a> to create and set it up "
4275
- "automatically."
4276
  msgstr ""
4277
 
4278
- #: inc/admin/class-lp-admin.php:677
4279
- #, php-format
4280
  msgid ""
4281
- "If you like <strong>LearnPress</strong> please leave us a %s&#9733;&#9733;"
4282
- "&#9733;&#9733;&#9733;%s rating. A huge thanks from LearnPress team for your "
4283
- "generous."
4284
  msgstr ""
4285
 
4286
- #: inc/admin/class-lp-admin.php:677
4287
- msgid "Thanks :)"
4288
  msgstr ""
4289
 
4290
- #: inc/admin/class-lp-upgrader.php:12
4291
- msgid "Invalid Data provided."
4292
  msgstr ""
4293
 
4294
- #: inc/admin/class-lp-upgrader.php:13
4295
- msgid "Could not access filesystem."
4296
  msgstr ""
4297
 
4298
- #: inc/admin/class-lp-upgrader.php:14
4299
- msgid "Filesystem error."
4300
  msgstr ""
4301
 
4302
- #: inc/admin/class-lp-upgrader.php:15
4303
- msgid "Unable to locate WordPress Root directory."
4304
  msgstr ""
4305
 
4306
- #: inc/admin/class-lp-upgrader.php:16
4307
- msgid "Unable to locate WordPress Content directory (wp-content)."
4308
  msgstr ""
4309
 
4310
- #: inc/admin/class-lp-upgrader.php:17
4311
- msgid "Unable to locate WordPress Plugin directory."
 
4312
  msgstr ""
4313
 
4314
- #: inc/admin/class-lp-upgrader.php:18
4315
- msgid "Unable to locate WordPress Theme directory."
4316
  msgstr ""
4317
 
4318
- #: inc/admin/class-lp-upgrader.php:20
4319
- #, php-format
4320
- msgid "Unable to locate necessary folder (%s)."
4321
  msgstr ""
4322
 
4323
- #: inc/admin/class-lp-upgrader.php:22
4324
- msgid "Download failed."
 
4325
  msgstr ""
4326
 
4327
- #: inc/admin/class-lp-upgrader.php:23
4328
- msgid "Installing the latest version&#8230;"
4329
  msgstr ""
4330
 
4331
- #: inc/admin/class-lp-upgrader.php:24
4332
- msgid "The package contains no files."
4333
  msgstr ""
4334
 
4335
- #: inc/admin/class-lp-upgrader.php:25
4336
- msgid "Destination folder already exists."
4337
  msgstr ""
4338
 
4339
- #: inc/admin/class-lp-upgrader.php:26
4340
- msgid "Could not create directory."
4341
  msgstr ""
4342
 
4343
- #: inc/admin/class-lp-upgrader.php:27
4344
- msgid "The package could not be installed."
 
4345
  msgstr ""
4346
 
4347
- #: inc/admin/class-lp-upgrader.php:29
4348
- msgid "Enabling Maintenance mode&#8230;"
 
 
 
4349
  msgstr ""
4350
 
4351
- #: inc/admin/class-lp-upgrader.php:30
4352
- msgid "Disabling Maintenance mode&#8230;"
4353
  msgstr ""
4354
 
4355
- #: inc/admin/class-lp-admin-dashboard.php:19
4356
- msgid "LearnPress order status"
 
 
4357
  msgstr ""
4358
 
4359
- #: inc/admin/class-lp-admin-dashboard.php:24
4360
- msgid "LearnPress status"
 
 
4361
  msgstr ""
4362
 
4363
- #: inc/admin/class-lp-admin-dashboard.php:49
4364
- #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:30
4365
- msgid "Total Raised"
4366
  msgstr ""
4367
 
4368
- #: inc/admin/class-lp-admin-dashboard.php:67
4369
- #, php-format
4370
- msgid "%d order"
4371
- msgid_plural "%d orders"
4372
- msgstr[0] ""
4373
- msgstr[1] ""
4374
-
4375
- #: inc/admin/class-lp-admin-dashboard.php:83
4376
- #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:63
4377
- msgid "Created by: "
4378
  msgstr ""
4379
 
4380
- #: inc/admin/class-lp-modal-search-items.php:61
4381
- #: inc/admin/views/modal-search-items.php:11
4382
- msgid "Search items"
4383
  msgstr ""
4384
 
4385
- #: inc/admin/class-lp-modal-search-items.php:342
4386
- msgid "There are no available lessons for this course, please use "
4387
  msgstr ""
4388
 
4389
- #: inc/admin/class-lp-modal-search-items.php:343
4390
- #: inc/admin/class-lp-modal-search-items.php:347
4391
- #: inc/admin/class-lp-modal-search-items.php:351
4392
- msgid "Add new item"
4393
  msgstr ""
4394
 
4395
- #: inc/admin/class-lp-modal-search-items.php:346
4396
- msgid "There are no available quizzes for this course, please use "
4397
  msgstr ""
4398
 
4399
- #: inc/admin/class-lp-modal-search-items.php:350
4400
- msgid "There are no available questions for this quiz, please use "
4401
  msgstr ""
4402
 
4403
- #: inc/quiz/class-lp-quiz-factory.php:469
4404
- msgid "Something went wrong!"
4405
  msgstr ""
4406
 
4407
- #: inc/quiz/class-lp-quiz.php:428
4408
- #: templates/content-quiz/progress.php:47
4409
- #: templates/content-quiz/intro.php:25
4410
- msgid "Unlimited"
4411
  msgstr ""
4412
 
4413
- #: inc/quiz/class-lp-quiz.php:465
4414
- msgid "Finish quiz"
4415
  msgstr ""
4416
 
4417
- #: inc/quiz/class-lp-quiz.php:466
4418
- msgid "Are you sure you want to finish this quiz?"
4419
  msgstr ""
4420
 
4421
- #: inc/quiz/class-lp-quiz.php:469
4422
- msgid "Retake quiz"
 
 
4423
  msgstr ""
4424
 
4425
- #: inc/quiz/class-lp-quiz.php:470
4426
- msgid "Are you sure you want to retake this quiz?"
 
 
4427
  msgstr ""
4428
 
4429
- #: inc/quiz/class-lp-quiz.php:473
4430
- msgid "Time's up!"
4431
  msgstr ""
4432
 
4433
- #: inc/quiz/class-lp-quiz.php:474
4434
- msgid "The time is up! Your quiz will automate come to finish"
 
 
4435
  msgstr ""
4436
 
4437
- #: inc/quiz/class-lp-quiz.php:476
4438
- msgid "Congrats! You have finished this quiz"
 
4439
  msgstr ""
4440
 
4441
- #: inc/quiz/class-lp-quiz.php:477
4442
  msgid ""
4443
- "Congrats! You have re-taken this quiz. Please wait a moment and the page "
4444
- "will reload"
4445
  msgstr ""
4446
 
4447
- #: inc/libraries/wp-background-process.php:421
4448
- #, php-format
4449
- msgid "Every %d minutes"
 
4450
  msgstr ""
4451
 
4452
- #: inc/user/class-lp-user-factory.php:359
4453
- msgid "Every 3 Minutes"
4454
  msgstr ""
4455
 
4456
- #: inc/user/class-lp-profile.php:84
4457
- msgid "Account information updated successful."
4458
  msgstr ""
4459
 
4460
- #: inc/user/class-lp-profile.php:85
4461
- msgid "Account avatar updated successful."
4462
  msgstr ""
4463
 
4464
- #: inc/user/class-lp-profile.php:86
4465
- msgid "Password updated successful."
4466
  msgstr ""
4467
 
4468
- #: inc/user/class-lp-profile.php:87
4469
- msgid "Account publicity updated successful."
4470
  msgstr ""
4471
 
4472
- #: inc/user/class-lp-profile.php:293
4473
- #: inc/admin/settings/class-lp-settings-profile.php:141
4474
- #: inc/admin/views/updates/0.9/step-upgraded.php:16
4475
- msgid "Dashboard"
4476
  msgstr ""
4477
 
4478
- #: inc/user/class-lp-profile.php:318
4479
- #: inc/admin/settings/class-lp-settings-profile.php:173
4480
- #: inc/admin/views/meta-boxes/order/details.php:36
4481
- msgid "Order details"
4482
  msgstr ""
4483
 
4484
- #: inc/user/class-lp-profile.php:348
4485
- #: inc/admin/settings/class-lp-settings-profile.php:208
4486
- #: inc/admin/settings/class-lp-settings-profile.php:229
4487
- msgid "Avatar"
4488
  msgstr ""
4489
 
4490
- #: inc/user/class-lp-profile.php:357
4491
- #: inc/admin/settings/class-lp-settings-profile.php:262
4492
- msgid "Publicity"
4493
  msgstr ""
4494
 
4495
- #: inc/user/class-lp-profile.php:849
4496
- msgid "Not enrolled"
 
4497
  msgstr ""
4498
 
4499
- #: inc/user/lp-user-functions.php:382
4500
- msgid "Want to become an instructor?"
4501
  msgstr ""
4502
 
4503
- #: inc/user/lp-user-functions.php:856
4504
- msgid "Only"
4505
  msgstr ""
4506
 
4507
- #: inc/user/lp-user-functions.php:856
4508
- msgid "images accepted for upload"
4509
  msgstr ""
4510
 
4511
- #: inc/user/lp-user-functions.php:865
4512
- msgid "Images must be under"
4513
  msgstr ""
4514
 
4515
- #: inc/user/lp-user-functions.php:865
4516
- msgid "MB in size"
4517
  msgstr ""
4518
 
4519
- #: inc/user/lp-user-functions.php:873
4520
- msgid "Please select an image for upload"
4521
  msgstr ""
4522
 
4523
- #: inc/user/lp-user-functions.php:902
4524
- msgid "Image is uploaded success"
4525
  msgstr ""
4526
 
4527
- #: inc/user/lp-user-functions.php:902
4528
- msgid "Error in uploading image"
4529
  msgstr ""
4530
 
4531
- #: inc/user/lp-user-functions.php:928
4532
- #: inc/user/lp-user-functions.php:959
4533
- #: inc/user/lp-user-functions.php:975
4534
- #: inc/user/lp-user-functions.php:982
4535
- msgid "Thumbnail of image profile not created"
4536
  msgstr ""
4537
 
4538
- #: inc/user/lp-user-functions.php:946
4539
- msgid "Error in cropping user picture profile"
 
 
 
4540
  msgstr ""
4541
 
4542
- #: inc/user/lp-user-functions.php:1001
4543
- msgid "Profile picture is changed"
 
 
4544
  msgstr ""
4545
 
4546
- #: inc/user/lp-user-functions.php:1045
4547
- #: inc/user/lp-user-functions.php:1532
4548
- msgid "Old password incorrect!"
4549
  msgstr ""
4550
 
4551
- #: inc/user/lp-user-functions.php:1059
4552
- #: inc/user/lp-user-functions.php:1539
4553
- msgid "Confirmation password incorrect!"
4554
  msgstr ""
4555
 
4556
- #: inc/user/lp-user-functions.php:1078
4557
- msgid "Your changes are saved"
4558
  msgstr ""
4559
 
4560
- #: inc/user/lp-user-functions.php:1086
4561
- msgid "Error in update your profile info"
 
 
4562
  msgstr ""
4563
 
4564
- #: inc/user/lp-user-functions.php:1220
4565
- msgid "Please login to enroll this course"
 
4566
  msgstr ""
4567
 
4568
- #: inc/user/lp-user-functions.php:1238
4569
- msgid "You have already finished course"
4570
  msgstr ""
4571
 
4572
- #: inc/user/lp-user-functions.php:1241
4573
- msgid "You have already enrolled in this course"
 
4574
  msgstr ""
4575
 
4576
- #: inc/user/abstract-lp-user.php:378
4577
- msgid "You cannot start a quiz in preview mode."
4578
  msgstr ""
4579
 
4580
- #: inc/user/abstract-lp-user.php:385
4581
- msgid "Course does not exist or does not contain the quiz"
4582
  msgstr ""
4583
 
4584
- #: inc/user/abstract-lp-user.php:390
4585
- msgid "User has already finished the course of this quiz"
4586
  msgstr ""
4587
 
4588
- #: inc/user/abstract-lp-user.php:396
4589
- msgid "User has started or completed quiz"
4590
  msgstr ""
4591
 
4592
- #: inc/user/abstract-lp-user.php:404
4593
- msgid "You have to login for starting quiz."
4594
  msgstr ""
4595
 
4596
- #: inc/user/abstract-lp-user.php:421
4597
- msgid "Start quiz failed!"
 
4598
  msgstr ""
4599
 
4600
- #: inc/user/abstract-lp-user.php:457
4601
- msgid "Course is not exists or does not contain the quiz"
 
4602
  msgstr ""
4603
 
4604
- #: inc/user/abstract-lp-user.php:462
4605
- msgid "User has already finished course of this quiz"
 
4606
  msgstr ""
4607
 
4608
- #: inc/user/abstract-lp-user.php:468
4609
- msgid "User has completed quiz"
 
4610
  msgstr ""
4611
 
4612
- #: inc/user/abstract-lp-user.php:509
4613
- msgid "Course does not exist or does not contain the quiz."
 
4614
  msgstr ""
4615
 
4616
- #: inc/user/abstract-lp-user.php:514
4617
- msgid "You can not redo a quiz in a finished course."
 
4618
  msgstr ""
4619
 
4620
- #: inc/user/abstract-lp-user.php:520
4621
  #, php-format
4622
- msgid "%s::%s - User has not completed quiz."
4623
  msgstr ""
4624
 
4625
- #: inc/user/abstract-lp-user.php:1049
4626
- msgid "You can not hint question."
 
4627
  msgstr ""
4628
 
4629
- #: inc/user/abstract-lp-user.php:1461
4630
- #: inc/user/abstract-lp-user.php:1821
4631
- #: inc/user/abstract-lp-user.php:1833
4632
  #, php-format
4633
- msgid "The role %s for user doesn't exist"
4634
  msgstr ""
4635
 
4636
- #: inc/user/abstract-lp-user.php:2165
4637
- msgid "You can not complete a preview lesson."
 
4638
  msgstr ""
4639
 
4640
- #: inc/user/abstract-lp-user.php:2192
4641
- msgid "You have already completed this lesson"
4642
  msgstr ""
4643
 
4644
- #: inc/user/abstract-lp-user.php:2508
4645
- #: inc/user/abstract-lp-user.php:2512
4646
- msgid "Failed to enroll course."
4647
  msgstr ""
4648
 
4649
- #: inc/user/abstract-lp-user.php:2516
4650
- msgid "Please login to enroll course."
4651
  msgstr ""
4652
 
4653
- #: inc/updates/_update-from-0.9.php:1206
4654
- msgctxt "Permalink Slug"
4655
- msgid "lesson-tag"
4656
  msgstr ""
4657
 
4658
- #: inc/updates/_update-from-0.9.php:1228
4659
- msgctxt "Permalink Slug"
4660
- msgid "question-tag"
4661
  msgstr ""
4662
 
4663
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
 
 
 
 
4664
  #, php-format
4665
- msgid "Please %s to send your request!"
 
4666
  msgstr ""
4667
 
4668
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
4669
- msgctxt "become-teacher-form"
4670
- msgid "login"
4671
  msgstr ""
4672
 
4673
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:42
4674
- msgid "Your have already sent the request. Please wait for approvement."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4675
  msgstr ""
4676
 
4677
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:44
4678
- msgid "You are a teacher!"
 
 
4679
  msgstr ""
4680
 
4681
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:103
4682
- msgid "Please login to fill in this form."
 
4683
  msgstr ""
4684
 
4685
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:106
4686
- msgid "You are a teacher now."
 
4687
  msgstr ""
4688
 
4689
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:112
4690
- msgid "Your role is allowed to create a course."
4691
  msgstr ""
4692
 
4693
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:122
4694
- msgid "Fill in your information and send us to become a teacher."
 
4695
  msgstr ""
4696
 
4697
- #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:123
4698
- #: templates/global/become-teacher-form/button.php:19
4699
- msgid "Submit"
4700
  msgstr ""
4701
 
4702
- #: inc/shortcodes/class-lp-shortcode-login-form.php:39
4703
- #: inc/shortcodes/class-lp-shortcode-register-form.php:41
 
 
 
4704
  #, php-format
4705
- msgid "Your are logged in as %s. <a href=\"%s\">Log out</a>?"
4706
  msgstr ""
4707
 
4708
- #: inc/shortcodes/class-lp-shortcode-login-form.php:61
4709
- #: inc/shortcodes/class-lp-shortcode-login-form.php:63
4710
- msgid "Username or email"
4711
  msgstr ""
4712
 
4713
- #: inc/shortcodes/class-lp-shortcode-register-form.php:86
4714
- msgid ""
4715
- "The password should be at least twelve characters long. To make it stronger, "
4716
- "use upper and lower case letters, numbers, and symbols like ! \" ? $ % ^ & )"
 
4717
  msgstr ""
4718
 
4719
- #: inc/shortcodes/class-lp-shortcode-course-curriculum.php:44
4720
- msgid "Invalid course."
 
 
 
 
4721
  msgstr ""
4722
 
4723
- #: inc/question/class-lp-question.php:285
4724
- msgid "True Or False"
4725
  msgstr ""
4726
 
4727
- #: inc/question/class-lp-question.php:286
4728
- msgid "Multi Choice"
4729
  msgstr ""
4730
 
4731
- #: inc/question/class-lp-question.php:287
4732
- msgid "Single Choice"
4733
  msgstr ""
4734
 
4735
- #: inc/question/class-lp-question.php:412
4736
- #: inc/admin/views/quiz/question-meta.php:19
4737
- msgid "Question Content"
4738
  msgstr ""
4739
 
4740
- #: inc/question/class-lp-question.php:586
4741
- msgid "First option"
4742
  msgstr ""
4743
 
4744
- #: inc/question/class-lp-question.php:591
4745
- msgid "Second option"
 
4746
  msgstr ""
4747
 
4748
- #: inc/question/class-lp-question.php:596
4749
- msgid "Third option"
 
4750
  msgstr ""
4751
 
4752
- #: inc/question/class-lp-question-true-or-false.php:52
4753
- msgid "True"
 
4754
  msgstr ""
4755
 
4756
- #: inc/question/class-lp-question-true-or-false.php:58
4757
- msgid "False"
4758
  msgstr ""
4759
 
4760
- #: inc/attributes/course.php:137
4761
- #: inc/attributes/course.php:295
4762
- #: inc/attributes/course.php:308
4763
- #: inc/attributes/course.php:310
4764
- msgid "Attributes"
4765
  msgstr ""
4766
 
4767
- #: inc/attributes/course.php:207
4768
- msgid "No terms found."
4769
  msgstr ""
4770
 
4771
- #: inc/attributes/course.php:238
4772
- msgid "Clear"
4773
  msgstr ""
4774
 
4775
- #: inc/attributes/course.php:253
4776
- msgid "Terms"
4777
  msgstr ""
4778
 
4779
- #: inc/attributes/course.php:306
4780
- #: inc/attributes/course.php:309
4781
- msgid "Attribute"
4782
  msgstr ""
4783
 
4784
- #: inc/attributes/course.php:311
4785
- msgid "Add New Attribute"
 
4786
  msgstr ""
4787
 
4788
- #: inc/attributes/course.php:312
4789
- msgid "All Attributes"
4790
  msgstr ""
4791
 
4792
- #: inc/attributes/course.php:356
4793
  #, php-format
4794
- msgid "Search Course %s"
4795
  msgstr ""
4796
 
4797
- #: inc/attributes/course.php:357
4798
- #, php-format
4799
- msgid "All Course %s"
4800
  msgstr ""
4801
 
4802
- #: inc/attributes/course.php:358
4803
- #, php-format
4804
- msgid "Parent Course %s"
4805
  msgstr ""
4806
 
4807
- #: inc/attributes/course.php:359
4808
- #, php-format
4809
- msgid "Parent Course %s:"
4810
  msgstr ""
4811
 
4812
- #: inc/attributes/course.php:360
4813
- #, php-format
4814
- msgid "Edit Course %s"
4815
  msgstr ""
4816
 
4817
- #: inc/attributes/course.php:361
4818
- #, php-format
4819
- msgid "Update Course %s"
4820
  msgstr ""
4821
 
4822
- #: inc/attributes/course.php:362
4823
- #, php-format
4824
- msgid "Add New Course %s"
4825
  msgstr ""
4826
 
4827
- #: inc/attributes/course.php:363
4828
- #, php-format
4829
- msgid "New Course %s"
4830
  msgstr ""
4831
 
4832
- #: inc/attributes/course.php:364
4833
- #, php-format
4834
- msgid "No &quot;Course %s&quot; found"
4835
  msgstr ""
4836
 
4837
- #: inc/abstracts/abstract-addon.php:185
4838
- #, php-format
4839
  msgid ""
4840
- "<strong>%s</strong> add-on version %s requires <strong>LearnPress</strong> "
4841
- "version %s or higher"
4842
  msgstr ""
4843
 
4844
- #: inc/abstracts/abstract-addon.php:244
4845
- #, php-format
4846
- msgid "%s plugin file does not exist."
4847
  msgstr ""
4848
 
4849
- #: inc/abstracts/abstract-addon.php:262
4850
- #, php-format
4851
- msgid "%s plugin class does not exist."
4852
  msgstr ""
4853
 
4854
- #: inc/abstracts/abstract-object-data.php:324
4855
- #, php-format
4856
- msgid "The following these functions %s do not exists in %s"
4857
  msgstr ""
4858
 
4859
- #: inc/gateways/class-lp-gateway-abstract.php:244
4860
- msgid "%s has been deprecated. Please use % instead of."
4861
  msgstr ""
4862
 
4863
- #: inc/cart/class-lp-cart.php:119
4864
- msgid "Get cart should not be called before the wp_loaded action."
4865
  msgstr ""
4866
 
4867
- #: inc/cart/class-lp-cart.php:144
4868
- msgid "Sorry! This course is not purchasable."
 
4869
  msgstr ""
4870
 
4871
- #: inc/cart/class-lp-cart.php:149
4872
- msgid "Sorry! The number of enrolled students has reached limit"
 
 
4873
  msgstr ""
4874
 
4875
- #: inc/cart/class-lp-cart.php:281
4876
- #, php-format
4877
  msgid ""
4878
- "%s has been removed from your cart because it can no longer be purchased."
 
4879
  msgstr ""
4880
 
4881
- #: inc/cart/class-lp-cart.php:459
4882
- msgid "Checkout page hasn't been setup"
 
 
 
 
 
 
 
4883
  msgstr ""
4884
 
4885
- #: inc/user-item/class-lp-user-item-quiz.php:364
4886
- msgid "Check question has reached limit."
 
4887
  msgstr ""
4888
 
4889
- #: inc/user-item/class-lp-user-item-quiz.php:366
4890
- msgid "You have already checked this question."
4891
  msgstr ""
4892
 
4893
- #: inc/user-item/class-lp-user-item.php:317
4894
- #: inc/user-item/class-lp-user-item.php:328
4895
- msgid "Not Enrolled"
4896
  msgstr ""
4897
 
4898
- #: inc/background-process/class-lp-background-query-items.php:84
4899
- msgid "WP query plugins error!"
 
4900
  msgstr ""
4901
 
4902
- #: inc/background-process/class-lp-background-query-items.php:87
4903
- msgid "WP query plugins empty!"
4904
  msgstr ""
4905
 
4906
- #: inc/curds/class-lp-user-item-curd.php:21
4907
- msgid "Quiz does not exists."
4908
  msgstr ""
4909
 
4910
- #: inc/curds/class-lp-user-item-curd.php:34
4911
- msgid "Invalid quiz."
4912
  msgstr ""
4913
 
4914
- #: inc/curds/class-lp-course-curd.php:27
4915
- msgid "Course does not exist."
 
4916
  msgstr ""
4917
 
4918
- #: inc/curds/class-lp-course-curd.php:45
4919
- #: inc/admin/editor/class-lp-admin-editor-course.php:71
4920
- msgid "New Course"
4921
  msgstr ""
4922
 
4923
- #: inc/curds/class-lp-course-curd.php:125
4924
- #: inc/curds/class-lp-lesson-curd.php:101
4925
- #: inc/curds/class-lp-question-curd.php:161
4926
- #: inc/curds/class-lp-quiz-curd.php:149
4927
- msgid "<p>Op! ID not found</p>"
4928
  msgstr ""
4929
 
4930
- #: inc/curds/class-lp-course-curd.php:129
4931
- msgid "<p>Op! The course does not exist</p>"
4932
  msgstr ""
4933
 
4934
- #: inc/curds/class-lp-course-curd.php:134
4935
- msgid "<p>Sorry! You don't have permission to duplicate this course</p>"
4936
  msgstr ""
4937
 
4938
- #: inc/curds/class-lp-course-curd.php:140
4939
- msgid "<p>Sorry! Failed to duplicate course!</p>"
4940
  msgstr ""
4941
 
4942
- #: inc/curds/class-lp-user-curd.php:1082
4943
- #: inc/curds/class-lp-user-curd.php:1275
4944
- msgid "course"
4945
  msgstr ""
4946
 
4947
- #: inc/curds/class-lp-user-curd.php:1083
4948
- #: inc/curds/class-lp-user-curd.php:1276
4949
- msgid "courses"
4950
  msgstr ""
4951
 
4952
- #: inc/curds/class-lp-user-curd.php:1473
4953
- msgid "quiz"
4954
  msgstr ""
4955
 
4956
- #: inc/curds/class-lp-user-curd.php:1474
4957
- msgid "quizzes"
4958
  msgstr ""
4959
 
4960
- #: inc/curds/class-lp-user-curd.php:1531
4961
- msgid "Please provide a valid email address."
4962
  msgstr ""
4963
 
4964
- #: inc/curds/class-lp-user-curd.php:1535
4965
- msgid ""
4966
- "An account is already registered with your email address. Please log in."
4967
  msgstr ""
4968
 
4969
- #: inc/curds/class-lp-user-curd.php:1541
4970
- msgid "Please enter a valid account username."
 
4971
  msgstr ""
4972
 
4973
- #: inc/curds/class-lp-user-curd.php:1545
4974
- msgid ""
4975
- "An account is already registered with that username. Please choose another."
4976
  msgstr ""
4977
 
4978
- #: inc/curds/class-lp-user-curd.php:1557
4979
- msgid "Failed to create user"
4980
  msgstr ""
4981
 
4982
- #: inc/curds/class-lp-order-curd.php:430
4983
- #, php-format
4984
- msgid "Invalid order with ID \"%d\"."
4985
  msgstr ""
4986
 
4987
- #: inc/curds/class-lp-order-curd.php:485
4988
- #: templates/checkout/order-received.php:88
4989
- msgid "Invalid order."
4990
  msgstr ""
4991
 
4992
- #: inc/curds/class-lp-order-curd.php:489
4993
- msgid "Order is already assigned."
4994
  msgstr ""
4995
 
4996
- #: inc/curds/class-lp-order-curd.php:495
4997
- msgid "User does not exist."
4998
  msgstr ""
4999
 
5000
- #: inc/curds/class-lp-lesson-curd.php:34
5001
- msgid "New Lesson"
5002
  msgstr ""
5003
 
5004
- #: inc/curds/class-lp-lesson-curd.php:105
5005
- msgid "<p>Op! The lesson does not exist</p>"
 
 
5006
  msgstr ""
5007
 
5008
- #: inc/curds/class-lp-lesson-curd.php:110
5009
- msgid "<p>Sorry! You don't have permission to duplicate this lesson</p>"
5010
  msgstr ""
5011
 
5012
- #: inc/curds/class-lp-lesson-curd.php:117
5013
- msgid "<p>Sorry! Failed to duplicate lesson!</p>"
5014
  msgstr ""
5015
 
5016
- #: inc/curds/class-lp-lesson-curd.php:138
5017
- #, php-format
5018
- msgid "Invalid lesson with ID \"%d\"."
5019
  msgstr ""
5020
 
5021
- #: inc/curds/class-lp-question-curd.php:28
5022
- msgid "Question does not exist."
 
 
 
 
 
 
 
 
 
5023
  msgstr ""
5024
 
5025
- #: inc/curds/class-lp-question-curd.php:46
5026
- #: inc/admin/editor/class-lp-admin-editor-question.php:104
5027
- msgid "New Question"
5028
  msgstr ""
5029
 
5030
- #: inc/curds/class-lp-question-curd.php:165
5031
- msgid "<p>Op! The question does not exist</p>"
 
 
 
 
5032
  msgstr ""
5033
 
5034
- #: inc/curds/class-lp-question-curd.php:170
5035
- msgid "<p>Sorry! You don't have permission to duplicate this question</p>"
5036
  msgstr ""
5037
 
5038
- #: inc/curds/class-lp-question-curd.php:180
5039
- msgid "<p>Sorry! Failed to duplicate question!</p>"
5040
  msgstr ""
5041
 
5042
- #: inc/curds/class-lp-question-curd.php:241
5043
- #, php-format
5044
- msgid "Invalid question with ID \"%d\"."
5045
  msgstr ""
5046
 
5047
- #: inc/curds/class-lp-quiz-curd.php:29
5048
- msgid "Quiz does not exist."
5049
  msgstr ""
5050
 
5051
- #: inc/curds/class-lp-quiz-curd.php:44
5052
- #, php-format
5053
- msgid "Invalid quiz with ID \"%d\"."
5054
  msgstr ""
5055
 
5056
- #: inc/curds/class-lp-quiz-curd.php:153
5057
- msgid "<p>Op! The quiz does not exist</p>"
5058
  msgstr ""
5059
 
5060
- #: inc/curds/class-lp-quiz-curd.php:158
5061
- msgid "<p>Sorry! You have not permission to duplicate this quiz</p>"
5062
  msgstr ""
5063
 
5064
- #: inc/curds/class-lp-quiz-curd.php:165
5065
- msgid "<p>Sorry! Failed to duplicate quiz!</p>"
5066
  msgstr ""
5067
 
5068
- #: templates/content-question/explanation.php:23
5069
- msgid "Explanation:"
5070
  msgstr ""
5071
 
5072
- #: templates/content-question/hint.php:23
5073
- msgid "Hint:"
5074
  msgstr ""
5075
 
5076
- #: templates/order/recover-form.php:22
5077
- #: inc/admin/views/meta-boxes/order/details.php:116
5078
- #: inc/admin/views/meta-boxes/order/child-order.php:22
5079
- msgid "Order key"
5080
  msgstr ""
5081
 
5082
- #: templates/order/recover-form.php:25
5083
- msgid "Recover"
5084
  msgstr ""
5085
 
5086
- #: templates/order/confirm.php:25
5087
- msgid ""
5088
- "Unfortunately your order cannot be processed as the originating "
5089
- "bank/merchant has declined your transaction."
5090
  msgstr ""
5091
 
5092
- #: templates/order/confirm.php:29
5093
- msgid "Please attempt your purchase again or go to your account page."
 
 
5094
  msgstr ""
5095
 
5096
- #: templates/order/confirm.php:31
5097
- msgid "Please attempt your purchase again."
5098
  msgstr ""
5099
 
5100
- #: templates/order/confirm.php:48
5101
- msgid "Order Number:"
5102
  msgstr ""
5103
 
5104
- #: templates/order/confirm.php:52
5105
- msgid "Date:"
5106
  msgstr ""
5107
 
5108
- #: templates/order/confirm.php:56
5109
- msgid "Total:"
5110
  msgstr ""
5111
 
5112
- #: templates/order/confirm.php:61
5113
- msgid "Payment Method:"
5114
  msgstr ""
5115
 
5116
- #: templates/order/confirm.php:66
5117
- msgid "Status:"
5118
  msgstr ""
5119
 
5120
- #: templates/order/order-details.php:81
5121
- #: templates/checkout/review-order.php:130
5122
- msgid "Subtotal"
 
5123
  msgstr ""
5124
 
5125
- #: templates/order/order-details.php:92
5126
- #, php-format
5127
- msgid "<strong>Order key:</strong> %s"
5128
  msgstr ""
5129
 
5130
- #: templates/order/order-details.php:96
5131
- msgid "Order status:"
5132
  msgstr ""
5133
 
5134
- #: templates/emails/order-items-table.php:36
5135
- #: templates/emails/plain/order-items-table.php:22
5136
- msgid "Order summary"
5137
  msgstr ""
5138
 
5139
- #: templates/emails/order-items-table.php:41
5140
- #: templates/checkout/order-received.php:29
5141
- #: templates/emails/plain/order-items-table.php:24
5142
- msgid "Order Number"
5143
  msgstr ""
5144
 
5145
- #: templates/emails/order-items-table.php:45
5146
- #: templates/emails/plain/order-items-table.php:26
5147
- msgid "Purchase Date"
5148
  msgstr ""
5149
 
5150
- #: templates/emails/order-items-table.php:49
5151
- #: templates/checkout/payment.php:40
5152
- #: templates/checkout/order-received.php:75
5153
- #: templates/emails/plain/order-items-table.php:28
5154
- msgid "Payment Method"
5155
  msgstr ""
5156
 
5157
- #: templates/emails/order-items-table.php:57
5158
- #: templates/emails/plain/order-items-table.php:32
5159
- msgid "User Email"
5160
  msgstr ""
5161
 
5162
- #: templates/emails/order-items-table.php:67
5163
- #: inc/admin/views/meta-boxes/order/details.php:127
5164
- msgid "Quantity"
5165
  msgstr ""
5166
 
5167
- #: templates/checkout/guest-email.php:24
5168
- msgid "Your email"
5169
  msgstr ""
5170
 
5171
- #: templates/checkout/guest-email.php:25
5172
- msgid "Your real email we will send the order code."
 
5173
  msgstr ""
5174
 
5175
- #: templates/checkout/guest-email.php:35
5176
- msgid "Your email is already exists. Checkout as this account?"
 
 
 
5177
  msgstr ""
5178
 
5179
- #: templates/checkout/guest-email.php:42
5180
  msgid ""
5181
- "Create new account with this email? Account information will be sent to this "
5182
- "email."
5183
  msgstr ""
5184
 
5185
- #: templates/checkout/form-login.php:34
5186
- msgid "Returning customer"
 
 
5187
  msgstr ""
5188
 
5189
- #: templates/checkout/form-login.php:35
5190
- msgid "I am a returning customer."
 
 
5191
  msgstr ""
5192
 
5193
- #: templates/checkout/form-login.php:102
5194
- #: templates/checkout/form-login.php:112
5195
- #: templates/global/form-login.php:49
5196
- msgid "Login"
5197
  msgstr ""
5198
 
5199
- #: templates/checkout/review-order.php:20
5200
- msgid "Your order"
 
5201
  msgstr ""
5202
 
5203
- #: templates/checkout/order-comment.php:20
5204
- msgid "Additional Information"
 
5205
  msgstr ""
5206
 
5207
- #: templates/checkout/order-comment.php:23
5208
- msgid "Note to administrator"
 
 
5209
  msgstr ""
5210
 
5211
- #: templates/checkout/form-logged-in.php:30
5212
- msgid "Log out of this account"
5213
  msgstr ""
5214
 
5215
- #: templates/checkout/form-logged-in.php:30
5216
- msgid "Log out &raquo;"
5217
  msgstr ""
5218
 
5219
- #: templates/checkout/term-conditions.php:20
5220
- #, php-format
5221
- msgid "I’ve read and accept the <a href=\"%s\">terms &amp; conditions.</a>"
5222
  msgstr ""
5223
 
5224
- #: templates/checkout/payment.php:34
5225
- msgid "No payment method is available."
5226
  msgstr ""
5227
 
5228
- #: templates/checkout/form-register.php:36
5229
- msgid "New Customer"
5230
  msgstr ""
5231
 
5232
- #: templates/checkout/form-register.php:38
5233
- msgid "Register Account"
5234
  msgstr ""
5235
 
5236
- #: templates/checkout/form-register.php:40
5237
- msgid ""
5238
- "By creating an account you will be able to keep track of the course's "
5239
- "progress you have previously enrolled."
5240
  msgstr ""
5241
 
5242
- #: templates/checkout/form.php:96
5243
- #, php-format
5244
- msgid "Please login to continue checkout. %s"
5245
  msgstr ""
5246
 
5247
- #: templates/checkout/form.php:96
5248
- msgid "Login?"
 
5249
  msgstr ""
5250
 
5251
- #: templates/checkout/form.php:103
5252
- msgid "Continue checkout as Guest?"
5253
  msgstr ""
5254
 
5255
- #: templates/content-lesson/button-complete.php:46
5256
- #: templates/content-quiz/buttons/complete.php:29
5257
- msgid "Complete"
 
 
5258
  msgstr ""
5259
 
5260
- #: templates/content-lesson/no-content.php:19
5261
- msgid "Lesson content is empty."
5262
  msgstr ""
5263
 
5264
- #: templates/profile/not-logged-in.php:19
5265
  #, php-format
5266
- msgid "Please <a href=\"%s\">login</a> to see your profile content"
5267
  msgstr ""
5268
 
5269
- #: templates/profile/dashboard-logged-in.php:26
5270
- #, php-format
5271
- msgid "Hello <strong>%s</strong> (not %s? %s)"
 
5272
  msgstr ""
5273
 
5274
- #: templates/profile/dashboard-logged-in.php:26
5275
- msgid "Sign out"
5276
  msgstr ""
5277
 
5278
- #: templates/profile/profile.php:47
5279
- msgid "This user does not public their profile."
 
5280
  msgstr ""
5281
 
5282
- #: templates/single-course/progress.php:37
5283
- msgid "Items completed"
5284
  msgstr ""
5285
 
5286
- #: templates/single-course/progress.php:41
5287
- #, php-format
5288
- msgid "%d of %d items"
5289
  msgstr ""
5290
 
5291
- #: templates/single-course/progress.php:55
5292
- msgid "Course results"
5293
  msgstr ""
5294
 
5295
- #: templates/single-course/progress.php:79
5296
- #, php-format
5297
- msgid "Passing condition: %s%%"
5298
  msgstr ""
5299
 
5300
- #: templates/single-course/instructor.php:22
5301
- msgid "About the Instructor"
5302
  msgstr ""
5303
 
5304
- #: templates/single-course/students.php:29
5305
- #, php-format
5306
- msgid "%d student"
5307
- msgid_plural "%d students"
5308
- msgstr[0] ""
5309
- msgstr[1] ""
5310
 
5311
- #: templates/single-course/description.php:25
5312
- msgid "Course description"
5313
  msgstr ""
5314
 
5315
- #: templates/single-course/content-protected.php:25
5316
- msgid "This content is protected, please enroll course to view this content!"
5317
  msgstr ""
5318
 
5319
- #: templates/single-course/content-protected.php:29
5320
- #, php-format
5321
- msgid ""
5322
- "This content is protected, please <a href=\"%s\">login</a> and enroll course "
5323
- "to view this content!"
5324
  msgstr ""
5325
 
5326
- #: templates/single-course/remaining-time.php:16
5327
- msgid "Enrolled"
5328
  msgstr ""
5329
 
5330
- #: templates/single-course/remaining-time.php:19
5331
- #, php-format
5332
- msgid "You have %s remaining for the course"
 
 
5333
  msgstr ""
5334
 
5335
- #: templates/content-quiz/progress.php:40
5336
- #: templates/single-course/section/title.php:52
5337
- #, php-format
5338
- msgid "%d/%d"
5339
  msgstr ""
5340
 
5341
- #: templates/content-quiz/progress.php:50
5342
- msgid "Time remaining"
5343
  msgstr ""
5344
 
5345
- #: templates/content-quiz/progress.php:52
5346
- msgid "Duration Unlimited"
5347
  msgstr ""
5348
 
5349
- #: templates/content-quiz/review-title.php:18
5350
- #: templates/content-quiz/buttons/review.php:26
5351
- msgid "Review"
5352
  msgstr ""
5353
 
5354
- #: templates/content-quiz/preview-mode.php:17
5355
- msgid "You are currently viewing quiz in preview mode."
5356
  msgstr ""
5357
 
5358
- #: templates/content-quiz/intro.php:24
5359
- msgid "Attempts allowed"
5360
  msgstr ""
5361
 
5362
- #: templates/content-quiz/intro.php:32
5363
- msgid "Passing grade"
5364
  msgstr ""
5365
 
5366
- #: templates/content-quiz/result.php:28
5367
- msgid "Your Result"
5368
  msgstr ""
5369
 
5370
- #: templates/content-quiz/result.php:33
5371
- #, php-format
5372
- msgid "Your grade is <strong>%s</strong>"
5373
  msgstr ""
5374
 
5375
- #: templates/content-quiz/result.php:38
5376
- msgctxt "quiz-result"
5377
- msgid "Time spend"
5378
  msgstr ""
5379
 
5380
- #: templates/content-quiz/result.php:42
5381
- msgctxt "quiz-result"
5382
- msgid "Questions"
5383
  msgstr ""
5384
 
5385
- #: templates/content-quiz/result.php:46
5386
- msgctxt "quiz-result"
5387
- msgid "Correct"
5388
  msgstr ""
5389
 
5390
- #: templates/content-quiz/result.php:50
5391
- msgctxt "quiz-result"
5392
- msgid "Wrong"
5393
  msgstr ""
5394
 
5395
- #: templates/content-quiz/result.php:54
5396
- msgctxt "quiz-result"
5397
- msgid "Skipped"
5398
  msgstr ""
5399
 
5400
- #: templates/content-quiz/history.php:34
5401
  #, php-format
5402
- msgid "Other results (newest %d items)"
5403
  msgstr ""
5404
 
5405
- #: templates/content-quiz/history.php:53
5406
- msgid "Time"
5407
  msgstr ""
5408
 
5409
- #: templates/content-quiz/history.php:54
5410
- msgid "Result"
5411
  msgstr ""
5412
 
5413
- #: templates/content-quiz/history.php:83
5414
- msgid "No history found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5415
  msgstr ""
5416
 
5417
- #: templates/global/before-main-content.php:26
5418
- msgid "LearnPress <strong>Checkout</strong> page is not set up. "
 
 
5419
  msgstr ""
5420
 
5421
- #: templates/global/before-main-content.php:29
5422
- msgid "Please contact administrator for setting up this page."
 
5423
  msgstr ""
5424
 
5425
- #: templates/global/before-main-content.php:31
5426
  #, php-format
5427
- msgid ""
5428
- "Please <a href=\\\"%s\\\" target=\\\"_blank\\\">setup</a> it so users can "
5429
- "purchase courses."
5430
  msgstr ""
5431
 
5432
- #: templates/global/block-content.php:18
5433
- msgid ""
5434
- "Content of this item has blocked because the course has exceeded duration."
 
5435
  msgstr ""
5436
 
5437
- #: templates/global/form-login.php:23
5438
- msgctxt "login-heading"
5439
- msgid "Login"
5440
  msgstr ""
5441
 
5442
- #: templates/global/form-login.php:43
5443
- msgid "Remember me"
5444
  msgstr ""
5445
 
5446
- #: templates/global/form-login.php:52
5447
- msgid "Lost your password?"
5448
  msgstr ""
5449
 
5450
- #: templates/global/form-register.php:23
5451
- msgctxt "register-heading"
5452
- msgid "Register"
5453
  msgstr ""
5454
 
5455
- #: templates/global/restrict-access.php:28
5456
- msgid ""
5457
- "You have no permission to view this area. Please contact site's "
5458
- "administrators for more details."
5459
  msgstr ""
5460
 
5461
- #: inc/admin/settings/class-lp-settings-profile.php:56
5462
- #: inc/admin/settings/class-lp-settings-general.php:42
5463
- #: inc/admin/settings/class-lp-settings-courses.php:68
5464
- msgid "General settings."
5465
  msgstr ""
5466
 
5467
- #: inc/admin/settings/class-lp-settings-profile.php:59
5468
- msgid "Profile page"
5469
  msgstr ""
5470
 
5471
- #: inc/admin/settings/class-lp-settings-profile.php:65
5472
- msgid "Add link to admin bar"
5473
  msgstr ""
5474
 
5475
- #: inc/admin/settings/class-lp-settings-profile.php:71
5476
- msgid "Text link"
5477
  msgstr ""
5478
 
5479
- #: inc/admin/settings/class-lp-settings-profile.php:76
5480
- msgid "If empty, please enter the name of the page used for profile."
5481
  msgstr ""
5482
 
5483
- #: inc/admin/settings/class-lp-settings-profile.php:89
5484
- msgid "Target link"
5485
  msgstr ""
5486
 
5487
- #: inc/admin/settings/class-lp-settings-profile.php:94
5488
- msgid "Open in same the window"
 
 
5489
  msgstr ""
5490
 
5491
- #: inc/admin/settings/class-lp-settings-profile.php:95
5492
- msgid "Open in a new window"
5493
  msgstr ""
5494
 
5495
- #: inc/admin/settings/class-lp-settings-profile.php:109
5496
- #: inc/admin/settings/class-lp-settings-courses.php:110
5497
- msgid "Courses per page"
5498
  msgstr ""
5499
 
5500
- #: inc/admin/settings/class-lp-settings-profile.php:114
5501
- msgid "Number of courses displayed per page in profile."
5502
  msgstr ""
5503
 
5504
- #: inc/admin/settings/class-lp-settings-profile.php:117
5505
- msgid "Enable login form"
 
5506
  msgstr ""
5507
 
5508
- #: inc/admin/settings/class-lp-settings-profile.php:121
5509
- msgid "Enable login from profile if the user is not logged in."
5510
  msgstr ""
5511
 
5512
- #: inc/admin/settings/class-lp-settings-profile.php:124
5513
- msgid "Enable register form"
5514
  msgstr ""
5515
 
5516
- #: inc/admin/settings/class-lp-settings-profile.php:128
5517
- msgid "Enable register from profile if the user is not logged in."
5518
  msgstr ""
5519
 
5520
- #: inc/admin/settings/class-lp-settings-profile.php:136
5521
- msgid "Sub Tab Slugs"
5522
  msgstr ""
5523
 
5524
- #: inc/admin/settings/class-lp-settings-profile.php:138
5525
- msgid "The slugs of tabs display in profile page. Each tab should be unique."
5526
  msgstr ""
5527
 
5528
- #: inc/admin/settings/class-lp-settings-profile.php:146
5529
- #: inc/admin/settings/class-lp-settings-profile.php:154
5530
- #: inc/admin/settings/class-lp-settings-profile.php:162
5531
- #: inc/admin/settings/class-lp-settings-profile.php:170
5532
- #: inc/admin/settings/class-lp-settings-profile.php:178
5533
- #: inc/admin/settings/class-lp-settings-profile.php:197
5534
- #: inc/admin/settings/class-lp-settings-profile.php:205
5535
- #: inc/admin/settings/class-lp-settings-profile.php:213
5536
- #: inc/admin/settings/class-lp-settings-profile.php:221
5537
- #, php-format
5538
- msgid "Example link is %s"
5539
  msgstr ""
5540
 
5541
- #: inc/admin/settings/class-lp-settings-profile.php:187
5542
- msgid "Settings Tab"
5543
  msgstr ""
5544
 
5545
- #: inc/admin/settings/class-lp-settings-profile.php:189
5546
- msgid "The slugs of sections in settings tab. Each slugs should be unique."
5547
  msgstr ""
5548
 
5549
- #: inc/admin/settings/class-lp-settings-profile.php:192
5550
- msgid "Slug"
 
5551
  msgstr ""
5552
 
5553
- #: inc/admin/settings/class-lp-settings-profile.php:200
5554
- msgid "Basic Information"
5555
  msgstr ""
5556
 
5557
- #: inc/admin/settings/class-lp-settings-profile.php:216
5558
- msgid "Change Password"
 
5559
  msgstr ""
5560
 
5561
- #: inc/admin/settings/class-lp-settings-profile.php:231
5562
- msgid "User avatar settings."
 
5563
  msgstr ""
5564
 
5565
- #: inc/admin/settings/class-lp-settings-profile.php:234
5566
- msgid "Enable custom avatar"
5567
  msgstr ""
5568
 
5569
- #: inc/admin/settings/class-lp-settings-profile.php:240
5570
- msgid "Size"
 
5571
  msgstr ""
5572
 
5573
- #: inc/admin/settings/class-lp-settings-profile.php:254
5574
- msgid "The height and width of avatar should be equal."
5575
  msgstr ""
5576
 
5577
- #: inc/admin/settings/class-lp-settings-profile.php:264
5578
- msgid "Publicity and sharing user profile content."
5579
  msgstr ""
5580
 
5581
- #: inc/admin/settings/class-lp-settings-profile.php:267
5582
- #: templates/profile/tabs/settings/publicity.php:38
5583
- msgid "My dashboard"
5584
  msgstr ""
5585
 
5586
- #: inc/admin/settings/class-lp-settings-profile.php:271
5587
- #: templates/profile/tabs/settings/publicity.php:43
5588
- msgid ""
5589
- "Public user profile content, if this option is turn off then other sections "
5590
- "in profile also become invisible."
5591
  msgstr ""
5592
 
5593
- #: inc/admin/settings/class-lp-settings-profile.php:278
5594
- msgid "Public user profile courses."
 
 
 
 
 
 
 
 
 
 
5595
  msgstr ""
5596
 
5597
- #: inc/admin/settings/class-lp-settings-profile.php:278
5598
- msgid "Allow user to turn on/off sharing profile course option"
 
5599
  msgstr ""
5600
 
5601
- #: inc/admin/settings/class-lp-settings-profile.php:295
5602
- msgid "Public user profile quizzes."
 
5603
  msgstr ""
5604
 
5605
- #: inc/admin/settings/class-lp-settings-profile.php:295
5606
- msgid "Allow user to turn on/off sharing profile quizzes option"
 
5607
  msgstr ""
5608
 
5609
- #: inc/admin/settings/class-lp-settings-payments.php:28
5610
- #: inc/admin/settings/class-lp-settings-payments.php:143
5611
- msgid "Payments"
5612
  msgstr ""
5613
 
5614
- #: inc/admin/settings/class-lp-settings-payments.php:81
5615
- #: inc/admin/settings/class-lp-settings-checkout.php:66
5616
- msgid "Checkout page"
5617
  msgstr ""
5618
 
5619
- #: inc/admin/settings/class-lp-settings-payments.php:87
5620
- #: inc/admin/settings/class-lp-settings-checkout.php:59
5621
- msgid "Auto enroll"
5622
  msgstr ""
5623
 
5624
- #: inc/admin/settings/class-lp-settings-payments.php:91
5625
- #: inc/admin/settings/class-lp-settings-checkout.php:60
5626
- msgid "Auto enroll a user after they buy a course."
5627
  msgstr ""
5628
 
5629
- #: inc/admin/settings/class-lp-settings-payments.php:94
5630
- msgid "Enable guest checkout"
5631
  msgstr ""
5632
 
5633
- #: inc/admin/settings/class-lp-settings-payments.php:98
5634
- msgid "Enable user buy course as a Guest."
5635
  msgstr ""
5636
 
5637
- #: inc/admin/settings/class-lp-settings-payments.php:101
5638
- msgid "Enable login in checkout"
5639
  msgstr ""
5640
 
5641
- #: inc/admin/settings/class-lp-settings-payments.php:105
5642
- msgid "Enable login form in checkout page."
5643
  msgstr ""
5644
 
5645
- #: inc/admin/settings/class-lp-settings-payments.php:108
5646
- msgid "Enable registration in checkout"
5647
  msgstr ""
5648
 
5649
- #: inc/admin/settings/class-lp-settings-payments.php:112
5650
- msgid "Enable registration form in checkout page."
5651
  msgstr ""
5652
 
5653
- #: inc/admin/settings/class-lp-settings-payments.php:115
5654
- msgid "Terms & conditions page"
5655
  msgstr ""
5656
 
5657
- #: inc/admin/settings/class-lp-settings-payments.php:127
5658
- msgid "Endpoints"
5659
  msgstr ""
5660
 
5661
- #: inc/admin/settings/class-lp-settings-payments.php:134
5662
- msgid "lp-order-received"
5663
  msgstr ""
5664
 
5665
- #: inc/admin/settings/class-lp-settings-payments.php:136
5666
  #, php-format
5667
  msgid ""
5668
- "Unique slug in checkout page to displays order details. Example: http:"
5669
- "//example.com/lp-checkout/%s/"
5670
  msgstr ""
5671
 
5672
- #: inc/admin/settings/class-lp-settings-payments.php:145
5673
- msgid ""
5674
- "All available payments are listed here. Drag and drop the payments to re-"
5675
- "order."
5676
  msgstr ""
5677
 
5678
- #: inc/admin/settings/class-lp-settings-payments.php:148
5679
- msgid "Payment order"
5680
  msgstr ""
5681
 
5682
- #: inc/admin/settings/class-lp-settings-emails.php:64
5683
- msgid "General options"
5684
  msgstr ""
5685
 
5686
- #: inc/admin/settings/class-lp-settings-emails.php:112
5687
- msgid "Email options"
5688
  msgstr ""
5689
 
5690
- #: inc/admin/settings/class-lp-settings-emails.php:114
5691
- #: inc/admin/views/settings/emails/general.php:17
 
 
 
5692
  msgid ""
5693
- "The following options affect the sender (email address and name) used in "
5694
- "LearnPress emails."
5695
  msgstr ""
5696
 
5697
- #: inc/admin/settings/class-lp-settings-emails.php:117
5698
- msgid "From name"
5699
  msgstr ""
5700
 
5701
- #: inc/admin/settings/class-lp-settings-emails.php:123
5702
- msgid "From email"
5703
  msgstr ""
5704
 
5705
- #: inc/admin/settings/class-lp-settings-emails.php:129
5706
- msgid "Send email in background"
5707
  msgstr ""
5708
 
5709
- #: inc/admin/settings/class-lp-settings-emails.php:133
5710
- msgid "Defer transaction email and runs in background."
5711
  msgstr ""
5712
 
5713
- #: inc/admin/settings/class-lp-settings-emails.php:136
5714
- msgid "Email template"
5715
  msgstr ""
5716
 
5717
- #: inc/admin/settings/class-lp-settings-emails.php:140
5718
- msgid "Default Email Content"
5719
  msgstr ""
5720
 
5721
- #: inc/admin/settings/class-lp-settings-emails.php:144
5722
- msgid ""
5723
- "Default email content type for all emails that set content type is <strong>"
5724
- "General Settings</strong>."
5725
  msgstr ""
5726
 
5727
- #: inc/admin/settings/class-lp-settings-emails.php:146
5728
- msgid "Plain Text"
5729
  msgstr ""
5730
 
5731
- #: inc/admin/settings/class-lp-settings-emails.php:151
5732
- #: inc/admin/views/settings/emails/general.php:40
5733
- msgid "Header image"
5734
  msgstr ""
5735
 
5736
- #: inc/admin/settings/class-lp-settings-emails.php:156
5737
- #: inc/admin/views/settings/emails/general.php:43
5738
- msgid "The image will be displayed in the top of the email."
5739
  msgstr ""
5740
 
5741
- #: inc/admin/settings/class-lp-settings-emails.php:159
5742
- #: inc/admin/views/settings/emails/general.php:47
5743
- msgid "Footer text"
5744
  msgstr ""
5745
 
5746
- #: inc/admin/settings/class-lp-settings-emails.php:163
5747
- msgid "The texts display in the bottom of email."
5748
  msgstr ""
5749
 
5750
- #: inc/admin/settings/class-lp-settings-advanced.php:22
5751
- #: inc/admin/settings/class-lp-settings-advanced.php:88
5752
- msgid "Advanced"
5753
  msgstr ""
5754
 
5755
- #: inc/admin/settings/class-lp-settings-advanced.php:53
5756
- msgid "Enable custom colors"
5757
  msgstr ""
5758
 
5759
- #: inc/admin/settings/class-lp-settings-advanced.php:57
5760
- msgid "Use color schema for main colors."
5761
  msgstr ""
5762
 
5763
- #: inc/admin/settings/class-lp-settings-advanced.php:60
5764
- msgid "Color schema"
5765
  msgstr ""
5766
 
5767
- #: inc/admin/settings/class-lp-settings-advanced.php:66
5768
- msgid "Load css"
 
 
5769
  msgstr ""
5770
 
5771
- #: inc/admin/settings/class-lp-settings-advanced.php:70
5772
- msgid "Load default stylesheet for LearnPress."
5773
  msgstr ""
5774
 
5775
- #: inc/admin/settings/class-lp-settings-advanced.php:73
5776
- msgid "Debug mode"
 
 
5777
  msgstr ""
5778
 
5779
- #: inc/admin/settings/class-lp-settings-advanced.php:77
5780
- msgid "Turn on/off debug mode for developer."
5781
  msgstr ""
5782
 
5783
- #: inc/admin/settings/class-lp-settings-advanced.php:80
5784
- msgid "Hard cache"
5785
  msgstr ""
5786
 
5787
- #: inc/admin/settings/class-lp-settings-advanced.php:84
5788
- msgid "Enable hard cache"
5789
  msgstr ""
5790
 
5791
- #: inc/admin/settings/class-lp-settings-advanced.php:88
5792
- #, php-format
5793
- msgid ""
5794
- "Enable cache for static content such as content and settings of course, "
5795
- "lesson, quiz. <a href=\"%s\">%s</a>"
5796
  msgstr ""
5797
 
5798
- #: inc/admin/settings/class-lp-settings-advanced.php:91
5799
- msgid "Others"
5800
  msgstr ""
5801
 
5802
- #: inc/admin/settings/class-lp-settings-advanced.php:95
5803
- msgid "Enable lesson video"
 
 
 
 
5804
  msgstr ""
5805
 
5806
- #: inc/admin/settings/class-lp-settings-advanced.php:99
5807
- msgid ""
5808
- "When this option is enabled, the first video embed in lesson content will be "
5809
- "detected and move to the top."
5810
  msgstr ""
5811
 
5812
- #: inc/admin/settings/class-lp-settings-general.php:45
5813
- msgid "Logout redirect"
 
5814
  msgstr ""
5815
 
5816
- #: inc/admin/settings/class-lp-settings-general.php:49
5817
- msgid "The page where user will be redirected to after logging out."
 
5818
  msgstr ""
5819
 
5820
- #: inc/admin/settings/class-lp-settings-general.php:54
5821
- msgid "Setting up your currency unit and its formatting."
5822
  msgstr ""
5823
 
5824
- #: inc/admin/settings/class-lp-settings-general.php:65
5825
- #: inc/admin/views/setup/steps/currency.php:37
5826
- msgid "Currency position"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5827
  msgstr ""
5828
 
5829
- #: inc/admin/settings/class-lp-settings-general.php:72
5830
- #: inc/admin/views/setup/steps/currency.php:51
5831
- msgid "Thousands Separator"
5832
  msgstr ""
5833
 
5834
- #: inc/admin/settings/class-lp-settings-general.php:78
5835
- #: inc/admin/views/setup/steps/currency.php:56
5836
- msgid "Decimals Separator"
5837
  msgstr ""
5838
 
5839
- #: inc/admin/settings/class-lp-settings-general.php:84
5840
- #: inc/admin/views/setup/steps/currency.php:61
5841
- msgid "Number of Decimals"
5842
  msgstr ""
5843
 
5844
- #: inc/admin/settings/class-lp-settings-pages.php:16
5845
- msgid "Pages"
5846
  msgstr ""
5847
 
5848
- #: inc/admin/settings/class-lp-settings-pages.php:28
5849
- msgid "Become a teacher"
 
5850
  msgstr ""
5851
 
5852
- #: inc/admin/settings/class-lp-settings-pages.php:39
5853
- msgid "Become a teacher page"
 
5854
  msgstr ""
5855
 
5856
- #: inc/admin/settings/class-lp-settings-pages.php:45
5857
- msgid "Instructors registration"
 
5858
  msgstr ""
5859
 
5860
- #: inc/admin/settings/class-lp-settings-pages.php:46
5861
- msgid "Create option for instructors registration."
5862
  msgstr ""
5863
 
5864
- #: inc/admin/settings/class-lp-settings-checkout.php:72
5865
- msgid "Checkout Endpoints"
5866
  msgstr ""
5867
 
5868
- #: inc/admin/settings/class-lp-settings-courses.php:38
5869
- #: inc/admin/meta-box/fields/course-permalink.php:36
5870
- #: inc/admin/views/settings/fields/course-permalink.php:14
5871
- msgctxt "default-slug"
5872
- msgid "courses"
5873
  msgstr ""
5874
 
5875
- #: inc/admin/settings/class-lp-settings-courses.php:71
5876
- msgid "Review course before publishing"
 
5877
  msgstr ""
5878
 
5879
- #: inc/admin/settings/class-lp-settings-courses.php:72
5880
- msgid "The course needs to be reviewed by admin before it can be published."
5881
  msgstr ""
5882
 
5883
- #: inc/admin/settings/class-lp-settings-courses.php:78
5884
- msgid "Enable editing published course"
5885
  msgstr ""
5886
 
5887
- #: inc/admin/settings/class-lp-settings-courses.php:79
5888
- msgid ""
5889
- "Allow instructors to edit the course which were published without review.<br "
5890
- "/> If this option is disabled, the course status will be changed to Pending "
5891
- "Review when the instructor update course."
5892
  msgstr ""
5893
 
5894
- #: inc/admin/settings/class-lp-settings-courses.php:99
5895
- msgid "Archive"
5896
  msgstr ""
5897
 
5898
- #: inc/admin/settings/class-lp-settings-courses.php:101
5899
- msgid "Those settings are applied to archive course page."
5900
  msgstr ""
5901
 
5902
- #: inc/admin/settings/class-lp-settings-courses.php:104
5903
- msgid "Courses Page"
 
5904
  msgstr ""
5905
 
5906
- #: inc/admin/settings/class-lp-settings-courses.php:111
5907
- msgid "Number of courses displayed per page."
 
5908
  msgstr ""
5909
 
5910
- #: inc/admin/settings/class-lp-settings-courses.php:126
5911
- msgid "Single course"
5912
  msgstr ""
5913
 
5914
- #: inc/admin/settings/class-lp-settings-courses.php:128
5915
- msgid "Those settings are applied to single course page."
5916
  msgstr ""
5917
 
5918
- #: inc/admin/settings/class-lp-settings-courses.php:132
5919
- msgid "Course category base"
5920
  msgstr ""
5921
 
5922
- #: inc/admin/settings/class-lp-settings-courses.php:138
5923
- msgid "Course tag base"
5924
  msgstr ""
5925
 
5926
- #: inc/admin/settings/class-lp-settings-courses.php:144
5927
- msgid "Single course permalink"
5928
  msgstr ""
5929
 
5930
- #: inc/admin/settings/class-lp-settings-courses.php:164
5931
- msgid "Enrolled students number"
5932
  msgstr ""
5933
 
5934
- #: inc/admin/settings/class-lp-settings-courses.php:167
5935
- msgid ""
5936
- "Displays a fake numbers of enrolled students. Disable to show the real value."
5937
  msgstr ""
5938
 
5939
- #: inc/admin/settings/class-lp-settings-courses.php:175
5940
- msgid "Course thumbnails"
5941
  msgstr ""
5942
 
5943
- #: inc/admin/settings/class-lp-settings-courses.php:177
5944
- msgid "Thumbnail generation for archive/single course."
5945
  msgstr ""
5946
 
5947
- #: inc/admin/settings/class-lp-settings-courses.php:202
5948
- msgid "Archive course"
5949
  msgstr ""
5950
 
5951
- #: inc/admin/settings/class-lp-settings-courses.php:206
5952
- msgid "Turn on/off courses extra thumbnail."
5953
  msgstr ""
5954
 
5955
- #: inc/admin/settings/class-lp-settings-courses.php:209
5956
- msgid "Thumbnail dimensions"
5957
  msgstr ""
5958
 
5959
- #: inc/admin/pointers/pointers.php:66
5960
- msgid "Course Curriculum"
5961
  msgstr ""
5962
 
5963
- #: inc/admin/pointers/pointers.php:67
5964
  msgid ""
5965
- "Build a course by selecting created lessons and quizzes or adding new ones. "
5966
- "You can easily sort, edit, shortcut (l and q). With LearnPress, it's never "
5967
- "been easier."
5968
  msgstr ""
5969
 
5970
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:16
5971
- msgid "LearnPress Add-ons"
 
5972
  msgstr ""
5973
 
5974
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:33
 
5975
  #, php-format
5976
- msgid "Installed (%d)"
5977
  msgstr ""
5978
 
5979
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:34
 
 
 
 
 
 
5980
  #, php-format
5981
- msgid "Get more (%d)"
 
 
 
 
 
 
 
 
 
 
5982
  msgstr ""
5983
 
5984
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:35
 
 
 
 
 
 
5985
  #, php-format
5986
- msgid "Themes (%d)"
5987
  msgstr ""
5988
 
5989
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:42
5990
- msgid "Get more"
5991
  msgstr ""
5992
 
5993
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:43
5994
- msgid "Themes"
 
5995
  msgstr ""
5996
 
5997
- #: inc/admin/sub-menus/class-lp-submenu-addons.php:66
5998
- msgid "Search..."
 
5999
  msgstr ""
6000
 
6001
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:15
6002
- msgid "Statistics"
 
 
 
6003
  msgstr ""
6004
 
6005
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:16
6006
- msgid "LearnPress Statistics"
 
 
 
6007
  msgstr ""
6008
 
6009
- #: inc/admin/sub-menus/class-lp-submenu-statistics.php:27
6010
- msgid "Users"
6011
  msgstr ""
6012
 
6013
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:13
6014
- msgid "Tools"
6015
  msgstr ""
6016
 
6017
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:14
6018
- msgid "LearnPress Tools"
 
 
6019
  msgstr ""
6020
 
6021
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:20
6022
- msgid "Template"
6023
  msgstr ""
6024
 
6025
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:21
6026
- msgid "Database"
6027
  msgstr ""
6028
 
6029
- #: inc/admin/sub-menus/class-lp-submenu-tools.php:23
6030
- msgid "Cache"
6031
  msgstr ""
6032
 
6033
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:15
6034
- msgid "LearnPress Settings"
6035
  msgstr ""
6036
 
6037
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:95
6038
- msgid "Save settings"
6039
  msgstr ""
6040
 
6041
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:99
6042
- msgid "Do you want to restore all settings to default?"
 
6043
  msgstr ""
6044
 
6045
- #: inc/admin/sub-menus/class-lp-submenu-settings.php:100
6046
- #: inc/admin/meta-box/fields/color-schema.php:101
6047
- #: inc/widgets/course-filters/tmpl/default.php:85
6048
- #: inc/admin/views/tools/course/html-user-item.php:28
6049
- msgid "Reset"
 
6050
  msgstr ""
6051
 
6052
- #: inc/admin/views/html-admin-notice-templates.php:31
6053
- #, php-format
6054
- msgid ""
6055
- "There is a new update of LearnPress. You may need to update your theme "
6056
- "<strong>(%s)</strong> to avoid outdated template files."
6057
  msgstr ""
6058
 
6059
- #: inc/admin/views/html-admin-notice-templates.php:32
6060
- #, php-format
6061
- msgid ""
6062
- "This is not a bug, don't worry. Read more about Outdated template files "
6063
- "notice <a href=\"%s\" target=\"_blank\">here</a>."
6064
  msgstr ""
6065
 
6066
- #: inc/admin/views/html-admin-notice-templates.php:40
6067
- msgid "View list of outdated templates"
6068
  msgstr ""
6069
 
6070
- #: inc/admin/helpers/class-lp-plugins-helper.php:269
6071
- #: inc/admin/helpers/class-lp-plugins-helper.php:279
6072
- msgid "Disable Now"
6073
  msgstr ""
6074
 
6075
- #: inc/admin/helpers/class-lp-plugins-helper.php:271
6076
- #: inc/admin/helpers/class-lp-plugins-helper.php:281
6077
- msgid "Enable Now"
6078
  msgstr ""
6079
 
6080
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:45
6081
- msgid "Invalid quiz"
6082
  msgstr ""
6083
 
6084
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:150
6085
- #: inc/admin/editor/class-lp-admin-editor-quiz.php:585
6086
- msgid "Quiz creation failed."
6087
  msgstr ""
6088
 
6089
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:92
6090
- msgid "Make payment via Paypal."
6091
  msgstr ""
6092
 
6093
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:96
6094
- msgid "Pay with Paypal"
6095
  msgstr ""
6096
 
6097
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:379
6098
- msgid "IPN payment completed"
6099
  msgstr ""
6100
 
6101
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:504
6102
- #: inc/admin/views/setup/setup-paypal.php:24
6103
- msgid "Paypal Email"
6104
  msgstr ""
6105
 
6106
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:524
6107
- #: inc/admin/views/settings/payments.php:68
6108
- #: inc/admin/views/setup/setup-paypal.php:34
6109
- msgid "Sandbox Mode"
6110
  msgstr ""
6111
 
6112
- #: inc/gateways/paypal/class-lp-gateway-paypal.php:540
6113
- #: inc/admin/views/settings/payments.php:76
6114
- msgid "Sandbox Email Address"
6115
  msgstr ""
6116
 
6117
- #: inc/widgets/course-filters/course-filters.php:11
6118
- #: inc/widgets/course-progress/course-progress.php:46
6119
- #: inc/widgets/course-attributes/course-attributes.php:11
6120
- #: inc/widgets/featured-courses/featured-courses.php:45
6121
- #: inc/widgets/course-info/course-info.php:46
6122
- #: inc/widgets/popular-courses/popular-courses.php:46
6123
- #: inc/widgets/recent-courses/recent-courses.php:46
6124
- #: inc/admin/views/setup/setup-stripe.php:7
6125
- msgid "Title"
6126
  msgstr ""
6127
 
6128
- #: inc/widgets/course-filters/course-filters.php:14
6129
- msgid "Course filters"
6130
  msgstr ""
6131
 
6132
- #: inc/widgets/course-filters/course-filters.php:17
6133
- msgid "Filter by"
6134
  msgstr ""
6135
 
6136
- #: inc/widgets/course-filters/course-filters.php:24
6137
- msgid "Attribute operation"
 
6138
  msgstr ""
6139
 
6140
- #: inc/widgets/course-filters/course-filters.php:29
6141
- #: inc/widgets/course-filters/course-filters.php:39
6142
- msgid "And"
6143
  msgstr ""
6144
 
6145
- #: inc/widgets/course-filters/course-filters.php:30
6146
- #: inc/widgets/course-filters/course-filters.php:40
6147
- msgid "Or"
6148
  msgstr ""
6149
 
6150
- #: inc/widgets/course-filters/course-filters.php:34
6151
- msgid "Value operation"
 
 
 
6152
  msgstr ""
6153
 
6154
- #: inc/widgets/course-filters/course-filters.php:44
6155
- msgid "Ajax filter"
6156
  msgstr ""
6157
 
6158
- #: inc/widgets/course-filters/course-filters.php:48
6159
- msgid "Use ajax to fetch content while filtering"
6160
  msgstr ""
6161
 
6162
- #: inc/widgets/course-filters/course-filters.php:51
6163
- msgid "Button filter"
6164
  msgstr ""
6165
 
6166
- #: inc/widgets/course-filters/course-filters.php:55
6167
- msgid "If checked, user has to click this button to start filtering"
 
6168
  msgstr ""
6169
 
6170
- #: inc/widgets/course-progress/course-progress.php:49
6171
- msgid "Course Progress"
6172
  msgstr ""
6173
 
6174
- #: inc/widgets/course-progress/course-progress.php:52
6175
- #: inc/widgets/featured-courses/featured-courses.php:95
6176
- #: inc/widgets/course-info/course-info.php:52
6177
- #: inc/widgets/popular-courses/popular-courses.php:96
6178
- #: inc/widgets/recent-courses/recent-courses.php:96
6179
- msgid "CSS Class"
 
6180
  msgstr ""
6181
 
6182
- #: inc/widgets/course-attributes/course-attributes.php:14
6183
- msgid "Course attributes"
 
 
6184
  msgstr ""
6185
 
6186
- #: inc/widgets/featured-courses/featured-courses.php:48
6187
- msgid "Featured Courses"
6188
  msgstr ""
6189
 
6190
- #: inc/widgets/featured-courses/featured-courses.php:51
6191
- #: inc/widgets/popular-courses/popular-courses.php:52
6192
- #: inc/widgets/recent-courses/recent-courses.php:52
6193
- msgid "Show teacher"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6194
  msgstr ""
6195
 
6196
- #: inc/widgets/featured-courses/featured-courses.php:57
6197
- #: inc/widgets/popular-courses/popular-courses.php:58
6198
- #: inc/widgets/recent-courses/recent-courses.php:58
6199
- msgid "Show lesson"
6200
  msgstr ""
6201
 
6202
- #: inc/widgets/featured-courses/featured-courses.php:63
6203
- #: inc/widgets/popular-courses/popular-courses.php:64
6204
- #: inc/widgets/recent-courses/recent-courses.php:64
6205
- msgid "Show Thumbnail"
 
 
 
 
 
 
 
6206
  msgstr ""
6207
 
6208
- #: inc/widgets/featured-courses/featured-courses.php:69
6209
- #: inc/widgets/popular-courses/popular-courses.php:70
6210
- #: inc/widgets/recent-courses/recent-courses.php:70
6211
- msgid "Limit"
6212
  msgstr ""
6213
 
6214
- #: inc/widgets/featured-courses/featured-courses.php:76
6215
- #: inc/widgets/popular-courses/popular-courses.php:77
6216
- #: inc/widgets/recent-courses/recent-courses.php:77
6217
- msgid "Description Length"
6218
  msgstr ""
6219
 
6220
- #: inc/widgets/featured-courses/featured-courses.php:83
6221
- #: inc/widgets/popular-courses/popular-courses.php:84
6222
- #: inc/widgets/recent-courses/recent-courses.php:84
6223
- msgid "Show Enrolled Students"
6224
  msgstr ""
6225
 
6226
- #: inc/widgets/featured-courses/featured-courses.php:89
6227
- #: inc/widgets/popular-courses/popular-courses.php:90
6228
- #: inc/widgets/recent-courses/recent-courses.php:90
6229
- msgid "Show Price"
6230
  msgstr ""
6231
 
6232
- #: inc/widgets/featured-courses/featured-courses.php:101
6233
- #: inc/widgets/popular-courses/popular-courses.php:102
6234
- #: inc/widgets/recent-courses/recent-courses.php:102
6235
- msgid "Go to Courses"
6236
  msgstr ""
6237
 
6238
- #: inc/widgets/course-info/course-info.php:49
6239
- msgid "Course Info"
 
 
6240
  msgstr ""
6241
 
6242
- #: inc/widgets/popular-courses/popular-courses.php:49
6243
- msgid "Popular Courses"
 
 
6244
  msgstr ""
6245
 
6246
- #: inc/widgets/recent-courses/recent-courses.php:49
6247
- msgid "Recent Courses"
6248
  msgstr ""
6249
 
6250
- #: templates/emails/plain/order-items-table.php:48
6251
- #, php-format
6252
- msgid "Quantity: %s"
 
6253
  msgstr ""
6254
 
6255
- #: templates/emails/plain/order-items-table.php:50
6256
- #, php-format
6257
- msgid "Cost: %s"
6258
  msgstr ""
6259
 
6260
- #: templates/profile/tabs/quizzes.php:23
6261
- msgid "My Quizzes"
 
 
6262
  msgstr ""
6263
 
6264
- #: templates/profile/tabs/quizzes.php:40
6265
- #: templates/profile/tabs/courses.php:35
6266
- #: templates/profile/tabs/courses/purchased.php:41
6267
- msgid "Progress"
6268
  msgstr ""
6269
 
6270
- #: templates/profile/tabs/quizzes.php:41
6271
- msgid "Interval"
 
 
6272
  msgstr ""
6273
 
6274
- #: templates/profile/tabs/quizzes.php:97
6275
- msgid "No quizzes!"
 
 
6276
  msgstr ""
6277
 
6278
- #: templates/profile/tabs/courses.php:21
6279
- msgid "You haven't got any courses yet!"
 
 
6280
  msgstr ""
6281
 
6282
- #: templates/profile/tabs/courses.php:27
6283
- #: templates/profile/tabs/courses/owned.php:25
6284
- msgid "My Courses"
 
6285
  msgstr ""
6286
 
6287
- #: templates/profile/tabs/courses.php:34
6288
- #: templates/profile/tabs/courses/purchased.php:40
6289
- msgid "Passing Grade"
 
6290
  msgstr ""
6291
 
6292
- #: templates/single-course/tabs/curriculum.php:47
6293
- msgid "Curriculum is empty"
 
 
6294
  msgstr ""
6295
 
6296
- #: templates/single-course/section/content.php:72
6297
- msgid "No items in this section"
 
6298
  msgstr ""
6299
 
6300
- #: templates/single-course/content-item/nav.php:20
6301
- msgctxt "course-item-navigation"
6302
- msgid "Prev"
 
6303
  msgstr ""
6304
 
6305
- #: templates/single-course/content-item/nav.php:29
6306
- msgctxt "course-item-navigation"
6307
- msgid "Next"
6308
  msgstr ""
6309
 
6310
- #: templates/single-course/content-item/header.php:24
6311
- msgid "Search item"
6312
  msgstr ""
6313
 
6314
- #: templates/single-course/content-item/header.php:36
6315
- msgid "Back to Course"
6316
  msgstr ""
6317
 
6318
- #: templates/single-course/buttons/continue.php:23
6319
- #: templates/content-quiz/buttons/continue.php:26
6320
- #: inc/admin/views/setup/content.php:86
6321
- msgid "Continue"
6322
  msgstr ""
6323
 
6324
- #: templates/single-course/buttons/purchase.php:32
6325
- msgid "Buy this course"
6326
  msgstr ""
6327
 
6328
- #: templates/single-course/buttons/retake.php:39
6329
- #, php-format
6330
- msgid "Retake course (+%d)"
 
6331
  msgstr ""
6332
 
6333
- #: templates/single-course/buttons/enroll.php:32
6334
- msgid "Enroll"
6335
  msgstr ""
6336
 
6337
- #: templates/single-course/buttons/finish.php:24
6338
- msgid "Finish course"
 
 
 
6339
  msgstr ""
6340
 
6341
- #: templates/content-quiz/buttons/check.php:24
6342
- msgid "Checked"
6343
  msgstr ""
6344
 
6345
- #: templates/content-quiz/buttons/check.php:24
6346
- msgid "Check"
6347
  msgstr ""
6348
 
6349
- #: templates/content-quiz/buttons/nav.php:32
6350
- msgctxt "quiz-question-navigation"
6351
- msgid "Prev"
6352
  msgstr ""
6353
 
6354
- #: templates/content-quiz/buttons/nav.php:53
6355
- msgctxt "quiz-question-navigation"
6356
- msgid "Next"
 
 
 
 
 
 
 
 
 
 
6357
  msgstr ""
6358
 
6359
- #: templates/content-quiz/buttons/nav.php:74
6360
- msgctxt "quiz-question-navigation"
6361
- msgid "Skip"
6362
  msgstr ""
6363
 
6364
- #: templates/content-quiz/buttons/hint.php:21
6365
- msgid "Hinted"
6366
  msgstr ""
6367
 
6368
- #: templates/content-quiz/buttons/hint.php:21
6369
- msgid "Hint"
6370
  msgstr ""
6371
 
6372
- #: templates/content-quiz/buttons/summary.php:27
6373
- msgid "Summary"
6374
  msgstr ""
6375
 
6376
- #: templates/content-quiz/buttons/redo.php:32
6377
- msgid "Redo"
6378
  msgstr ""
6379
 
6380
- #: templates/content-quiz/buttons/start.php:27
6381
- msgid "Start"
6382
  msgstr ""
6383
 
6384
- #: templates/global/become-teacher-form/button.php:18
6385
- msgid "Submitting"
 
 
6386
  msgstr ""
6387
 
6388
- #: templates/widgets/featured-courses/default.php:24
6389
- #: templates/widgets/popular-courses/default.php:19
6390
- #: templates/widgets/recent-courses/default.php:24
6391
- msgid "No courses"
6392
  msgstr ""
6393
 
6394
- #: templates/widgets/featured-courses/default.php:65
6395
- #: templates/widgets/popular-courses/default.php:60
6396
- #: templates/widgets/recent-courses/default.php:65
6397
- msgid "..."
 
6398
  msgstr ""
6399
 
6400
- #: templates/widgets/featured-courses/default.php:86
6401
- #: templates/widgets/popular-courses/default.php:81
6402
- #: templates/widgets/recent-courses/default.php:86
6403
- #, php-format
6404
- msgid "%d lessons"
6405
  msgstr ""
6406
 
6407
- #: templates/widgets/course-info/default.php:39
6408
- msgid "Preview Lessons"
 
 
 
6409
  msgstr ""
6410
 
6411
- #: inc/admin/settings/email-groups/class-lp-settings-processing-order-emails.php:22
6412
- msgid "Processing Order"
6413
  msgstr ""
6414
 
6415
- #: inc/admin/settings/email-groups/class-lp-settings-enrolled-course-emails.php:26
6416
- msgid "Enrolled Course"
6417
  msgstr ""
6418
 
6419
- #: inc/admin/settings/email-groups/class-lp-settings-finished-course-emails.php:26
6420
- msgid "Finished Course"
6421
  msgstr ""
6422
 
6423
- #: inc/admin/settings/email-groups/class-lp-settings-cancelled-order-emails.php:24
6424
- msgid "Cancelled Order"
 
 
 
6425
  msgstr ""
6426
 
6427
- #: inc/admin/settings/email-groups/class-lp-settings-course-review-emails.php:23
6428
- msgid "Review Course"
6429
  msgstr ""
6430
 
6431
- #: inc/admin/settings/email-groups/class-lp-settings-completed-order-emails.php:23
6432
- msgid "Completed Order"
6433
  msgstr ""
6434
 
6435
- #: inc/admin/settings/email-groups/class-lp-settings-become-teacher-emails.php:23
6436
- msgid "Become an Instructor"
 
6437
  msgstr ""
6438
 
6439
- #: inc/admin/settings/email-groups/class-lp-settings-new-order-emails.php:24
6440
- msgid "New Order"
6441
  msgstr ""
6442
 
6443
- #: inc/admin/meta-box/fields/image-dimensions.php:32
6444
- #: inc/admin/views/settings/fields/image-size.php:13
6445
- msgid "px"
6446
  msgstr ""
6447
 
6448
- #: inc/admin/meta-box/fields/course-permalink.php:37
6449
- #: inc/admin/views/settings/fields/course-permalink.php:15
6450
- msgctxt "default-slug"
6451
- msgid "course"
6452
  msgstr ""
6453
 
6454
- #: inc/admin/meta-box/fields/course-permalink.php:42
6455
- #: inc/admin/views/settings/fields/course-permalink.php:26
6456
- msgid "Default"
6457
  msgstr ""
6458
 
6459
- #: inc/admin/meta-box/fields/course-permalink.php:52
6460
- #: inc/admin/views/settings/fields/course-permalink.php:36
6461
- msgid "Courses base"
6462
  msgstr ""
6463
 
6464
- #: inc/admin/meta-box/fields/course-permalink.php:57
6465
- #: inc/admin/views/settings/fields/course-permalink.php:41
6466
- msgid "Courses base with category"
6467
  msgstr ""
6468
 
6469
- #: inc/admin/meta-box/fields/course-permalink.php:92
6470
- #: inc/admin/views/settings/fields/course-permalink.php:77
6471
- msgid "Custom Base"
6472
  msgstr ""
6473
 
6474
- #: inc/admin/meta-box/fields/course-permalink.php:100
6475
- #: inc/admin/views/settings/fields/course-permalink.php:84
6476
- msgid ""
6477
- "Enter a custom base to use. A base <strong>must</strong> be set or WordPress "
6478
- "will use default values instead."
6479
  msgstr ""
6480
 
6481
- #: inc/admin/meta-box/fields/google-fonts.php:30
6482
- msgid "Fonts"
6483
  msgstr ""
6484
 
6485
- #: inc/admin/meta-box/fields/google-fonts.php:38
6486
- msgid "Font families separated by |, eg: Open Sans|Roboto."
 
6487
  msgstr ""
6488
 
6489
- #: inc/admin/meta-box/fields/google-fonts.php:40
6490
- msgid "Subset"
 
 
 
 
6491
  msgstr ""
6492
 
6493
- #: inc/admin/meta-box/fields/google-fonts.php:48
6494
- msgid "Font subsets separated by comma, eg: greek,latin."
6495
  msgstr ""
6496
 
6497
- #: inc/admin/meta-box/fields/payment-order.php:30
6498
- #: inc/admin/views/tools/course/html-course.php:28
6499
- #: inc/admin/views/tools/course/html-user.php:28
6500
- msgid "ID"
6501
  msgstr ""
6502
 
6503
- #: inc/admin/meta-box/fields/payment-order.php:31
6504
- #: inc/admin/meta-box/fields/list-emails.php:29
6505
- #: inc/admin/views/setup/setup-stripe.php:11
6506
- msgid "Description"
6507
  msgstr ""
6508
 
6509
- #: inc/admin/meta-box/fields/color-schema.php:99
6510
- msgid "Save as new"
6511
  msgstr ""
6512
 
6513
- #: inc/admin/meta-box/fields/color-schema.php:102
6514
- msgid "Use this colors"
6515
  msgstr ""
6516
 
6517
- #: inc/admin/meta-box/fields/color-schema.php:103
6518
- #: inc/admin/views/meta-boxes/course/review-logs.php:31
6519
- #: inc/libraries/meta-box/inc/fields/autocomplete.php:20
6520
- #: inc/libraries/meta-box/inc/fields/autocomplete.php:81
6521
- #: inc/libraries/meta-box/inc/fields/autocomplete.php:93
6522
- msgid "Delete"
6523
  msgstr ""
6524
 
6525
- #: inc/admin/meta-box/fields/email-content.php:66
6526
- msgid "General setting"
 
 
6527
  msgstr ""
6528
 
6529
- #: inc/admin/meta-box/fields/email-content.php:70
6530
- #, php-format
6531
- msgid ""
6532
- "Choose <strong>General setting</strong> to apply the setting from Email <a "
6533
- "href=\"%s\">General Options</a> "
6534
  msgstr ""
6535
 
6536
- #: inc/admin/meta-box/fields/email-content.php:115
6537
- #: inc/admin/views/settings/emails/email-template.php:52
6538
- #, php-format
6539
- msgid ""
6540
- "This template has been overridden by your theme and can be found in: <code>"
6541
- "%s</code>. <br />Please open the file in an editor program to edit"
6542
  msgstr ""
6543
 
6544
- #: inc/admin/meta-box/fields/email-content.php:151
6545
- #: inc/admin/views/settings/emails/email-template.php:77
6546
- msgid "Click on variables to add it into email content."
6547
  msgstr ""
6548
 
6549
- #: inc/admin/meta-box/fields/list-emails.php:70
6550
- msgid ""
6551
- "You can enable/disable each email by clicking on the status icon or apply "
6552
- "status for all emails by clicking these buttons"
6553
  msgstr ""
6554
 
6555
- #: inc/admin/meta-box/fields/list-emails.php:73
6556
- msgid "Enable all"
6557
  msgstr ""
6558
 
6559
- #: inc/admin/meta-box/fields/list-emails.php:76
6560
- msgid "Disable all"
6561
  msgstr ""
6562
 
6563
- #: inc/admin/views/statistics/courses.php:18
6564
- #: inc/admin/views/statistics/users.php:19
6565
- #: inc/admin/views/statistics/general.php:33
6566
- #: inc/admin/views/statistics/orders.php:19
6567
- msgid "Last 7 Days"
6568
  msgstr ""
6569
 
6570
- #: inc/admin/views/statistics/courses.php:21
6571
- #: inc/admin/views/statistics/users.php:22
6572
- #: inc/admin/views/statistics/general.php:36
6573
- #: inc/admin/views/statistics/orders.php:22
6574
- msgid "Last 30 Days"
6575
  msgstr ""
6576
 
6577
- #: inc/admin/views/statistics/courses.php:24
6578
- #: inc/admin/views/statistics/users.php:26
6579
- #: inc/admin/views/statistics/general.php:40
6580
- #: inc/admin/views/statistics/orders.php:25
6581
- msgid "Last 12 Months"
6582
  msgstr ""
6583
 
6584
- #: inc/admin/views/statistics/courses.php:31
6585
- #: inc/admin/views/statistics/users.php:33
6586
- #: inc/admin/views/statistics/general.php:47
6587
- #: inc/admin/views/statistics/orders.php:32
6588
- msgid "From"
6589
  msgstr ""
6590
 
6591
- #: inc/admin/views/statistics/courses.php:33
6592
- #: inc/admin/views/statistics/users.php:35
6593
- #: inc/admin/views/statistics/general.php:49
6594
- #: inc/admin/views/statistics/orders.php:34
6595
- msgid "To"
6596
  msgstr ""
6597
 
6598
- #: inc/admin/views/statistics/courses.php:36
6599
- #: inc/admin/views/statistics/users.php:39
6600
- #: inc/admin/views/statistics/general.php:53
6601
- #: inc/admin/views/statistics/orders.php:37
6602
- msgid "Go"
6603
  msgstr ""
6604
 
6605
- #: inc/admin/views/statistics/courses.php:43
6606
- #: inc/admin/views/statistics/general.php:60
6607
- msgid "Public"
6608
  msgstr ""
6609
 
6610
- #: inc/admin/views/statistics/orders.php:44
6611
- msgid "Sale by"
6612
  msgstr ""
6613
 
6614
- #: inc/admin/views/statistics/orders.php:48
6615
- msgid "Course Category"
6616
  msgstr ""
6617
 
6618
- #: inc/admin/views/statistics/orders.php:51
6619
- msgid "Select a course"
6620
  msgstr ""
6621
 
6622
- #: inc/admin/views/statistics/orders.php:55
6623
- msgid "Select a course category"
6624
  msgstr ""
6625
 
6626
- #: inc/admin/views/settings/setting-field.php:96
6627
- msgid ""
6628
- "The settings of this image size have been disabled because its values are "
6629
- "being overwritten by a filter."
6630
  msgstr ""
6631
 
6632
- #: inc/admin/views/settings/setting-field.php:108
6633
- msgid "Hard Crop?"
 
6634
  msgstr ""
6635
 
6636
- #: inc/admin/views/settings/payments.php:27
6637
- msgid "Basic"
 
6638
  msgstr ""
6639
 
6640
- #: inc/admin/views/settings/payments.php:28
6641
- msgid "Security"
6642
  msgstr ""
6643
 
6644
- #: inc/admin/views/settings/payments.php:33
6645
- msgid "Email Address"
 
6646
  msgstr ""
6647
 
6648
- #: inc/admin/views/settings/payments.php:42
6649
- msgid "API Username"
 
6650
  msgstr ""
6651
 
6652
- #: inc/admin/views/settings/payments.php:49
6653
- msgid "API Password"
 
6654
  msgstr ""
6655
 
6656
- #: inc/admin/views/settings/payments.php:56
6657
- msgid "API Signature"
6658
  msgstr ""
6659
 
6660
- #: inc/admin/views/settings/payments.php:85
6661
- msgid "Sandbox API Username"
6662
  msgstr ""
6663
 
6664
- #: inc/admin/views/settings/payments.php:93
6665
- msgid "Sandbox API Password"
6666
  msgstr ""
6667
 
6668
- #: inc/admin/views/settings/payments.php:101
6669
- msgid "Sandbox API Signature"
 
6670
  msgstr ""
6671
 
6672
- #: inc/admin/views/tools/html-cache.php:12
6673
- msgid "LearnPress hard cache"
 
6674
  msgstr ""
6675
 
6676
- #: inc/admin/views/tools/html-cache.php:13
6677
- msgid ""
6678
- "Hard cache is build-in tool of LearnPress for caching of static content such "
6679
- "as course, lesson, quiz."
6680
  msgstr ""
6681
 
6682
- #: inc/admin/views/tools/html-cache.php:14
6683
- msgid ""
6684
- "When caching is enabled, the content will be cached when course is accessed "
6685
- "in the first time."
6686
  msgstr ""
6687
 
6688
- #: inc/admin/views/tools/html-cache.php:15
6689
- msgid ""
6690
- "And it will not change in all later accesses until the cache is cleared."
6691
  msgstr ""
6692
 
6693
- #: inc/admin/views/tools/html-cache.php:16
6694
- msgid ""
6695
- "If the content is not changed after updating course, click the button below "
6696
- "to flush the cache and apply changes."
6697
  msgstr ""
6698
 
6699
- #: inc/admin/views/tools/html-cache.php:21
6700
- msgid "Enable/Disable hard cache"
 
6701
  msgstr ""
6702
 
6703
- #: inc/admin/views/tools/html-cache.php:25
6704
- #: inc/admin/views/tools/html-cache.php:28
6705
- msgid "Clear cache"
6706
  msgstr ""
6707
 
6708
- #: inc/admin/views/tools/html-cache.php:26
6709
- msgid "Cleaning..."
 
6710
  msgstr ""
6711
 
6712
- #: inc/admin/views/tools/html-template.php:30
6713
- #, php-format
6714
- msgid "Override Templates (%s)"
6715
  msgstr ""
6716
 
6717
- #: inc/admin/views/tools/html-template.php:38
6718
- msgid "File"
 
6719
  msgstr ""
6720
 
6721
- #: inc/admin/views/tools/html-template.php:41
6722
- #, php-format
6723
- msgid "All (%d)"
6724
  msgstr ""
6725
 
6726
- #: inc/admin/views/tools/html-template.php:49
6727
- #, php-format
6728
- msgid "Outdated (%d)"
6729
  msgstr ""
6730
 
6731
- #: inc/admin/views/tools/html-template.php:51
 
6732
  #, php-format
6733
- msgid "Unversioned (%d)"
6734
  msgstr ""
6735
 
6736
- #: inc/admin/views/tools/html-template.php:55
6737
- msgid "Version"
6738
  msgstr ""
6739
 
6740
- #: inc/admin/views/tools/html-template.php:57
6741
- msgid "Core version"
6742
  msgstr ""
6743
 
6744
- #: inc/admin/views/tools/html-template.php:89
6745
- msgid "There is no template file has overwritten"
6746
  msgstr ""
6747
 
6748
- #: inc/admin/views/tools/subscription-button.php:14
6749
- msgid ""
6750
- "If you don't want to miss exclussive offers from us, join our newsletter."
6751
  msgstr ""
6752
 
6753
- #: inc/admin/views/tools/subscription-button.php:17
6754
- msgid "Sure! I want to get the latest news."
6755
  msgstr ""
6756
 
6757
- #: inc/admin/views/course/new-section.php:17
6758
- msgid "Create a new section"
6759
  msgstr ""
6760
 
6761
- #: inc/admin/views/course/pagination.php:18
6762
- #: inc/admin/views/quiz/pagination.php:16
6763
- msgctxt "page-navigation"
6764
- msgid "Previous"
6765
  msgstr ""
6766
 
6767
- #: inc/admin/views/course/pagination.php:20
6768
- #: inc/admin/views/quiz/pagination.php:18
6769
- msgctxt "page-navigation"
6770
- msgid "Next"
6771
  msgstr ""
6772
 
6773
- #: inc/admin/views/course/editor.php:25
6774
- msgid "Something went wrong! Please reload to continue editing curriculum."
 
6775
  msgstr ""
6776
 
6777
- #: inc/admin/views/course/section.php:21
6778
- msgid "Enter the name section"
6779
  msgstr ""
6780
 
6781
- #: inc/admin/views/course/section.php:38
6782
- msgid "Describe about this section"
 
6783
  msgstr ""
6784
 
6785
- #: inc/admin/views/course/section.php:56
6786
- msgid "Select items"
 
 
6787
  msgstr ""
6788
 
6789
- #: inc/admin/views/course/section.php:61
6790
- msgid "Are you sure?"
6791
  msgstr ""
6792
 
6793
- #: inc/admin/views/course/modal-choose-items.php:77
6794
- msgid "Type here to search item"
6795
  msgstr ""
6796
 
6797
- #: inc/admin/views/course/modal-choose-items.php:83
6798
- #: inc/admin/views/quiz/modal-choose-items.php:70
6799
- msgid "No item found."
6800
  msgstr ""
6801
 
6802
- #: inc/admin/views/course/modal-choose-items.php:101
6803
- #: inc/admin/views/quiz/modal-choose-items.php:89
6804
- msgid "Adding"
6805
  msgstr ""
6806
 
6807
- #: inc/admin/views/course/section-item.php:36
6808
- msgid "Remove from course"
6809
- msgstr ""
 
 
 
6810
 
6811
- #: inc/admin/views/course/section-item.php:40
6812
- #: inc/admin/views/quiz/question-actions.php:50
6813
- msgid "Move to trash"
6814
  msgstr ""
6815
 
6816
- #: inc/admin/views/addons/html-plugins-more.php:20
6817
- msgid "There is no available add-ons."
6818
- msgstr ""
 
 
 
6819
 
6820
- #: inc/admin/views/addons/html-plugins-more.php:28
6821
- msgid "Free add-ons"
 
6822
  msgstr ""
6823
 
6824
- #: inc/admin/views/addons/html-plugins-more.php:33
6825
- msgid "Premium add-ons"
6826
- msgstr ""
 
 
 
6827
 
6828
- #: inc/admin/views/addons/html-themes.php:20
6829
- msgid "No related themes."
 
6830
  msgstr ""
6831
 
6832
- #: inc/admin/views/addons/html-themes.php:30
6833
- msgid "Education Support"
6834
- msgstr ""
 
 
 
6835
 
6836
- #: inc/admin/views/addons/html-themes.php:34
6837
- msgid "Other"
 
6838
  msgstr ""
6839
 
6840
- #: inc/admin/views/addons/html-loop-plugin.php:37
6841
  #, php-format
6842
- msgid "<cite>By %s</cite>"
6843
- msgstr ""
 
 
6844
 
6845
- #: inc/admin/views/addons/html-loop-plugin.php:43
6846
- msgid "Version: "
 
6847
  msgstr ""
6848
 
6849
- #: inc/admin/views/addons/html-loop-theme.php:30
6850
- msgid "$"
6851
  msgstr ""
6852
 
6853
- #: inc/admin/views/addons/html-loop-theme.php:33
6854
- msgid " sales"
6855
  msgstr ""
6856
 
6857
- #: inc/admin/views/addons/html-plugins-installed.php:18
6858
- msgid "There is no add-on installed."
6859
  msgstr ""
6860
 
6861
- #: inc/admin/views/addons/html-plugins-installed.php:25
6862
- msgid "Installed add-ons"
 
6863
  msgstr ""
6864
 
6865
- #: inc/admin/views/setup/notice-setup.php:2
6866
- msgid "<strong>LearnPress has just successfully installed.</strong>"
6867
  msgstr ""
6868
 
6869
- #: inc/admin/views/setup/notice-setup.php:6
6870
- msgid "Skip"
 
6871
  msgstr ""
6872
 
6873
- #: inc/admin/views/setup/setup-paypal.php:29
6874
- msgid "Your Paypal email in live mode."
 
6875
  msgstr ""
6876
 
6877
- #: inc/admin/views/setup/setup-paypal.php:39
6878
  #, php-format
6879
- msgid ""
6880
- "For testing purpose with Paypal sandbox mode. Create an account <a "
6881
- "href=\"%s\">here</a>!"
6882
  msgstr ""
6883
 
6884
- #: inc/admin/views/setup/setup-paypal.php:44
6885
- msgid "Paypal Sandbox Email"
6886
  msgstr ""
6887
 
6888
- #: inc/admin/views/setup/setup-paypal.php:49
6889
- msgid "Your Paypal email in sandbox mode."
6890
  msgstr ""
6891
 
6892
- #: inc/admin/views/setup/setup-stripe.php:15
6893
- msgid "Live secret key"
6894
  msgstr ""
6895
 
6896
- #: inc/admin/views/setup/setup-stripe.php:19
6897
- msgid "Live publish key"
6898
  msgstr ""
6899
 
6900
- #: inc/admin/views/setup/setup-stripe.php:24
6901
- msgid "Test mode"
6902
  msgstr ""
6903
 
6904
- #: inc/admin/views/setup/setup-stripe.php:28
6905
- msgid "Test secret key"
6906
  msgstr ""
6907
 
6908
- #: inc/admin/views/setup/setup-stripe.php:32
6909
- msgid "Test publish key"
6910
  msgstr ""
6911
 
6912
- #: inc/admin/views/setup/content.php:47
6913
- msgid "Skip to prev step"
6914
  msgstr ""
6915
 
6916
- #: inc/admin/views/setup/content.php:60
6917
- msgid "Skip to next step"
6918
  msgstr ""
6919
 
6920
- #: inc/admin/views/setup/content.php:67
6921
- #: inc/admin/views/setup/steps/finish.php:29
6922
- msgid "Back to Dashboard"
6923
  msgstr ""
6924
 
6925
- #: inc/admin/views/setup/header.php:17
6926
- msgid "LearnPress &rsaquo; Setup Wizard"
6927
  msgstr ""
6928
 
6929
- #: inc/admin/views/setup/footer.php:15
6930
- #, php-format
6931
- msgid "LearnPress %s. Designed by @ThimPress."
6932
  msgstr ""
6933
 
6934
- #: inc/admin/views/quiz/editor.php:31
6935
- #: inc/admin/views/tools/course/html-course.php:31
6936
- #: inc/admin/views/tools/course/html-user.php:31
6937
- msgid "Actions"
6938
  msgstr ""
6939
 
6940
- #: inc/admin/views/quiz/editor.php:47
6941
- msgid "Create a new question"
6942
  msgstr ""
6943
 
6944
- #: inc/admin/views/quiz/editor.php:54
6945
- msgid "Add as New..."
6946
  msgstr ""
6947
 
6948
- #: inc/admin/views/quiz/editor.php:64
6949
- #: inc/libraries/meta-box/inc/fields/file-input.php:39
6950
- #: inc/libraries/meta-box/inc/fields/select.php:87
6951
- msgid "Select"
6952
  msgstr ""
6953
 
6954
- #: inc/admin/views/quiz/editor.php:78
6955
- msgid "Something went wrong! Please reload to continue editing quiz questions."
6956
  msgstr ""
6957
 
6958
- #: inc/admin/views/quiz/modal-choose-items.php:65
6959
- msgid "Type here to search question"
 
 
 
 
 
 
 
 
 
 
 
 
6960
  msgstr ""
6961
 
6962
- #: inc/admin/views/quiz/question-answer.php:19
6963
- #: inc/admin/views/question/answer.php:18
6964
- msgid "Answer Text"
6965
  msgstr ""
6966
 
6967
- #: inc/admin/views/quiz/question-answer.php:20
6968
- #: inc/admin/views/question/answer.php:19
6969
- msgid "Correct?"
6970
  msgstr ""
6971
 
6972
- #: inc/admin/views/quiz/question-answer.php:34
6973
- #: inc/admin/views/question/answer.php:35
6974
- msgid "Add option"
6975
  msgstr ""
6976
 
6977
- #: inc/admin/views/quiz/question-actions.php:46
6978
- msgid "Remove from quiz"
6979
  msgstr ""
6980
 
6981
- #: inc/admin/views/updates/html-updating-message.php:14
6982
- msgid ""
6983
- "<strong>LearnPress update</strong> – We are running updater to upgrade your "
6984
- "database to the latest version."
6985
  msgstr ""
6986
 
6987
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:14
6988
- #, php-format
6989
- msgid "Welcome to LearnPress %s"
6990
  msgstr ""
6991
 
6992
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:15
6993
- msgid ""
6994
- "This is a <strong>BIG UPDATE</strong> and it allows you to do so much more!"
6995
  msgstr ""
6996
 
6997
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:20
6998
- msgid "Check what's new"
6999
  msgstr ""
7000
 
7001
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:22
7002
- msgid "Get support now"
 
 
7003
  msgstr ""
7004
 
7005
- #: inc/admin/views/updates/html-upgrade-message-3.0.0.php:24
7006
- msgid "Got it!"
 
7007
  msgstr ""
7008
 
7009
- #: inc/admin/views/updates/html-update-message.php:12
7010
  msgid ""
7011
- "<strong>LearnPress update</strong> We need to update your database to the "
7012
- "latest version."
7013
  msgstr ""
7014
 
7015
- #: inc/admin/views/updates/update-screen.php:17
7016
- msgid "LearnPress &rsaquo; Update Database"
 
7017
  msgstr ""
7018
 
7019
- #: inc/admin/views/updates/update-screen.php:36
7020
- msgid "LearnPress Update Database"
 
7021
  msgstr ""
7022
 
7023
- #: inc/admin/views/updates/update-screen.php:38
7024
- msgid "Before updating please ensure your site data is already backed up!"
7025
  msgstr ""
7026
 
7027
- #: inc/admin/views/updates/update-screen.php:43
7028
- msgid "Run Updater"
7029
  msgstr ""
7030
 
7031
- #: inc/admin/views/updates/html-updated-latest-message.php:16
7032
- msgid "LearnPress has just updated to latest version."
7033
  msgstr ""
7034
 
7035
- #: inc/admin/views/question/actions.php:13
7036
- msgid "Question Answers"
7037
  msgstr ""
7038
 
7039
- #: inc/admin/views/meta-boxes/tabs.php:93
7040
- msgid "Initializing..."
7041
  msgstr ""
7042
 
7043
- #: inc/libraries/meta-box/inc/field.php:359
7044
- msgid "+ Add more"
7045
  msgstr ""
7046
 
7047
- #: inc/libraries/meta-box/inc/validation.php:47
7048
- msgid "Please correct the errors highlighted below and try again."
7049
  msgstr ""
7050
 
7051
- #: inc/libraries/meta-box/inc/core.php:39
7052
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:26
7053
- msgid "Extensions"
7054
  msgstr ""
7055
 
7056
- #: inc/gateways/paypal/paypal-ipn/ipn.php:52
7057
- msgid "Order on "
7058
  msgstr ""
7059
 
7060
- #: inc/widgets/course-filters/tmpl/default.php:83
7061
- msgid "Filter"
7062
  msgstr ""
7063
 
7064
- #: templates/profile/tabs/settings/basic-information.php:49
7065
- msgid "Biographical Info"
7066
  msgstr ""
7067
 
7068
- #: templates/profile/tabs/settings/basic-information.php:53
7069
- msgid ""
7070
- "Share a little biographical information to fill out your profile. This may "
7071
- "be shown publicly."
7072
  msgstr ""
7073
 
7074
- #: templates/profile/tabs/settings/basic-information.php:57
7075
- msgid "First Name"
7076
  msgstr ""
7077
 
7078
- #: templates/profile/tabs/settings/basic-information.php:65
7079
- msgid "Last Name"
 
 
7080
  msgstr ""
7081
 
7082
- #: templates/profile/tabs/settings/basic-information.php:73
7083
- msgid "Nickname"
7084
  msgstr ""
7085
 
7086
- #: templates/profile/tabs/settings/basic-information.php:81
7087
- msgid "Display name publicly as"
7088
  msgstr ""
7089
 
7090
- #: templates/profile/tabs/settings/basic-information.php:111
7091
- #: templates/profile/tabs/settings/change-password.php:87
7092
- #: templates/profile/tabs/settings/avatar.php:76
7093
- #: templates/profile/tabs/settings/publicity.php:88
7094
- msgid "Save changes"
7095
  msgstr ""
7096
 
7097
- #: templates/profile/tabs/settings/change-password.php:43
7098
- msgid "Old password"
7099
  msgstr ""
7100
 
7101
- #: templates/profile/tabs/settings/change-password.php:49
7102
- msgid "New password"
7103
  msgstr ""
7104
 
7105
- #: templates/profile/tabs/settings/change-password.php:55
7106
- msgid "Confirmation password"
7107
  msgstr ""
7108
 
7109
- #: templates/profile/tabs/settings/change-password.php:59
7110
- msgid "New password does not match!"
7111
  msgstr ""
7112
 
7113
- #: templates/profile/tabs/settings/avatar.php:58
7114
- msgid "Upload"
7115
  msgstr ""
7116
 
7117
- #: templates/profile/tabs/settings/avatar.php:60
7118
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:23
7119
- #: inc/admin/views/tools/database/html-remove-database.php:23
7120
- #: inc/libraries/meta-box/inc/fields/file-input.php:41
7121
- msgid "Remove"
7122
  msgstr ""
7123
 
7124
- #: templates/profile/tabs/settings/publicity.php:50
7125
- msgid "My courses"
7126
  msgstr ""
7127
 
7128
- #: templates/profile/tabs/settings/publicity.php:54
7129
- msgid "Public your profile courses"
7130
  msgstr ""
7131
 
7132
- #: templates/profile/tabs/settings/publicity.php:61
7133
- msgid "My quizzes"
 
7134
  msgstr ""
7135
 
7136
- #: templates/profile/tabs/settings/publicity.php:65
7137
- msgid "Public your profile quizzes"
7138
  msgstr ""
7139
 
7140
- #: templates/profile/tabs/courses/owned.php:37
7141
- #: templates/profile/tabs/courses/purchased.php:82
7142
- msgid "No courses!"
7143
  msgstr ""
7144
 
7145
- #: templates/profile/tabs/courses/purchased.php:24
7146
- msgid "Purchased Courses"
7147
  msgstr ""
7148
 
7149
- #: templates/profile/tabs/orders/order-message.php:19
7150
- #, php-format
7151
- msgid "This order is paid for %s"
7152
  msgstr ""
7153
 
7154
- #: templates/profile/tabs/orders/order-message.php:25
7155
- #, php-format
7156
- msgid "This order is paid by %s"
7157
  msgstr ""
7158
 
7159
- #: templates/profile/tabs/orders/list.php:21
7160
- msgid "No orders!"
7161
  msgstr ""
7162
 
7163
- #: templates/profile/tabs/orders/list.php:26
7164
- msgid "My Orders"
7165
  msgstr ""
7166
 
7167
- #: templates/profile/tabs/orders/list.php:36
7168
- msgid "Action"
7169
  msgstr ""
7170
 
7171
- #: templates/profile/tabs/orders/recover-order.php:20
7172
- msgid "If you have a valid order key you can recover it here."
7173
  msgstr ""
7174
 
7175
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:29
7176
- msgid "Send notification when a user signs up to be a teacher"
7177
  msgstr ""
7178
 
7179
- #: inc/admin/views/settings/emails/become-a-teacher-request.php:37
7180
- msgid "Email subject"
7181
  msgstr ""
7182
 
7183
- #: inc/admin/views/settings/emails/email-template.php:13
7184
- #: inc/admin/views/settings/emails/_email-template.php:11
7185
- msgid "HTML template"
7186
  msgstr ""
7187
 
7188
- #: inc/admin/views/settings/emails/email-template.php:14
7189
- #: inc/admin/views/settings/emails/_email-template.php:12
7190
- msgid "Plain text template"
7191
  msgstr ""
7192
 
7193
- #: inc/admin/views/settings/emails/email-template.php:87
7194
- #: inc/admin/views/settings/emails/_email-template.php:78
7195
- #, php-format
7196
- msgid ""
7197
- "To override and edit this email template copy <code>%s</code> to your theme "
7198
- "folder: <code>%s</code>."
7199
  msgstr ""
7200
 
7201
- #: inc/admin/views/settings/emails/_email-template.php:36
7202
- #, php-format
7203
- msgid ""
7204
- "This template has been overridden by your theme and can be found in: <code>"
7205
- "%s</code>. Please open the file in an editor program to edit"
7206
  msgstr ""
7207
 
7208
- #: inc/admin/views/settings/emails/_email-template.php:63
7209
- #, php-format
7210
- msgid ""
7211
- "This template has been overridden by your theme and can be found in: <code>"
7212
- "%s</code>."
7213
  msgstr ""
7214
 
7215
- #: inc/admin/views/settings/emails/_email-template.php:68
7216
- msgid "Delete template file"
 
7217
  msgstr ""
7218
 
7219
- #: inc/admin/views/settings/emails/_email-template.php:83
7220
- msgid "Copy file to theme"
 
7221
  msgstr ""
7222
 
7223
- #: inc/admin/views/settings/emails/_email-template.php:89
7224
- msgid "File not found."
7225
  msgstr ""
7226
 
7227
- #: inc/admin/views/settings/emails/general.php:15
7228
- msgid "Email Options"
7229
  msgstr ""
7230
 
7231
- #: inc/admin/views/settings/emails/general.php:23
7232
- msgid "From Name"
7233
  msgstr ""
7234
 
7235
- #: inc/admin/views/settings/emails/general.php:29
7236
- msgid "From Email"
7237
  msgstr ""
7238
 
7239
- #: inc/admin/views/settings/emails/general.php:36
7240
- msgid "Email Template"
7241
  msgstr ""
7242
 
7243
- #: inc/admin/views/settings/emails/general.php:50
7244
- msgid "The texts display in the bottom of email"
7245
  msgstr ""
7246
 
7247
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:12
7248
- msgid "Remove outdated Data"
7249
  msgstr ""
7250
 
7251
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:13
7252
- msgid ""
7253
- "Remove all courses, lessons, quizzes and questions from version older than 1."
7254
- "0."
 
 
7255
  msgstr ""
7256
 
7257
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:16
7258
- msgid ""
7259
- "Be careful before using this action! Only use this action in case all "
7260
- "outdated data has been upgraded."
7261
  msgstr ""
7262
 
7263
- #: inc/admin/views/tools/database/html-remove-outdated-data.php:20
7264
- #: inc/admin/views/tools/database/html-remove-database.php:20
7265
- msgid "Check this box and click this button again to confirm."
7266
  msgstr ""
7267
 
7268
- #: inc/admin/views/tools/database/html-install-sample-data.php:16
7269
- msgid "Install Sample Data"
 
 
7270
  msgstr ""
7271
 
7272
- #: inc/admin/views/tools/database/html-install-sample-data.php:17
7273
- msgid ""
7274
- "Create a <strong>Sample course</strong> with lessons and quizzes. The "
7275
- "content will be filled with <strong>Lorem</strong> text."
7276
  msgstr ""
7277
 
7278
- #: inc/admin/views/tools/database/html-install-sample-data.php:19
7279
- msgid "Options"
 
 
7280
  msgstr ""
7281
 
7282
- #: inc/admin/views/tools/database/html-install-sample-data.php:23
7283
- msgid "Course name"
 
 
7284
  msgstr ""
7285
 
7286
- #: inc/admin/views/tools/database/html-install-sample-data.php:28
7287
- msgid "Random number of sections in range"
 
 
7288
  msgstr ""
7289
 
7290
- #: inc/admin/views/tools/database/html-install-sample-data.php:35
7291
- msgid "Random number of items in range (each section)"
 
 
7292
  msgstr ""
7293
 
7294
- #: inc/admin/views/tools/database/html-install-sample-data.php:42
7295
- msgid "Random number of questions in range (each quiz)"
 
 
7296
  msgstr ""
7297
 
7298
- #: inc/admin/views/tools/database/html-install-sample-data.php:49
7299
- msgid "Random number of answers in range (each question)"
 
 
7300
  msgstr ""
7301
 
7302
- #: inc/admin/views/tools/database/html-install-sample-data.php:60
7303
- #: inc/admin/views/tools/database/html-install-sample-data.php:63
7304
- msgid "Install"
7305
  msgstr ""
7306
 
7307
- #: inc/admin/views/tools/database/html-install-sample-data.php:61
7308
- msgid "Installing..."
7309
  msgstr ""
7310
 
7311
- #: inc/admin/views/tools/database/html-install-sample-data.php:65
7312
- msgid "Show options"
7313
  msgstr ""
7314
 
7315
- #: inc/admin/views/tools/database/html-install-sample-data.php:67
7316
- #: inc/admin/views/tools/database/html-install-sample-data.php:71
7317
- msgid "Delete sample course"
7318
  msgstr ""
7319
 
7320
- #: inc/admin/views/tools/database/html-install-sample-data.php:68
7321
- msgid "Deleting..."
7322
  msgstr ""
7323
 
7324
- #: inc/admin/views/tools/database/html-upgrade-database.php:12
7325
- msgid "Upgrade Database"
7326
  msgstr ""
7327
 
7328
- #: inc/admin/views/tools/database/html-upgrade-database.php:13
7329
- msgid ""
7330
- "Force upgrade database to latest version. Please be careful before taking "
7331
- "this action."
7332
  msgstr ""
7333
 
7334
- #: inc/admin/views/tools/database/html-remove-database.php:12
7335
- msgid "Remove current Data"
7336
  msgstr ""
7337
 
7338
- #: inc/admin/views/tools/database/html-remove-database.php:13
7339
- msgid "Remove all courses, lessons, quizzes and questions."
 
7340
  msgstr ""
7341
 
7342
- #: inc/admin/views/tools/database/html-remove-database.php:16
7343
- msgid "Be careful before using this action!"
7344
  msgstr ""
7345
 
7346
- #: inc/admin/views/tools/course/html-course.php:12
7347
- msgid "Reset course progress"
7348
  msgstr ""
7349
 
7350
- #: inc/admin/views/tools/course/html-course.php:14
7351
  msgid ""
7352
- "This action will reset progress of a course for all users have enrolled."
 
7353
  msgstr ""
7354
 
7355
- #: inc/admin/views/tools/course/html-course.php:15
7356
- msgid "Search results only show course have user data."
 
7357
  msgstr ""
7358
 
7359
- #: inc/admin/views/tools/course/html-course.php:19
7360
- msgid "Search course by name"
7361
  msgstr ""
7362
 
7363
- #: inc/admin/views/tools/course/html-course.php:52
7364
- msgid "Please enter at least 3 characters to searching courses."
7365
  msgstr ""
7366
 
7367
- #: inc/admin/views/tools/course/html-course.php:54
7368
- msgid "Searching course..."
7369
  msgstr ""
7370
 
7371
- #: inc/admin/views/tools/course/html-course.php:62
7372
- #: inc/admin/views/tools/course/html-user.php:70
7373
- msgid ""
7374
- "Are you sure to reset course progress of all users enrolled this course?"
7375
  msgstr ""
7376
 
7377
- #: inc/admin/views/tools/course/html-user.php:12
7378
- msgid "Reset user progress"
7379
  msgstr ""
7380
 
7381
- #: inc/admin/views/tools/course/html-user.php:14
7382
  msgid ""
7383
- "This action will reset progress of all courses that an user has enrolled."
 
7384
  msgstr ""
7385
 
7386
- #: inc/admin/views/tools/course/html-user.php:15
7387
- msgid "Search results only show users have course data."
7388
  msgstr ""
7389
 
7390
- #: inc/admin/views/tools/course/html-user.php:19
7391
- msgid "Search user by login name or email"
7392
  msgstr ""
7393
 
7394
- #: inc/admin/views/tools/course/html-user.php:60
7395
- msgid "Please enter at least 3 characters to searching users."
 
 
7396
  msgstr ""
7397
 
7398
- #: inc/admin/views/tools/course/html-user.php:61
7399
- msgid "No user found."
 
 
7400
  msgstr ""
7401
 
7402
- #: inc/admin/views/tools/course/html-user.php:62
7403
- msgid "Searching user..."
7404
  msgstr ""
7405
 
7406
- #: inc/admin/views/tools/course/html-user-item.php:12
7407
- msgid "Reset item progress for an user"
7408
  msgstr ""
7409
 
7410
- #: inc/admin/views/tools/course/html-user-item.php:14
7411
- msgid "This action will reset progress of specific lesson or quiz."
 
7412
  msgstr ""
7413
 
7414
- #: inc/admin/views/tools/course/html-user-item.php:18
7415
- msgid "User ID or Email"
 
7416
  msgstr ""
7417
 
7418
- #: inc/admin/views/tools/course/html-user-item.php:19
7419
- msgid "Item ID (ID of quiz or lesson)"
7420
  msgstr ""
7421
 
7422
- #: inc/admin/views/tools/course/html-user-item.php:35
7423
- msgid "Are you sure to reset progress of this item?"
7424
  msgstr ""
7425
 
7426
- #: inc/admin/views/setup/steps/finish.php:14
7427
- msgid "Congrats! You are almost done with your settings."
 
7428
  msgstr ""
7429
 
7430
- #: inc/admin/views/setup/steps/finish.php:16
7431
- #: inc/admin/views/updates/0.9/step-upgraded.php:2
7432
- msgid "What's next?"
7433
  msgstr ""
7434
 
7435
- #: inc/admin/views/setup/steps/finish.php:22
7436
- msgid "Install sample course"
7437
  msgstr ""
7438
 
7439
- #: inc/admin/views/setup/steps/finish.php:25
7440
- msgid "Create new course"
7441
  msgstr ""
7442
 
7443
- #: inc/admin/views/setup/steps/finish.php:27
7444
- msgid "Visit your site"
 
7445
  msgstr ""
7446
 
7447
- #: inc/admin/views/setup/steps/emails.php:12
7448
- msgid "Emails system"
 
7449
  msgstr ""
7450
 
7451
- #: inc/admin/views/setup/steps/emails.php:14
7452
- msgid "Emails are sent to users or teachers for each particular action."
7453
  msgstr ""
7454
 
7455
- #: inc/admin/views/setup/steps/emails.php:15
7456
- msgid "You can enable/disable each email in LearnPress settings later."
7457
  msgstr ""
7458
 
7459
- #: inc/admin/views/setup/steps/emails.php:16
7460
- msgid "But in right now, you can enable all emails to see how emails work."
7461
  msgstr ""
7462
 
7463
- #: inc/admin/views/setup/steps/emails.php:17
7464
- msgid "You can skip to next step if you don’t want to."
7465
  msgstr ""
7466
 
7467
- #: inc/admin/views/setup/steps/emails.php:22
7468
- msgid "Enable emails"
7469
  msgstr ""
7470
 
7471
- #: inc/admin/views/setup/steps/pages.php:16
7472
- msgid ""
7473
- "The pages will display content of LP's necessary pages, such as: Courses, "
7474
- "Checkout, Profile"
7475
  msgstr ""
7476
 
7477
- #: inc/admin/views/setup/steps/pages.php:17
7478
- #, php-format
7479
- msgid ""
7480
- "If you are not sure, click <a href=\"%s\" id=\"create-pages\">here</a> to "
7481
- "create pages automatically."
7482
  msgstr ""
7483
 
7484
- #: inc/admin/views/setup/steps/pages.php:23
7485
- msgid "Page will display all courses inside."
7486
  msgstr ""
7487
 
7488
- #: inc/admin/views/setup/steps/pages.php:32
7489
- msgid "Page will display content of user profile."
7490
  msgstr ""
7491
 
7492
- #: inc/admin/views/setup/steps/pages.php:41
7493
- msgid "Page will display content of form for processing checkout."
7494
  msgstr ""
7495
 
7496
- #: inc/admin/views/setup/steps/pages.php:50
7497
- msgid "Page will display the form for submitting request to become a teacher."
 
7498
  msgstr ""
7499
 
7500
- #: inc/admin/views/setup/steps/welcome.php:12
7501
- msgid "Welcome to LearnPress"
 
7502
  msgstr ""
7503
 
7504
- #: inc/admin/views/setup/steps/welcome.php:14
7505
- msgid "Thanks for choosing LearnPress to sell your courses online!"
 
7506
  msgstr ""
7507
 
7508
- #: inc/admin/views/setup/steps/welcome.php:16
7509
- msgid ""
7510
- "Setup Wizard helps you config some basic information before publishing your "
7511
- "site."
7512
  msgstr ""
7513
 
7514
- #: inc/admin/views/updates/0.9/step-repair-database.php:1
7515
- msgid "Update Database"
 
7516
  msgstr ""
7517
 
7518
- #: inc/admin/views/updates/0.9/step-repair-database.php:4
7519
- msgid "Update custom post type"
 
7520
  msgstr ""
7521
 
7522
- #: inc/admin/views/updates/0.9/step-repair-database.php:7
7523
- #: inc/admin/views/updates/0.9/step-repair-database.php:10
7524
- msgid "Update post meta"
7525
  msgstr ""
7526
 
7527
- #: inc/admin/views/updates/0.9/step-repair-database.php:14
7528
- msgid "Updating! Please do not close this page until the work is done"
7529
  msgstr ""
7530
 
7531
- #: inc/admin/views/updates/0.9/step-repair-database.php:18
7532
- msgid "Rollback"
7533
  msgstr ""
7534
 
7535
- #: inc/admin/views/updates/0.9/step-upgraded.php:1
7536
- msgid "Upgrade completed successfully!"
7537
  msgstr ""
7538
 
7539
- #: inc/admin/views/updates/0.9/step-upgraded.php:5
7540
- msgid "Manage courses"
7541
  msgstr ""
7542
 
7543
- #: inc/admin/views/updates/0.9/step-upgraded.php:8
7544
- msgid "Create a new course"
7545
  msgstr ""
7546
 
7547
- #: inc/admin/views/updates/0.9/step-upgraded.php:11
7548
- msgid "Setting up your LearnPress"
 
7549
  msgstr ""
7550
 
7551
- #: inc/admin/views/updates/0.9/step-upgraded.php:14
7552
- msgid "Manage add-ons"
 
7553
  msgstr ""
7554
 
7555
- #: inc/admin/views/updates/0.9/update-wizard.php:6
7556
- #: inc/admin/views/updates/0.9/update-wizard.php:19
7557
- #, php-format
7558
- msgid "LearnPress update version %s"
7559
  msgstr ""
7560
 
7561
- #: inc/admin/views/updates/0.9/step-welcome.php:1
7562
- msgid "Welcome to LearnPress!"
7563
  msgstr ""
7564
 
7565
- #: inc/admin/views/updates/0.9/step-welcome.php:2
7566
- msgid "Thank you for choosing LearnPress to sell your courses online!"
7567
  msgstr ""
7568
 
7569
- #: inc/admin/views/updates/0.9/step-welcome.php:3
7570
- #, php-format
7571
- msgid ""
7572
- "In version <strong>%s</strong> of LearnPress we have a big update and need "
7573
- "to upgrade your database to ensure system works properly."
7574
  msgstr ""
7575
 
7576
- #: inc/admin/views/updates/0.9/step-welcome.php:4
7577
- msgid ""
7578
- "We are very careful in upgrading the database but be sure to backup your "
7579
- "database before upgrading to avoid possible risks."
7580
  msgstr ""
7581
 
7582
- #: inc/admin/views/updates/0.9/step-welcome.php:5
7583
- msgid "Click <strong>Yes, upgrade!</strong> button to start."
 
7584
  msgstr ""
7585
 
7586
- #: inc/admin/views/updates/0.9/step-welcome.php:7
7587
- msgid "No, back to Admin"
 
7588
  msgstr ""
7589
 
7590
- #: inc/admin/views/updates/0.9/step-welcome.php:8
7591
- msgid "Yes, upgrade!"
 
7592
  msgstr ""
7593
 
7594
- #: inc/admin/views/dashboard/plugin-status/html-results.php:17
7595
- msgid "Downloaded"
 
7596
  msgstr ""
7597
 
7598
- #: inc/admin/views/dashboard/plugin-status/html-results.php:18
7599
- msgid "Active Installed"
 
7600
  msgstr ""
7601
 
7602
- #: inc/admin/views/dashboard/plugin-status/html-results.php:32
7603
- msgid "Updated"
7604
  msgstr ""
7605
 
7606
- #: inc/admin/views/dashboard/plugin-status/html-results.php:33
7607
- msgid "Current Version"
7608
  msgstr ""
7609
 
7610
- #: inc/admin/views/dashboard/plugin-status/html-no-data.php:4
7611
- msgid "No results found"
 
 
 
7612
  msgstr ""
7613
 
7614
- #: inc/admin/views/meta-boxes/order/actions.php:19
7615
- msgid "Choose an action"
 
7616
  msgstr ""
7617
 
7618
- #: inc/admin/views/meta-boxes/order/actions.php:20
7619
- msgid "Trigger action of current order status"
 
7620
  msgstr ""
7621
 
7622
- #: inc/admin/views/meta-boxes/order/details.php:25
7623
- #, php-format
7624
- msgid "Order %s"
7625
  msgstr ""
7626
 
7627
- #: inc/admin/views/meta-boxes/order/details.php:72
7628
- msgid "Customers"
7629
  msgstr ""
7630
 
7631
- #: inc/admin/views/meta-boxes/order/details.php:79
7632
- #: inc/admin/views/meta-boxes/order/details.php:100
7633
- #: inc/admin/views/meta-boxes/order/details.php:210
7634
- msgid "Add multi users"
7635
  msgstr ""
7636
 
7637
- #: inc/admin/views/meta-boxes/order/details.php:82
7638
- #: inc/admin/views/meta-boxes/order/details.php:195
7639
- #: inc/admin/views/meta-boxes/order/details.php:204
7640
- #: inc/admin/views/meta-boxes/order/child-order.php:21
7641
- msgid "Customer"
7642
  msgstr ""
7643
 
7644
- #: inc/admin/views/meta-boxes/order/details.php:93
7645
- #: inc/admin/views/meta-boxes/order/details.php:200
7646
- msgid "Change"
7647
  msgstr ""
7648
 
7649
- #: inc/admin/views/meta-boxes/order/details.php:98
7650
- msgid "- Or -"
 
 
7651
  msgstr ""
7652
 
7653
- #: inc/admin/views/meta-boxes/order/details.php:105
7654
- msgid ""
7655
- "In order to change the order user, please change the order status to "
7656
- "'Pending'."
7657
  msgstr ""
7658
 
7659
- #: inc/admin/views/meta-boxes/order/details.php:120
7660
- msgid "Order Items"
7661
  msgstr ""
7662
 
7663
- #: inc/admin/views/meta-boxes/order/details.php:126
7664
- msgid "Cost"
7665
  msgstr ""
7666
 
7667
- #: inc/admin/views/meta-boxes/order/details.php:128
7668
- msgid "Amount"
7669
  msgstr ""
7670
 
7671
- #: inc/admin/views/meta-boxes/order/details.php:138
7672
- msgid "No order items"
7673
  msgstr ""
7674
 
7675
- #: inc/admin/views/meta-boxes/order/details.php:144
7676
- msgid "Sub Total"
7677
  msgstr ""
7678
 
7679
- #: inc/admin/views/meta-boxes/order/details.php:174
7680
- msgid "Add Item"
7681
  msgstr ""
7682
 
7683
- #: inc/admin/views/meta-boxes/order/details.php:177
7684
- msgid ""
7685
- "In order to change the order item, please change the order status to "
7686
- "'Pending'."
7687
  msgstr ""
7688
 
7689
- #: inc/admin/views/meta-boxes/order/details.php:180
7690
- msgid "Calculate Total"
7691
  msgstr ""
7692
 
7693
- #: inc/admin/views/meta-boxes/order/details.php:188
7694
- msgid "Customer Note"
7695
  msgstr ""
7696
 
7697
- #: inc/admin/views/meta-boxes/order/details.php:236
7698
- msgid "Type here to search the course"
 
7699
  msgstr ""
7700
 
7701
- #: inc/admin/views/meta-boxes/order/details.php:239
7702
- msgid "No results"
7703
  msgstr ""
7704
 
7705
- #: inc/admin/views/meta-boxes/course/review-log.php:25
7706
- msgid "Your course is pending for reviewing"
 
7707
  msgstr ""
7708
 
7709
- #: inc/admin/views/meta-boxes/course/review-log.php:27
 
7710
  msgid ""
7711
- "Your course will not be submitted for reviewing until you check 'Submit for "
7712
- "Review'"
7713
  msgstr ""
7714
 
7715
- #: inc/admin/views/meta-boxes/course/review-log.php:31
7716
- msgid "Submit for Review"
 
 
 
 
 
 
7717
  msgstr ""
7718
 
7719
- #: inc/admin/views/meta-boxes/course/review-log.php:34
7720
- #: inc/admin/views/meta-boxes/course/review-log.php:42
7721
- msgid "Message to Reviewer"
7722
  msgstr ""
7723
 
7724
- #: inc/admin/views/meta-boxes/course/review-log.php:48
7725
- msgid "This course is pending for reviewing"
7726
  msgstr ""
7727
 
7728
- #: inc/admin/views/meta-boxes/course/review-log.php:51
7729
- msgid "Message to Instructor"
 
7730
  msgstr ""
7731
 
7732
- #: inc/admin/views/meta-boxes/course/review-logs.php:7
7733
- #, php-format
7734
- msgid "%d review"
7735
- msgid_plural "%d reviews"
7736
- msgstr[0] ""
7737
- msgstr[1] ""
7738
 
7739
- #: inc/admin/views/meta-boxes/course/review-logs.php:9
7740
- msgid "This course has not got any reviews yet"
 
7741
  msgstr ""
7742
 
7743
- #: inc/admin/views/meta-boxes/course/review-logs.php:25
7744
- msgid "Rejected"
7745
  msgstr ""
7746
 
7747
- #: inc/admin/views/meta-boxes/course/review-logs.php:25
7748
- msgid "Submit for review"
7749
  msgstr ""
7750
 
7751
- #: inc/admin/views/meta-boxes/course/review-logs.php:40
7752
- msgid "View less"
7753
  msgstr ""
7754
 
7755
- #: inc/admin/views/meta-boxes/course/review-logs.php:42
7756
- msgid "View all"
 
7757
  msgstr ""
7758
 
7759
- #: inc/libraries/meta-box/inc/about/about.php:50
7760
- msgid "About"
7761
  msgstr ""
7762
 
7763
- #: inc/libraries/meta-box/inc/about/about.php:59
7764
- #: inc/libraries/meta-box/inc/about/about.php:60
7765
- msgid "Welcome to Meta Box"
7766
  msgstr ""
7767
 
7768
- #: inc/libraries/meta-box/inc/fields/taxonomy.php:50
7769
- msgid "Select a term"
7770
  msgstr ""
7771
 
7772
- #: inc/libraries/meta-box/inc/fields/taxonomy.php:55
7773
- #: inc/libraries/meta-box/inc/fields/post.php:41
7774
- #, php-format
7775
- msgid "Select a %s"
7776
  msgstr ""
7777
 
7778
- #: inc/libraries/meta-box/inc/fields/select-advanced.php:45
7779
- msgid "Select an item"
 
7780
  msgstr ""
7781
 
7782
- #: inc/libraries/meta-box/inc/fields/file-input.php:20
7783
- msgid "Select File"
 
7784
  msgstr ""
7785
 
7786
- #: inc/libraries/meta-box/inc/fields/post.php:36
7787
- msgid "Select a post"
7788
  msgstr ""
7789
 
7790
- #: inc/libraries/meta-box/inc/fields/map.php:73
7791
- msgid "Find Address"
7792
  msgstr ""
7793
 
7794
- #: inc/libraries/meta-box/inc/fields/file.php:21
7795
- #, php-format
7796
- msgid "You may only upload maximum %d file"
 
 
7797
  msgstr ""
7798
 
7799
- #: inc/libraries/meta-box/inc/fields/file.php:23
7800
- #, php-format
7801
- msgid "You may only upload maximum %d files"
7802
  msgstr ""
7803
 
7804
- #: inc/libraries/meta-box/inc/fields/file.php:53
7805
- msgid "Error: Cannot delete file"
 
 
7806
  msgstr ""
7807
 
7808
- #: inc/libraries/meta-box/inc/fields/file.php:66
7809
- msgctxt "file upload"
7810
- msgid "+ Add new file"
7811
  msgstr ""
7812
 
7813
- #: inc/libraries/meta-box/inc/fields/file.php:121
7814
- msgctxt "file upload"
7815
- msgid "Delete"
7816
  msgstr ""
7817
 
7818
- #: inc/libraries/meta-box/inc/fields/file.php:122
7819
- msgctxt "file upload"
7820
- msgid "Edit"
7821
  msgstr ""
7822
 
7823
- #: inc/libraries/meta-box/inc/fields/user.php:30
7824
- msgid "Select an user"
7825
  msgstr ""
7826
 
7827
- #: inc/libraries/meta-box/inc/fields/key-value.php:132
7828
- msgid "Key"
7829
  msgstr ""
7830
 
7831
- #: inc/libraries/meta-box/inc/fields/key-value.php:133
7832
- msgid "Value"
7833
  msgstr ""
7834
 
7835
- #: inc/libraries/meta-box/inc/fields/select.php:87
7836
- msgid "None"
7837
  msgstr ""
7838
 
7839
- #: inc/libraries/meta-box/inc/fields/input-list.php:90
7840
- msgid "Select All / None"
7841
  msgstr ""
7842
 
7843
- #: inc/libraries/meta-box/inc/fields/oembed.php:64
7844
- msgid "Embed HTML not available."
7845
  msgstr ""
7846
 
7847
- #: inc/libraries/meta-box/inc/fields/media.php:24
7848
- msgctxt "media"
7849
- msgid "+ Add Media"
7850
  msgstr ""
7851
 
7852
- #: inc/libraries/meta-box/inc/fields/media.php:25
7853
- msgctxt "media"
7854
- msgid " file"
7855
  msgstr ""
7856
 
7857
- #: inc/libraries/meta-box/inc/fields/media.php:26
7858
- msgctxt "media"
7859
- msgid " files"
7860
  msgstr ""
7861
 
7862
- #: inc/libraries/meta-box/inc/fields/media.php:27
7863
- msgctxt "media"
7864
- msgid "Remove"
7865
  msgstr ""
7866
 
7867
- #: inc/libraries/meta-box/inc/fields/media.php:28
7868
- msgctxt "media"
7869
- msgid "Edit"
 
 
7870
  msgstr ""
7871
 
7872
- #: inc/libraries/meta-box/inc/fields/media.php:29
7873
- msgctxt "media"
7874
- msgid "View"
7875
  msgstr ""
7876
 
7877
- #: inc/libraries/meta-box/inc/fields/media.php:30
7878
- msgctxt "media"
7879
- msgid "No Title"
7880
  msgstr ""
7881
 
7882
- #: inc/libraries/meta-box/inc/fields/media.php:33
7883
- msgctxt "media"
7884
- msgid "Select Files"
7885
  msgstr ""
7886
 
7887
- #: inc/libraries/meta-box/inc/fields/media.php:34
7888
- msgctxt "media"
7889
- msgid "or"
7890
  msgstr ""
7891
 
7892
- #: inc/libraries/meta-box/inc/fields/media.php:35
7893
- msgctxt "media"
7894
- msgid "Drop files here to upload"
7895
  msgstr ""
7896
 
7897
- #: inc/libraries/meta-box/inc/fields/button.php:32
7898
- msgid "Click me"
 
7899
  msgstr ""
7900
 
7901
- #: inc/libraries/meta-box/inc/about/sections/tabs.php:11
7902
- msgid "Getting Started"
7903
  msgstr ""
7904
 
7905
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:13
7906
- msgid "Getting Started With Online Generator"
 
7907
  msgstr ""
7908
 
7909
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:14
7910
- msgid ""
7911
- "The fastest way to getting started with Meta Box is use our online generator "
7912
- "to generate meta boxes with custom fields. It provides a friendly UI for you "
7913
- "to create meta boxes and custom fields just by drag and drop fields."
7914
  msgstr ""
7915
 
7916
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:16
7917
- msgid "online generator"
 
7918
  msgstr ""
7919
 
7920
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:18
7921
- msgid "Go to Online Generator"
7922
  msgstr ""
7923
 
7924
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:22
7925
- msgid "Understand The Basics"
7926
  msgstr ""
7927
 
7928
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:23
7929
- msgid ""
7930
- "Meta Box doesn't have any admin page for configuration or settings. Instead "
7931
- "of that, it provides a very powerful API to speed up the process of creating "
7932
- "meta boxes and custom fields. It might take you a little time at first, but "
7933
- "then you'll love the way it work because it helps you do and customize "
7934
- "almost everything."
7935
  msgstr ""
7936
 
7937
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:24
7938
- msgid "Learn More"
7939
  msgstr ""
7940
 
7941
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:27
7942
- msgid ""
7943
- "Wanna see more features that transform your WordPress website into a "
7944
- "powerful CMS? Check out some extensions below:"
7945
  msgstr ""
7946
 
7947
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:29
7948
- msgid "Meta Box Group"
 
7949
  msgstr ""
7950
 
7951
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:30
7952
- msgid "Meta Box Conditional Logic"
7953
  msgstr ""
7954
 
7955
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:31
7956
- msgid "MB Settings Page"
7957
  msgstr ""
7958
 
7959
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:32
7960
- msgid "MB Term Meta"
 
7961
  msgstr ""
7962
 
7963
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:34
7964
- msgid "More Extensions"
 
7965
  msgstr ""
7966
 
7967
- #: inc/libraries/meta-box/inc/about/sections/getting-started.php:39
7968
- msgid "Go to MetaBox.IO &rarr;"
7969
  msgstr ""
7970
 
7971
- #: inc/libraries/meta-box/inc/about/sections/welcome.php:13
7972
- #, php-format
7973
- msgid "Welcome to %1$s %2$s"
7974
  msgstr ""
7975
 
7976
- #: inc/libraries/meta-box/inc/about/sections/welcome.php:16
7977
- msgid ""
7978
- "This plugin is a lightweight and powerful toolkit that helps you to create "
7979
- "custom meta boxes and custom fields in WordPress fast and easy. Follow the "
7980
- "instruction below to get started."
7981
  msgstr ""
7982
 
7983
- #. Description of the plugin
7984
- msgid ""
7985
- "LearnPress is a WordPress complete solution for creating a Learning "
7986
- "Management System (LMS). It can help you to create courses, lessons and "
7987
- "quizzes."
7988
  msgstr ""
7989
 
7990
- #. URI of the plugin
7991
- msgid "http://thimpress.com/learnpress"
 
 
7992
  msgstr ""
7993
 
7994
- #. Author of the plugin
7995
- msgid "ThimPress"
 
 
 
7996
  msgstr ""
7997
 
7998
- #. Author URI of the plugin
7999
- msgid "http://thimpress.com"
 
 
 
8000
  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-08 16:54+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:1064
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:505
97
+ #: inc/lp-core-functions.php:2257 inc/admin/class-lp-admin-ajax.php:861
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/class-lp-market-products.php:12
292
+ #: inc/admin/class-lp-admin-menu.php:90 inc/admin/class-lp-admin.php:103
293
+ #: inc/admin/class-lp-admin.php:105 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:903 inc/custom-post-types/order.php:904
339
+ #: inc/custom-post-types/order.php:908 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:773
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:548
421
+ #: templates/content-lesson/button-complete.php:36
422
+ msgid "Completed"
423
  msgstr ""
424
 
425
+ #: inc/class-lp-install.php:504
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:505
432
+ msgid "Do not ask again."
433
  msgstr ""
434
 
435
+ #: inc/class-lp-install.php:505
436
+ msgid "Ok"
437
  msgstr ""
438
 
439
+ #: inc/class-lp-install.php:506
440
+ #: inc/admin/views/tools/database/html-upgrade-database.php:17
441
+ msgid "Upgrade now"
442
  msgstr ""
443
 
444
+ #: inc/class-lp-install.php:506
445
+ msgid "No, thank!"
446
  msgstr ""
447
 
448
+ #: inc/class-lp-install.php:513
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:532
455
+ msgid "Thank you for using LearnPress"
456
  msgstr ""
457
 
458
+ #: inc/class-lp-market-products.php:13
459
+ msgid "Ahihi"
460
  msgstr ""
461
 
462
+ #: inc/class-lp-multi-language.php:52
463
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:14
464
+ #: inc/admin/views/quiz/question-meta.php:12
465
+ #: inc/custom-post-types/question.php:294 inc/user/class-lp-profile.php:325
466
+ msgid "Settings"
467
  msgstr ""
468
 
469
+ #: inc/class-lp-multi-language.php:53 inc/libraries/meta-box/inc/core.php:38
470
+ #: inc/libraries/meta-box/inc/about/sections/welcome.php:19
471
+ msgid "Documentation"
472
  msgstr ""
473
 
474
+ #: inc/class-lp-multi-language.php:54
475
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:15
476
+ msgid "Add-ons"
477
  msgstr ""
478
 
479
+ #: inc/class-lp-page-controller.php:129
480
+ msgid "You can not view this item or it does not exist!"
481
  msgstr ""
482
 
483
+ #: inc/class-lp-page-controller.php:462
484
+ #, php-format
485
+ msgid "The user %s is not available!"
486
  msgstr ""
487
 
488
+ #: inc/class-lp-preview-course.php:35
489
+ msgid "Preview Course"
490
  msgstr ""
491
 
492
+ #: inc/class-lp-preview-course.php:80 inc/class-lp-preview-course.php:97
493
+ msgid "Invalid preview item."
494
  msgstr ""
495
 
496
+ #: inc/class-lp-preview-course.php:103
497
+ msgid "Access denied."
 
498
  msgstr ""
499
 
500
+ #: inc/class-lp-preview-course.php:176
501
+ #, php-format
502
+ msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
503
  msgstr ""
504
 
505
+ #: inc/class-lp-query-list-table.php:28 inc/custom-post-types/course.php:99
506
+ msgid "item"
507
  msgstr ""
508
 
509
+ #: inc/class-lp-query-list-table.php:29
510
+ msgid "items"
511
  msgstr ""
512
 
513
+ #: inc/class-lp-query-list-table.php:142
514
+ msgid "Displaying {{from}} to {{to}} of {{total}} {{item_name}}."
515
  msgstr ""
516
 
517
+ #: inc/class-lp-query-list-table.php:144
518
+ msgid "Displaying {{from}} to {{to}} of {{total}}."
519
  msgstr ""
520
 
521
+ #: inc/class-lp-repair-database.php:597
522
+ #, php-format
523
+ msgid "The method %s is not callable."
524
  msgstr ""
525
 
526
+ #: inc/class-lp-request-handler.php:148
527
+ msgid "You have already purchased this course and haven't finished it."
528
  msgstr ""
529
 
530
+ #: inc/class-lp-request-handler.php:156
531
+ msgid ""
532
+ "You have already purchased this course and the order is still processing..."
533
  msgstr ""
534
 
535
+ #: inc/class-lp-request-handler.php:179
536
+ msgid "You have finished course."
537
  msgstr ""
538
 
539
+ #: inc/class-lp-request-handler.php:195
540
+ msgid "You have to purchase the course before enrolling."
541
  msgstr ""
542
 
543
+ #: inc/class-lp-request-handler.php:232
544
+ msgid "Invalid action."
545
  msgstr ""
546
 
547
+ #: inc/class-lp-request-handler.php:291 inc/cart/class-lp-cart.php:459
548
+ msgid "Checkout page hasn't been setup"
549
  msgstr ""
550
 
551
+ #: inc/class-lp-request-handler.php:297 inc/class-lp-request-handler.php:332
552
+ #, php-format
553
+ msgid "You can not enroll course &quot;%s&quot"
554
  msgstr ""
555
 
556
+ #: inc/class-lp-request-handler.php:324
557
+ #: inc/course/lp-course-functions.php:1151
558
+ msgid "Invalid request!"
559
  msgstr ""
560
 
561
+ #: inc/class-lp-request-handler.php:349
562
+ #, php-format
563
+ msgid "Congrats! You have enrolled &quot;%s&quot"
564
  msgstr ""
565
 
566
+ #: inc/class-lp-request-handler.php:379
567
+ msgid "Checkout page hasn't been setup or page does not exists."
568
  msgstr ""
569
 
570
+ #: inc/class-lp-request-handler.php:381
571
+ msgid "Checkout error! Please contact with admin for getting more information."
572
  msgstr ""
573
 
574
+ #: inc/class-lp-shortcodes.php:225
575
+ msgid "Forgot password?"
576
  msgstr ""
577
 
578
+ #: inc/class-lp-shortcodes.php:227
579
+ msgid "Create new account"
580
  msgstr ""
581
 
582
+ #: inc/class-lp-strings.php:16 inc/lp-strings.php:7
583
+ #, php-format
584
+ msgid "Do you want to redo quiz \"%s\"?"
585
  msgstr ""
586
 
587
+ #: inc/class-lp-strings.php:17 inc/lp-strings.php:8
588
+ #, php-format
589
+ msgid "Do you want to complete quiz \"%s\"?"
590
  msgstr ""
591
 
592
+ #: inc/class-lp-strings.php:18 inc/lp-strings.php:9
593
+ #, php-format
594
+ msgid "Do you want to complete lesson \"%s\"?"
595
  msgstr ""
596
 
597
+ #: inc/class-lp-strings.php:19 inc/lp-strings.php:10
598
+ #, php-format
599
+ msgid "Do you want to finish course \"%s\"?"
600
  msgstr ""
601
 
602
+ #: inc/class-lp-strings.php:20 inc/lp-strings.php:11
603
+ #, php-format
604
+ msgid "Do you want to retake course \"%s\"?"
605
  msgstr ""
606
 
607
+ #: inc/class-lp-widget.php:213
608
+ #, php-format
609
+ msgid "Function %s should be overwritten in child class"
610
  msgstr ""
611
 
612
+ #: inc/lp-core-functions.php:351 inc/lp-template-functions.php:2673
613
+ #: inc/admin/settings/class-lp-settings-courses.php:150
614
+ #: inc/course/lp-course-functions.php:581 inc/custom-post-types/lesson.php:184
615
+ msgid "Lesson"
616
  msgstr ""
617
 
618
+ #: inc/lp-core-functions.php:352 inc/lp-template-functions.php:2663
619
+ #: inc/admin/settings/class-lp-settings-courses.php:157
620
+ #: inc/course/lp-course-functions.php:582
621
+ #: inc/custom-post-types/question.php:337 inc/custom-post-types/quiz.php:92
622
+ #: templates/profile/tabs/quizzes.php:38
623
+ msgid "Quiz"
624
  msgstr ""
625
 
626
+ #: inc/lp-core-functions.php:726 inc/admin/class-lp-modal-search-items.php:210
627
+ #: inc/admin/class-lp-modal-search-users.php:135
628
+ msgid "<"
629
  msgstr ""
630
 
631
+ #: inc/lp-core-functions.php:727 inc/admin/class-lp-modal-search-items.php:211
632
+ #: inc/admin/class-lp-modal-search-users.php:136
633
+ msgid ">"
634
  msgstr ""
635
 
636
+ #: inc/lp-core-functions.php:805
637
+ msgid "Minute(s)"
638
  msgstr ""
639
 
640
+ #: inc/lp-core-functions.php:806
641
+ msgid "Hour(s)"
642
  msgstr ""
643
 
644
+ #: inc/lp-core-functions.php:807
645
+ msgid "Day(s)"
646
  msgstr ""
647
 
648
+ #: inc/lp-core-functions.php:808
649
+ msgid "Week(s)"
650
  msgstr ""
651
 
652
+ #: inc/lp-core-functions.php:953
653
+ msgid "Left"
654
  msgstr ""
655
 
656
+ #: inc/lp-core-functions.php:954
657
+ msgid "Right"
658
  msgstr ""
659
 
660
+ #: inc/lp-core-functions.php:955
661
+ msgid "Left with space"
662
  msgstr ""
663
 
664
+ #: inc/lp-core-functions.php:956
665
+ msgid "Right with space"
666
  msgstr ""
667
 
668
+ #: inc/lp-core-functions.php:1020
669
+ msgid "Afghan afghani"
670
  msgstr ""
671
 
672
+ #: inc/lp-core-functions.php:1021
673
+ msgid "Albanian lek"
674
  msgstr ""
675
 
676
+ #: inc/lp-core-functions.php:1022
677
+ msgid "Algerian dinar"
678
  msgstr ""
679
 
680
+ #: inc/lp-core-functions.php:1023
681
+ msgid "Euro"
682
  msgstr ""
683
 
684
+ #: inc/lp-core-functions.php:1024
685
+ msgid "Angolan kwanza"
686
  msgstr ""
687
 
688
+ #: inc/lp-core-functions.php:1025
689
+ msgid "East Caribbean dollar"
690
  msgstr ""
691
 
692
+ #: inc/lp-core-functions.php:1026
693
+ msgid "Argentine peso"
694
  msgstr ""
695
 
696
+ #: inc/lp-core-functions.php:1027
697
+ msgid "Armenian dram"
698
  msgstr ""
699
 
700
+ #: inc/lp-core-functions.php:1028
701
+ msgid "Aruban florin"
702
  msgstr ""
703
 
704
+ #: inc/lp-core-functions.php:1029
705
+ msgid "Australian dollar"
706
  msgstr ""
707
 
708
+ #: inc/lp-core-functions.php:1030
709
+ msgid "Azerbaijani manat"
710
  msgstr ""
711
 
712
+ #: inc/lp-core-functions.php:1031
713
+ msgid "Bahamian dollar"
714
  msgstr ""
715
 
716
+ #: inc/lp-core-functions.php:1032
717
+ msgid "Bahraini dinar"
718
  msgstr ""
719
 
720
+ #: inc/lp-core-functions.php:1033
721
+ msgid "Bangladeshi taka"
722
  msgstr ""
723
 
724
+ #: inc/lp-core-functions.php:1034
725
+ msgid "Barbadian dollar"
726
  msgstr ""
727
 
728
+ #: inc/lp-core-functions.php:1035
729
+ msgid "Belarusian ruble"
730
  msgstr ""
731
 
732
+ #: inc/lp-core-functions.php:1036
733
+ msgid "Belizean dollar"
734
  msgstr ""
735
 
736
+ #: inc/lp-core-functions.php:1037
737
+ msgid "West African CFA franc"
738
  msgstr ""
739
 
740
+ #: inc/lp-core-functions.php:1038
741
+ msgid "Bermudian dollar"
742
  msgstr ""
743
 
744
+ #: inc/lp-core-functions.php:1039
745
+ msgid "Bhutanese ngultrum"
746
  msgstr ""
747
 
748
+ #: inc/lp-core-functions.php:1040
749
+ msgid "Bolivian boliviano"
750
  msgstr ""
751
 
752
+ #: inc/lp-core-functions.php:1041
753
+ msgid "US dollar"
754
  msgstr ""
755
 
756
+ #: inc/lp-core-functions.php:1042
757
+ msgid "Bosnia and Herzegovina convertible mark"
758
  msgstr ""
759
 
760
+ #: inc/lp-core-functions.php:1043
761
+ msgid "Botswana pula"
762
  msgstr ""
763
 
764
+ #: inc/lp-core-functions.php:1044
765
+ msgid "Brazilian real"
766
  msgstr ""
767
 
768
+ #: inc/lp-core-functions.php:1045
769
+ msgid "Brunei dollar"
770
  msgstr ""
771
 
772
+ #: inc/lp-core-functions.php:1046
773
+ msgid "Bulgarian lev"
774
  msgstr ""
775
 
776
+ #: inc/lp-core-functions.php:1047
777
+ msgid "Burmese kyat"
778
  msgstr ""
779
 
780
+ #: inc/lp-core-functions.php:1048
781
+ msgid "Burundian franc"
782
  msgstr ""
783
 
784
+ #: inc/lp-core-functions.php:1049
785
+ msgid "Cambodian riel"
786
  msgstr ""
787
 
788
+ #: inc/lp-core-functions.php:1050
789
+ msgid "Central African CFA franc"
790
  msgstr ""
791
 
792
+ #: inc/lp-core-functions.php:1051
793
+ msgid "Canadian dollar"
794
  msgstr ""
795
 
796
+ #: inc/lp-core-functions.php:1052
797
+ msgid "Cape Verdean escudo"
798
  msgstr ""
799
 
800
+ #: inc/lp-core-functions.php:1053
801
+ msgid "Cayman Islands dollar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
802
  msgstr ""
803
 
804
+ #: inc/lp-core-functions.php:1054
805
+ msgid "Chilean peso"
806
  msgstr ""
807
 
808
+ #: inc/lp-core-functions.php:1055
809
+ msgid "Chinese renminbi"
 
 
 
810
  msgstr ""
811
 
812
+ #: inc/lp-core-functions.php:1056
813
+ msgid "Colombian peso"
814
  msgstr ""
815
 
816
+ #: inc/lp-core-functions.php:1057
817
+ msgid "Comorian franc"
818
  msgstr ""
819
 
820
+ #: inc/lp-core-functions.php:1058
821
+ msgid "Congolese franc"
822
  msgstr ""
823
 
824
+ #: inc/lp-core-functions.php:1059
825
+ msgid "New Zealand dollar"
 
826
  msgstr ""
827
 
828
+ #: inc/lp-core-functions.php:1060
829
+ msgid "Costa Rican colón"
830
  msgstr ""
831
 
832
+ #: inc/lp-core-functions.php:1061
833
+ msgid "Croatian kuna"
834
  msgstr ""
835
 
836
+ #: inc/lp-core-functions.php:1062
837
+ msgid "Cuban peso"
838
  msgstr ""
839
 
840
+ #: inc/lp-core-functions.php:1063
841
+ msgid "Netherlands Antilles guilder"
842
  msgstr ""
843
 
844
+ #: inc/lp-core-functions.php:1064
845
+ msgid "Czech koruna"
 
846
  msgstr ""
847
 
848
+ #: inc/lp-core-functions.php:1065
849
+ msgid "Danish krone"
 
850
  msgstr ""
851
 
852
+ #: inc/lp-core-functions.php:1066
853
+ msgid "Djiboutian franc"
 
854
  msgstr ""
855
 
856
+ #: inc/lp-core-functions.php:1067
857
+ msgid "Dominican peso"
 
858
  msgstr ""
859
 
860
+ #: inc/lp-core-functions.php:1068
861
+ msgid "Egyptian pound"
 
862
  msgstr ""
863
 
864
+ #: inc/lp-core-functions.php:1069
865
+ msgid "Salvadoran colón"
 
866
  msgstr ""
867
 
868
+ #: inc/lp-core-functions.php:1070
869
+ msgid "Eritrean nakfa"
 
870
  msgstr ""
871
 
872
+ #: inc/lp-core-functions.php:1071
873
+ msgid "Ethiopian birr"
 
874
  msgstr ""
875
 
876
+ #: inc/lp-core-functions.php:1072
877
+ msgid "Falkland Islands pound"
 
 
 
 
 
 
 
878
  msgstr ""
879
 
880
+ #: inc/lp-core-functions.php:1073
881
+ msgid "Fijian dollar"
 
 
 
882
  msgstr ""
883
 
884
+ #: inc/lp-core-functions.php:1074
885
+ msgid "CFP franc"
 
 
 
 
886
  msgstr ""
887
 
888
+ #: inc/lp-core-functions.php:1075
889
+ msgid "Gambian dalasi"
 
890
  msgstr ""
891
 
892
+ #: inc/lp-core-functions.php:1076
893
+ msgid "Georgian lari"
894
  msgstr ""
895
 
896
+ #: inc/lp-core-functions.php:1077
897
+ msgid "Ghanian cedi"
898
  msgstr ""
899
 
900
+ #: inc/lp-core-functions.php:1078
901
+ msgid "Gibraltar pound"
902
  msgstr ""
903
 
904
+ #: inc/lp-core-functions.php:1079
905
+ msgid "Guatemalan quetzal"
906
  msgstr ""
907
 
908
+ #: inc/lp-core-functions.php:1080
909
+ msgid "British pound"
910
  msgstr ""
911
 
912
+ #: inc/lp-core-functions.php:1081
913
+ msgid "Guinean franc"
914
  msgstr ""
915
 
916
+ #: inc/lp-core-functions.php:1082
917
+ msgid "Guyanese dollar"
918
  msgstr ""
919
 
920
+ #: inc/lp-core-functions.php:1083
921
+ msgid "Haitian gourde"
922
  msgstr ""
923
 
924
+ #: inc/lp-core-functions.php:1084
925
+ msgid "Honduran lempira"
926
  msgstr ""
927
 
928
+ #: inc/lp-core-functions.php:1085
929
+ msgid "Hong Kong dollar"
930
  msgstr ""
931
 
932
+ #: inc/lp-core-functions.php:1086
933
+ msgid "Hungarian forint"
 
 
 
 
934
  msgstr ""
935
 
936
+ #: inc/lp-core-functions.php:1087
937
+ msgid "Icelandic króna"
 
 
 
 
938
  msgstr ""
939
 
940
+ #: inc/lp-core-functions.php:1088
941
+ msgid "Indian rupee"
 
942
  msgstr ""
943
 
944
+ #: inc/lp-core-functions.php:1089
945
+ msgid "Indonesian rupiah"
 
946
  msgstr ""
947
 
948
+ #: inc/lp-core-functions.php:1090
949
+ msgid "Iranian rial"
 
950
  msgstr ""
951
 
952
+ #: inc/lp-core-functions.php:1091
953
+ msgid "Iraqi dinar"
 
954
  msgstr ""
955
 
956
+ #: inc/lp-core-functions.php:1092
957
+ msgid "Israeli new sheqel"
 
 
 
958
  msgstr ""
959
 
960
+ #: inc/lp-core-functions.php:1093
961
+ msgid "Jamaican dollar"
 
962
  msgstr ""
963
 
964
+ #: inc/lp-core-functions.php:1094
965
+ msgid "Japanese yen "
966
  msgstr ""
967
 
968
+ #: inc/lp-core-functions.php:1095
969
+ msgid "Jordanian dinar"
 
970
  msgstr ""
971
 
972
+ #: inc/lp-core-functions.php:1096
973
+ msgid "Kazakhstani tenge"
 
974
  msgstr ""
975
 
976
+ #: inc/lp-core-functions.php:1097
977
+ msgid "Kenyan shilling"
 
978
  msgstr ""
979
 
980
+ #: inc/lp-core-functions.php:1098
981
+ msgid "North Korean won"
 
982
  msgstr ""
983
 
984
+ #: inc/lp-core-functions.php:1099
985
+ msgid "Kuwaiti dinar"
 
 
 
986
  msgstr ""
987
 
988
+ #: inc/lp-core-functions.php:1100
989
+ msgid "Kyrgyzstani som"
990
  msgstr ""
991
 
992
+ #: inc/lp-core-functions.php:1101
993
+ msgid "South Korean won"
994
  msgstr ""
995
 
996
+ #: inc/lp-core-functions.php:1102
997
+ msgid "Lao kip"
998
  msgstr ""
999
 
1000
+ #: inc/lp-core-functions.php:1103
1001
+ msgid "Latvian lats"
1002
  msgstr ""
1003
 
1004
+ #: inc/lp-core-functions.php:1104
1005
+ msgid "Lebanese pound"
1006
  msgstr ""
1007
 
1008
+ #: inc/lp-core-functions.php:1105
1009
+ msgid "Lesotho loti"
1010
  msgstr ""
1011
 
1012
+ #: inc/lp-core-functions.php:1106
1013
+ msgid "Liberian dollar"
1014
  msgstr ""
1015
 
1016
+ #: inc/lp-core-functions.php:1107 inc/lp-core-functions.php:1178
1017
+ msgid "Libyan dinar"
1018
  msgstr ""
1019
 
1020
+ #: inc/lp-core-functions.php:1108
1021
+ msgid "Swiss franc"
1022
  msgstr ""
1023
 
1024
+ #: inc/lp-core-functions.php:1109
1025
+ msgid "Lithuanian litas"
1026
  msgstr ""
1027
 
1028
+ #: inc/lp-core-functions.php:1110
1029
+ msgid "Macanese pataca"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1030
  msgstr ""
1031
 
1032
+ #: inc/lp-core-functions.php:1111
1033
+ msgid "Macedonian denar"
1034
  msgstr ""
1035
 
1036
+ #: inc/lp-core-functions.php:1112
1037
+ msgid "Malagasy ariary"
 
 
1038
  msgstr ""
1039
 
1040
+ #: inc/lp-core-functions.php:1113
1041
+ msgid "Malawian kwacha"
 
 
 
 
1042
  msgstr ""
1043
 
1044
+ #: inc/lp-core-functions.php:1114
1045
+ msgid "Malaysian ringgit"
 
1046
  msgstr ""
1047
 
1048
+ #: inc/lp-core-functions.php:1115
1049
+ msgid "Maldivian rufiyaa"
 
 
 
 
1050
  msgstr ""
1051
 
1052
+ #: inc/lp-core-functions.php:1116
1053
+ msgid "Mauritanian ouguiya"
1054
  msgstr ""
1055
 
1056
+ #: inc/lp-core-functions.php:1117
1057
+ msgid "Mauritian rupee"
 
1058
  msgstr ""
1059
 
1060
+ #: inc/lp-core-functions.php:1118
1061
+ msgid "Mexican peso"
1062
  msgstr ""
1063
 
1064
+ #: inc/lp-core-functions.php:1119
1065
+ msgid "Moldovan leu"
1066
  msgstr ""
1067
 
1068
+ #: inc/lp-core-functions.php:1120
1069
+ msgid "Mongolian tugrik"
1070
  msgstr ""
1071
 
1072
+ #: inc/lp-core-functions.php:1121
1073
+ msgid "Moroccan dirham"
 
 
1074
  msgstr ""
1075
 
1076
+ #: inc/lp-core-functions.php:1122
1077
+ msgid "Mozambican metical"
 
1078
  msgstr ""
1079
 
1080
+ #: inc/lp-core-functions.php:1123
1081
+ msgid "Namibian dollar"
 
1082
  msgstr ""
1083
 
1084
+ #: inc/lp-core-functions.php:1124
1085
+ msgid "Nepalese rupee"
1086
  msgstr ""
1087
 
1088
+ #: inc/lp-core-functions.php:1125
1089
+ msgid "Nicaraguan córdoba"
1090
  msgstr ""
1091
 
1092
+ #: inc/lp-core-functions.php:1126
1093
+ msgid "Nigerian naira"
 
1094
  msgstr ""
1095
 
1096
+ #: inc/lp-core-functions.php:1127
1097
+ msgid "Norwegian krone"
 
1098
  msgstr ""
1099
 
1100
+ #: inc/lp-core-functions.php:1128
1101
+ msgid "Omani rial"
 
1102
  msgstr ""
1103
 
1104
+ #: inc/lp-core-functions.php:1129
1105
+ msgid "Pakistani rupee"
 
1106
  msgstr ""
1107
 
1108
+ #: inc/lp-core-functions.php:1130
1109
+ msgid "Panamanian balboa"
 
1110
  msgstr ""
1111
 
1112
+ #: inc/lp-core-functions.php:1131
1113
+ msgid "Papua New Guinea kina"
1114
  msgstr ""
1115
 
1116
+ #: inc/lp-core-functions.php:1132
1117
+ msgid "Paraguayan guarani"
1118
  msgstr ""
1119
 
1120
+ #: inc/lp-core-functions.php:1133
1121
+ msgid "Peruvian nuevo sol"
 
1122
  msgstr ""
1123
 
1124
+ #: inc/lp-core-functions.php:1134
1125
+ msgid "Philippine peso"
 
1126
  msgstr ""
1127
 
1128
+ #: inc/lp-core-functions.php:1135
1129
+ msgid "Polish zloty"
1130
  msgstr ""
1131
 
1132
+ #: inc/lp-core-functions.php:1136
1133
+ msgid "Qatari riyal"
 
1134
  msgstr ""
1135
 
1136
+ #: inc/lp-core-functions.php:1137
1137
+ msgid "Romanian leu"
 
 
1138
  msgstr ""
1139
 
1140
+ #: inc/lp-core-functions.php:1138
1141
+ msgid "Russian ruble"
1142
  msgstr ""
1143
 
1144
+ #: inc/lp-core-functions.php:1139
1145
+ msgid "Rwandan franc"
 
1146
  msgstr ""
1147
 
1148
+ #: inc/lp-core-functions.php:1140
1149
+ msgid "Samoan tālā"
1150
  msgstr ""
1151
 
1152
+ #: inc/lp-core-functions.php:1141
1153
+ msgid "São Tomé and Príncipe dobra"
1154
  msgstr ""
1155
 
1156
+ #: inc/lp-core-functions.php:1142
1157
+ msgid "Saudi riyal"
 
1158
  msgstr ""
1159
 
1160
+ #: inc/lp-core-functions.php:1143
1161
+ msgid "Serbian dinar"
1162
  msgstr ""
1163
 
1164
+ #: inc/lp-core-functions.php:1144
1165
+ msgid "Seychellois rupee"
 
 
 
1166
  msgstr ""
1167
 
1168
+ #: inc/lp-core-functions.php:1145
1169
+ msgid "Sierra Leonean leone"
 
 
 
 
1170
  msgstr ""
1171
 
1172
+ #: inc/lp-core-functions.php:1146
1173
+ msgid "Singapore dollar"
1174
  msgstr ""
1175
 
1176
+ #: inc/lp-core-functions.php:1147
1177
+ msgid "Solomon Islands dollar"
 
1178
  msgstr ""
1179
 
1180
+ #: inc/lp-core-functions.php:1148
1181
+ msgid "Somali shilling"
 
1182
  msgstr ""
1183
 
1184
+ #: inc/lp-core-functions.php:1149
1185
+ msgid "South African rand"
 
1186
  msgstr ""
1187
 
1188
+ #: inc/lp-core-functions.php:1150
1189
+ msgid "Sri Lankan rupee"
 
1190
  msgstr ""
1191
 
1192
+ #: inc/lp-core-functions.php:1151
1193
+ msgid "St. Helena pound"
 
1194
  msgstr ""
1195
 
1196
+ #: inc/lp-core-functions.php:1152
1197
+ msgid "Sudanese pound"
1198
  msgstr ""
1199
 
1200
+ #: inc/lp-core-functions.php:1153
1201
+ msgid "Surinamese dollar"
 
 
1202
  msgstr ""
1203
 
1204
+ #: inc/lp-core-functions.php:1154
1205
+ msgid "Swazi lilangeni"
 
1206
  msgstr ""
1207
 
1208
+ #: inc/lp-core-functions.php:1155
1209
+ msgid "Swedish krona"
1210
  msgstr ""
1211
 
1212
+ #: inc/lp-core-functions.php:1156
1213
+ msgid "Syrian pound"
 
1214
  msgstr ""
1215
 
1216
+ #: inc/lp-core-functions.php:1157
1217
+ msgid "New Taiwan dollar"
1218
  msgstr ""
1219
 
1220
+ #: inc/lp-core-functions.php:1158
1221
+ msgid "Tajikistani somoni"
 
1222
  msgstr ""
1223
 
1224
+ #: inc/lp-core-functions.php:1159
1225
+ msgid "Tanzanian shilling"
1226
  msgstr ""
1227
 
1228
+ #: inc/lp-core-functions.php:1160
1229
+ msgid "Thai baht "
1230
  msgstr ""
1231
 
1232
+ #: inc/lp-core-functions.php:1161
1233
+ msgid "Tongan pa’anga"
1234
  msgstr ""
1235
 
1236
+ #: inc/lp-core-functions.php:1162
1237
+ msgid "Trinidad and Tobago dollar"
1238
  msgstr ""
1239
 
1240
+ #: inc/lp-core-functions.php:1163
1241
+ msgid "Tunisian dinar"
1242
  msgstr ""
1243
 
1244
+ #: inc/lp-core-functions.php:1164
1245
+ msgid "Turkish lira"
1246
  msgstr ""
1247
 
1248
+ #: inc/lp-core-functions.php:1165
1249
+ msgid "Turkmenistani manat"
1250
  msgstr ""
1251
 
1252
+ #: inc/lp-core-functions.php:1166
1253
+ msgid "Ugandan shilling"
1254
  msgstr ""
1255
 
1256
+ #: inc/lp-core-functions.php:1167
1257
+ msgid "Ukrainian hryvnia"
1258
  msgstr ""
1259
 
1260
+ #: inc/lp-core-functions.php:1168
1261
+ msgid "United Arab Emirates dirham"
1262
  msgstr ""
1263
 
1264
+ #: inc/lp-core-functions.php:1169
1265
+ msgid "Uruguayan peso"
 
 
 
 
 
 
 
1266
  msgstr ""
1267
 
1268
+ #: inc/lp-core-functions.php:1170
1269
+ msgid "Uzbekistani som"
 
1270
  msgstr ""
1271
 
1272
+ #: inc/lp-core-functions.php:1171
1273
+ msgid "Vanuatu vatu"
 
1274
  msgstr ""
1275
 
1276
+ #: inc/lp-core-functions.php:1172
1277
+ msgid "Venezuelan bolivar"
 
1278
  msgstr ""
1279
 
1280
+ #: inc/lp-core-functions.php:1173
1281
+ msgid "Vietnamese dong"
 
1282
  msgstr ""
1283
 
1284
+ #: inc/lp-core-functions.php:1174
1285
+ msgid "Yemeni rial"
1286
  msgstr ""
1287
 
1288
+ #: inc/lp-core-functions.php:1175
1289
+ msgid "Zambian kwacha"
 
1290
  msgstr ""
1291
 
1292
+ #: inc/lp-core-functions.php:1176
1293
+ msgid "Zimbabwean dollar"
 
1294
  msgstr ""
1295
 
1296
+ #: inc/lp-core-functions.php:1177
1297
+ msgid "Jersey pound"
 
1298
  msgstr ""
1299
 
1300
+ #: inc/lp-core-functions.php:1464
1301
+ msgid "week"
1302
+ msgid_plural "weeks"
1303
+ msgstr[0] ""
1304
+ msgstr[1] ""
1305
+
1306
+ #: inc/lp-core-functions.php:1468
1307
+ msgid "day"
1308
+ msgid_plural "days"
1309
+ msgstr[0] ""
1310
+ msgstr[1] ""
1311
+
1312
+ #: inc/lp-core-functions.php:1473
1313
+ msgid "hour"
1314
+ msgid_plural "hours"
1315
+ msgstr[0] ""
1316
+ msgstr[1] ""
1317
+
1318
+ #: inc/lp-core-functions.php:1477
1319
+ msgid "minute"
1320
+ msgid_plural "minutes"
1321
+ msgstr[0] ""
1322
+ msgstr[1] ""
1323
+
1324
+ #: inc/lp-core-functions.php:1546 inc/admin/views/quiz/editor.php:29
1325
+ #: inc/admin/views/tools/course/html-course.php:29
1326
+ #: inc/admin/views/tools/course/html-user.php:29
1327
+ msgid "Name"
1328
  msgstr ""
1329
 
1330
+ #: inc/lp-core-functions.php:1548
1331
+ msgid "Your name"
1332
  msgstr ""
1333
 
1334
+ #: inc/lp-core-functions.php:1554 inc/admin/meta-box/fields/list-emails.php:28
1335
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:72
1336
+ #: inc/shortcodes/class-lp-shortcode-register-form.php:74
1337
+ msgid "Email"
1338
  msgstr ""
1339
 
1340
+ #: inc/lp-core-functions.php:1556
1341
+ msgid "Your email address"
1342
  msgstr ""
1343
 
1344
+ #: inc/lp-core-functions.php:1562
1345
+ msgid "Phone"
1346
  msgstr ""
1347
 
1348
+ #: inc/lp-core-functions.php:1564
1349
+ msgid "Your phone number"
 
1350
  msgstr ""
1351
 
1352
+ #: inc/lp-core-functions.php:1594
1353
+ msgid "Please enter your name"
1354
  msgstr ""
1355
 
1356
+ #: inc/lp-core-functions.php:1599
1357
+ msgid "Please enter your email address"
 
 
 
 
 
 
 
 
1358
  msgstr ""
1359
 
1360
+ #: inc/lp-core-functions.php:1607
1361
+ msgid "Please moderate"
1362
  msgstr ""
1363
 
1364
+ #: inc/lp-core-functions.php:1618
1365
+ #, php-format
1366
+ msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
 
 
 
1367
  msgstr ""
1368
 
1369
+ #: inc/lp-core-functions.php:1619
1370
+ #, php-format
1371
+ msgid "Name: %s"
1372
  msgstr ""
1373
 
1374
+ #: inc/lp-core-functions.php:1620
1375
+ #, php-format
1376
+ msgid "Email: %s"
1377
  msgstr ""
1378
 
1379
+ #: inc/lp-core-functions.php:1621
1380
+ #, php-format
1381
+ msgid "Phone: %s"
1382
  msgstr ""
1383
 
1384
+ #: inc/lp-core-functions.php:1627
1385
+ #, php-format
1386
+ msgid "Accept: %s"
1387
+ msgstr ""
1388
+
1389
+ #: inc/lp-core-functions.php:1638
1390
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:109
1391
+ msgid "Your request has been sent! We will get back to you soon!"
1392
+ msgstr ""
1393
+
1394
+ #: inc/lp-core-functions.php:2504
1395
+ #, php-format
1396
+ msgid "Congrats! You've enrolled the course \"%s\"."
1397
+ msgstr ""
1398
+
1399
+ #: inc/lp-core-functions.php:2537
1400
+ msgid "Cart"
1401
+ msgstr ""
1402
+
1403
+ #: inc/lp-core-functions.php:2541
1404
+ msgid "Enable cart"
1405
+ msgstr ""
1406
+
1407
+ #: inc/lp-core-functions.php:2542
1408
+ msgid "Check this option to enable user purchase multiple courses at one time."
1409
+ msgstr ""
1410
+
1411
+ #: inc/lp-core-functions.php:2548
1412
+ msgid "Add to cart redirect"
1413
+ msgstr ""
1414
+
1415
+ #: inc/lp-core-functions.php:2549
1416
+ msgid "Redirect to checkout immediately after adding course to cart."
1417
+ msgstr ""
1418
+
1419
+ #: inc/lp-core-functions.php:2555
1420
+ msgid "AJAX add to cart"
1421
+ msgstr ""
1422
+
1423
+ #: inc/lp-core-functions.php:2556
1424
+ msgid "Using AJAX to add course to cart."
1425
+ msgstr ""
1426
+
1427
+ #: inc/lp-core-functions.php:2562
1428
+ msgid "Cart page"
1429
+ msgstr ""
1430
+
1431
+ #: inc/lp-core-functions.php:2701
1432
+ msgid "Are you sure you want to cancel order?"
1433
+ msgstr ""
1434
+
1435
+ #: inc/lp-core-functions.php:2702
1436
+ msgid "Cancel Order"
1437
+ msgstr ""
1438
+
1439
+ #: inc/lp-core-functions.php:2757 inc/course/lp-course-functions.php:1083
1440
+ #: inc/user/class-lp-profile.php:847 inc/user/class-lp-profile.php:881
1441
+ #: inc/user-item/class-lp-user-item-quiz.php:108
1442
+ #: inc/user-item/class-lp-user-item.php:550
1443
+ msgid "Passed"
1444
+ msgstr ""
1445
+
1446
+ #: inc/lp-core-functions.php:2760 inc/course/lp-course-functions.php:1086
1447
+ #: inc/user/class-lp-profile.php:848 inc/user/class-lp-profile.php:882
1448
+ #: inc/user-item/class-lp-user-item-quiz.php:109
1449
+ #: inc/user-item/class-lp-user-item.php:551
1450
+ msgid "Failed"
1451
+ msgstr ""
1452
+
1453
+ #: inc/lp-core-functions.php:2954
1454
+ msgctxt "static-page-name"
1455
+ msgid "Checkout"
1456
+ msgstr ""
1457
+
1458
+ #: inc/lp-core-functions.php:2955
1459
+ msgctxt "static-page-name"
1460
+ msgid "Courses"
1461
+ msgstr ""
1462
+
1463
+ #: inc/lp-core-functions.php:2956
1464
+ msgctxt "static-page-name"
1465
+ msgid "Profile"
1466
+ msgstr ""
1467
+
1468
+ #: inc/lp-core-functions.php:2957
1469
+ msgctxt "static-page-name"
1470
+ msgid "Become a Teacher"
1471
+ msgstr ""
1472
+
1473
+ #: inc/lp-deprecated.php:370 inc/lp-deprecated.php:402
1474
+ #: inc/admin/lp-admin-actions.php:60 inc/admin/lp-admin-functions.php:850
1475
+ #: inc/admin/lp-admin-functions.php:1015 inc/admin/lp-admin-functions.php:1217
1476
+ #: inc/admin/lp-admin-functions.php:2098
1477
+ #: inc/admin/views/statistics/courses.php:27
1478
+ #: inc/admin/views/statistics/courses.php:42
1479
+ #: inc/admin/views/statistics/general.php:43
1480
+ #: inc/admin/views/statistics/general.php:59
1481
+ #: inc/admin/views/statistics/orders.php:28
1482
+ #: inc/admin/views/statistics/orders.php:62
1483
+ #: inc/admin/views/statistics/users.php:29
1484
+ #: inc/admin/views/statistics/users.php:45
1485
+ #: inc/libraries/meta-box/inc/fields/select.php:92
1486
+ #: inc/user/class-lp-profile.php:813 inc/user/class-lp-profile.php:845
1487
+ #: inc/user/class-lp-profile.php:879
1488
+ #: templates/widgets/course-info/default.php:44
1489
+ msgid "All"
1490
+ msgstr ""
1491
+
1492
+ #: inc/lp-deprecated.php:371
1493
+ msgid "Learning"
1494
+ msgstr ""
1495
+
1496
+ #: inc/lp-deprecated.php:372 inc/custom-post-types/order.php:770
1497
+ #: inc/user/class-lp-profile.php:284
1498
+ msgid "Purchased"
1499
+ msgstr ""
1500
+
1501
+ #: inc/lp-deprecated.php:373 inc/lp-deprecated.php:404
1502
+ #: inc/user/class-lp-profile.php:846 inc/user/class-lp-profile.php:880
1503
+ #: inc/user-item/class-lp-user-item.php:549
1504
+ msgid "Finished"
1505
+ msgstr ""
1506
+
1507
+ #: inc/lp-deprecated.php:374 inc/user/class-lp-profile.php:277
1508
+ msgid "Owned"
1509
+ msgstr ""
1510
+
1511
+ #: inc/lp-deprecated.php:403 inc/course/lp-course-functions.php:1089
1512
+ #: inc/user-item/class-lp-user-item-quiz.php:105
1513
+ #: inc/user-item/class-lp-user-item-quiz.php:106
1514
+ #: inc/user-item/class-lp-user-item.php:544
1515
+ #: inc/user-item/class-lp-user-item.php:545
1516
+ #: inc/user-item/class-lp-user-item.php:546
1517
+ msgid "In Progress"
1518
+ msgstr ""
1519
+
1520
+ #: inc/lp-js-template.php:11
1521
+ msgid "--Select a Lesson--"
1522
+ msgstr ""
1523
+
1524
+ #: inc/lp-strings.php:6
1525
+ msgid "You've already completed quiz."
1526
  msgstr ""
1527
 
1528
  #: inc/lp-template-functions.php:55
1529
  msgid "Your order is waiting for processing"
1530
  msgstr ""
1531
 
1532
+ #: inc/lp-template-functions.php:554
1533
  msgid "Overview"
1534
  msgstr ""
1535
 
1536
+ #: inc/lp-template-functions.php:562 inc/admin/views/course/curriculum.php:15
 
1537
  msgid "Curriculum"
1538
  msgstr ""
1539
 
1540
+ #: inc/lp-template-functions.php:568
 
 
1541
  #: inc/emails/class-lp-email-cancelled-order-instructor.php:24
1542
+ #: inc/emails/class-lp-email-enrolled-course-instructor.php:27
1543
  #: inc/emails/class-lp-email-finished-course-instructor.php:27
1544
+ #: inc/emails/class-lp-email-new-order-instructor.php:26
1545
  #: templates/single-course/tabs/instructor.php:22
1546
  msgid "Instructor"
1547
  msgstr ""
1548
 
1549
+ #: inc/lp-template-functions.php:1321
1550
  msgid "Course Search Results"
1551
  msgstr ""
1552
 
1553
+ #: inc/lp-template-functions.php:1323 inc/admin/class-lp-admin.php:277
1554
+ #: inc/admin/lp-admin-actions.php:206
1555
+ #: inc/admin/settings/class-lp-settings-courses.php:12
 
 
 
1556
  #: inc/admin/settings/class-lp-settings-profile.php:149
1557
  #: inc/admin/settings/class-lp-settings-profile.php:274
 
1558
  #: inc/admin/sub-menus/class-lp-submenu-statistics.php:21
1559
  #: inc/admin/sub-menus/class-lp-submenu-statistics.php:28
 
1560
  #: inc/admin/views/setup/steps/pages.php:22
1561
+ #: inc/admin/views/tools/course/html-user.php:30
1562
+ #: inc/custom-post-types/course.php:132 inc/custom-post-types/course.php:134
1563
+ #: inc/user/class-lp-profile.php:299
1564
  msgid "Courses"
1565
  msgstr ""
1566
 
1567
+ #: inc/lp-template-functions.php:1456
1568
  msgctxt "breadcrumb"
1569
  msgid "Home"
1570
  msgstr ""
1571
 
1572
+ #: inc/lp-template-functions.php:2334
 
1573
  #: inc/admin/settings/class-lp-settings-checkout.php:76
1574
+ #: inc/admin/settings/class-lp-settings-payments.php:131
1575
  msgid "Order received"
1576
  msgstr ""
1577
 
1578
+ #: inc/lp-template-functions.php:2350
1579
  #, php-format
1580
  msgid "Access denied \"%s\""
1581
  msgstr ""
1582
 
1583
+ #: inc/lp-template-functions.php:2400
1584
  #, php-format
1585
  msgid "Search Results for: &ldquo;%s&rdquo;"
1586
  msgstr ""
1587
 
1588
+ #: inc/lp-template-functions.php:2403
1589
  #, php-format
1590
  msgid "&nbsp;&ndash; Page %s"
1591
  msgstr ""
1592
 
1593
+ #: inc/lp-template-functions.php:2667 inc/lp-template-functions.php:3237
 
1594
  msgid "Final"
1595
  msgstr ""
1596
 
1597
+ #: inc/lp-template-functions.php:2676 inc/course/lp-course-functions.php:948
1598
+ #: inc/custom-post-types/abstract.php:795 inc/custom-post-types/lesson.php:319
 
 
1599
  #: inc/custom-post-types/quiz.php:382
1600
  #: templates/single-course/section/item-meta.php:25
1601
  msgid "Preview"
1602
  msgstr ""
1603
 
1604
+ #: inc/lp-template-functions.php:2972
1605
  msgid "Fill out the form and send us your requesting."
1606
  msgstr ""
1607
 
1608
+ #: inc/lp-template-functions.php:3245 inc/custom-post-types/quiz.php:419
 
1609
  #, php-format
1610
  msgid "%d question"
1611
  msgid_plural "%d questions"
1612
  msgstr[0] ""
1613
  msgstr[1] ""
1614
 
1615
+ #: inc/lp-template-functions.php:3256
1616
  #, php-format
1617
  msgctxt "duration"
1618
  msgid "%s day"
1619
  msgstr ""
1620
 
1621
+ #: inc/lp-template-functions.php:3257
1622
  #, php-format
1623
  msgctxt "duration"
1624
  msgid "%s hour"
1625
  msgstr ""
1626
 
1627
+ #: inc/lp-template-functions.php:3258
1628
  #, php-format
1629
  msgctxt "duration"
1630
  msgid "%s min"
1631
  msgstr ""
1632
 
1633
+ #: inc/lp-template-functions.php:3259
1634
  #, php-format
1635
  msgctxt "duration"
1636
  msgid "%s sec"
1637
  msgstr ""
1638
 
1639
+ #: inc/lp-template-functions.php:3271 inc/course/lp-course-functions.php:869
 
1640
  msgid "Edit this item"
1641
  msgstr ""
1642
 
1643
+ #: inc/lp-template-functions.php:3326
1644
  msgid "Back to class"
1645
  msgstr ""
1646
 
1647
+ #: inc/lp-template-functions.php:3442
1648
  msgid "Popup links color"
1649
  msgstr ""
1650
 
1651
+ #: inc/lp-template-functions.php:3450
1652
  msgid "Popup heading background"
1653
  msgstr ""
1654
 
1655
+ #: inc/lp-template-functions.php:3458
1656
  msgid "Popup heading color"
1657
  msgstr ""
1658
 
1659
+ #: inc/lp-template-functions.php:3470
1660
  msgid "Popup curriculum background"
1661
  msgstr ""
1662
 
1663
+ #: inc/lp-template-functions.php:3479
1664
  msgid "Popup item color"
1665
  msgstr ""
1666
 
1667
+ #: inc/lp-template-functions.php:3487
1668
  msgid "Popup active item background"
1669
  msgstr ""
1670
 
1671
+ #: inc/lp-template-functions.php:3495
1672
  msgid "Popup active item color"
1673
  msgstr ""
1674
 
1675
+ #: inc/lp-template-functions.php:3503
1676
  msgid "Popup content background"
1677
  msgstr ""
1678
 
1679
+ #: inc/lp-template-functions.php:3511
1680
  msgid "Popup content color"
1681
  msgstr ""
1682
 
1683
+ #: inc/lp-template-functions.php:3519
1684
  msgid "Section heading background"
1685
  msgstr ""
1686
 
1687
+ #: inc/lp-template-functions.php:3526
1688
  msgid "Section heading color"
1689
  msgstr ""
1690
 
1691
+ #: inc/lp-template-functions.php:3533
1692
  msgid "Section heading bottom color"
1693
  msgstr ""
1694
 
1695
+ #: inc/lp-template-functions.php:3541
1696
  msgid "Lines color"
1697
  msgstr ""
1698
 
1699
+ #: inc/lp-template-functions.php:3552
1700
  msgid "Profile cover background"
1701
  msgstr ""
1702
 
1703
+ #: inc/lp-template-functions.php:3560
1704
  msgid "Scrollbar"
1705
  msgstr ""
1706
 
1707
+ #: inc/lp-template-functions.php:3569
1708
  msgid "Progress bar color"
1709
  msgstr ""
1710
 
1711
+ #: inc/lp-template-functions.php:3577
1712
  msgid "Progress bar active color"
1713
  msgstr ""
1714
 
1721
  msgid "LearnPress webhook process Complete"
1722
  msgstr ""
1723
 
1724
+ #: inc/abstracts/abstract-addon.php:185
1725
+ #, php-format
1726
+ msgid ""
1727
+ "<strong>%s</strong> add-on version %s requires <strong>LearnPress</strong> "
1728
+ "version %s or higher"
1729
  msgstr ""
1730
 
1731
+ #: inc/abstracts/abstract-addon.php:244
1732
+ #, php-format
1733
+ msgid "%s plugin file does not exist."
1734
  msgstr ""
1735
 
1736
+ #: inc/abstracts/abstract-addon.php:262
1737
+ #, php-format
1738
+ msgid "%s plugin class does not exist."
 
1739
  msgstr ""
1740
 
1741
+ #: inc/abstracts/abstract-object-data.php:341
1742
+ #, php-format
1743
+ msgid "The following these functions %s do not exists in %s"
1744
  msgstr ""
1745
 
1746
+ #: inc/abstracts/abstract-shortcode-courses.php:142
1747
+ #: inc/admin/views/tools/course/html-course.php:53
1748
+ #: templates/content-archive-course.php:74
1749
+ msgid "No course found."
1750
  msgstr ""
1751
 
1752
+ #: inc/admin/class-lp-admin-ajax.php:342
1753
+ msgid "Dismissed!"
 
1754
  msgstr ""
1755
 
1756
+ #: inc/admin/class-lp-admin-ajax.php:346
1757
+ msgid "Fail while joining newsletter! Please try again!"
1758
+ msgstr ""
1759
+
1760
+ #: inc/admin/class-lp-admin-ajax.php:368
1761
+ msgid "Something went wrong: "
1762
  msgstr ""
1763
 
1764
+ #: inc/admin/class-lp-admin-ajax.php:371
1765
  msgid ""
1766
+ "Thank you for subscribing! Please check and click the confirmation link from "
1767
+ "the email we've just sent to your mail box."
1768
  msgstr ""
1769
 
1770
+ #: inc/admin/class-lp-admin-ajax.php:387
1771
+ msgid "Ops! ID not found"
1772
  msgstr ""
1773
 
1774
+ #: inc/admin/class-lp-admin-ajax.php:416
1775
+ msgid "Duplicate post fail, please try again"
 
1776
  msgstr ""
1777
 
1778
+ #: inc/admin/class-lp-admin-ajax.php:568
1779
+ msgid "Access denied"
 
 
 
 
1780
  msgstr ""
1781
 
1782
+ #: inc/admin/class-lp-admin-ajax.php:580 inc/admin/class-lp-admin-ajax.php:620
1783
+ #: templates/order/order-details.php:18
1784
+ msgid "Invalid order"
1785
  msgstr ""
1786
 
1787
+ #: inc/admin/class-lp-admin-ajax.php:614
1788
+ msgid "Permission denied"
 
1789
  msgstr ""
1790
 
1791
+ #: inc/admin/class-lp-admin-ajax.php:810 inc/admin/class-lp-admin-ajax.php:983
1792
+ #: inc/admin/lp-admin-functions.php:253
1793
+ msgid "Edit Page"
1794
  msgstr ""
1795
 
1796
+ #: inc/admin/class-lp-admin-ajax.php:811 inc/admin/class-lp-admin-ajax.php:985
1797
+ #: inc/admin/lp-admin-functions.php:255
1798
+ msgid "View Page"
1799
  msgstr ""
1800
 
1801
+ #: inc/admin/class-lp-admin-ajax.php:813
1802
+ msgid "Error! Page creation failed. Please try again."
 
 
1803
  msgstr ""
1804
 
1805
+ #: inc/admin/class-lp-admin-ajax.php:816
1806
+ msgid "Empty page name!"
 
 
 
 
 
1807
  msgstr ""
1808
 
1809
+ #: inc/admin/class-lp-admin-ajax.php:850
1810
+ msgid "The required pages are successfully created."
 
 
 
1811
  msgstr ""
1812
 
1813
+ #: inc/admin/class-lp-admin-ajax.php:860
1814
+ msgid "Please try again."
1815
  msgstr ""
1816
 
1817
+ #: inc/admin/class-lp-admin-ajax.php:886
1818
+ msgid "Successfully import sample data."
1819
  msgstr ""
1820
 
1821
+ #: inc/admin/class-lp-admin-ajax.php:886
1822
+ msgid "View courses"
1823
  msgstr ""
1824
 
1825
+ #: inc/admin/class-lp-admin-ajax.php:890
1826
+ msgid "Failed to import sample data. Please try again."
1827
  msgstr ""
1828
 
1829
+ #: inc/admin/class-lp-admin-ajax.php:894
1830
+ msgid ""
1831
+ "Unknown error when installing/activating Import/Export add-on. Please try "
1832
+ "again!"
1833
  msgstr ""
1834
 
1835
+ #: inc/admin/class-lp-admin-ajax.php:910 inc/admin/class-lp-admin-ajax.php:931
1836
+ #: inc/admin/class-lp-admin-ajax.php:951
1837
+ msgid "You do not have the permission to deactivate plugins on this site."
1838
  msgstr ""
1839
 
1840
+ #: inc/admin/class-lp-admin-assets.php:38
1841
+ msgid "Ooops! Error."
 
1842
  msgstr ""
1843
 
1844
+ #: inc/admin/class-lp-admin-assets.php:39
1845
+ #: inc/emails/class-lp-email-cancelled-order-guest.php:27
1846
+ #: inc/emails/class-lp-email-completed-order-guest.php:29
1847
+ #: inc/emails/class-lp-email-new-order-guest.php:27
1848
+ #: inc/emails/class-lp-email-processing-order-guest.php:27
1849
+ msgid "Guest"
 
1850
  msgstr ""
1851
 
1852
+ #: inc/admin/class-lp-admin-assets.php:45
1853
+ msgid ""
1854
+ "Before taking this action, we strongly recommend you should backup your site "
1855
+ "first before proceeding. Should any issues come at hand, do not hesitate to "
1856
+ "contact our Support team. Are you sure to proceed the update protocol?"
1857
  msgstr ""
1858
 
1859
+ #: inc/admin/class-lp-admin-dashboard.php:19
1860
+ msgid "LearnPress order status"
1861
  msgstr ""
1862
 
1863
+ #: inc/admin/class-lp-admin-dashboard.php:24
1864
+ msgid "LearnPress status"
 
 
1865
  msgstr ""
1866
 
1867
+ #: inc/admin/class-lp-admin-dashboard.php:49
1868
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:30
1869
+ msgid "Total Raised"
 
1870
  msgstr ""
1871
 
1872
+ #: inc/admin/class-lp-admin-dashboard.php:65
1873
+ #: inc/admin/class-lp-admin-dashboard.php:67
1874
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:45
1875
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:50
1876
+ #, php-format
1877
+ msgid "%d order"
1878
+ msgid_plural "%d orders"
1879
+ msgstr[0] ""
1880
+ msgstr[1] ""
1881
 
1882
+ #: inc/admin/class-lp-admin-dashboard.php:83
1883
+ #: inc/admin/dashboard-statistics/class-lp-statistic-status.php:63
1884
+ msgid "Created by: "
1885
  msgstr ""
1886
 
1887
+ #: inc/admin/class-lp-admin-menu.php:69
1888
+ msgid "View Courses"
 
1889
  msgstr ""
1890
 
1891
+ #: inc/admin/class-lp-admin-menu.php:89
1892
+ msgid "Learning Management System"
 
1893
  msgstr ""
1894
 
1895
+ #: inc/admin/class-lp-admin-tools.php:129
1896
+ msgid "All courses, lessons, quizzes and questions have been removed"
 
 
 
 
 
 
 
 
1897
  msgstr ""
1898
 
1899
+ #: inc/admin/class-lp-admin-tools.php:192
1900
+ msgid "Outdated data from version older than 1.0 has been removed"
 
 
1901
  msgstr ""
1902
 
1903
+ #: inc/admin/class-lp-admin.php:62
1904
+ msgid "Available Courses"
1905
  msgstr ""
1906
 
1907
+ #: inc/admin/class-lp-admin.php:180
1908
+ msgid "Shop Page"
1909
  msgstr ""
1910
 
1911
+ #: inc/admin/class-lp-admin.php:184
1912
+ msgid "Cart Page"
1913
  msgstr ""
1914
 
1915
+ #: inc/admin/class-lp-admin.php:188 inc/admin/class-lp-admin.php:601
1916
+ msgid "Checkout Page"
 
1917
  msgstr ""
1918
 
1919
+ #: inc/admin/class-lp-admin.php:192
1920
+ msgid "My Account Page"
 
 
 
 
 
 
 
 
1921
  msgstr ""
1922
 
1923
+ #: inc/admin/class-lp-admin.php:196
1924
+ msgid "Terms and Conditions Page"
1925
+ msgstr ""
 
 
 
1926
 
1927
+ #: inc/admin/class-lp-admin.php:213
1928
+ msgid "Account"
 
1929
  msgstr ""
1930
 
1931
+ #: inc/admin/class-lp-admin.php:214
1932
+ msgid "Billing"
1933
+ msgstr ""
 
 
 
1934
 
1935
+ #: inc/admin/class-lp-admin.php:216 inc/admin/class-lp-admin.php:279
1936
+ #: inc/admin/settings/class-lp-settings-checkout.php:22
1937
+ #: inc/admin/views/setup/steps/pages.php:40
1938
+ msgid "Checkout"
1939
  msgstr ""
1940
 
1941
+ #: inc/admin/class-lp-admin.php:217
1942
+ msgid "Confirmation"
1943
+ msgstr ""
 
 
 
1944
 
1945
+ #: inc/admin/class-lp-admin.php:218
1946
+ msgid "Invoice"
 
1947
  msgstr ""
1948
 
1949
+ #: inc/admin/class-lp-admin.php:219
1950
+ msgid "Levels"
1951
+ msgstr ""
 
 
 
1952
 
1953
+ #: inc/admin/class-lp-admin.php:247
1954
+ msgid "Members"
 
1955
  msgstr ""
1956
 
1957
+ #: inc/admin/class-lp-admin.php:248
1958
+ msgid "Activity"
1959
  msgstr ""
1960
 
1961
+ #: inc/admin/class-lp-admin.php:249 templates/checkout/form-register.php:48
1962
+ #: templates/global/form-register.php:43
1963
+ msgid "Register"
1964
  msgstr ""
1965
 
1966
+ #: inc/admin/class-lp-admin.php:250
1967
+ msgid "Activate"
1968
  msgstr ""
1969
 
1970
+ #: inc/admin/class-lp-admin.php:278
1971
+ #: inc/admin/settings/class-lp-settings-profile.php:22
1972
+ #: inc/admin/views/setup/steps/pages.php:31
1973
+ msgid "Profile"
1974
  msgstr ""
1975
 
1976
+ #: inc/admin/class-lp-admin.php:280 inc/admin/views/setup/steps/pages.php:49
1977
+ #: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:121
1978
+ msgid "Become a Teacher"
1979
  msgstr ""
1980
 
1981
+ #: inc/admin/class-lp-admin.php:318
1982
+ msgid "LearnPress Page"
 
1983
  msgstr ""
1984
 
1985
+ #: inc/admin/class-lp-admin.php:360
1986
  #, php-format
1987
+ msgid "LearnPress Pages (%d)"
1988
  msgstr ""
1989
 
1990
+ #: inc/admin/class-lp-admin.php:399
1991
+ msgctxt "pending-request"
1992
+ msgid "Accept"
1993
  msgstr ""
1994
 
1995
+ #: inc/admin/class-lp-admin.php:400
1996
+ msgctxt "pending-request"
1997
+ msgid "Deny"
1998
  msgstr ""
1999
 
2000
+ #: inc/admin/class-lp-admin.php:462
2001
  #, php-format
2002
+ msgid "Pending Request %s"
2003
  msgstr ""
2004
 
2005
+ #: inc/admin/class-lp-admin.php:488
2006
+ msgid "Sorry, you are not allowed to edit this user."
2007
  msgstr ""
2008
 
2009
+ #: inc/admin/class-lp-admin.php:492
2010
  #, php-format
2011
+ msgid "User has %s to become a teacher."
 
 
 
 
2012
  msgstr ""
2013
 
2014
+ #: inc/admin/class-lp-admin.php:577
 
 
 
 
 
 
 
 
 
2015
  #, php-format
2016
+ msgid ""
2017
+ "LearnPress requires permalink option <strong>Post name</strong> is enabled. "
2018
+ "Please enable it <a href=\"%s\">here</a> to ensure that all functions work "
2019
+ "properly."
 
 
 
 
 
2020
  msgstr ""
2021
 
2022
+ #: inc/admin/class-lp-admin.php:597
2023
+ msgid "Profile Page"
 
 
 
 
 
2024
  msgstr ""
2025
 
2026
+ #: inc/admin/class-lp-admin.php:626
 
 
 
2027
  #, php-format
2028
+ msgid "The following required page(s) are currently missing: %s."
2029
  msgstr ""
2030
 
2031
+ #: inc/admin/class-lp-admin.php:627
2032
  #, php-format
2033
+ msgid ""
2034
+ "To ensure all functions work properly, please click <a class=\"button\" id="
2035
+ "\"learn-press-create-pages\" href=\"%s\">here</a> to create and set it up "
2036
+ "automatically."
2037
  msgstr ""
2038
 
2039
+ #: inc/admin/class-lp-admin.php:677
 
2040
  #, php-format
2041
+ msgid ""
2042
+ "If you like <strong>LearnPress</strong> please leave us a %s&#9733;&#9733;"
2043
+ "&#9733;&#9733;&#9733;%s rating. A huge thanks from LearnPress team for your "
2044
+ "generous."
2045
  msgstr ""
2046
 
2047
+ #: inc/admin/class-lp-admin.php:677
2048
+ msgid "Thanks :)"
 
2049
  msgstr ""
2050
 
2051
+ #: inc/admin/class-lp-install-sample-data.php:64
2052
+ msgid "Are you sure you want to install sample course data?"
 
2053
  msgstr ""
2054
 
2055
+ #: inc/admin/class-lp-install-sample-data.php:65
2056
+ msgid "Are you sure you want to delete sample course data?"
2057
  msgstr ""
2058
 
2059
+ #: inc/admin/class-lp-install-sample-data.php:128
2060
+ #, php-format
2061
+ msgid "Course \"%s\" has been created"
2062
  msgstr ""
2063
 
2064
+ #: inc/admin/class-lp-install-sample-data.php:130
2065
+ #: inc/admin/views/meta-boxes/course/assigned.php:22
2066
+ #: inc/admin/views/meta-boxes/quiz/assigned.php:28
2067
+ #: inc/admin/views/meta-boxes/quiz/assigned.php:38
2068
+ #: inc/custom-post-types/abstract.php:582
2069
+ #: inc/custom-post-types/abstract.php:774
2070
+ #: inc/custom-post-types/abstract.php:783
2071
+ #: inc/custom-post-types/question.php:376 inc/order/class-lp-order.php:928
2072
+ msgid "View"
2073
  msgstr ""
2074
 
2075
+ #: inc/admin/class-lp-install-sample-data.php:132
2076
+ #: inc/attributes/course.php:232 inc/custom-post-types/abstract.php:580
2077
+ #: inc/custom-post-types/question.php:374
2078
+ #: templates/content-lesson/no-content.php:22
2079
+ msgid "Edit"
2080
  msgstr ""
2081
 
2082
+ #: inc/admin/class-lp-install-sample-data.php:300
2083
+ #: inc/admin/views/tools/database/html-install-sample-data.php:25
2084
+ msgid "Sample course"
2085
  msgstr ""
2086
 
2087
+ #: inc/admin/class-lp-install-sample-data.php:606
2088
+ #: inc/admin/class-lp-install-sample-data.php:614
2089
+ msgctxt "install-sample-course"
2090
+ msgid " [TRUE]"
2091
  msgstr ""
2092
 
2093
+ #: inc/admin/class-lp-meta-box-tabs.php:29
2094
+ msgid "Meta box tabs"
 
 
2095
  msgstr ""
2096
 
2097
+ #: inc/admin/class-lp-modal-search-items.php:59
2098
+ #: inc/admin/class-lp-modal-search-users.php:49
2099
+ #: inc/admin/views/course/modal-choose-items.php:100
2100
+ #: inc/admin/views/quiz/modal-choose-items.php:88
2101
+ msgid "Add"
2102
  msgstr ""
2103
 
2104
+ #: inc/admin/class-lp-modal-search-items.php:60
2105
+ #: inc/admin/class-lp-modal-search-users.php:50
2106
+ #: inc/admin/views/course/modal-choose-items.php:71
2107
+ #: inc/admin/views/meta-boxes/order/details.php:242
2108
+ #: inc/admin/views/quiz/modal-choose-items.php:58
2109
+ msgid "Close"
 
 
 
2110
  msgstr ""
2111
 
2112
+ #: inc/admin/class-lp-modal-search-items.php:61
2113
+ #: inc/admin/views/modal-search-items.php:11
2114
+ msgid "Search items"
 
 
 
 
 
 
 
 
2115
  msgstr ""
2116
 
2117
+ #: inc/admin/class-lp-modal-search-items.php:249
2118
+ #: inc/admin/class-lp-modal-search-users.php:184
2119
+ msgid "No item found"
 
2120
  msgstr ""
2121
 
2122
+ #: inc/admin/class-lp-modal-search-items.php:342
2123
+ msgid "There are no available lessons for this course, please use "
 
2124
  msgstr ""
2125
 
2126
+ #: inc/admin/class-lp-modal-search-items.php:343
2127
+ #: inc/admin/class-lp-modal-search-items.php:347
2128
+ #: inc/admin/class-lp-modal-search-items.php:351
2129
+ msgid "Add new item"
2130
  msgstr ""
2131
 
2132
+ #: inc/admin/class-lp-modal-search-items.php:346
2133
+ msgid "There are no available quizzes for this course, please use "
 
2134
  msgstr ""
2135
 
2136
+ #: inc/admin/class-lp-modal-search-items.php:350
2137
+ msgid "There are no available questions for this quiz, please use "
2138
  msgstr ""
2139
 
2140
+ #: inc/admin/class-lp-modal-search-users.php:51
2141
+ #: inc/admin/views/modal-search-users.php:10
2142
+ msgid "Search users"
 
2143
  msgstr ""
2144
 
2145
+ #: inc/admin/class-lp-plugin-install-list-table.php:162
2146
+ msgid "No plugin found."
 
 
 
2147
  msgstr ""
2148
 
2149
+ #: inc/admin/class-lp-plugin-install-list-table.php:296
2150
+ msgctxt "Plugin installer group title"
2151
+ msgid "Performance"
2152
  msgstr ""
2153
 
2154
+ #: inc/admin/class-lp-plugin-install-list-table.php:297
2155
+ msgctxt "Plugin installer group title"
2156
+ msgid "Social"
2157
  msgstr ""
2158
 
2159
+ #: inc/admin/class-lp-plugin-install-list-table.php:298
2160
+ msgctxt "Plugin installer group title"
2161
+ msgid "Tools"
2162
  msgstr ""
2163
 
2164
+ #: inc/admin/class-lp-plugin-install-list-table.php:341
2165
+ #, php-format
2166
+ msgid "By %s"
2167
  msgstr ""
2168
 
2169
+ #: inc/admin/class-lp-plugin-install-list-table.php:362
2170
+ #: inc/admin/helpers/class-lp-plugins-helper.php:238
2171
+ #, php-format
2172
+ msgid "Install %s now"
2173
  msgstr ""
2174
 
2175
+ #: inc/admin/class-lp-plugin-install-list-table.php:362
2176
+ msgid "Install and Active"
 
 
 
2177
  msgstr ""
2178
 
2179
+ #: inc/admin/class-lp-plugin-install-list-table.php:369
2180
+ #: inc/admin/helpers/class-lp-plugins-helper.php:245
2181
+ #, php-format
2182
+ msgid "Update %s now"
2183
  msgstr ""
2184
 
2185
+ #: inc/admin/class-lp-plugin-install-list-table.php:369
2186
+ #: inc/admin/helpers/class-lp-plugins-helper.php:245
2187
+ #: inc/admin/views/updates/html-update-message.php:17
2188
+ #: inc/admin/views/updates/0.9/step-repair-database.php:17
2189
+ msgid "Update Now"
2190
  msgstr ""
2191
 
2192
+ #: inc/admin/class-lp-plugin-install-list-table.php:376
2193
+ msgctxt "plugin"
2194
+ msgid "Enabled"
 
 
 
 
 
 
2195
  msgstr ""
2196
 
2197
+ #: inc/admin/class-lp-plugin-install-list-table.php:378
2198
+ msgctxt "plugin"
2199
+ msgid "Enable"
 
2200
  msgstr ""
2201
 
2202
+ #: inc/admin/class-lp-plugin-install-list-table.php:420
2203
+ msgid "Enabled"
 
 
2204
  msgstr ""
2205
 
2206
+ #: inc/admin/class-lp-plugin-install-list-table.php:422
2207
+ msgid "Disabled"
 
2208
  msgstr ""
2209
 
2210
+ #: inc/admin/class-lp-plugin-install-list-table.php:425
2211
+ msgid "Not Install"
 
 
2212
  msgstr ""
2213
 
2214
+ #: inc/admin/class-lp-plugin-install-list-table.php:454
2215
+ msgid "Last Updated:"
 
 
 
 
 
2216
  msgstr ""
2217
 
2218
+ #: inc/admin/class-lp-plugin-install-list-table.php:455
2219
+ #: inc/custom-post-types/order.php:837 inc/order/class-lp-order.php:147
2220
+ #: inc/user-item/class-lp-user-item.php:160
2221
+ #, php-format
2222
+ msgid "%s ago"
2223
  msgstr ""
2224
 
2225
+ #: inc/admin/class-lp-plugin-install-list-table.php:461
2226
+ msgctxt "Active plugin installs"
2227
+ msgid "1+ Million"
2228
  msgstr ""
2229
 
2230
+ #: inc/admin/class-lp-plugin-install-list-table.php:465
2231
+ #, php-format
2232
+ msgid "%s Active Installs"
2233
  msgstr ""
2234
 
2235
+ #: inc/admin/class-lp-plugin-install-list-table.php:471
2236
+ #: inc/admin/views/addons/html-loop-plugin.php:55
2237
+ msgid "Untested with your version of WordPress"
2238
  msgstr ""
2239
 
2240
+ #: inc/admin/class-lp-plugin-install-list-table.php:473
2241
+ #: inc/admin/views/addons/html-loop-plugin.php:57
2242
+ msgid "<strong>Incompatible</strong> with your version of WordPress"
2243
  msgstr ""
2244
 
2245
+ #: inc/admin/class-lp-plugin-install-list-table.php:475
2246
+ #: inc/admin/views/addons/html-loop-plugin.php:59
2247
+ msgid "<strong>Compatible</strong> with your version of WordPress"
2248
  msgstr ""
2249
 
2250
+ #: inc/admin/class-lp-reset-data.php:90
2251
+ msgid "Item progress deleted"
2252
  msgstr ""
2253
 
2254
+ #: inc/admin/class-lp-reset-data.php:92
2255
+ msgid "No data found"
 
2256
  msgstr ""
2257
 
2258
+ #: inc/admin/class-lp-setup-wizard.php:72
2259
+ msgctxt "static-page"
2260
+ msgid "LP Courses"
2261
  msgstr ""
2262
 
2263
+ #: inc/admin/class-lp-setup-wizard.php:73
2264
+ msgctxt "static-page"
2265
+ msgid "LP Profile"
2266
  msgstr ""
2267
 
2268
+ #: inc/admin/class-lp-setup-wizard.php:74
2269
+ msgctxt "static-page"
2270
+ msgid "LP Checkout"
 
 
2271
  msgstr ""
2272
 
2273
+ #: inc/admin/class-lp-setup-wizard.php:75
2274
+ msgctxt "static-page"
2275
+ msgid "LP Become Teacher"
2276
  msgstr ""
2277
 
2278
+ #: inc/admin/class-lp-setup-wizard.php:206
2279
+ msgid "Welcome"
 
 
 
2280
  msgstr ""
2281
 
2282
+ #: inc/admin/class-lp-setup-wizard.php:208
2283
+ #: inc/admin/views/setup/notice-setup.php:5
2284
+ msgid "Run setup wizard"
 
 
 
 
 
2285
  msgstr ""
2286
 
2287
+ #: inc/admin/class-lp-setup-wizard.php:211
2288
+ #: inc/admin/settings/class-lp-settings-general.php:52
2289
+ #: inc/admin/settings/class-lp-settings-general.php:57
2290
+ #: inc/admin/views/setup/steps/currency.php:17
2291
+ #: inc/admin/views/setup/steps/currency.php:21
2292
+ msgid "Currency"
2293
  msgstr ""
2294
 
2295
+ #: inc/admin/class-lp-setup-wizard.php:217
2296
+ #: inc/admin/views/setup/steps/pages.php:14
2297
+ msgid "Static Pages"
 
 
 
2298
  msgstr ""
2299
 
2300
+ #: inc/admin/class-lp-setup-wizard.php:221
2301
+ #: inc/admin/meta-box/fields/payment-order.php:29
2302
+ #: inc/admin/views/setup/steps/payment.php:16
2303
+ msgid "Payment"
 
2304
  msgstr ""
2305
 
2306
+ #: inc/admin/class-lp-setup-wizard.php:225
2307
+ #: inc/admin/settings/class-lp-settings-emails.php:26
2308
+ #: inc/admin/settings/class-lp-settings-emails.php:166
2309
+ msgid "Emails"
2310
  msgstr ""
2311
 
2312
+ #: inc/admin/class-lp-setup-wizard.php:229
2313
+ #: inc/admin/views/setup/content.php:92
2314
+ #: inc/admin/views/setup/steps/finish.php:12
2315
+ msgid "Finish"
2316
  msgstr ""
2317
 
2318
+ #: inc/admin/class-lp-setup-wizard.php:346
2319
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:91
2320
+ #: inc/gateways/paypal/class-lp-gateway-paypal.php:95
2321
+ msgid "Paypal"
2322
  msgstr ""
2323
 
2324
+ #: inc/admin/class-lp-setup-wizard.php:347
2325
+ msgid "Enter your Paypal email address to accept payment via Paypal."
 
 
2326
  msgstr ""
2327
 
2328
+ #: inc/admin/class-lp-upgrader.php:12
2329
+ msgid "Invalid Data provided."
 
 
 
 
 
 
 
 
 
 
 
2330
  msgstr ""
2331
 
2332
+ #: inc/admin/class-lp-upgrader.php:13
2333
+ msgid "Could not access filesystem."
 
 
 
 
 
 
 
2334
  msgstr ""
2335
 
2336
+ #: inc/admin/class-lp-upgrader.php:14
2337
+ msgid "Filesystem error."
 
2338
  msgstr ""
2339
 
2340
+ #: inc/admin/class-lp-upgrader.php:15
2341
+ msgid "Unable to locate WordPress Root directory."
2342
  msgstr ""
2343
 
2344
+ #: inc/admin/class-lp-upgrader.php:16
2345
+ msgid "Unable to locate WordPress Content directory (wp-content)."
2346
  msgstr ""
2347
 
2348
+ #: inc/admin/class-lp-upgrader.php:17
2349
+ msgid "Unable to locate WordPress Plugin directory."
 
2350
  msgstr ""
2351
 
2352
+ #: inc/admin/class-lp-upgrader.php:18
2353
+ msgid "Unable to locate WordPress Theme directory."
2354
  msgstr ""
2355
 
2356
+ #: inc/admin/class-lp-upgrader.php:20
2357
+ #, php-format
2358
+ msgid "Unable to locate necessary folder (%s)."
2359
  msgstr ""
2360
 
2361
+ #: inc/admin/class-lp-upgrader.php:22
2362
+ msgid "Download failed."
2363
  msgstr ""
2364
 
2365
+ #: inc/admin/class-lp-upgrader.php:23
2366
+ msgid "Installing the latest version&#8230;"
 
2367
  msgstr ""
2368
 
2369
+ #: inc/admin/class-lp-upgrader.php:24
2370
+ msgid "The package contains no files."
2371
  msgstr ""
2372
 
2373
+ #: inc/admin/class-lp-upgrader.php:25
2374
+ msgid "Destination folder already exists."
2375
  msgstr ""
2376
 
2377
+ #: inc/admin/class-lp-upgrader.php:26
2378
+ msgid "Could not create directory."
 
2379
  msgstr ""
2380
 
2381
+ #: inc/admin/class-lp-upgrader.php:27
2382
+ msgid "The package could not be installed."
 
2383
  msgstr ""
2384
 
2385
+ #: inc/admin/class-lp-upgrader.php:29
2386
+ msgid "Enabling Maintenance mode&#8230;"
 
 
 
2387
  msgstr ""
2388
 
2389
+ #: inc/admin/class-lp-upgrader.php:30
2390
+ msgid "Disabling Maintenance mode&#8230;"
2391
  msgstr ""
2392
 
2393
+ #: inc/admin/lp-admin-actions.php:61
2394
+ #: inc/admin/views/dashboard/plugin-status/html-results.php:31
2395
+ msgid "Published"
2396
  msgstr ""
2397
 
2398
+ #: inc/admin/lp-admin-actions.php:62
2399
+ msgid "Private"
2400
  msgstr ""
2401
 
2402
+ #: inc/admin/lp-admin-actions.php:63
2403
+ msgid "Pending Review"
2404
  msgstr ""
2405
 
2406
+ #: inc/admin/lp-admin-actions.php:64
2407
+ msgid "Scheduled"
2408
  msgstr ""
2409
 
2410
+ #: inc/admin/lp-admin-actions.php:65
2411
+ msgid "Draft"
2412
  msgstr ""
2413
 
2414
+ #: inc/admin/lp-admin-actions.php:66
2415
+ msgid "Trash"
2416
  msgstr ""
2417
 
2418
+ #: inc/admin/lp-admin-actions.php:144
2419
+ msgid "LearnPress Plugin"
2420
  msgstr ""
2421
 
2422
+ #: inc/admin/lp-admin-actions.php:148
2423
+ msgid "LearnPress Status"
2424
  msgstr ""
2425
 
2426
+ #: inc/admin/lp-admin-actions.php:212 inc/custom-post-types/course.php:1307
2427
+ msgid "Categories"
2428
  msgstr ""
2429
 
2430
+ #: inc/admin/lp-admin-actions.php:217 inc/custom-post-types/course.php:224
2431
+ msgid "Tags"
2432
  msgstr ""
2433
 
2434
+ #: inc/admin/lp-admin-functions.php:32
2435
+ msgid "Duplicate this course"
 
 
2436
  msgstr ""
2437
 
2438
+ #: inc/admin/lp-admin-functions.php:44
2439
+ #: inc/admin/meta-box/fields/course-permalink.php:47
2440
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:22
2441
+ #: inc/admin/views/settings/fields/course-permalink.php:31
2442
+ #: inc/admin/views/statistics/orders.php:47
2443
+ #: inc/custom-post-types/abstract.php:556 inc/custom-post-types/quiz.php:379
2444
+ #: templates/checkout/review-order.php:32
2445
+ #: templates/emails/order-items-table.php:66
2446
+ #: templates/order/order-details.php:28 templates/profile/tabs/courses.php:32
2447
+ #: templates/profile/tabs/quizzes.php:37
2448
+ #: templates/profile/tabs/courses/purchased.php:38
2449
+ msgid "Course"
2450
  msgstr ""
2451
 
2452
+ #: inc/admin/lp-admin-functions.php:52
2453
+ msgid "Duplicate this quiz"
 
 
 
 
2454
  msgstr ""
2455
 
2456
+ #: inc/admin/lp-admin-functions.php:56
2457
+ msgid "Duplicate this question"
2458
  msgstr ""
2459
 
2460
+ #: inc/admin/lp-admin-functions.php:60
2461
+ msgid "Duplicate this lesson"
2462
  msgstr ""
2463
 
2464
+ #: inc/admin/lp-admin-functions.php:183
2465
+ msgid "[ Add a new page ]"
2466
  msgstr ""
2467
 
2468
+ #: inc/admin/lp-admin-functions.php:206
2469
+ msgid "Select Page"
 
 
 
 
 
2470
  msgstr ""
2471
 
2472
+ #: inc/admin/lp-admin-functions.php:223
2473
+ msgid "Select a page&hellip;"
 
 
 
2474
  msgstr ""
2475
 
2476
+ #: inc/admin/lp-admin-functions.php:244
2477
+ msgid "Create"
2478
  msgstr ""
2479
 
2480
+ #: inc/admin/lp-admin-functions.php:247
2481
+ msgid "New page title"
 
 
 
2482
  msgstr ""
2483
 
2484
+ #: inc/admin/lp-admin-functions.php:248
2485
+ msgid "Ok [Enter]"
2486
  msgstr ""
2487
 
2488
+ #: inc/admin/lp-admin-functions.php:249
2489
+ msgid "Cancel [ESC]"
2490
  msgstr ""
2491
 
2492
+ #: inc/admin/lp-admin-functions.php:333
2493
+ msgid "Minutes"
2494
  msgstr ""
2495
 
2496
+ #: inc/admin/lp-admin-functions.php:376 inc/admin/lp-admin-functions.php:417
2497
+ msgid "Plain text"
2498
  msgstr ""
2499
 
2500
+ #: inc/admin/lp-admin-functions.php:377 inc/admin/lp-admin-functions.php:418
2501
+ #: inc/admin/settings/class-lp-settings-emails.php:147
2502
+ msgid "HTML"
2503
  msgstr ""
2504
 
2505
+ #: inc/admin/lp-admin-functions.php:578
2506
+ #: inc/admin/views/addons/html-loop-theme.php:51
2507
+ msgid "Get it now"
2508
  msgstr ""
2509
 
2510
+ #: inc/admin/lp-admin-functions.php:580
2511
+ #: inc/admin/views/addons/html-loop-theme.php:53
2512
+ msgid "View Demo"
2513
  msgstr ""
2514
 
2515
+ #: inc/admin/lp-admin-functions.php:855
2516
+ #: inc/admin/views/statistics/courses.php:9
2517
+ #: inc/admin/views/statistics/general.php:9
2518
+ #: inc/admin/views/statistics/orders.php:9
2519
+ #: inc/admin/views/statistics/users.php:9
2520
+ #: inc/admin/views/statistics/users.php:46
2521
+ msgid "Instructors"
2522
  msgstr ""
2523
 
2524
+ #: inc/admin/lp-admin-functions.php:860
2525
+ #: inc/admin/views/statistics/courses.php:8
2526
+ #: inc/admin/views/statistics/general.php:8
2527
+ #: inc/admin/views/statistics/orders.php:8
2528
+ #: inc/admin/views/statistics/users.php:8
2529
+ #: inc/admin/views/statistics/users.php:47
2530
+ #: inc/admin/views/tools/course/html-course.php:30
2531
+ #: inc/custom-post-types/course.php:1296 inc/custom-post-types/course.php:1303
2532
+ msgid "Students"
2533
  msgstr ""
2534
 
2535
+ #: inc/admin/lp-admin-functions.php:1020 inc/admin/lp-admin-functions.php:2103
2536
+ #: inc/admin/views/meta-boxes/course/review-logs.php:25
2537
+ #: inc/user/class-lp-profile.php:814
2538
+ msgid "Publish"
2539
  msgstr ""
2540
 
2541
+ #: inc/admin/lp-admin-functions.php:1025 inc/admin/lp-admin-functions.php:1227
2542
+ #: inc/admin/lp-admin-functions.php:2108
2543
+ #: inc/admin/views/statistics/courses.php:44
2544
+ #: inc/admin/views/statistics/general.php:61
2545
+ #: inc/admin/views/statistics/orders.php:64 inc/user/class-lp-profile.php:815
2546
+ msgid "Pending"
2547
  msgstr ""
2548
 
2549
+ #: inc/admin/lp-admin-functions.php:1030 inc/admin/lp-admin-functions.php:2113
2550
+ #: inc/admin/views/statistics/courses.php:45
2551
+ #: inc/admin/views/statistics/general.php:62
2552
+ msgid "Paid"
 
 
2553
  msgstr ""
2554
 
2555
+ #: inc/admin/lp-admin-functions.php:1035 inc/admin/lp-admin-functions.php:2118
2556
+ #: inc/admin/views/statistics/courses.php:46
2557
+ #: inc/admin/views/statistics/general.php:63
2558
+ #: inc/course/abstract-course.php:673 inc/custom-post-types/course.php:1374
2559
+ msgid "Free"
2560
  msgstr ""
2561
 
2562
+ #: inc/admin/lp-admin-functions.php:1254
2563
+ msgid "Pending Courses / Publish Courses"
 
 
2564
  msgstr ""
2565
 
2566
+ #: inc/admin/lp-admin-functions.php:1255
2567
+ msgid "Free Courses / Priced Courses"
2568
  msgstr ""
2569
 
2570
+ #: inc/admin/lp-admin-functions.php:1423
2571
+ msgid "Installed"
 
 
2572
  msgstr ""
2573
 
2574
+ #: inc/admin/lp-admin-functions.php:1456
2575
+ #, php-format
2576
+ msgid "The user %s has become a teacher"
2577
  msgstr ""
2578
 
2579
+ #: inc/admin/lp-admin-functions.php:1514
2580
+ msgid "You haven't got any courses yet! Would you like to import sample data?"
 
2581
  msgstr ""
2582
 
2583
+ #: inc/admin/lp-admin-functions.php:1515
2584
+ msgid "If yes, please install add-on name"
2585
  msgstr ""
2586
 
2587
+ #: inc/admin/lp-admin-functions.php:1516
2588
+ msgid "LearnPress Import/Export"
2589
  msgstr ""
2590
 
2591
+ #: inc/admin/lp-admin-functions.php:1517
2592
+ msgid "but don't worry because it is completely automated."
 
2593
  msgstr ""
2594
 
2595
+ #: inc/admin/lp-admin-functions.php:1518
2596
+ msgid "Import now"
2597
  msgstr ""
2598
 
2599
+ #: inc/admin/lp-admin-functions.php:1519
2600
+ msgid "No, thanks!"
2601
  msgstr ""
2602
 
2603
+ #: inc/admin/lp-admin-functions.php:1729
2604
+ msgid " Copy"
2605
  msgstr ""
2606
 
2607
+ #: inc/admin/lp-admin-functions.php:1822
2608
+ #, php-format
2609
+ msgid "Question id %s does not exist."
2610
  msgstr ""
2611
 
2612
+ #: inc/admin/lp-admin-functions.php:1825
2613
+ #, php-format
2614
+ msgid "Quiz id %s does not exist."
2615
  msgstr ""
2616
 
2617
+ #: inc/admin/editor/class-lp-admin-editor-course.php:71
2618
+ #: inc/curds/class-lp-course-curd.php:45
2619
+ msgid "New Course"
2620
  msgstr ""
2621
 
2622
+ #: inc/admin/editor/class-lp-admin-editor-question.php:104
2623
+ #: inc/curds/class-lp-question-curd.php:46
2624
+ msgid "New Question"
2625
  msgstr ""
2626
 
2627
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:45
2628
+ msgid "Invalid quiz"
2629
  msgstr ""
2630
 
2631
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:147
2632
+ #: inc/curds/class-lp-quiz-curd.php:85 inc/custom-post-types/quiz.php:97
2633
+ msgid "New Quiz"
2634
  msgstr ""
2635
 
2636
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:156
2637
+ #: inc/admin/editor/class-lp-admin-editor-quiz.php:591
2638
+ msgid "Quiz creation failed."
2639
  msgstr ""
2640
 
2641
+ #: inc/admin/helpers/class-lp-plugins-helper.php:238
2642
+ msgid "Install Now"
2643
  msgstr ""
2644
 
2645
+ #: inc/admin/helpers/class-lp-plugins-helper.php:252
2646
+ #: inc/admin/helpers/class-lp-plugins-helper.php:262
2647
+ #, php-format
2648
+ msgid "Disable %s now"
2649
  msgstr ""
2650
 
2651
+ #: inc/admin/helpers/class-lp-plugins-helper.php:252
2652
+ #: inc/admin/helpers/class-lp-plugins-helper.php:262
2653
+ msgid "Disable Now"
2654
  msgstr ""
2655
 
2656
+ #: inc/admin/helpers/class-lp-plugins-helper.php:254
2657
+ #: inc/admin/helpers/class-lp-plugins-helper.php:264
2658
+ #, php-format
2659
+ msgid "Enable %s now"
2660
  msgstr ""
2661
 
2662
+ #: inc/admin/helpers/class-lp-plugins-helper.php:254
2663
+ #: inc/admin/helpers/class-lp-plugins-helper.php:264
2664
+ msgid "Enable Now"
2665
  msgstr ""
2666
 
2667
+ #: inc/admin/helpers/class-lp-plugins-helper.php:269
2668
+ #, php-format
2669
+ msgid "Buy %s now"
 
 
 
 
 
 
 
2670
  msgstr ""
2671
 
2672
+ #: inc/admin/helpers/class-lp-plugins-helper.php:269
2673
+ msgid "Buy Now"
2674
  msgstr ""
2675
 
2676
+ #: inc/admin/meta-box/fields/color-schema.php:99
2677
+ msgid "Save as new"
2678
  msgstr ""
2679
 
2680
+ #: inc/admin/meta-box/fields/color-schema.php:101
2681
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:100
2682
+ #: inc/admin/views/tools/course/html-user-item.php:28
2683
+ #: inc/widgets/course-filters/tmpl/default.php:85
2684
+ msgid "Reset"
2685
  msgstr ""
2686
 
2687
+ #: inc/admin/meta-box/fields/color-schema.php:102
2688
+ msgid "Use this colors"
2689
  msgstr ""
2690
 
2691
+ #: inc/admin/meta-box/fields/color-schema.php:103
2692
+ #: inc/admin/views/meta-boxes/course/review-logs.php:31
2693
+ #: inc/libraries/meta-box/inc/fields/autocomplete.php:23
2694
+ #: inc/libraries/meta-box/inc/fields/autocomplete.php:85
2695
+ #: inc/libraries/meta-box/inc/fields/autocomplete.php:97
2696
+ msgid "Delete"
2697
  msgstr ""
2698
 
2699
+ #: inc/admin/meta-box/fields/course-permalink.php:36
2700
+ #: inc/admin/settings/class-lp-settings-courses.php:38
2701
+ #: inc/admin/views/settings/fields/course-permalink.php:14
2702
+ msgctxt "default-slug"
2703
+ msgid "courses"
2704
  msgstr ""
2705
 
2706
+ #: inc/admin/meta-box/fields/course-permalink.php:37
2707
+ #: inc/admin/views/settings/fields/course-permalink.php:15
2708
+ msgctxt "default-slug"
2709
+ msgid "course"
2710
  msgstr ""
2711
 
2712
+ #: inc/admin/meta-box/fields/course-permalink.php:42
2713
+ #: inc/admin/views/settings/fields/course-permalink.php:26
2714
+ msgid "Default"
2715
  msgstr ""
2716
 
2717
+ #: inc/admin/meta-box/fields/course-permalink.php:52
2718
+ #: inc/admin/views/settings/fields/course-permalink.php:36
2719
+ msgid "Courses base"
2720
  msgstr ""
2721
 
2722
+ #: inc/admin/meta-box/fields/course-permalink.php:57
2723
+ #: inc/admin/views/settings/fields/course-permalink.php:41
2724
+ msgid "Courses base with category"
2725
  msgstr ""
2726
 
2727
+ #: inc/admin/meta-box/fields/course-permalink.php:92
2728
+ #: inc/admin/views/settings/fields/course-permalink.php:77
2729
+ msgid "Custom Base"
2730
  msgstr ""
2731
 
2732
+ #: inc/admin/meta-box/fields/course-permalink.php:100
2733
+ #: inc/admin/views/settings/fields/course-permalink.php:84
2734
+ msgid ""
2735
+ "Enter a custom base to use. A base <strong>must</strong> be set or WordPress "
2736
+ "will use default values instead."
2737
  msgstr ""
2738
 
2739
+ #: inc/admin/meta-box/fields/email-content.php:66
2740
+ msgid "General setting"
2741
  msgstr ""
2742
 
2743
+ #: inc/admin/meta-box/fields/email-content.php:70
2744
+ #, php-format
2745
+ msgid ""
2746
+ "Choose <strong>General setting</strong> to apply the setting from Email <a "
2747
+ "href=\"%s\">General Options</a> "
2748
  msgstr ""
2749
 
2750
+ #: inc/admin/meta-box/fields/email-content.php:115
2751
+ #: inc/admin/views/settings/emails/email-template.php:52
2752
+ #, php-format
2753
  msgid ""
2754
+ "This template has been overridden by your theme and can be found in: <code>"
2755
+ "%s</code>. <br />Please open the file in an editor program to edit"
2756
  msgstr ""
2757
 
2758
+ #: inc/admin/meta-box/fields/email-content.php:151
2759
+ #: inc/admin/views/settings/emails/email-template.php:77
2760
+ msgid "Click on variables to add it into email content."
2761
  msgstr ""
2762
 
2763
+ #: inc/admin/meta-box/fields/google-fonts.php:30
2764
+ msgid "Fonts"
 
2765
  msgstr ""
2766
 
2767
+ #: inc/admin/meta-box/fields/google-fonts.php:38
2768
+ msgid "Font families separated by |, eg: Open Sans|Roboto."
 
 
 
2769
  msgstr ""
2770
 
2771
+ #: inc/admin/meta-box/fields/google-fonts.php:40
2772
+ msgid "Subset"
 
2773
  msgstr ""
2774
 
2775
+ #: inc/admin/meta-box/fields/google-fonts.php:48
2776
+ msgid "Font subsets separated by comma, eg: greek,latin."
 
 
2777
  msgstr ""
2778
 
2779
+ #: inc/admin/meta-box/fields/image-dimensions.php:32
2780
+ #: inc/admin/views/settings/fields/image-size.php:13
2781
+ msgid "px"
 
2782
  msgstr ""
2783
 
2784
+ #: inc/admin/meta-box/fields/list-emails.php:29
2785
+ #: inc/admin/meta-box/fields/payment-order.php:31
2786
+ #: inc/admin/views/setup/setup-stripe.php:11
2787
+ msgid "Description"
2788
  msgstr ""
2789
 
2790
+ #: inc/admin/meta-box/fields/list-emails.php:70
2791
  msgid ""
2792
+ "You can enable/disable each email by clicking on the status icon or apply "
2793
+ "status for all emails by clicking these buttons"
2794
  msgstr ""
2795
 
2796
+ #: inc/admin/meta-box/fields/list-emails.php:73
2797
+ msgid "Enable all"
 
2798
  msgstr ""
2799
 
2800
+ #: inc/admin/meta-box/fields/list-emails.php:76
2801
+ msgid "Disable all"
 
 
2802
  msgstr ""
2803
 
2804
+ #: inc/admin/meta-box/fields/payment-order.php:30
2805
+ #: inc/admin/views/tools/course/html-course.php:28
2806
+ #: inc/admin/views/tools/course/html-user.php:28
2807
+ msgid "ID"
2808
  msgstr ""
2809
 
2810
+ #: inc/admin/pointers/pointers.php:66
2811
+ msgid "Course Curriculum"
2812
  msgstr ""
2813
 
2814
+ #: inc/admin/pointers/pointers.php:67
2815
+ msgid ""
2816
+ "Build a course by selecting created lessons and quizzes or adding new ones. "
2817
+ "You can easily sort, edit, shortcut (l and q). With LearnPress, it's never "
2818
+ "been easier."
2819
  msgstr ""
2820
 
2821
+ #: inc/admin/settings/class-lp-settings-advanced.php:22
2822
+ #: inc/admin/settings/class-lp-settings-advanced.php:88
2823
+ msgid "Advanced"
2824
  msgstr ""
2825
 
2826
+ #: inc/admin/settings/class-lp-settings-advanced.php:53
2827
+ msgid "Enable custom colors"
2828
  msgstr ""
2829
 
2830
+ #: inc/admin/settings/class-lp-settings-advanced.php:57
2831
+ msgid "Use color schema for main colors."
2832
  msgstr ""
2833
 
2834
+ #: inc/admin/settings/class-lp-settings-advanced.php:60
2835
+ msgid "Color schema"
2836
  msgstr ""
2837
 
2838
+ #: inc/admin/settings/class-lp-settings-advanced.php:66
2839
+ msgid "Load css"
2840
  msgstr ""
2841
 
2842
+ #: inc/admin/settings/class-lp-settings-advanced.php:70
2843
+ msgid "Load default stylesheet for LearnPress."
 
2844
  msgstr ""
2845
 
2846
+ #: inc/admin/settings/class-lp-settings-advanced.php:73
2847
+ msgid "Debug mode"
2848
  msgstr ""
2849
 
2850
+ #: inc/admin/settings/class-lp-settings-advanced.php:77
2851
+ msgid "Turn on/off debug mode for developer."
 
 
 
2852
  msgstr ""
2853
 
2854
+ #: inc/admin/settings/class-lp-settings-advanced.php:80
2855
+ msgid "Hard cache"
 
 
 
 
 
 
 
 
 
 
 
 
2856
  msgstr ""
2857
 
2858
+ #: inc/admin/settings/class-lp-settings-advanced.php:84
2859
+ msgid "Enable hard cache"
2860
  msgstr ""
2861
 
2862
+ #: inc/admin/settings/class-lp-settings-advanced.php:88
2863
  #, php-format
2864
+ msgid ""
2865
+ "Enable cache for static content such as content and settings of course, "
2866
+ "lesson, quiz. <a href=\"%s\">%s</a>"
2867
  msgstr ""
2868
 
2869
+ #: inc/admin/settings/class-lp-settings-advanced.php:91
2870
+ msgid "Others"
2871
  msgstr ""
2872
 
2873
+ #: inc/admin/settings/class-lp-settings-advanced.php:95
2874
+ msgid "Enable lesson video"
2875
  msgstr ""
2876
 
2877
+ #: inc/admin/settings/class-lp-settings-advanced.php:99
2878
+ msgid ""
2879
+ "When this option is enabled, the first video embed in lesson content will be "
2880
+ "detected and move to the top."
2881
  msgstr ""
2882
 
2883
+ #: inc/admin/settings/class-lp-settings-checkout.php:36
2884
+ #: inc/admin/settings/class-lp-settings-courses.php:66
2885
+ #: inc/admin/settings/class-lp-settings-general.php:16
2886
+ #: inc/admin/settings/class-lp-settings-general.php:40
2887
+ #: inc/admin/settings/class-lp-settings-payments.php:55
2888
+ #: inc/admin/settings/class-lp-settings-profile.php:54
2889
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:26
2890
+ #: inc/custom-post-types/course.php:578 inc/user/class-lp-profile.php:330
2891
+ msgid "General"
2892
  msgstr ""
2893
 
2894
+ #: inc/admin/settings/class-lp-settings-checkout.php:59
2895
+ #: inc/admin/settings/class-lp-settings-payments.php:87
2896
+ msgid "Auto enroll"
2897
  msgstr ""
2898
 
2899
+ #: inc/admin/settings/class-lp-settings-checkout.php:60
2900
+ #: inc/admin/settings/class-lp-settings-payments.php:91
2901
+ msgid "Auto enroll a user after they buy a course."
2902
  msgstr ""
2903
 
2904
+ #: inc/admin/settings/class-lp-settings-checkout.php:66
2905
+ #: inc/admin/settings/class-lp-settings-payments.php:81
2906
+ msgid "Checkout page"
2907
  msgstr ""
2908
 
2909
+ #: inc/admin/settings/class-lp-settings-checkout.php:72
2910
+ msgid "Checkout Endpoints"
2911
  msgstr ""
2912
 
2913
+ #: inc/admin/settings/class-lp-settings-courses.php:24
2914
+ #: inc/custom-post-types/course.php:145
2915
+ msgctxt "slug"
2916
+ msgid "courses"
2917
  msgstr ""
2918
 
2919
+ #: inc/admin/settings/class-lp-settings-courses.php:68
2920
+ #: inc/admin/settings/class-lp-settings-general.php:42
2921
+ #: inc/admin/settings/class-lp-settings-profile.php:56
2922
+ msgid "General settings."
2923
  msgstr ""
2924
 
2925
+ #: inc/admin/settings/class-lp-settings-courses.php:71
2926
+ msgid "Review course before publishing"
2927
  msgstr ""
2928
 
2929
+ #: inc/admin/settings/class-lp-settings-courses.php:72
2930
+ msgid "The course needs to be reviewed by admin before it can be published."
2931
  msgstr ""
2932
 
2933
+ #: inc/admin/settings/class-lp-settings-courses.php:78
2934
+ msgid "Enable editing published course"
2935
  msgstr ""
2936
 
2937
+ #: inc/admin/settings/class-lp-settings-courses.php:79
2938
+ msgid ""
2939
+ "Allow instructors to edit the course which were published without review."
2940
+ "<br /> If this option is disabled, the course status will be changed to "
2941
+ "Pending Review when the instructor update course."
2942
  msgstr ""
2943
 
2944
+ #: inc/admin/settings/class-lp-settings-courses.php:99
2945
+ msgid "Archive"
2946
  msgstr ""
2947
 
2948
+ #: inc/admin/settings/class-lp-settings-courses.php:101
2949
+ msgid "Those settings are applied to archive course page."
2950
  msgstr ""
2951
 
2952
+ #: inc/admin/settings/class-lp-settings-courses.php:104
2953
+ msgid "Courses Page"
2954
  msgstr ""
2955
 
2956
+ #: inc/admin/settings/class-lp-settings-courses.php:110
2957
+ #: inc/admin/settings/class-lp-settings-profile.php:109
2958
+ msgid "Courses per page"
2959
  msgstr ""
2960
 
2961
+ #: inc/admin/settings/class-lp-settings-courses.php:111
2962
+ msgid "Number of courses displayed per page."
2963
  msgstr ""
2964
 
2965
+ #: inc/admin/settings/class-lp-settings-courses.php:126
2966
+ msgid "Single course"
2967
  msgstr ""
2968
 
2969
+ #: inc/admin/settings/class-lp-settings-courses.php:128
2970
+ msgid "Those settings are applied to single course page."
2971
  msgstr ""
2972
 
2973
+ #: inc/admin/settings/class-lp-settings-courses.php:132
2974
+ msgid "Course category base"
2975
  msgstr ""
2976
 
2977
+ #: inc/admin/settings/class-lp-settings-courses.php:138
2978
+ msgid "Course tag base"
2979
  msgstr ""
2980
 
2981
+ #: inc/admin/settings/class-lp-settings-courses.php:144
2982
+ msgid "Single course permalink"
2983
  msgstr ""
2984
 
2985
+ #: inc/admin/settings/class-lp-settings-courses.php:164
2986
+ msgid "Enrolled students number"
 
2987
  msgstr ""
2988
 
2989
+ #: inc/admin/settings/class-lp-settings-courses.php:167
2990
+ msgid ""
2991
+ "Displays a fake numbers of enrolled students. Disable to show the real value."
2992
  msgstr ""
2993
 
2994
+ #: inc/admin/settings/class-lp-settings-courses.php:175
2995
+ msgid "Course thumbnails"
 
2996
  msgstr ""
2997
 
2998
+ #: inc/admin/settings/class-lp-settings-courses.php:177
2999
+ msgid "Thumbnail generation for archive/single course."
 
 
 
 
 
 
 
 
3000
  msgstr ""
3001
 
3002
+ #: inc/admin/settings/class-lp-settings-courses.php:202
3003
+ msgid "Archive course"
 
3004
  msgstr ""
3005
 
3006
+ #: inc/admin/settings/class-lp-settings-courses.php:206
3007
+ msgid "Turn on/off courses extra thumbnail."
 
 
 
 
 
 
 
3008
  msgstr ""
3009
 
3010
+ #: inc/admin/settings/class-lp-settings-courses.php:209
3011
+ msgid "Thumbnail dimensions"
 
 
 
 
 
 
 
 
 
 
3012
  msgstr ""
3013
 
3014
+ #: inc/admin/settings/class-lp-settings-emails.php:64
3015
+ msgid "General options"
 
 
 
 
 
 
 
3016
  msgstr ""
3017
 
3018
+ #: inc/admin/settings/class-lp-settings-emails.php:112
3019
+ msgid "Email options"
3020
  msgstr ""
3021
 
3022
+ #: inc/admin/settings/class-lp-settings-emails.php:114
3023
+ #: inc/admin/views/settings/emails/general.php:17
3024
+ msgid ""
3025
+ "The following options affect the sender (email address and name) used in "
3026
+ "LearnPress emails."
 
 
 
3027
  msgstr ""
3028
 
3029
+ #: inc/admin/settings/class-lp-settings-emails.php:117
3030
+ msgid "From name"
3031
  msgstr ""
3032
 
3033
+ #: inc/admin/settings/class-lp-settings-emails.php:123
3034
+ msgid "From email"
3035
  msgstr ""
3036
 
3037
+ #: inc/admin/settings/class-lp-settings-emails.php:129
3038
+ msgid "Send email in background"
3039
  msgstr ""
3040
 
3041
+ #: inc/admin/settings/class-lp-settings-emails.php:133
3042
+ msgid "Defer transaction email and runs in background."
 
 
3043
  msgstr ""
3044
 
3045
+ #: inc/admin/settings/class-lp-settings-emails.php:136
3046
+ msgid "Email template"
3047
  msgstr ""
3048
 
3049
+ #: inc/admin/settings/class-lp-settings-emails.php:140
3050
+ msgid "Default Email Content"
3051
  msgstr ""
3052
 
3053
+ #: inc/admin/settings/class-lp-settings-emails.php:144
 
3054
  msgid ""
3055
+ "Default email content type for all emails that set content type is "
3056
+ "<strong>General Settings</strong>."
3057
  msgstr ""
3058
 
3059
+ #: inc/admin/settings/class-lp-settings-emails.php:146
3060
+ msgid "Plain Text"
3061
  msgstr ""
3062
 
3063
+ #: inc/admin/settings/class-lp-settings-emails.php:151
3064
+ #: inc/admin/views/settings/emails/general.php:40
3065
+ msgid "Header image"
3066
  msgstr ""
3067
 
3068
+ #: inc/admin/settings/class-lp-settings-emails.php:156
3069
+ #: inc/admin/views/settings/emails/general.php:43
3070
+ msgid "The image will be displayed in the top of the email."
3071
  msgstr ""
3072
 
3073
+ #: inc/admin/settings/class-lp-settings-emails.php:159
3074
+ #: inc/admin/views/settings/emails/general.php:47
3075
+ msgid "Footer text"
3076
  msgstr ""
3077
 
3078
+ #: inc/admin/settings/class-lp-settings-emails.php:163
3079
+ msgid "The texts display in the bottom of email."
3080
  msgstr ""
3081
 
3082
+ #: inc/admin/settings/class-lp-settings-general.php:45
3083
+ msgid "Logout redirect"
 
3084
  msgstr ""
3085
 
3086
+ #: inc/admin/settings/class-lp-settings-general.php:49
3087
+ msgid "The page where user will be redirected to after logging out."
3088
  msgstr ""
3089
 
3090
+ #: inc/admin/settings/class-lp-settings-general.php:54
3091
+ msgid "Setting up your currency unit and its formatting."
3092
  msgstr ""
3093
 
3094
+ #: inc/admin/settings/class-lp-settings-general.php:65
3095
+ #: inc/admin/views/setup/steps/currency.php:37
3096
+ msgid "Currency position"
3097
  msgstr ""
3098
 
3099
+ #: inc/admin/settings/class-lp-settings-general.php:72
3100
+ #: inc/admin/views/setup/steps/currency.php:51
3101
+ msgid "Thousands Separator"
3102
  msgstr ""
3103
 
3104
+ #: inc/admin/settings/class-lp-settings-general.php:78
3105
+ #: inc/admin/views/setup/steps/currency.php:56
3106
+ msgid "Decimals Separator"
3107
+ msgstr ""
3108
 
3109
+ #: inc/admin/settings/class-lp-settings-general.php:84
3110
+ #: inc/admin/views/setup/steps/currency.php:61
3111
+ msgid "Number of Decimals"
3112
  msgstr ""
3113
 
3114
+ #: inc/admin/settings/class-lp-settings-pages.php:16
3115
+ msgid "Pages"
 
 
3116
  msgstr ""
3117
 
3118
+ #: inc/admin/settings/class-lp-settings-pages.php:28
3119
+ msgid "Become a teacher"
3120
  msgstr ""
3121
 
3122
+ #: inc/admin/settings/class-lp-settings-pages.php:39
3123
+ msgid "Become a teacher page"
3124
  msgstr ""
3125
 
3126
+ #: inc/admin/settings/class-lp-settings-pages.php:45
3127
+ msgid "Instructors registration"
3128
  msgstr ""
3129
 
3130
+ #: inc/admin/settings/class-lp-settings-pages.php:46
3131
+ msgid "Create option for instructors registration."
3132
  msgstr ""
3133
 
3134
+ #: inc/admin/settings/class-lp-settings-payments.php:28
3135
+ #: inc/admin/settings/class-lp-settings-payments.php:143
3136
+ msgid "Payments"
3137
  msgstr ""
3138
 
3139
+ #: inc/admin/settings/class-lp-settings-payments.php:94
3140
+ msgid "Enable guest checkout"
3141
  msgstr ""
3142
 
3143
+ #: inc/admin/settings/class-lp-settings-payments.php:98
3144
+ msgid "Enable user buy course as a Guest."
3145
  msgstr ""
3146
 
3147
+ #: inc/admin/settings/class-lp-settings-payments.php:101
3148
+ msgid "Enable login in checkout"
 
3149
  msgstr ""
3150
 
3151
+ #: inc/admin/settings/class-lp-settings-payments.php:105
3152
+ msgid "Enable login form in checkout page."
3153
  msgstr ""
3154
 
3155
+ #: inc/admin/settings/class-lp-settings-payments.php:108
3156
+ msgid "Enable registration in checkout"
3157
  msgstr ""
3158
 
3159
+ #: inc/admin/settings/class-lp-settings-payments.php:112
3160
+ msgid "Enable registration form in checkout page."
3161
  msgstr ""
3162
 
3163
+ #: inc/admin/settings/class-lp-settings-payments.php:115
3164
+ msgid "Terms & conditions page"
 
 
3165
  msgstr ""
3166
 
3167
+ #: inc/admin/settings/class-lp-settings-payments.php:127
3168
+ msgid "Endpoints"
3169
  msgstr ""
3170
 
3171
+ #: inc/admin/settings/class-lp-settings-payments.php:134
3172
+ msgid "lp-order-received"
3173
+ msgstr ""
3174
+
3175
+ #: inc/admin/settings/class-lp-settings-payments.php:136
3176
+ #, php-format
3177
  msgid ""
3178
+ "Unique slug in checkout page to displays order details. Example: http://"
3179
+ "example.com/lp-checkout/%s/"
3180
  msgstr ""
3181
 
3182
+ #: inc/admin/settings/class-lp-settings-payments.php:145
3183
+ msgid ""
3184
+ "All available payments are listed here. Drag and drop the payments to re-"
3185
+ "order."
3186
  msgstr ""
3187
 
3188
+ #: inc/admin/settings/class-lp-settings-payments.php:148
3189
+ msgid "Payment order"
3190
  msgstr ""
3191
 
3192
+ #: inc/admin/settings/class-lp-settings-profile.php:59
3193
+ msgid "Profile page"
 
3194
  msgstr ""
3195
 
3196
+ #: inc/admin/settings/class-lp-settings-profile.php:65
3197
+ msgid "Add link to admin bar"
 
3198
  msgstr ""
3199
 
3200
+ #: inc/admin/settings/class-lp-settings-profile.php:71
3201
+ msgid "Text link"
 
 
 
 
3202
  msgstr ""
3203
 
3204
+ #: inc/admin/settings/class-lp-settings-profile.php:76
3205
+ msgid "If empty, please enter the name of the page used for profile."
 
3206
  msgstr ""
3207
 
3208
+ #: inc/admin/settings/class-lp-settings-profile.php:89
3209
+ msgid "Target link"
 
3210
  msgstr ""
3211
 
3212
+ #: inc/admin/settings/class-lp-settings-profile.php:94
3213
+ msgid "Open in same the window"
 
3214
  msgstr ""
3215
 
3216
+ #: inc/admin/settings/class-lp-settings-profile.php:95
3217
+ msgid "Open in a new window"
 
 
 
 
3218
  msgstr ""
3219
 
3220
+ #: inc/admin/settings/class-lp-settings-profile.php:114
3221
+ msgid "Number of courses displayed per page in profile."
3222
  msgstr ""
3223
 
3224
+ #: inc/admin/settings/class-lp-settings-profile.php:117
3225
+ msgid "Enable login form"
 
3226
  msgstr ""
3227
 
3228
+ #: inc/admin/settings/class-lp-settings-profile.php:121
3229
+ msgid "Enable login from profile if the user is not logged in."
 
3230
  msgstr ""
3231
 
3232
+ #: inc/admin/settings/class-lp-settings-profile.php:124
3233
+ msgid "Enable register form"
3234
  msgstr ""
3235
 
3236
+ #: inc/admin/settings/class-lp-settings-profile.php:128
3237
+ msgid "Enable register from profile if the user is not logged in."
3238
  msgstr ""
3239
 
3240
+ #: inc/admin/settings/class-lp-settings-profile.php:136
3241
+ msgid "Sub Tab Slugs"
3242
  msgstr ""
3243
 
3244
+ #: inc/admin/settings/class-lp-settings-profile.php:138
3245
+ msgid "The slugs of tabs display in profile page. Each tab should be unique."
3246
  msgstr ""
3247
 
3248
+ #: inc/admin/settings/class-lp-settings-profile.php:141
3249
+ #: inc/admin/views/updates/0.9/step-upgraded.php:16
3250
+ #: inc/libraries/meta-box/inc/about/about.php:79
3251
+ #: inc/user/class-lp-profile.php:293
3252
+ msgid "Dashboard"
3253
  msgstr ""
3254
 
3255
+ #: inc/admin/settings/class-lp-settings-profile.php:146
3256
+ #: inc/admin/settings/class-lp-settings-profile.php:154
3257
+ #: inc/admin/settings/class-lp-settings-profile.php:162
3258
+ #: inc/admin/settings/class-lp-settings-profile.php:170
3259
+ #: inc/admin/settings/class-lp-settings-profile.php:178
3260
+ #: inc/admin/settings/class-lp-settings-profile.php:197
3261
+ #: inc/admin/settings/class-lp-settings-profile.php:205
3262
+ #: inc/admin/settings/class-lp-settings-profile.php:213
3263
+ #: inc/admin/settings/class-lp-settings-profile.php:221
3264
+ #, php-format
3265
+ msgid "Example link is %s"
3266
  msgstr ""
3267
 
3268
+ #: inc/admin/settings/class-lp-settings-profile.php:157
3269
+ #: inc/admin/settings/class-lp-settings-profile.php:291
3270
+ #: inc/custom-post-types/quiz.php:90 inc/custom-post-types/quiz.php:91
3271
+ #: inc/custom-post-types/quiz.php:95 inc/user/class-lp-profile.php:306
3272
+ #: templates/widgets/course-info/default.php:34
3273
+ msgid "Quizzes"
3274
  msgstr ""
3275
 
3276
+ #: inc/admin/settings/class-lp-settings-profile.php:173
3277
+ #: inc/admin/views/meta-boxes/order/details.php:36
3278
+ #: inc/user/class-lp-profile.php:318
3279
+ msgid "Order details"
 
 
 
3280
  msgstr ""
3281
 
3282
+ #: inc/admin/settings/class-lp-settings-profile.php:187
3283
+ msgid "Settings Tab"
3284
  msgstr ""
3285
 
3286
+ #: inc/admin/settings/class-lp-settings-profile.php:189
3287
+ msgid "The slugs of sections in settings tab. Each slugs should be unique."
 
 
 
3288
  msgstr ""
3289
 
3290
+ #: inc/admin/settings/class-lp-settings-profile.php:192
3291
+ msgid "Slug"
 
 
 
3292
  msgstr ""
3293
 
3294
+ #: inc/admin/settings/class-lp-settings-profile.php:200
3295
+ msgid "Basic Information"
3296
  msgstr ""
3297
 
3298
+ #: inc/admin/settings/class-lp-settings-profile.php:208
3299
+ #: inc/admin/settings/class-lp-settings-profile.php:229
3300
+ #: inc/user/class-lp-profile.php:348
3301
+ msgid "Avatar"
3302
  msgstr ""
3303
 
3304
+ #: inc/admin/settings/class-lp-settings-profile.php:216
3305
+ msgid "Change Password"
3306
  msgstr ""
3307
 
3308
+ #: inc/admin/settings/class-lp-settings-profile.php:231
3309
+ msgid "User avatar settings."
3310
  msgstr ""
3311
 
3312
+ #: inc/admin/settings/class-lp-settings-profile.php:234
3313
+ msgid "Enable custom avatar"
 
 
 
 
 
 
 
 
 
 
 
3314
  msgstr ""
3315
 
3316
+ #: inc/admin/settings/class-lp-settings-profile.php:240
3317
+ msgid "Size"
 
 
 
 
 
 
 
3318
  msgstr ""
3319
 
3320
+ #: inc/admin/settings/class-lp-settings-profile.php:254
3321
+ msgid "The height and width of avatar should be equal."
 
 
 
 
 
 
 
3322
  msgstr ""
3323
 
3324
+ #: inc/admin/settings/class-lp-settings-profile.php:262
3325
+ #: inc/user/class-lp-profile.php:357
3326
+ msgid "Publicity"
 
 
 
 
 
3327
  msgstr ""
3328
 
3329
+ #: inc/admin/settings/class-lp-settings-profile.php:264
3330
+ msgid "Publicity and sharing user profile content."
 
 
 
 
 
 
 
3331
  msgstr ""
3332
 
3333
+ #: inc/admin/settings/class-lp-settings-profile.php:267
3334
+ #: templates/profile/tabs/settings/publicity.php:38
3335
+ msgid "My dashboard"
 
 
 
 
 
 
 
3336
  msgstr ""
3337
 
3338
+ #: inc/admin/settings/class-lp-settings-profile.php:271
3339
+ #: templates/profile/tabs/settings/publicity.php:43
3340
+ msgid ""
3341
+ "Public user profile content, if this option is turn off then other sections "
3342
+ "in profile also become invisible."
3343
  msgstr ""
3344
 
3345
+ #: inc/admin/settings/class-lp-settings-profile.php:278
3346
+ msgid "Public user profile courses."
3347
+ msgstr ""
3348
+
3349
+ #: inc/admin/settings/class-lp-settings-profile.php:278
3350
+ msgid "Allow user to turn on/off sharing profile course option"
3351
+ msgstr ""
3352
+
3353
+ #: inc/admin/settings/class-lp-settings-profile.php:295
3354
+ msgid "Public user profile quizzes."
3355
+ msgstr ""
3356
+
3357
+ #: inc/admin/settings/class-lp-settings-profile.php:295
3358
+ msgid "Allow user to turn on/off sharing profile quizzes option"
3359
+ msgstr ""
3360
+
3361
+ #: inc/admin/settings/email-groups/class-lp-settings-become-teacher-emails.php:23
3362
+ msgid "Become an Instructor"
3363
+ msgstr ""
3364
+
3365
+ #: inc/admin/settings/email-groups/class-lp-settings-cancelled-order-emails.php:24
3366
+ msgid "Cancelled Order"
3367
+ msgstr ""
3368
+
3369
+ #: inc/admin/settings/email-groups/class-lp-settings-completed-order-emails.php:23
3370
+ msgid "Completed Order"
3371
+ msgstr ""
3372
+
3373
+ #: inc/admin/settings/email-groups/class-lp-settings-course-review-emails.php:23
3374
+ msgid "Review Course"
3375
+ msgstr ""
3376
+
3377
+ #: inc/admin/settings/email-groups/class-lp-settings-enrolled-course-emails.php:26
3378
+ msgid "Enrolled Course"
3379
+ msgstr ""
3380
+
3381
+ #: inc/admin/settings/email-groups/class-lp-settings-finished-course-emails.php:26
3382
+ msgid "Finished Course"
3383
+ msgstr ""
3384
+
3385
+ #: inc/admin/settings/email-groups/class-lp-settings-new-order-emails.php:24
3386
+ msgid "New Order"
3387
+ msgstr ""
3388
+
3389
+ #: inc/admin/settings/email-groups/class-lp-settings-processing-order-emails.php:22
3390
+ msgid "Processing Order"
3391
+ msgstr ""
3392
+
3393
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:16
3394
+ msgid "LearnPress Add-ons"
3395
+ msgstr ""
3396
+
3397
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:28
3398
  #, php-format
3399
+ msgid "Installed (%d)"
3400
  msgstr ""
3401
 
3402
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:29
3403
+ #, php-format
3404
+ msgid "Get more (%d)"
3405
+ msgstr ""
3406
+
3407
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:30
3408
+ #, php-format
3409
+ msgid "Themes (%d)"
3410
+ msgstr ""
3411
+
3412
+ #: inc/admin/sub-menus/class-lp-submenu-addons.php:57
3413
+ msgid "Search..."
3414
+ msgstr ""
3415
+
3416
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:15
3417
+ msgid "LearnPress Settings"
3418
+ msgstr ""
3419
+
3420
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:63
3421
  #: inc/emails/class-lp-email-new-course.php:28
3422
  #: inc/emails/class-lp-email-new-course.php:35
3423
  msgid "New course"
3424
  msgstr ""
3425
 
3426
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:95
3427
+ msgid "Save settings"
3428
  msgstr ""
3429
 
3430
+ #: inc/admin/sub-menus/class-lp-submenu-settings.php:99
3431
+ msgid "Do you want to restore all settings to default?"
3432
+ msgstr ""
3433
+
3434
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:15
3435
+ msgid "Statistics"
3436
+ msgstr ""
3437
+
3438
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:16
3439
+ msgid "LearnPress Statistics"
3440
+ msgstr ""
3441
+
3442
+ #: inc/admin/sub-menus/class-lp-submenu-statistics.php:27
3443
+ msgid "Users"
3444
+ msgstr ""
3445
+
3446
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:13
3447
+ msgid "Tools"
3448
+ msgstr ""
3449
+
3450
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:14
3451
+ msgid "LearnPress Tools"
3452
+ msgstr ""
3453
+
3454
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:20
3455
+ msgid "Template"
3456
+ msgstr ""
3457
+
3458
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:21
3459
+ msgid "Database"
3460
+ msgstr ""
3461
+
3462
+ #: inc/admin/sub-menus/class-lp-submenu-tools.php:23
3463
+ msgid "Cache"
3464
+ msgstr ""
3465
+
3466
+ #: inc/admin/views/html-admin-notice-templates.php:31
3467
+ #, php-format
3468
  msgid ""
3469
+ "There is a new update of LearnPress. You may need to update your theme "
3470
+ "<strong>(%s)</strong> to avoid outdated template files."
3471
  msgstr ""
3472
 
3473
+ #: inc/admin/views/html-admin-notice-templates.php:32
3474
+ #, php-format
3475
+ msgid ""
3476
+ "This is not a bug, don't worry. Read more about Outdated template files "
3477
+ "notice <a href=\"%s\" target=\"_blank\">here</a>."
3478
  msgstr ""
3479
 
3480
+ #: inc/admin/views/html-admin-notice-templates.php:40
3481
+ msgid "View list of outdated templates"
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:771
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:772
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:910 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:634
5808
+ msgid "Processing..."
5809
  msgstr ""
5810
 
5811
+ #: inc/custom-post-types/order.php:651 inc/custom-post-types/order.php:654
5812
+ msgid "Apply"
5813
  msgstr ""
5814
 
5815
+ #: inc/custom-post-types/order.php:692 inc/custom-post-types/order.php:909
5816
+ msgid "View Order"
5817
  msgstr ""
5818
 
5819
+ #: inc/custom-post-types/order.php:700
5820
+ msgid "View child orders"
5821
  msgstr ""
5822
 
5823
+ #: inc/custom-post-types/order.php:768 inc/custom-post-types/order.php:905
5824
+ #: templates/profile/tabs/orders/list.php:32
5825
+ msgid "Order"
 
 
 
 
 
 
 
 
5826
  msgstr ""
5827
 
5828
+ #: inc/custom-post-types/order.php:769
5829
+ msgid "Student"
5830
  msgstr ""
5831
 
5832
+ #: inc/custom-post-types/order.php:821 inc/order/class-lp-order.php:496
5833
+ msgid "(Guest)"
5834
  msgstr ""
5835
 
5836
+ #: inc/custom-post-types/order.php:851
5837
+ #: templates/checkout/order-received.php:43
5838
+ msgid "Course does not exist"
5839
  msgstr ""
5840
 
5841
+ #: inc/custom-post-types/order.php:853
5842
+ msgid "Deleted"
5843
  msgstr ""
5844
 
5845
+ #: inc/custom-post-types/order.php:868
5846
+ #: templates/checkout/order-received.php:57
5847
+ msgid "(No item)"
5848
  msgstr ""
5849
 
5850
+ #: inc/custom-post-types/order.php:876
5851
+ #, php-format
5852
+ msgid "Pay via <strong>%s</strong>"
5853
  msgstr ""
5854
 
5855
+ #: inc/custom-post-types/order.php:906
5856
+ msgid "Add New Order"
5857
  msgstr ""
5858
 
5859
+ #: inc/custom-post-types/order.php:907 inc/custom-post-types/order.php:990
5860
+ #: templates/order/order-details.php:23
5861
+ msgid "Order Details"
5862
  msgstr ""
5863
 
5864
+ #: inc/custom-post-types/order.php:911
5865
+ msgid "Update Order"
5866
  msgstr ""
5867
 
5868
+ #: inc/custom-post-types/order.php:912
5869
+ msgid "Search Orders"
5870
  msgstr ""
5871
 
5872
+ #: inc/custom-post-types/order.php:913
5873
+ msgid "No order found"
 
5874
  msgstr ""
5875
 
5876
+ #: inc/custom-post-types/order.php:914
5877
+ msgid "No order found in Trash"
 
 
 
5878
  msgstr ""
5879
 
5880
+ #: inc/custom-post-types/order.php:991
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:499
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:442
7425
+ msgid "Course is not exists or does not contain the quiz"
7426
  msgstr ""
7427
 
7428
+ #: inc/user/abstract-lp-user.php:447
7429
+ msgid "User has already finished course of this quiz"
 
7430
  msgstr ""
7431
 
7432
+ #: inc/user/abstract-lp-user.php:453
7433
+ msgid "User has completed quiz"
7434
  msgstr ""
7435
 
7436
+ #: inc/user/abstract-lp-user.php:494
7437
+ msgid "Course does not exist or does not contain the quiz."
7438
  msgstr ""
7439
 
7440
+ #: inc/user/abstract-lp-user.php:499
7441
+ msgid "You can not redo a quiz in a finished course."
7442
  msgstr ""
7443
 
7444
+ #: inc/user/abstract-lp-user.php:505
7445
+ #, php-format
7446
+ msgid "%s::%s - User has not completed quiz."
 
7447
  msgstr ""
7448
 
7449
+ #: inc/user/abstract-lp-user.php:1002
7450
+ msgid "You can not hint question."
7451
  msgstr ""
7452
 
7453
+ #: inc/user/abstract-lp-user.php:1254 inc/user/abstract-lp-user.php:1671
7454
+ #: inc/user/abstract-lp-user.php:1683
7455
+ #, php-format
7456
+ msgid "The role %s for user doesn't exist"
7457
  msgstr ""
7458
 
7459
+ #: inc/user/abstract-lp-user.php:1933
7460
+ msgid "You can not complete a preview lesson."
7461
  msgstr ""
7462
 
7463
+ #: inc/user/abstract-lp-user.php:1939
7464
+ msgid "You have to enroll course to complete lesson."
7465
  msgstr ""
7466
 
7467
+ #: inc/user/abstract-lp-user.php:1950
7468
+ msgid "You have already completed this lesson."
 
 
 
7469
  msgstr ""
7470
 
7471
+ #: inc/user/abstract-lp-user.php:2377 inc/user/abstract-lp-user.php:2381
7472
+ msgid "Failed to enroll course."
7473
  msgstr ""
7474
 
7475
+ #: inc/user/abstract-lp-user.php:2385
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:547
7553
+ #: inc/user-item/class-lp-user-item.php:558
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:32
7929
+ msgctxt "quiz-question-navigation"
7930
+ msgid "Prev"
7931
  msgstr ""
7932
 
7933
+ #: templates/content-quiz/buttons/nav.php:53
7934
+ msgctxt "quiz-question-navigation"
7935
+ msgid "Next"
7936
  msgstr ""
7937
 
7938
+ #: templates/content-quiz/buttons/nav.php:74
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.3
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.4
8
  Author URI: http://thimpress.com
9
  Requires at least: 3.8
10
  Tested up to: 5.0.2
readme.txt CHANGED
@@ -1,16 +1,16 @@
1
- === LearnPress - WordPress LMS Plugin ===
2
  Contributors: thimpress, tunnhn, phonglq.foobla, thongta, kendy73, leehld
3
  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.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  A WordPress LMS Plugin to create WordPress Learning Management System. Turn your WP to LMS WordPress with Courses, Lessons, Quizzes & more.
12
 
13
- == Description ==
14
 
15
  **<a href="http://thimpress.com/learnpress" target="_blank">WordPress LMS Plugin</a>** - LearnPress is a comprehensive *WordPress LMS Plugin* for WordPress, just like WordPress Moodle or Moodle for WordPress if you know what Moodle is. This is one of the best WordPress LMS Plugins can be used to easily create & sell courses online. Each course curriculum can be made with lessons & quizzes which can be managed with easy-to-use user interface. With this WordPress LMS plugin, you can quickly and easily create education, online school, online-course websites with no coding-knowledge required.
16
 
@@ -44,37 +44,37 @@ Are you looking for *best LMS WordPress plugin*?
44
 
45
  ###LearnPress features###
46
 
47
- **LearnPress - WordPress LMS Plugin works with your theme**
48
- We create LearnPress LMS Plugin to work with any WordPress themes.
49
 
50
- **LearnPress supports WordPress Multisite**
51
  Create WordPress based LMS as multiple sites.
52
 
53
- **Create course**
54
  LearnPress LMS Plugin provide an excellent user interface to create a course with options you need. You can find it easy to make a full curriculum layout as well as edit and maintain it.
55
- You can also export course and import to other website which also using LearnPress. We will provide the feature allow you to import course from other WordPress LMS plugins soon.
56
 
57
- **Manage course**
58
- With the course you've created, you can share it, manage it, watch statistic about number of student, its trend, etc.
59
 
60
- **Sell course**
61
  LearnPress is free but it still allow you to sell courses you create with support many billing method such as Paypal, WooCommerce, Stripe, etc.
62
 
63
- **Communicate with your students**
64
- With BuddyPress support, LearnPress will help you to communicate with your student or instructor via WordPress forum. Learning is not only on your own. Study, make friends and have fun.
65
 
66
- **LearnPress provide a bunch of add-on**
67
- Add-on is used to providing extra features for LearnPress and you can also write it.
68
 
69
- **LearnPress is free and always will be**
70
- Education should be free and we want you to bring it to as many people as you can. Therefore, we create LearnPress as a tool for you to create course and share it. We'll continue developing it as long as we can and make it better and better.
71
 
72
- **LearnPress is actively developed**
73
- We are developing and improving LearnPress day by day and bringing new features to you cos we want LearnPress to become the **best WordPress LMS plugin**.
74
 
75
- <a href="http://docs.thimpress.com/learnpress" target="_blank">LearnPress WordPress LMS Plugin Documentation</a>
76
 
77
- ###Free add-ons for LearnPress WordPress LMS Plugin###
78
 
79
  - [LearnPress Wishlist](https://wordpress.org/plugins/learnpress-wishlist) - add courses to a wishlist for students.
80
  - [LearnPress Course Review](https://wordpress.org/plugins/learnpress-course-review) - review course for enrolled students.
@@ -85,7 +85,7 @@ We are developing and improving LearnPress day by day and bringing new features
85
  - [LearnPress Offline Payment](https://wordpress.org/plugins/learnpress-offline-payment) - help you to manually create order for offline payment instead of paying via any payment gateways to sell course.
86
  - [LearnPress Fill In Blank](https://wordpress.org/plugins/learnpress-fill-in-blank) - Fill in Blank question type for LearnPress WordPress LMS Plugin.
87
 
88
- ###Premium add-ons for LearnPress WordPress LMS Plugin###
89
 
90
  - [Assignments add-on for LearnPress](https://thimpress.com/product/assignments-add-on-for-learnpress/) - Newly released - Allowing instructors to give assignments, homework for students and they can grade the students' work later on. The Assignments add-on is a great supplement to LearnPress and will make your course more interactive.
91
  - [myCRED add-on for LearnPress](http://thimpress.com/product/mycred-add-on-for-learnpress/) - adding myCRED support for LearnPress WordPress LMS plugin, you can add point system to your eLearning WordPress site using LearnPress + myCRED add-on.
@@ -149,45 +149,45 @@ Any suggestions for this WordPress LMS Plugin? Send us <a href="http://thimpress
149
 
150
  == Installation ==
151
 
152
- **From your WordPress dashboard**
153
- 1. Visit 'Plugin > Add new'.
154
- 2. Search for 'LearnPress'.
155
- 3. Activate LearnPress from your Plugins page.
156
 
157
- **From WordPress.org**
158
- 1. Search, select and download LearnPress.
159
- 2. Activate the plugin through the 'Plugins' menu in WordPress Dashboard.
160
 
161
- == Frequently Asked Questions ==
162
 
163
- = What is LearnPress? =
164
- LearnPress is a plugin to create a LMS website, to spread out course, or sell course.
165
 
166
- = Where can I find LearnPress documentation and user guides? =
167
- If you want to use LearnPress to build a Learning Management Website, please refer to our user guides in <a href="http://docs.thimpress.com/learnpress/" target="_blank">LearnPress official site.</a>
168
- And if you want to extending or theming LearnPress, see our <a href="https://github.com/LearnPress/LearnPress/wiki" target="_blank">Wiki.</a>
169
 
170
- = Where can I get support or talk to other users? =
171
  If you get troubles when using LearnPress you can ask for help on the <a href="https://wordpress.org/support/plugin/learnpress">LearnPress Support Forum</a> or <a href="https://www.facebook.com/groups/learnpress/" target="_blank">join the private Facebook group</a>. You could share your feedback about LearnPress. And let us know which feature you would like us to build next.
172
 
173
- For help with premium add-ons, use our <a href="https://thimpress.com/forums/forum/learnpress">helpdesk</a>.
174
 
175
- = Where can I ask for new features or suggest ideas or themes for LearnPress? =
176
- You can send us your ideas through form <a href="http://thimpress.com/learnpress-suggestion/" target="_blank">here.</a>
177
 
178
- = Where can I report bugs or contribute to the project? =
179
- You can also report bugs on LearnPress Support Forum or LearnPress <a href="https://github.com/LearnPress/LearnPress" target="_blank">Github Repository</a>.
180
 
181
- = Where can I find the REST API documentation? =
182
- We will provide documentation about LearnPress REST API really soon.
183
 
184
- = LearnPress is great, can I contribute to it? =
185
- Yes, you can and we appreciate it. Join in our <a href="https://github.com/LearnPress/LearnPress" target="_blank">Github Repository</a>.
186
 
187
- **LearnPress Translation project**
188
- https://www.transifex.com/projects/p/learnpress/
189
 
190
- == Screenshots ==
191
 
192
  1. Curriculum - Drag and Drop lesson or quiz.
193
  2. Lesson content.
@@ -196,9 +196,17 @@ https://www.transifex.com/projects/p/learnpress/
196
  5. Quiz settings.
197
  6. Email settings.
198
  7. Demo course page.
199
- 8. Add-ons of LearnPress.
200
 
201
  == Changelog ==
 
 
 
 
 
 
 
 
202
  = 3.2.3 =
203
  ~ Removed un-security code in PP library.
204
  ~ Fixed get curriculum item types doesn't work properly.
@@ -274,6 +282,6 @@ https://www.transifex.com/projects/p/learnpress/
274
  = 0.9.19 =
275
  In this version, we have changed a little bit about LearnPress Plugin directory structure and moved all add-ons to become independence plugins. If you face any problems relate to add-ons, please completely remove old version and re-install LearnPress. It does not affect your current data. Thank you.
276
 
277
- == Other note ==
278
- <a href="http://docs.thimpress.com/learnpress" target="_blank">Documentation</a> is available in ThimPress site.
279
  <a href="https://github.com/LearnPress/LearnPress/" target="_blank">LearnPress github repo.</a>
1
+ === LearnPress - WordPress LMS Plugin ===
2
  Contributors: thimpress, tunnhn, phonglq.foobla, thongta, kendy73, leehld
3
  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.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  A WordPress LMS Plugin to create WordPress Learning Management System. Turn your WP to LMS WordPress with Courses, Lessons, Quizzes & more.
12
 
13
+ == Description ==
14
 
15
  **<a href="http://thimpress.com/learnpress" target="_blank">WordPress LMS Plugin</a>** - LearnPress is a comprehensive *WordPress LMS Plugin* for WordPress, just like WordPress Moodle or Moodle for WordPress if you know what Moodle is. This is one of the best WordPress LMS Plugins can be used to easily create & sell courses online. Each course curriculum can be made with lessons & quizzes which can be managed with easy-to-use user interface. With this WordPress LMS plugin, you can quickly and easily create education, online school, online-course websites with no coding-knowledge required.
16
 
44
 
45
  ###LearnPress features###
46
 
47
+ **LearnPress - WordPress LMS Plugin works with your theme**
48
+ We create LearnPress LMS Plugin to work with any WordPress themes.
49
 
50
+ **LearnPress supports WordPress Multisite**
51
  Create WordPress based LMS as multiple sites.
52
 
53
+ **Create course**
54
  LearnPress LMS Plugin provide an excellent user interface to create a course with options you need. You can find it easy to make a full curriculum layout as well as edit and maintain it.
55
+ You can also export course and import to other website which also using LearnPress. We will provide the feature allow you to import course from other WordPress LMS plugins soon.
56
 
57
+ **Manage course**
58
+ With the course you've created, you can share it, manage it, watch statistic about number of student, its trend, etc.
59
 
60
+ **Sell course**
61
  LearnPress is free but it still allow you to sell courses you create with support many billing method such as Paypal, WooCommerce, Stripe, etc.
62
 
63
+ **Communicate with your students**
64
+ With BuddyPress support, LearnPress will help you to communicate with your student or instructor via WordPress forum. Learning is not only on your own. Study, make friends and have fun.
65
 
66
+ **LearnPress provide a bunch of add-on**
67
+ Add-on is used to providing extra features for LearnPress and you can also write it.
68
 
69
+ **LearnPress is free and always will be**
70
+ Education should be free and we want you to bring it to as many people as you can. Therefore, we create LearnPress as a tool for you to create course and share it. We'll continue developing it as long as we can and make it better and better.
71
 
72
+ **LearnPress is actively developed**
73
+ We are developing and improving LearnPress day by day and bringing new features to you cos we want LearnPress to become the **best WordPress LMS plugin**.
74
 
75
+ <a href="http://docs.thimpress.com/learnpress" target="_blank">LearnPress WordPress LMS Plugin Documentation</a>
76
 
77
+ ###Free add-ons for LearnPress WordPress LMS Plugin###
78
 
79
  - [LearnPress Wishlist](https://wordpress.org/plugins/learnpress-wishlist) - add courses to a wishlist for students.
80
  - [LearnPress Course Review](https://wordpress.org/plugins/learnpress-course-review) - review course for enrolled students.
85
  - [LearnPress Offline Payment](https://wordpress.org/plugins/learnpress-offline-payment) - help you to manually create order for offline payment instead of paying via any payment gateways to sell course.
86
  - [LearnPress Fill In Blank](https://wordpress.org/plugins/learnpress-fill-in-blank) - Fill in Blank question type for LearnPress WordPress LMS Plugin.
87
 
88
+ ###Premium add-ons for LearnPress WordPress LMS Plugin###
89
 
90
  - [Assignments add-on for LearnPress](https://thimpress.com/product/assignments-add-on-for-learnpress/) - Newly released - Allowing instructors to give assignments, homework for students and they can grade the students' work later on. The Assignments add-on is a great supplement to LearnPress and will make your course more interactive.
91
  - [myCRED add-on for LearnPress](http://thimpress.com/product/mycred-add-on-for-learnpress/) - adding myCRED support for LearnPress WordPress LMS plugin, you can add point system to your eLearning WordPress site using LearnPress + myCRED add-on.
149
 
150
  == Installation ==
151
 
152
+ **From your WordPress dashboard**
153
+ 1. Visit 'Plugin > Add new'.
154
+ 2. Search for 'LearnPress'.
155
+ 3. Activate LearnPress from your Plugins page.
156
 
157
+ **From WordPress.org**
158
+ 1. Search, select and download LearnPress.
159
+ 2. Activate the plugin through the 'Plugins' menu in WordPress Dashboard.
160
 
161
+ == Frequently Asked Questions ==
162
 
163
+ = What is LearnPress? =
164
+ LearnPress is a plugin to create a LMS website, to spread out course, or sell course.
165
 
166
+ = Where can I find LearnPress documentation and user guides? =
167
+ If you want to use LearnPress to build a Learning Management Website, please refer to our user guides in <a href="http://docs.thimpress.com/learnpress/" target="_blank">LearnPress official site.</a>
168
+ And if you want to extending or theming LearnPress, see our <a href="https://github.com/LearnPress/LearnPress/wiki" target="_blank">Wiki.</a>
169
 
170
+ = Where can I get support or talk to other users? =
171
  If you get troubles when using LearnPress you can ask for help on the <a href="https://wordpress.org/support/plugin/learnpress">LearnPress Support Forum</a> or <a href="https://www.facebook.com/groups/learnpress/" target="_blank">join the private Facebook group</a>. You could share your feedback about LearnPress. And let us know which feature you would like us to build next.
172
 
173
+ For help with premium add-ons, use our <a href="https://thimpress.com/forums/forum/learnpress">helpdesk</a>.
174
 
175
+ = Where can I ask for new features or suggest ideas or themes for LearnPress? =
176
+ You can send us your ideas through form <a href="http://thimpress.com/learnpress-suggestion/" target="_blank">here.</a>
177
 
178
+ = Where can I report bugs or contribute to the project? =
179
+ You can also report bugs on LearnPress Support Forum or LearnPress <a href="https://github.com/LearnPress/LearnPress" target="_blank">Github Repository</a>.
180
 
181
+ = Where can I find the REST API documentation? =
182
+ We will provide documentation about LearnPress REST API really soon.
183
 
184
+ = LearnPress is great, can I contribute to it? =
185
+ Yes, you can and we appreciate it. Join in our <a href="https://github.com/LearnPress/LearnPress" target="_blank">Github Repository</a>.
186
 
187
+ **LearnPress Translation project**
188
+ https://www.transifex.com/projects/p/learnpress/
189
 
190
+ == Screenshots ==
191
 
192
  1. Curriculum - Drag and Drop lesson or quiz.
193
  2. Lesson content.
196
  5. Quiz settings.
197
  6. Email settings.
198
  7. Demo course page.
199
+ 8. Add-ons of LearnPress.
200
 
201
  == Changelog ==
202
+ = 3.2.4 =
203
+ ~ Fixed cannot enroll course.
204
+ ~ Fixed prev question button not working correct.
205
+ ~ Fixed one extra answer option when add new question.
206
+ ~ Fixed some deprecated keywords for PHP 7.3.
207
+ ~ Fixed item is null for an item which doesn't support it's type (like assignment after deactivate).
208
+ ~ Fixed bug the next and prev button not work in review mode of quiz.
209
+
210
  = 3.2.3 =
211
  ~ Removed un-security code in PP library.
212
  ~ Fixed get curriculum item types doesn't work properly.
282
  = 0.9.19 =
283
  In this version, we have changed a little bit about LearnPress Plugin directory structure and moved all add-ons to become independence plugins. If you face any problems relate to add-ons, please completely remove old version and re-install LearnPress. It does not affect your current data. Thank you.
284
 
285
+ == Other note ==
286
+ <a href="http://docs.thimpress.com/learnpress" target="_blank">Documentation</a> is available in ThimPress site.
287
  <a href="https://github.com/LearnPress/LearnPress/" target="_blank">LearnPress github repo.</a>
templates/content-quiz/buttons/nav.php CHANGED
@@ -18,9 +18,13 @@ $user = LP_Global::user();
18
  $quiz = LP_Global::course_item_quiz();
19
  $course_id = get_the_ID();
20
  $current_question_id = $quiz->get_viewing_question( 'id' );
 
 
 
 
21
  ?>
22
 
23
- <?php if ( $prev_id = $user->get_prev_question( $quiz->get_id(), $course_id ) ) { ?>
24
 
25
  <?php do_action( 'learn-press/quiz/before-prev-question-button' ); ?>
26
 
@@ -41,7 +45,7 @@ $current_question_id = $quiz->get_viewing_question( 'id' );
41
 
42
  <?php } ?>
43
 
44
- <?php if ( $next_id = $user->get_next_question( $quiz->get_id(), $course_id ) ) { ?>
45
 
46
  <?php do_action( 'learn-press/quiz/before-next-question-button' ); ?>
47
 
@@ -62,7 +66,7 @@ $current_question_id = $quiz->get_viewing_question( 'id' );
62
 
63
  <?php } ?>
64
 
65
- <?php if ( ( $next_id = $user->get_next_question( $quiz->get_id(), $course_id ) ) && ! $user->has_completed_quiz( $quiz->get_id(), $course_id ) ) { ?>
66
 
67
  <?php do_action( 'learn-press/quiz/before-skip-question-button' ); ?>
68
 
18
  $quiz = LP_Global::course_item_quiz();
19
  $course_id = get_the_ID();
20
  $current_question_id = $quiz->get_viewing_question( 'id' );
21
+ $prev_id = $quiz->get_prev_question($current_question_id);
22
+ $next_id = $quiz->get_next_question($current_question_id);
23
+ $user_prev_question_id = $user->get_prev_question( $quiz->get_id(), $course_id );
24
+ // $user_next_question_id = $user->get_next_question( $quiz->get_id(), $course_id );
25
  ?>
26
 
27
+ <?php if ( $prev_id ) { ?>
28
 
29
  <?php do_action( 'learn-press/quiz/before-prev-question-button' ); ?>
30
 
45
 
46
  <?php } ?>
47
 
48
+ <?php if ( $next_id ) { ?>
49
 
50
  <?php do_action( 'learn-press/quiz/before-next-question-button' ); ?>
51
 
66
 
67
  <?php } ?>
68
 
69
+ <?php if ( $next_id && ! $user->has_completed_quiz( $quiz->get_id(), $course_id ) ) { ?>
70
 
71
  <?php do_action( 'learn-press/quiz/before-skip-question-button' ); ?>
72