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 | ![]() |
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 +4 -1
- inc/admin/editor/class-lp-admin-editor-quiz.php +8 -2
- inc/admin/helpers/class-lp-plugins-helper.php +8 -1
- inc/admin/meta-box/fields/pages-dropdown.php +7 -0
- inc/class-lp-install.php +1 -1
- inc/class-lp-schedules.php +2 -2
- inc/course/class-lp-course-item.php +1 -1
- inc/curds/class-lp-question-curd.php +2 -2
- inc/curds/class-lp-user-item-curd.php +7 -2
- inc/gateways/paypal/paypal-ipn/ipn.php +0 -1
- inc/lp-constants.php +1 -1
- inc/lp-core-functions.php +6 -2
- inc/quiz/class-lp-quiz-factory.php +18 -5
- inc/user/abstract-lp-user.php +2 -5
- languages/learnpress.pot +4892 -4509
- learnpress.php +1 -1
- readme.txt +59 -51
- templates/content-quiz/buttons/nav.php +7 -3
inc/abstracts/abstract-assets.php
CHANGED
@@ -311,7 +311,10 @@ abstract class LP_Abstract_Assets {
|
|
311 |
}
|
312 |
}
|
313 |
}
|
314 |
-
|
|
|
|
|
|
|
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 |
-
$
|
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->
|
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 =
|
962 |
|
963 |
$answer_options = $this->_read_answers( $question_id );
|
964 |
-
|
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 |
-
|
|
|
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.
|
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 |
-
|
|
|
|
|
|
|
|
|
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:
|
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:
|
23 |
#, php-format
|
24 |
msgid ""
|
25 |
-
"LearnPress plugin base directory must be <strong>learnpress/learnpres."
|
26 |
-
"
|
27 |
-
"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: inc/
|
31 |
-
#: inc/
|
32 |
-
|
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-
|
39 |
-
|
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-
|
49 |
-
|
50 |
-
#: inc/admin/class-lp-modal-search-items.php:210
|
51 |
-
msgid "<"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: inc/lp-
|
55 |
-
|
56 |
-
|
57 |
-
msgid ">"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/lp-
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/lp-
|
65 |
-
msgid "
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: inc/lp-
|
69 |
-
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/lp-
|
73 |
-
msgid "
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: inc/lp-
|
77 |
-
msgid "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: inc/lp-
|
81 |
-
|
|
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: inc/lp-
|
85 |
-
msgid "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: inc/lp-
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: inc/lp-
|
93 |
-
|
|
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: inc/lp-
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: inc/lp-core-functions.php:
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/lp-
|
105 |
-
|
|
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/lp-
|
109 |
-
|
|
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/lp-
|
113 |
-
|
|
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: inc/lp-
|
117 |
-
|
|
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/lp-
|
121 |
-
msgid "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/lp-
|
125 |
-
msgid "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/lp-
|
129 |
-
msgid "
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/lp-
|
133 |
-
msgid "
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/lp-
|
137 |
-
msgid "
|
|
|
|
|
|
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/lp-
|
141 |
-
|
|
|
|
|
|
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/lp-
|
145 |
-
msgid "
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/lp-
|
149 |
-
|
|
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/lp-
|
153 |
-
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/lp-
|
157 |
-
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/lp-
|
161 |
-
|
|
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/lp-
|
165 |
-
|
|
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/lp-
|
169 |
-
msgid "
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/lp-
|
173 |
-
msgid "
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/lp-
|
177 |
-
|
|
|
|
|
|
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/lp-
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/lp-
|
185 |
-
|
|
|
|
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/lp-
|
189 |
-
msgid "
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/lp-
|
193 |
-
msgid "
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/lp-
|
197 |
-
msgid "
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/lp-
|
201 |
-
msgid "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/lp-
|
205 |
-
msgid "
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/lp-
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/lp-
|
213 |
-
|
|
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/lp-
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/lp-
|
221 |
-
|
|
|
|
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/lp-
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/lp-
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/lp-
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/lp-
|
237 |
-
msgid "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/lp-
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/lp-
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/lp-
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/lp-
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/lp-
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: inc/lp-
|
261 |
-
msgid "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/lp-
|
265 |
-
|
|
|
|
|
|
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/lp-
|
269 |
-
msgid "
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/lp-
|
273 |
-
msgid "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/lp-
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/lp-
|
281 |
-
msgid "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/lp-
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/lp-
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/lp-
|
293 |
-
msgid "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/lp-
|
297 |
-
msgid "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/lp-
|
301 |
-
msgid "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/lp-
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/lp-
|
309 |
-
msgid "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/lp-
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/lp-
|
317 |
-
msgid "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/lp-
|
321 |
-
msgid "
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/lp-
|
325 |
-
msgid "
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: inc/lp-
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/lp-
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/lp-
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/lp-
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: inc/lp-
|
345 |
-
msgid "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/lp-
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/lp-
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/lp-
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/lp-
|
361 |
-
msgid "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/lp-
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: inc/lp-
|
369 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/lp-
|
373 |
-
msgid "
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: inc/lp-
|
377 |
-
|
|
|
|
|
|
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/lp-
|
381 |
-
msgid "
|
|
|
|
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: inc/lp-
|
385 |
-
msgid "
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: inc/lp-
|
389 |
-
msgid "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: inc/lp-
|
393 |
-
|
|
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: inc/lp-
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: inc/lp-
|
401 |
-
msgid "
|
|
|
|
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: inc/lp-
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/lp-
|
409 |
-
msgid "
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: inc/lp-
|
413 |
-
|
|
|
|
|
|
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: inc/lp-
|
417 |
-
|
|
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: inc/lp-
|
421 |
-
|
|
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: inc/lp-
|
425 |
-
msgid "
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: inc/lp-
|
429 |
-
|
|
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: inc/lp-
|
433 |
-
msgid "
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: inc/lp-
|
437 |
-
msgid "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: inc/lp-
|
441 |
-
|
442 |
-
msgid "Libyan dinar"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: inc/lp-
|
446 |
-
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: inc/lp-
|
450 |
-
msgid "
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/lp-
|
454 |
-
msgid "
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: inc/lp-
|
458 |
-
msgid "
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: inc/lp-
|
462 |
-
msgid "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: inc/lp-
|
466 |
-
|
|
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: inc/lp-
|
470 |
-
msgid "
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: inc/lp-
|
474 |
-
msgid "
|
|
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: inc/lp-
|
478 |
-
msgid "
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: inc/lp-
|
482 |
-
msgid "
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: inc/lp-
|
486 |
-
msgid "
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: inc/lp-
|
490 |
-
msgid "
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: inc/lp-
|
494 |
-
|
|
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: inc/lp-
|
498 |
-
|
|
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: inc/lp-
|
502 |
-
|
|
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: inc/lp-
|
506 |
-
msgid "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc/lp-
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc/lp-
|
514 |
-
msgid "
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: inc/lp-
|
518 |
-
msgid "
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: inc/lp-
|
522 |
-
|
|
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: inc/lp-
|
526 |
-
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/lp-
|
530 |
-
|
|
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: inc/lp-
|
534 |
-
|
|
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/lp-
|
538 |
-
|
|
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/lp-
|
542 |
-
|
|
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/lp-core-functions.php:
|
546 |
-
|
|
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/lp-core-functions.php:
|
550 |
-
|
|
|
|
|
|
|
|
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: inc/lp-core-functions.php:
|
554 |
-
|
|
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: inc/lp-core-functions.php:
|
558 |
-
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/lp-core-functions.php:
|
562 |
-
msgid "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/lp-core-functions.php:
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/lp-core-functions.php:
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/lp-core-functions.php:
|
574 |
-
msgid "
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/lp-core-functions.php:
|
578 |
-
msgid "
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/lp-core-functions.php:
|
582 |
-
msgid "
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/lp-core-functions.php:
|
586 |
-
msgid "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/lp-core-functions.php:
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: inc/lp-core-functions.php:
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/lp-core-functions.php:
|
598 |
-
msgid "
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: inc/lp-core-functions.php:
|
602 |
-
msgid "
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/lp-core-functions.php:
|
606 |
-
msgid "
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/lp-core-functions.php:
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/lp-core-functions.php:
|
614 |
-
msgid "
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/lp-core-functions.php:
|
618 |
-
msgid "
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/lp-core-functions.php:
|
622 |
-
msgid "
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: inc/lp-core-functions.php:
|
626 |
-
msgid "
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: inc/lp-core-functions.php:
|
630 |
-
msgid "
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/lp-core-functions.php:
|
634 |
-
msgid "
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/lp-core-functions.php:
|
638 |
-
msgid "
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/lp-core-functions.php:
|
642 |
-
msgid "
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: inc/lp-core-functions.php:
|
646 |
-
msgid "
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: inc/lp-core-functions.php:
|
650 |
-
msgid "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/lp-core-functions.php:
|
654 |
-
msgid "
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/lp-core-functions.php:
|
658 |
-
msgid "
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/lp-core-functions.php:
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/lp-core-functions.php:
|
666 |
-
msgid "
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/lp-core-functions.php:
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: inc/lp-core-functions.php:
|
674 |
-
msgid "
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: inc/lp-core-functions.php:
|
678 |
-
msgid "
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: inc/lp-core-functions.php:
|
682 |
-
msgid "
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: inc/lp-core-functions.php:
|
686 |
-
msgid "
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: inc/lp-core-functions.php:
|
690 |
-
msgid "
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: inc/lp-core-functions.php:
|
694 |
-
msgid "
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: inc/lp-core-functions.php:
|
698 |
-
msgid "
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: inc/lp-core-functions.php:
|
702 |
-
msgid "
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: inc/lp-core-functions.php:
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: inc/lp-core-functions.php:
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: inc/lp-core-functions.php:
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/lp-core-functions.php:
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: inc/lp-core-functions.php:
|
722 |
-
msgid "
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc/lp-core-functions.php:
|
726 |
-
msgid "
|
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:
|
757 |
-
msgid "
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: inc/lp-core-functions.php:
|
761 |
-
|
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:
|
768 |
-
msgid "
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: inc/lp-core-functions.php:
|
772 |
-
msgid "
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: inc/lp-core-functions.php:
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: inc/lp-core-functions.php:
|
780 |
-
|
781 |
-
msgid "Message"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: inc/lp-core-functions.php:
|
785 |
-
msgid "
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: inc/lp-core-functions.php:
|
789 |
-
msgid "
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: inc/lp-core-functions.php:
|
793 |
-
msgid "
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: inc/lp-core-functions.php:
|
797 |
-
msgid "
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: inc/lp-core-functions.php:
|
801 |
-
|
802 |
-
msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: inc/lp-core-functions.php:
|
806 |
-
|
807 |
-
msgid "Name: %s"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: inc/lp-core-functions.php:
|
811 |
-
|
812 |
-
msgid "Email: %s"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: inc/lp-core-functions.php:
|
816 |
-
|
817 |
-
msgid "Phone: %s"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: inc/lp-core-functions.php:
|
821 |
-
|
822 |
-
msgid "Message: %s"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: inc/lp-core-functions.php:
|
826 |
-
|
827 |
-
msgid "Accept: %s"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: inc/lp-core-functions.php:
|
831 |
-
|
832 |
-
msgid "Your request has been sent! We will get back to you soon!"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: inc/lp-core-functions.php:
|
836 |
-
|
837 |
-
msgid "OK"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: inc/lp-core-functions.php:
|
841 |
-
|
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:
|
852 |
-
|
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:
|
859 |
-
|
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:
|
867 |
-
|
868 |
-
msgid "Congrats! You've enrolled the course \"%s\"."
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: inc/lp-core-functions.php:
|
872 |
-
msgid "
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: inc/lp-core-functions.php:
|
876 |
-
msgid "
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: inc/lp-core-functions.php:
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: inc/lp-core-functions.php:
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: inc/lp-core-functions.php:
|
888 |
-
msgid "
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: inc/lp-core-functions.php:
|
892 |
-
msgid "
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: inc/lp-core-functions.php:
|
896 |
-
msgid "
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: inc/lp-core-functions.php:
|
900 |
-
msgid "
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: inc/lp-core-functions.php:
|
904 |
-
msgid "
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: inc/lp-core-functions.php:
|
908 |
-
msgid "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: inc/lp-core-functions.php:
|
912 |
-
|
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:
|
920 |
-
|
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:
|
928 |
-
|
929 |
-
msgid "Checkout"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: inc/lp-core-functions.php:
|
933 |
-
|
934 |
-
msgid "Courses"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: inc/lp-core-functions.php:
|
938 |
-
|
939 |
-
msgid "Profile"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/lp-core-functions.php:
|
943 |
-
|
944 |
-
msgid "Become a Teacher"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: inc/
|
948 |
-
|
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/
|
955 |
-
|
956 |
-
msgid "Redirecting"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: inc/
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/
|
964 |
-
|
965 |
-
msgid "Unknown error"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/
|
969 |
-
|
970 |
-
msgid "Place order"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: inc/
|
974 |
-
|
975 |
-
msgid "Cheatin’ huh?"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: inc/
|
979 |
-
|
980 |
-
msgid "Function %s should be overwritten in child class"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: inc/
|
984 |
-
|
985 |
-
#: inc/class-lp-forms-handler.php:197
|
986 |
-
#, php-format
|
987 |
-
msgid "Field \"%s\" is required."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: inc/
|
991 |
-
msgid "
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: inc/
|
995 |
-
msgid "
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: inc/
|
999 |
-
msgid "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: inc/
|
1003 |
-
msgid "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: inc/
|
1007 |
-
msgid "
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/
|
1011 |
-
msgid "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/
|
1019 |
-
msgid "
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: inc/
|
1023 |
-
msgid "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: inc/
|
1027 |
-
msgid "
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: inc/lp-
|
1031 |
-
|
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-
|
1054 |
-
msgid "
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: inc/lp-
|
1058 |
-
|
1059 |
-
#: inc/user/class-lp-profile.php:284
|
1060 |
-
msgid "Purchased"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: inc/lp-
|
1064 |
-
|
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-
|
1072 |
-
|
1073 |
-
msgid "Owned"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: inc/lp-
|
1077 |
-
|
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/
|
1085 |
-
msgid "
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: inc/
|
1089 |
-
msgid ""
|
1090 |
-
"You have already purchased this course and the order is still processing..."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: inc/
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: inc/
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: inc/
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: inc/
|
1106 |
-
|
1107 |
-
#, php-format
|
1108 |
-
msgid "You can not enroll course "%s""
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: inc/
|
1112 |
-
|
1113 |
-
msgid "Invalid request!"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: inc/
|
1117 |
-
|
1118 |
-
msgid "Congrats! You have enrolled "%s""
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: inc/
|
1122 |
-
msgid "
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: inc/
|
1126 |
-
msgid "
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: inc/
|
1130 |
-
|
1131 |
-
msgid "Do you want to redo quiz \"%s\"?"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: inc/
|
1135 |
-
|
1136 |
-
msgid "Do you want to complete quiz \"%s\"?"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: inc/
|
1140 |
-
|
1141 |
-
msgid "Do you want to complete lesson \"%s\"?"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: inc/
|
1145 |
-
|
1146 |
-
msgid "Do you want to finish course \"%s\"?"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: inc/
|
1150 |
-
|
1151 |
-
msgid "Do you want to retake course \"%s\"?"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: inc/
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: inc/
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: inc/
|
1163 |
-
|
1164 |
-
msgid "The order %s has been successfully recovered."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: inc/
|
1168 |
-
|
1169 |
-
msgid "Profile picture upload failed"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: inc/
|
1173 |
-
msgid "
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: inc/
|
1177 |
-
|
1178 |
-
msgid "You have finished this course \"%s\""
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: inc/
|
1182 |
-
msgid ""
|
1183 |
-
"Error! You cannot finish this course. Please contact your administrator for "
|
1184 |
-
"more information."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: inc/
|
1188 |
-
msgid "
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: inc/
|
1192 |
-
|
1193 |
-
msgid "Congrats! You have completed \"%s\"."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: inc/
|
1197 |
-
msgid "
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: inc/
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: inc/
|
1205 |
-
|
1206 |
-
msgid "You have retaken the course \"%s\""
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: inc/
|
1210 |
-
msgid "
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: inc/
|
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/
|
1221 |
-
|
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/
|
1229 |
-
msgid "
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: inc/
|
1233 |
-
|
1234 |
-
msgid "Courses tagged “%s”"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: inc/
|
1238 |
-
|
1239 |
-
msgid "Posts tagged “%s”"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: inc/
|
1243 |
-
|
1244 |
-
msgid "Author: %s"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: inc/
|
1248 |
-
|
1249 |
-
msgid "Search results for “%s”"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: inc/
|
1253 |
-
|
1254 |
-
msgid "Page %d"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: inc/
|
1258 |
-
msgid "
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: inc/
|
1262 |
-
|
1263 |
-
#: templates/content-question/multi-choice/answer-options.php:17
|
1264 |
-
msgid "Invalid question!"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: inc/
|
1268 |
-
|
1269 |
-
msgid "The user %s is not available!"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: inc/
|
1273 |
-
msgid "
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: inc/
|
1277 |
-
|
1278 |
-
msgid "Invalid preview item."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: inc/
|
1282 |
-
msgid "
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: inc/
|
1286 |
-
|
1287 |
-
msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: inc/lp-
|
1291 |
-
msgid "
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: inc/
|
1295 |
-
msgid "
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: inc/
|
1303 |
-
msgid "
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: inc/
|
1307 |
-
msgid "
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: inc/
|
1311 |
-
msgid "
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: inc/
|
1315 |
-
msgid "
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: inc/
|
1319 |
-
msgid "
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: inc/
|
1323 |
-
msgid "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: inc/
|
1327 |
-
msgid "
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: inc/
|
1331 |
-
|
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/
|
1342 |
-
|
1343 |
-
msgid "Course Author"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: inc/
|
1347 |
-
|
1348 |
-
msgid "Course Name"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: inc/
|
1352 |
-
|
1353 |
-
msgid "Course Date"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: inc/
|
1357 |
-
|
1358 |
-
msgid "Course URL"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: inc/
|
1362 |
-
msgid "
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: inc/
|
1366 |
-
|
1367 |
-
msgid "Item Name"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: inc/
|
1371 |
-
|
1372 |
-
msgid "Item Type"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: inc/
|
1376 |
-
|
1377 |
-
msgid "Item URL"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: inc/
|
1381 |
-
|
1382 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: inc/
|
1386 |
-
msgid "
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: inc/
|
1390 |
-
|
|
|
|
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: inc/
|
1394 |
-
msgid "
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: inc/
|
1398 |
-
msgid "
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: inc/
|
1402 |
-
|
1403 |
-
msgid "Ungraded"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: inc/
|
1407 |
-
msgid "
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: inc/
|
1411 |
-
|
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/
|
1423 |
-
msgid "
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: inc/
|
1427 |
-
|
1428 |
-
|
1429 |
-
#: templates/content-lesson/button-complete.php:36
|
1430 |
-
#: inc/admin/views/statistics/orders.php:63
|
1431 |
-
msgid "Completed"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: inc/
|
1435 |
-
|
1436 |
-
msgid "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: inc/
|
1440 |
-
|
|
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: inc/
|
1444 |
-
|
|
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: inc/
|
1448 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
1456 |
msgid "Overview"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: inc/lp-template-functions.php:
|
1460 |
-
#: inc/admin/views/course/curriculum.php:15
|
1461 |
msgid "Curriculum"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: inc/lp-template-functions.php:
|
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:
|
1474 |
msgid "Course Search Results"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: inc/lp-template-functions.php:
|
1478 |
-
#: inc/
|
1479 |
-
#: inc/
|
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:
|
1494 |
msgctxt "breadcrumb"
|
1495 |
msgid "Home"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: inc/lp-template-functions.php:
|
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:
|
1505 |
#, php-format
|
1506 |
msgid "Access denied \"%s\""
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: inc/lp-template-functions.php:
|
1510 |
#, php-format
|
1511 |
msgid "Search Results for: “%s”"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: inc/lp-template-functions.php:
|
1515 |
#, php-format
|
1516 |
msgid " – Page %s"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: inc/lp-template-functions.php:
|
1520 |
-
#: inc/lp-template-functions.php:3218
|
1521 |
msgid "Final"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: inc/lp-template-functions.php:
|
1525 |
-
#: inc/
|
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:
|
1534 |
msgid "Fill out the form and send us your requesting."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: inc/lp-template-functions.php:
|
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:
|
1546 |
#, php-format
|
1547 |
msgctxt "duration"
|
1548 |
msgid "%s day"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: inc/lp-template-functions.php:
|
1552 |
#, php-format
|
1553 |
msgctxt "duration"
|
1554 |
msgid "%s hour"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: inc/lp-template-functions.php:
|
1558 |
#, php-format
|
1559 |
msgctxt "duration"
|
1560 |
msgid "%s min"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: inc/lp-template-functions.php:
|
1564 |
#, php-format
|
1565 |
msgctxt "duration"
|
1566 |
msgid "%s sec"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: inc/lp-template-functions.php:
|
1570 |
-
#: inc/course/lp-course-functions.php:810
|
1571 |
msgid "Edit this item"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: inc/lp-template-functions.php:
|
1575 |
msgid "Back to class"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: inc/lp-template-functions.php:
|
1579 |
msgid "Popup links color"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: inc/lp-template-functions.php:
|
1583 |
msgid "Popup heading background"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: inc/lp-template-functions.php:
|
1587 |
msgid "Popup heading color"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: inc/lp-template-functions.php:
|
1591 |
msgid "Popup curriculum background"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: inc/lp-template-functions.php:
|
1595 |
msgid "Popup item color"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: inc/lp-template-functions.php:
|
1599 |
msgid "Popup active item background"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: inc/lp-template-functions.php:
|
1603 |
msgid "Popup active item color"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: inc/lp-template-functions.php:
|
1607 |
msgid "Popup content background"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: inc/lp-template-functions.php:
|
1611 |
msgid "Popup content color"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: inc/lp-template-functions.php:
|
1615 |
msgid "Section heading background"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: inc/lp-template-functions.php:
|
1619 |
msgid "Section heading color"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: inc/lp-template-functions.php:
|
1623 |
msgid "Section heading bottom color"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: inc/lp-template-functions.php:
|
1627 |
msgid "Lines color"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: inc/lp-template-functions.php:
|
1631 |
msgid "Profile cover background"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: inc/lp-template-functions.php:
|
1635 |
msgid "Scrollbar"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: inc/lp-template-functions.php:
|
1639 |
msgid "Progress bar color"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: inc/lp-template-functions.php:
|
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/
|
1656 |
-
|
|
|
|
|
|
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: inc/
|
1660 |
-
|
|
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: inc/
|
1664 |
-
|
1665 |
-
"
|
1666 |
-
"are some outdated courses or data that need to be upgraded."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: inc/
|
1670 |
-
|
|
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: inc/
|
1674 |
-
|
|
|
|
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: inc/class-lp-
|
1678 |
-
|
1679 |
-
msgid "Upgrade now"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: inc/class-lp-
|
1683 |
-
msgid "
|
|
|
|
|
|
|
|
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: inc/class-lp-
|
1687 |
msgid ""
|
1688 |
-
"
|
1689 |
-
"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: inc/class-lp-
|
1693 |
-
msgid "
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: inc/
|
1697 |
-
|
1698 |
-
msgid "No setting available."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: inc/class-lp-
|
1702 |
-
|
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-
|
1710 |
-
#:
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: inc/class-lp-
|
1715 |
-
|
1716 |
-
msgid "Add-ons"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: inc/class-lp-
|
1720 |
-
#: inc/
|
1721 |
-
msgid "
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: inc/class-lp-
|
1725 |
-
|
|
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: inc/class-lp-
|
1729 |
-
|
1730 |
-
#: inc/shortcodes/class-lp-shortcode-register-form.php:66
|
1731 |
-
msgid "Username"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: inc/class-lp-
|
1735 |
-
|
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-
|
1744 |
-
|
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-
|
1751 |
-
msgid "
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: inc/class-lp-
|
1755 |
-
msgid "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: inc/class-lp-
|
1759 |
-
msgid "
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: inc/class-lp-
|
1763 |
-
msgid "Please
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: inc/class-lp-
|
1767 |
-
msgid "
|
|
|
|
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: inc/class-lp-
|
1771 |
-
#:
|
1772 |
-
msgid "
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: inc/class-lp-
|
1776 |
-
|
1777 |
-
msgid "Item \"%s\" is not purchasable."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: inc/class-lp-
|
1781 |
-
#: inc/
|
1782 |
-
#: inc/
|
1783 |
-
#: inc/
|
1784 |
-
#: inc/
|
1785 |
-
|
1786 |
-
msgid "LearnPress"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: inc/class-lp-
|
1790 |
-
msgid "
|
|
|
|
|
|
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#:
|
1794 |
-
msgid "
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#:
|
1798 |
-
|
1799 |
-
#: inc/admin/views/tools/course/html-user.php:21
|
1800 |
-
msgid "Search"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#:
|
1804 |
-
#: inc/
|
1805 |
-
|
1806 |
-
msgid "No course found."
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: inc/
|
1810 |
-
#: inc/
|
1811 |
-
#:
|
1812 |
-
|
1813 |
-
|
|
|
|
|
|
|
|
|
1814 |
|
1815 |
-
#: inc/
|
1816 |
-
|
|
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: inc/
|
1820 |
-
|
1821 |
-
msgid "%s (Guest)"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: inc/
|
1825 |
-
|
1826 |
-
msgid "(Guest)"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: inc/
|
1830 |
-
|
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/
|
1842 |
-
|
1843 |
-
msgctxt "full name"
|
1844 |
-
msgid "%1$s"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: inc/
|
1848 |
-
msgid "
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: inc/
|
1852 |
-
msgid "
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: inc/
|
1856 |
-
msgid "
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: inc/
|
1860 |
-
|
1861 |
-
msgid "Pending Payment"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: inc/
|
1865 |
-
|
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/
|
1877 |
-
|
1878 |
-
|
1879 |
-
msgid_plural "Processing <span class=\"count\">(%s)</span>"
|
1880 |
-
msgstr[0] ""
|
1881 |
-
msgstr[1] ""
|
1882 |
|
1883 |
-
#: inc/
|
1884 |
-
|
1885 |
-
msgid "Completed"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: inc/
|
1889 |
-
|
1890 |
-
|
1891 |
-
msgid_plural "Completed <span class=\"count\">(%s)</span>"
|
1892 |
-
msgstr[0] ""
|
1893 |
-
msgstr[1] ""
|
1894 |
|
1895 |
-
#: inc/
|
1896 |
-
|
1897 |
-
|
|
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: inc/
|
1901 |
-
|
1902 |
-
|
1903 |
-
msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
|
1904 |
-
msgstr[0] ""
|
1905 |
-
msgstr[1] ""
|
1906 |
|
1907 |
-
#: inc/
|
1908 |
-
|
1909 |
-
msgid "Failed"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: inc/
|
1913 |
-
|
1914 |
-
|
1915 |
-
msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
1916 |
-
msgstr[0] ""
|
1917 |
-
msgstr[1] ""
|
1918 |
|
1919 |
-
#: inc/
|
1920 |
-
msgid ""
|
1921 |
-
"Order received in case user buy a course but doesn't finalise the order."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: inc/
|
1925 |
-
msgid "
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: inc/
|
1929 |
-
|
|
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: inc/
|
1933 |
-
msgid "
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: inc/
|
1937 |
-
|
1938 |
-
|
|
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/
|
1942 |
-
|
|
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: inc/
|
1946 |
-
|
1947 |
-
msgid "Order number <strong>%s</strong> has been cancelled"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: inc/
|
1951 |
#, php-format
|
1952 |
-
msgid "
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: inc/
|
1956 |
-
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: inc/
|
1961 |
-
msgctxt "
|
1962 |
-
msgid "
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: inc/
|
1966 |
#, php-format
|
1967 |
-
msgid "
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: inc/
|
1971 |
-
msgid "
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: inc/
|
1975 |
#, php-format
|
1976 |
-
msgid "
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: inc/course/abstract-course.php:539
|
1980 |
-
msgid "You enrolled"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: inc/
|
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 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
"
|
1998 |
-
msgstr[0] ""
|
1999 |
-
msgstr[1] ""
|
2000 |
-
|
2001 |
-
#: inc/course/abstract-course.php:556
|
2002 |
-
msgid "No student enrolled"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: inc/
|
2006 |
-
|
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/
|
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
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: inc/
|
2023 |
#, php-format
|
2024 |
-
msgid "
|
|
|
|
|
|
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: inc/
|
2028 |
-
#: inc/course/abstract-course.php:1197
|
2029 |
#, php-format
|
2030 |
-
msgid "
|
|
|
|
|
|
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: inc/
|
2034 |
-
|
2035 |
-
msgid "This course will end within next %s"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: inc/
|
2039 |
-
|
2040 |
-
msgid "Buy this course"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: inc/
|
2044 |
-
msgid "
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: inc/
|
2048 |
-
|
|
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: inc/
|
2052 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: inc/
|
2056 |
-
#: inc/custom-post-types/
|
2057 |
-
|
|
|
|
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/
|
2061 |
-
#: inc/
|
2062 |
-
msgid "
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: inc/
|
2066 |
-
|
|
|
|
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: inc/
|
2070 |
-
|
2071 |
-
#: templates/profile/tabs/orders/list.php:32
|
2072 |
-
msgid "Order"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: inc/
|
2076 |
-
|
|
|
|
|
|
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: inc/
|
2080 |
-
#:
|
2081 |
-
#:
|
2082 |
-
#:
|
2083 |
-
#: inc/admin/views/
|
2084 |
-
|
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/
|
2091 |
-
#:
|
2092 |
-
|
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/
|
2104 |
-
#: inc/admin/class-lp-
|
2105 |
-
|
2106 |
-
msgid "%s ago"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: inc/
|
2110 |
-
|
2111 |
-
msgid "Course does not exist"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: inc/
|
2115 |
-
#:
|
2116 |
-
|
|
|
2117 |
msgstr ""
|
2118 |
|
2119 |
|