Version Description
~ Fixed button for creating LP pages does not work properly. ~ Fixed warning when getting course items does not exists. ~ Added button to close warning for outdated templates. ~ Fixed search order not working. ~ Fixed get course items in incorrect order. ~ Fixed can't start quiz when the course is not required enroll. ~ Fixed the amount number of enrolled users isn't updated correctly.
Download this release
Release Info
Developer | tunnhn |
Plugin | LearnPress – WordPress LMS Plugin |
Version | 3.2.5 |
Comparing to | |
See all releases |
Code changes from version 3.2.4 to 3.2.5
- assets/css/admin/admin.css +25 -18
- assets/js/admin/admin.js +37 -4
- assets/scss/admin/admin.scss +9 -1
- inc/admin/class-lp-admin-ajax.php +21 -17
- inc/admin/class-lp-admin-notice.php +126 -4
- inc/admin/class-lp-post-type-actions.php +1 -1
- inc/admin/views/html-admin-notice-templates.php +10 -4
- inc/class-lp-install.php +6 -0
- inc/class-lp-market-products.php +39 -39
- inc/class-lp-repair-database.php +1 -1
- inc/curds/class-lp-course-curd.php +4 -1
- inc/custom-post-types/order.php +16 -11
- inc/lp-constants.php +1 -1
- inc/lp-core-functions.php +1 -1
- inc/user-item/class-lp-user-item-course.php +1 -1
- inc/user-item/class-lp-user-item.php +13 -1
- inc/user/abstract-lp-user.php +90 -53
- languages/learnpress.pot +4355 -5147
- learnpress.php +1 -1
- readme.txt +10 -1
assets/css/admin/admin.css
CHANGED
@@ -3156,25 +3156,32 @@ body.lp-item-moving {
|
|
3156 |
.button.disabled {
|
3157 |
pointer-events: none; }
|
3158 |
|
3159 |
-
.lp-notice
|
3160 |
-
.learn-press-notice
|
3161 |
-
|
3162 |
-
|
3163 |
-
.lp-notice
|
3164 |
-
.learn-press-notice
|
3165 |
-
|
3166 |
-
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3175 |
position: absolute;
|
3176 |
-
|
3177 |
-
|
3178 |
|
3179 |
.learn-press-dropdown-pages {
|
3180 |
display: inline-block; }
|
3156 |
.button.disabled {
|
3157 |
pointer-events: none; }
|
3158 |
|
3159 |
+
.lp-notice,
|
3160 |
+
.learn-press-notice {
|
3161 |
+
position: relative;
|
3162 |
+
padding: 12px; }
|
3163 |
+
.lp-notice h4,
|
3164 |
+
.learn-press-notice h4 {
|
3165 |
+
margin: 10px 0 15px; }
|
3166 |
+
.lp-notice p,
|
3167 |
+
.learn-press-notice p {
|
3168 |
+
margin: 0 0 5px 0;
|
3169 |
+
padding: 0 2px; }
|
3170 |
+
.lp-notice.lp-upgrade-notice,
|
3171 |
+
.learn-press-notice.lp-upgrade-notice {
|
3172 |
+
background: #BCEFFE;
|
3173 |
+
border-left-color: #02B7FB;
|
3174 |
+
position: relative; }
|
3175 |
+
.lp-notice.lp-upgrade-notice .close-notice,
|
3176 |
+
.learn-press-notice.lp-upgrade-notice .close-notice {
|
3177 |
+
position: absolute;
|
3178 |
+
top: 5px;
|
3179 |
+
right: 10px; }
|
3180 |
+
.lp-notice .lp-message-dismiss,
|
3181 |
+
.learn-press-notice .lp-message-dismiss {
|
3182 |
position: absolute;
|
3183 |
+
right: 12px;
|
3184 |
+
top: 12px; }
|
3185 |
|
3186 |
.learn-press-dropdown-pages {
|
3187 |
display: inline-block; }
|
assets/js/admin/admin.js
CHANGED
@@ -2,6 +2,40 @@
|
|
2 |
|
3 |
"use strict";
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
function makePaymentsSortable() {
|
6 |
// Make payments sortable
|
7 |
$('.learn-press-payments.sortable tbody').sortable({
|
@@ -380,7 +414,7 @@
|
|
380 |
});
|
381 |
}
|
382 |
|
383 |
-
function send_newsletter_info(e){
|
384 |
var $notice = $(e.target),
|
385 |
context = $notice.attr('data-context');
|
386 |
$(this).addClass('updating-message button-working disabled');
|
@@ -403,7 +437,7 @@
|
|
403 |
});
|
404 |
}
|
405 |
|
406 |
-
function checkUpdates(e){
|
407 |
//e.preventDefault();
|
408 |
}
|
409 |
|
@@ -433,7 +467,7 @@
|
|
433 |
.on('click', '.learn-press-filter-template', _callbackFilterTemplates)
|
434 |
.on('click', '.lp-duplicate-row-action .lp-duplicate-post', _duplicatePost)
|
435 |
.on('click', '#learn-press-newsletter-button button', send_newsletter_info)
|
436 |
-
.on('click','#learn-press-check-update-addons', checkUpdates)
|
437 |
.on('mousedown', '.lp-sortable-handle', function (e) {
|
438 |
$('html, body').addClass('lp-item-moving');
|
439 |
$(e.target).closest('.lp-sortable-handle').css('cursor', 'inherit');
|
@@ -448,4 +482,3 @@
|
|
448 |
$doc.ready(_ready);
|
449 |
})(jQuery);
|
450 |
|
451 |
-
if (typeof LP === 'undefined') LP = {};
|
2 |
|
3 |
"use strict";
|
4 |
|
5 |
+
if (typeof LP === 'undefined') LP = {};
|
6 |
+
|
7 |
+
LP.dismissMessage = function (el, args) {
|
8 |
+
args = $.extend($(el).data(), args || {});
|
9 |
+
|
10 |
+
var dismissDone = function () {
|
11 |
+
if (args.el) {
|
12 |
+
$(args.el).fadeOut();
|
13 |
+
} else {
|
14 |
+
$(el).parent().fadeOut();
|
15 |
+
}
|
16 |
+
}
|
17 |
+
|
18 |
+
if (args.instant === 'yes') {
|
19 |
+
dismissDone();
|
20 |
+
}
|
21 |
+
|
22 |
+
$.ajax({
|
23 |
+
url: '',
|
24 |
+
data: {
|
25 |
+
'lp-ajax': 'dismiss-notice',
|
26 |
+
name: args.name,
|
27 |
+
value: args.value || 'yes',
|
28 |
+
expired: args.expired || ''
|
29 |
+
},
|
30 |
+
type: 'POST',
|
31 |
+
success: function () {
|
32 |
+
if (args.instant !== 'yes') {
|
33 |
+
dismissDone();
|
34 |
+
}
|
35 |
+
}
|
36 |
+
})
|
37 |
+
}
|
38 |
+
|
39 |
function makePaymentsSortable() {
|
40 |
// Make payments sortable
|
41 |
$('.learn-press-payments.sortable tbody').sortable({
|
414 |
});
|
415 |
}
|
416 |
|
417 |
+
function send_newsletter_info(e) {
|
418 |
var $notice = $(e.target),
|
419 |
context = $notice.attr('data-context');
|
420 |
$(this).addClass('updating-message button-working disabled');
|
437 |
});
|
438 |
}
|
439 |
|
440 |
+
function checkUpdates(e) {
|
441 |
//e.preventDefault();
|
442 |
}
|
443 |
|
467 |
.on('click', '.learn-press-filter-template', _callbackFilterTemplates)
|
468 |
.on('click', '.lp-duplicate-row-action .lp-duplicate-post', _duplicatePost)
|
469 |
.on('click', '#learn-press-newsletter-button button', send_newsletter_info)
|
470 |
+
.on('click', '#learn-press-check-update-addons', checkUpdates)
|
471 |
.on('mousedown', '.lp-sortable-handle', function (e) {
|
472 |
$('html, body').addClass('lp-item-moving');
|
473 |
$(e.target).closest('.lp-sortable-handle').css('cursor', 'inherit');
|
482 |
$doc.ready(_ready);
|
483 |
})(jQuery);
|
484 |
|
|
assets/scss/admin/admin.scss
CHANGED
@@ -26,6 +26,8 @@
|
|
26 |
|
27 |
.lp-notice,
|
28 |
.learn-press-notice {
|
|
|
|
|
29 |
h4 {
|
30 |
margin: 10px 0 15px
|
31 |
}
|
@@ -43,6 +45,12 @@
|
|
43 |
right: 10px;
|
44 |
}
|
45 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
}
|
47 |
|
48 |
.learn-press-dropdown-pages {
|
@@ -82,7 +90,7 @@
|
|
82 |
}
|
83 |
}
|
84 |
|
85 |
-
.learn-press-notice-assigned-item{
|
86 |
color: #FF0000;
|
87 |
}
|
88 |
|
26 |
|
27 |
.lp-notice,
|
28 |
.learn-press-notice {
|
29 |
+
position: relative;
|
30 |
+
padding: 12px;
|
31 |
h4 {
|
32 |
margin: 10px 0 15px
|
33 |
}
|
45 |
right: 10px;
|
46 |
}
|
47 |
}
|
48 |
+
|
49 |
+
.lp-message-dismiss {
|
50 |
+
position: absolute;
|
51 |
+
right: 12px;
|
52 |
+
top: 12px;
|
53 |
+
}
|
54 |
}
|
55 |
|
56 |
.learn-press-dropdown-pages {
|
90 |
}
|
91 |
}
|
92 |
|
93 |
+
.learn-press-notice-assigned-item {
|
94 |
color: #FF0000;
|
95 |
}
|
96 |
|
inc/admin/class-lp-admin-ajax.php
CHANGED
@@ -92,6 +92,7 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
92 |
'skip-notice-install',
|
93 |
'dashboard-order-status',
|
94 |
'dashboard-plugin-status',
|
|
|
95 |
'sync-course-orders',
|
96 |
'sync-user-orders',
|
97 |
'sync-course-final-quiz',
|
@@ -117,7 +118,7 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
117 |
}
|
118 |
}
|
119 |
|
120 |
-
public function sync_calculate_course_results(){
|
121 |
if ( empty( $_REQUEST['sync'] ) ) {
|
122 |
die();
|
123 |
}
|
@@ -142,7 +143,7 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
142 |
learn_press_send_json( array( 'result' => 'success' ) );
|
143 |
|
144 |
die();
|
145 |
-
|
146 |
|
147 |
/**
|
148 |
* Sync orders for each course
|
@@ -225,8 +226,8 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
225 |
}
|
226 |
|
227 |
public function sync_remove_older_data() {
|
228 |
-
|
229 |
-
|
230 |
learn_press_send_json( array( 'result' => 'success' ) );
|
231 |
die();
|
232 |
}
|
@@ -486,7 +487,8 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
486 |
if ( in_array( get_post_type( $id ), apply_filters( 'learn-press/reviewable-post-types', array(
|
487 |
'lp_lesson',
|
488 |
'lp_quiz'
|
489 |
-
) ) ) && wp_verify_nonce( learn_press_get_request( 'nonce' ), 'learn-press-toggle-item-preview' )
|
|
|
490 |
$previewable = learn_press_get_request( 'previewable' );
|
491 |
if ( is_null( $previewable ) ) {
|
492 |
$previewable = '0';
|
@@ -675,7 +677,8 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
675 |
if ( false === $data ) {
|
676 |
try {
|
677 |
$data = json_decode( file_get_contents( 'php://input' ), true );
|
678 |
-
}
|
|
|
679 |
}
|
680 |
}
|
681 |
if ( $data && func_num_args() > 0 ) {
|
@@ -726,7 +729,7 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
726 |
$term = stripslashes( $_REQUEST['term'] );
|
727 |
|
728 |
if ( empty( $term ) ) {
|
729 |
-
die(__FILE__ . '::'.__FUNCTION__);;
|
730 |
}
|
731 |
|
732 |
$found_customers = array();
|
@@ -771,18 +774,19 @@ if ( ! class_exists( 'LP_Admin_Ajax' ) ) {
|
|
771 |
$query->query_where .= $wpdb->prepare( " OR user_name.meta_value LIKE %s ", '%' . $term . '%' );
|
772 |
}
|
773 |
|
|
|
|
|
|
|
|
|
|
|
774 |
public static function dismiss_notice() {
|
775 |
-
$
|
776 |
-
$
|
|
|
777 |
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
} else {
|
782 |
-
update_option( 'learn_press_dismiss_notice_' . $context, 'off' );
|
783 |
-
}
|
784 |
-
}
|
785 |
-
die(__FILE__ . '::'.__FUNCTION__);;
|
786 |
}
|
787 |
|
788 |
public static function plugin_action() {
|
92 |
'skip-notice-install',
|
93 |
'dashboard-order-status',
|
94 |
'dashboard-plugin-status',
|
95 |
+
'dismiss-notice',
|
96 |
'sync-course-orders',
|
97 |
'sync-user-orders',
|
98 |
'sync-course-final-quiz',
|
118 |
}
|
119 |
}
|
120 |
|
121 |
+
public function sync_calculate_course_results() {
|
122 |
if ( empty( $_REQUEST['sync'] ) ) {
|
123 |
die();
|
124 |
}
|
143 |
learn_press_send_json( array( 'result' => 'success' ) );
|
144 |
|
145 |
die();
|
146 |
+
}
|
147 |
|
148 |
/**
|
149 |
* Sync orders for each course
|
226 |
}
|
227 |
|
228 |
public function sync_remove_older_data() {
|
229 |
+
$api = LP_Repair_Database::instance();
|
230 |
+
$api->remove_older_post_meta();
|
231 |
learn_press_send_json( array( 'result' => 'success' ) );
|
232 |
die();
|
233 |
}
|
487 |
if ( in_array( get_post_type( $id ), apply_filters( 'learn-press/reviewable-post-types', array(
|
488 |
'lp_lesson',
|
489 |
'lp_quiz'
|
490 |
+
) ) ) && wp_verify_nonce( learn_press_get_request( 'nonce' ), 'learn-press-toggle-item-preview' )
|
491 |
+
) {
|
492 |
$previewable = learn_press_get_request( 'previewable' );
|
493 |
if ( is_null( $previewable ) ) {
|
494 |
$previewable = '0';
|
677 |
if ( false === $data ) {
|
678 |
try {
|
679 |
$data = json_decode( file_get_contents( 'php://input' ), true );
|
680 |
+
}
|
681 |
+
catch ( Exception $exception ) {
|
682 |
}
|
683 |
}
|
684 |
if ( $data && func_num_args() > 0 ) {
|
729 |
$term = stripslashes( $_REQUEST['term'] );
|
730 |
|
731 |
if ( empty( $term ) ) {
|
732 |
+
die( __FILE__ . '::' . __FUNCTION__ );;
|
733 |
}
|
734 |
|
735 |
$found_customers = array();
|
774 |
$query->query_where .= $wpdb->prepare( " OR user_name.meta_value LIKE %s ", '%' . $term . '%' );
|
775 |
}
|
776 |
|
777 |
+
/**
|
778 |
+
* Dismiss notice
|
779 |
+
*
|
780 |
+
* @update 3.x.x
|
781 |
+
*/
|
782 |
public static function dismiss_notice() {
|
783 |
+
$name = learn_press_get_request( 'name' );
|
784 |
+
$value = learn_press_get_request( 'value' );
|
785 |
+
$expired = learn_press_get_request( 'expired' );
|
786 |
|
787 |
+
LP_Admin_Notice::instance()->dismiss_notice_2( $name, $value, $expired );
|
788 |
+
|
789 |
+
die();
|
|
|
|
|
|
|
|
|
|
|
790 |
}
|
791 |
|
792 |
public static function plugin_action() {
|
inc/admin/class-lp-admin-notice.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* @author ThimPress
|
7 |
* @version 1.0
|
8 |
*/
|
9 |
-
if ( !defined( 'ABSPATH' ) ) {
|
10 |
exit; // Exit if accessed directly
|
11 |
}
|
12 |
|
@@ -20,17 +20,124 @@ class LP_Admin_Notice {
|
|
20 |
*/
|
21 |
protected static $_notices = array();
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
/**
|
24 |
* LP_Admin_Notice construct
|
25 |
*/
|
26 |
-
|
27 |
add_action( 'init', array( $this, 'dismiss_notice' ) );
|
28 |
add_action( 'admin_notices', array( __CLASS__, 'show_notices' ), 100000 );
|
29 |
}
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
public function dismiss_notice() {
|
|
|
32 |
$notice = learn_press_get_request( 'lp-hide-notice' );
|
33 |
-
if (
|
34 |
return;
|
35 |
}
|
36 |
if ( $transient = learn_press_get_request( 't' ) ) {
|
@@ -100,6 +207,21 @@ class LP_Admin_Notice {
|
|
100 |
delete_transient( 'learn_press_redirect_notices' );
|
101 |
}
|
102 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
}
|
104 |
|
105 |
-
|
6 |
* @author ThimPress
|
7 |
* @version 1.0
|
8 |
*/
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
exit; // Exit if accessed directly
|
11 |
}
|
12 |
|
20 |
*/
|
21 |
protected static $_notices = array();
|
22 |
|
23 |
+
/**
|
24 |
+
* @since 3.x.x
|
25 |
+
*
|
26 |
+
* @var LP_Admin_Notice
|
27 |
+
*/
|
28 |
+
protected static $instance = false;
|
29 |
+
|
30 |
/**
|
31 |
* LP_Admin_Notice construct
|
32 |
*/
|
33 |
+
protected function __construct() {
|
34 |
add_action( 'init', array( $this, 'dismiss_notice' ) );
|
35 |
add_action( 'admin_notices', array( __CLASS__, 'show_notices' ), 100000 );
|
36 |
}
|
37 |
|
38 |
+
/**
|
39 |
+
* Update option to turn-off a notice.
|
40 |
+
*
|
41 |
+
* @since 3.x.x
|
42 |
+
*
|
43 |
+
* @param string $name
|
44 |
+
* @param string $value
|
45 |
+
* @param int $expired
|
46 |
+
*/
|
47 |
+
public function dismiss_notice_2( $name, $value, $expired = 0 ) {
|
48 |
+
if ( $expired ) {
|
49 |
+
set_transient( 'lp_dismiss_notice' . $name, $value, $expired );
|
50 |
+
} else {
|
51 |
+
$values = get_option( 'lp_dismiss_notice' );
|
52 |
+
if ( ! $values ) {
|
53 |
+
$values = array( $name => $value );
|
54 |
+
} else {
|
55 |
+
$values[ $name ] = $value;
|
56 |
+
}
|
57 |
+
|
58 |
+
update_option( 'lp_dismiss_notice', $values );
|
59 |
+
}
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Check if a notice has dismissed.
|
64 |
+
*
|
65 |
+
* @since 3.x.x
|
66 |
+
*
|
67 |
+
* @param string $name
|
68 |
+
*
|
69 |
+
* @return bool
|
70 |
+
*/
|
71 |
+
public function has_dismissed_notice( $name ) {
|
72 |
+
if ( $transient = get_transient( 'lp_dismiss_notice' . $name ) ) {
|
73 |
+
return $transient;
|
74 |
+
}
|
75 |
+
|
76 |
+
$values = get_option( 'lp_dismiss_notice' );
|
77 |
+
if ( ! $values ) {
|
78 |
+
return false;
|
79 |
+
}
|
80 |
+
|
81 |
+
return isset( $values[ $name ] ) ? $values[ $name ] : false;
|
82 |
+
}
|
83 |
+
|
84 |
+
/**
|
85 |
+
* Remove a notice has been dismissed.
|
86 |
+
*
|
87 |
+
* @since 3.x.x
|
88 |
+
*
|
89 |
+
* @param string|array $name - Optional. NULL will remove all notices.
|
90 |
+
* @param bool $expired - Optional. TRUE if dismiss notice as transient (in case $name passed).
|
91 |
+
*
|
92 |
+
* @return bool
|
93 |
+
*/
|
94 |
+
public function remove_dismissed_notice( $name = '' ) {
|
95 |
+
|
96 |
+
if ( ! $name ) {
|
97 |
+
global $wpdb;
|
98 |
+
|
99 |
+
$query = $wpdb->prepare( "SELECT SUBSTR(option_name, 12) FROM {$wpdb->options} WHERE option_name LIKE %s", '%' . $wpdb->esc_like( '_transient_lp_dismiss_notice' ) . '%' );
|
100 |
+
|
101 |
+
if ( $all_notices = $wpdb->get_col( $query ) ) {
|
102 |
+
foreach ( $all_notices as $notice ) {
|
103 |
+
delete_transient( $notice );
|
104 |
+
}
|
105 |
+
}
|
106 |
+
|
107 |
+
delete_option( 'lp_dismiss_notice' );
|
108 |
+
|
109 |
+
return true;
|
110 |
+
} elseif ( is_array( $name ) ) {
|
111 |
+
foreach ( $name as $notice ) {
|
112 |
+
$this->remove_dismissed_notice( $notice );
|
113 |
+
}
|
114 |
+
|
115 |
+
return true;
|
116 |
+
}
|
117 |
+
|
118 |
+
delete_transient( 'lp_dismiss_notice' . $name );
|
119 |
+
|
120 |
+
$values = get_option( 'lp_dismiss_notice' );
|
121 |
+
|
122 |
+
if ( ! $values ) {
|
123 |
+
return false;
|
124 |
+
} else {
|
125 |
+
if ( array_key_exists( $name, $values ) ) {
|
126 |
+
unset( $values[ $name ] );
|
127 |
+
|
128 |
+
update_option( 'lp_dismiss_notice', $values );
|
129 |
+
|
130 |
+
return $values;
|
131 |
+
}
|
132 |
+
}
|
133 |
+
|
134 |
+
return false;
|
135 |
+
}
|
136 |
+
|
137 |
public function dismiss_notice() {
|
138 |
+
|
139 |
$notice = learn_press_get_request( 'lp-hide-notice' );
|
140 |
+
if ( ! $notice ) {
|
141 |
return;
|
142 |
}
|
143 |
if ( $transient = learn_press_get_request( 't' ) ) {
|
207 |
delete_transient( 'learn_press_redirect_notices' );
|
208 |
}
|
209 |
}
|
210 |
+
|
211 |
+
/**
|
212 |
+
* Get single instance of this class
|
213 |
+
*
|
214 |
+
* @since 3.x.x
|
215 |
+
*
|
216 |
+
* @return LP_Admin_Notice
|
217 |
+
*/
|
218 |
+
public static function instance() {
|
219 |
+
if ( ! self::$instance ) {
|
220 |
+
self::$instance = new self();
|
221 |
+
}
|
222 |
+
|
223 |
+
return self::$instance;
|
224 |
+
}
|
225 |
}
|
226 |
|
227 |
+
LP_Admin_Notice::instance();
|
inc/admin/class-lp-post-type-actions.php
CHANGED
@@ -28,7 +28,7 @@ class LP_Post_Type_Actions {
|
|
28 |
add_filter( 'pre_trash_post', array( $this, 'pre_trash_post' ), 10, 2 );
|
29 |
add_filter( 'trashed_post', array( $this, 'trashed_post' ), 1000, 1 );
|
30 |
|
31 |
-
add_filter( 'before_delete_post', array( $this, 'before_delete_post' ), 1000, 1 );
|
32 |
//add_filter( 'deleted_post', array( $this, 'deleted_post' ), 1000, 1 );
|
33 |
|
34 |
add_filter( 'transition_post_status', array( $this, 'transition_post_status' ), 1000, 3 );
|
28 |
add_filter( 'pre_trash_post', array( $this, 'pre_trash_post' ), 10, 2 );
|
29 |
add_filter( 'trashed_post', array( $this, 'trashed_post' ), 1000, 1 );
|
30 |
|
31 |
+
// add_filter( 'before_delete_post', array( $this, 'before_delete_post' ), 1000, 1 );
|
32 |
//add_filter( 'deleted_post', array( $this, 'deleted_post' ), 1000, 1 );
|
33 |
|
34 |
add_filter( 'transition_post_status', array( $this, 'transition_post_status' ), 1000, 3 );
|
inc/admin/views/html-admin-notice-templates.php
CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
4 |
exit;
|
5 |
}
|
6 |
|
7 |
-
if (
|
8 |
return;
|
9 |
}
|
10 |
$template_dir = get_template_directory();
|
@@ -27,7 +27,7 @@ $theme_name = implode( ' & ', $theme_name );
|
|
27 |
|
28 |
$readmore = 'https://thimpress.com/knowledge-base/outdated-template-fix/';
|
29 |
?>
|
30 |
-
<div id="message" class="learn-press-
|
31 |
<p><?php printf( wp_kses( __( 'There is a new update of LearnPress. You may need to update your theme <strong>(%s)</strong> to avoid outdated template files.', 'learnpress' ), array( 'strong' => array() ) ), $theme_name ); ?></p>
|
32 |
<p class="outdated-readmore-link"><?php echo sprintf( wp_kses( __( 'This is not a bug, don\'t worry. Read more about Outdated template files notice <a href="%s" target="_blank">here</a>.', 'learnpress' ), array(
|
33 |
'a' => array(
|
@@ -38,7 +38,13 @@ $readmore = 'https://thimpress.com/knowledge-base/outdated-template-fix/';
|
|
38 |
<p>
|
39 |
<a class="button"
|
40 |
href="<?php echo admin_url( 'admin.php?page=learn-press-tools&tab=templates' ); ?>"><?php esc_attr_e( 'View list of outdated templates', 'learnpress' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
</p>
|
42 |
-
|
43 |
-
class="learn-press-admin-notice-dismiss"></a>
|
44 |
</div>
|
4 |
exit;
|
5 |
}
|
6 |
|
7 |
+
if ( LP_Admin_Notice::instance()->has_dismissed_notice( 'outdated-template' ) == 'yes' ) {
|
8 |
return;
|
9 |
}
|
10 |
$template_dir = get_template_directory();
|
27 |
|
28 |
$readmore = 'https://thimpress.com/knowledge-base/outdated-template-fix/';
|
29 |
?>
|
30 |
+
<div id="message" class="learn-press-notice notice-warning notice">
|
31 |
<p><?php printf( wp_kses( __( 'There is a new update of LearnPress. You may need to update your theme <strong>(%s)</strong> to avoid outdated template files.', 'learnpress' ), array( 'strong' => array() ) ), $theme_name ); ?></p>
|
32 |
<p class="outdated-readmore-link"><?php echo sprintf( wp_kses( __( 'This is not a bug, don\'t worry. Read more about Outdated template files notice <a href="%s" target="_blank">here</a>.', 'learnpress' ), array(
|
33 |
'a' => array(
|
38 |
<p>
|
39 |
<a class="button"
|
40 |
href="<?php echo admin_url( 'admin.php?page=learn-press-tools&tab=templates' ); ?>"><?php esc_attr_e( 'View list of outdated templates', 'learnpress' ); ?></a>
|
41 |
+
|
42 |
+
<a href=""
|
43 |
+
onclick="LP.dismissMessage(this, {expired: 3600}); return false;"
|
44 |
+
data-name="outdated-template"
|
45 |
+
data-value="yes"
|
46 |
+
data-el="#message"
|
47 |
+
data-instant="yes"><?php esc_html_e( 'Dismiss', 'learnpress' ); ?></a>
|
48 |
</p>
|
49 |
+
|
|
|
50 |
</div>
|
inc/class-lp-install.php
CHANGED
@@ -170,6 +170,12 @@ if ( ! function_exists( 'LP_Install' ) ) {
|
|
170 |
// Force to show notice outdated template
|
171 |
learn_press_delete_user_option( 'hide-notice-template-files' );
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
self::update_db_version();
|
174 |
self::update_version();
|
175 |
}
|
170 |
// Force to show notice outdated template
|
171 |
learn_press_delete_user_option( 'hide-notice-template-files' );
|
172 |
|
173 |
+
LP_Admin_Notice::instance()->remove_dismissed_notice(
|
174 |
+
array(
|
175 |
+
'outdated-template'
|
176 |
+
)
|
177 |
+
);
|
178 |
+
|
179 |
self::update_db_version();
|
180 |
self::update_version();
|
181 |
}
|
inc/class-lp-market-products.php
CHANGED
@@ -1,40 +1,40 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
class LP_Market_Products {
|
4 |
-
public function __construct() {
|
5 |
-
|
6 |
-
add_filter( 'tpl-market-products', array( $this, 'market_products' ) );
|
7 |
-
|
8 |
-
}
|
9 |
-
|
10 |
-
public function market_products( $products = array() ) {
|
11 |
-
$products['learnpress'] = array(
|
12 |
-
'name' => __( 'LearnPress', 'learnpress' ),
|
13 |
-
'desc' => __( 'Ahihi', 'learnpress' ),
|
14 |
-
'priority' => 5,
|
15 |
-
'items' => array(
|
16 |
-
array(
|
17 |
-
'name' => 'LearnPress Course Review',
|
18 |
-
'slug' => 'learnpress-course-review',
|
19 |
-
'required' => false,
|
20 |
-
'version' => '2.0',
|
21 |
-
'description' => 'Adding review for course By ThimPress.',
|
22 |
-
'add-on' => true,
|
23 |
-
),
|
24 |
-
array(
|
25 |
-
'name' => 'LearnPress Gradebook',
|
26 |
-
'slug' => 'learnpress-gradebook',
|
27 |
-
'required' => false,
|
28 |
-
'version' => '2.0',
|
29 |
-
'premium' => true,
|
30 |
-
'description' => 'Adding review for course By ThimPress.',
|
31 |
-
'add-on' => true,
|
32 |
-
),
|
33 |
-
)
|
34 |
-
);
|
35 |
-
|
36 |
-
return $products;
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
return new LP_Market_Products();
|
1 |
<?php
|
2 |
+
//
|
3 |
+
//class LP_Market_Products {
|
4 |
+
// public function __construct() {
|
5 |
+
//
|
6 |
+
// add_filter( 'tpl-market-products', array( $this, 'market_products' ) );
|
7 |
+
//
|
8 |
+
// }
|
9 |
+
//
|
10 |
+
// public function market_products( $products = array() ) {
|
11 |
+
// $products['learnpress'] = array(
|
12 |
+
// 'name' => __( 'LearnPress', 'learnpress' ),
|
13 |
+
// 'desc' => __( 'Ahihi', 'learnpress' ),
|
14 |
+
// 'priority' => 5,
|
15 |
+
// 'items' => array(
|
16 |
+
// array(
|
17 |
+
// 'name' => 'LearnPress Course Review',
|
18 |
+
// 'slug' => 'learnpress-course-review',
|
19 |
+
// 'required' => false,
|
20 |
+
// 'version' => '2.0',
|
21 |
+
// 'description' => 'Adding review for course By ThimPress.',
|
22 |
+
// 'add-on' => true,
|
23 |
+
// ),
|
24 |
+
// array(
|
25 |
+
// 'name' => 'LearnPress Gradebook',
|
26 |
+
// 'slug' => 'learnpress-gradebook',
|
27 |
+
// 'required' => false,
|
28 |
+
// 'version' => '2.0',
|
29 |
+
// 'premium' => true,
|
30 |
+
// 'description' => 'Adding review for course By ThimPress.',
|
31 |
+
// 'add-on' => true,
|
32 |
+
// ),
|
33 |
+
// )
|
34 |
+
// );
|
35 |
+
//
|
36 |
+
// return $products;
|
37 |
+
// }
|
38 |
+
//}
|
39 |
+
//
|
40 |
+
//return new LP_Market_Products();
|
inc/class-lp-repair-database.php
CHANGED
@@ -687,7 +687,7 @@ class LP_Repair_Database {
|
|
687 |
$courses_format = array_fill( 0, sizeof( $courses ), '%d' );
|
688 |
$statuses_format = $wpdb->prepare( join( ',', $statuses_format ), $statuses );
|
689 |
$courses_format = $wpdb->prepare( join( ',', $courses_format ), $courses );
|
690 |
-
|
691 |
$query = $wpdb->prepare( "
|
692 |
SELECT cid, status, orders
|
693 |
FROM(
|
687 |
$courses_format = array_fill( 0, sizeof( $courses ), '%d' );
|
688 |
$statuses_format = $wpdb->prepare( join( ',', $statuses_format ), $statuses );
|
689 |
$courses_format = $wpdb->prepare( join( ',', $courses_format ), $courses );
|
690 |
+
$wpdb->query( 'SET SESSION group_concat_max_len = 18446744073709551615' );
|
691 |
$query = $wpdb->prepare( "
|
692 |
SELECT cid, status, orders
|
693 |
FROM(
|
inc/curds/class-lp-course-curd.php
CHANGED
@@ -417,18 +417,21 @@ if ( ! class_exists( 'LP_Course_CURD' ) ) {
|
|
417 |
|
418 |
public function get_course_items( $course_id, $section_ids = array() ) {
|
419 |
global $wpdb;
|
|
|
420 |
$query = $wpdb->prepare( "
|
421 |
SELECT section_items.item_id
|
422 |
FROM {$wpdb->posts} course
|
423 |
INNER JOIN {$wpdb->learnpress_sections} course_sections ON course.ID = course_sections.section_course_id
|
424 |
INNER JOIN {$wpdb->learnpress_section_items} section_items ON course_sections.section_id = section_items.section_id
|
|
|
425 |
WHERE course.ID = %d
|
|
|
426 |
", $course_id );
|
427 |
|
428 |
if ( $section_ids ) {
|
429 |
$query .= " AND course_sections.section_id IN(" . join( ',', $section_ids ) . ")";
|
430 |
}
|
431 |
-
|
432 |
return $wpdb->get_col( $query );
|
433 |
}
|
434 |
|
417 |
|
418 |
public function get_course_items( $course_id, $section_ids = array() ) {
|
419 |
global $wpdb;
|
420 |
+
$type = learn_press_course_get_support_item_types( true );
|
421 |
$query = $wpdb->prepare( "
|
422 |
SELECT section_items.item_id
|
423 |
FROM {$wpdb->posts} course
|
424 |
INNER JOIN {$wpdb->learnpress_sections} course_sections ON course.ID = course_sections.section_course_id
|
425 |
INNER JOIN {$wpdb->learnpress_section_items} section_items ON course_sections.section_id = section_items.section_id
|
426 |
+
INNER JOIN {$wpdb->posts} p ON p.ID = section_items.item_id
|
427 |
WHERE course.ID = %d
|
428 |
+
AND section_items.item_type IN('" . join( "','", $type ) . "')
|
429 |
", $course_id );
|
430 |
|
431 |
if ( $section_ids ) {
|
432 |
$query .= " AND course_sections.section_id IN(" . join( ',', $section_ids ) . ")";
|
433 |
}
|
434 |
+
$query .= " ORDER BY course_sections.section_order, section_items.item_order";
|
435 |
return $wpdb->get_col( $query );
|
436 |
}
|
437 |
|
inc/custom-post-types/order.php
CHANGED
@@ -485,19 +485,20 @@ if ( ! class_exists( 'LP_Order_Post_Type' ) ) {
|
|
485 |
*/
|
486 |
public function posts_where_paged( $where ) {
|
487 |
global $wpdb, $wp_query;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
|
489 |
if ( ! $this->_is_archive() || ! $this->_is_search() ) {
|
490 |
-
if(is_admin() && !$wp_query->query['post_status']){
|
491 |
-
$statuses = array_keys(learn_press_get_register_order_statuses());
|
492 |
-
$search = "{$wpdb->posts}.post_status = 'publish' ";
|
493 |
-
$tmps = array($search);
|
494 |
-
$tmp = "{$wpdb->posts}.post_status = %s ";
|
495 |
-
foreach($statuses as $status ){
|
496 |
-
$tmps[]=$wpdb->prepare( $tmp, $status );
|
497 |
-
}
|
498 |
-
$replace = implode(' OR ',$tmps);
|
499 |
-
$where = str_replace($search, $replace, $where);
|
500 |
-
}
|
501 |
return $where;
|
502 |
}
|
503 |
|
@@ -546,6 +547,10 @@ if ( ! class_exists( 'LP_Order_Post_Type' ) ) {
|
|
546 |
OR {$wpdb->posts}.ID LIKE %s
|
547 |
) ";
|
548 |
$sql = $wpdb->prepare( $sql, array( LP_ORDER_CPT, '_user_id', $s, $s, $s, $s, $s ) );
|
|
|
|
|
|
|
|
|
549 |
if ( ! empty( $matches2 ) && isset( $matches2[0] ) ) {
|
550 |
$where = str_replace( $matches2[0], $sql . ' OR ' . $matches2[0], $where );
|
551 |
} else {
|
485 |
*/
|
486 |
public function posts_where_paged( $where ) {
|
487 |
global $wpdb, $wp_query;
|
488 |
+
|
489 |
+
if(is_admin() && $this->_is_archive() && !$wp_query->query['post_status']){
|
490 |
+
$statuses = array_keys(learn_press_get_register_order_statuses());
|
491 |
+
$search = "{$wpdb->posts}.post_status = 'publish' ";
|
492 |
+
$tmps = array($search);
|
493 |
+
$tmp = "{$wpdb->posts}.post_status = %s ";
|
494 |
+
foreach($statuses as $status ){
|
495 |
+
$tmps[]=$wpdb->prepare( $tmp, $status );
|
496 |
+
}
|
497 |
+
$replace = implode(' OR ',$tmps);
|
498 |
+
$where = str_replace($search, $replace, $where);
|
499 |
+
}
|
500 |
|
501 |
if ( ! $this->_is_archive() || ! $this->_is_search() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
return $where;
|
503 |
}
|
504 |
|
547 |
OR {$wpdb->posts}.ID LIKE %s
|
548 |
) ";
|
549 |
$sql = $wpdb->prepare( $sql, array( LP_ORDER_CPT, '_user_id', $s, $s, $s, $s, $s ) );
|
550 |
+
# search order via course name
|
551 |
+
$sql .= " OR ".$wpdb->prepare( " {$wpdb->posts}.ID IN (
|
552 |
+
SELECT DISTINCT order_id FROM {$wpdb->learnpress_order_items} WHERE `order_item_name` like %s
|
553 |
+
)",$s);
|
554 |
if ( ! empty( $matches2 ) && isset( $matches2[0] ) ) {
|
555 |
$where = str_replace( $matches2[0], $sql . ' OR ' . $matches2[0], $where );
|
556 |
} else {
|
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.5' );
|
8 |
|
9 |
define( 'LP_WP_CONTENT', basename( WP_CONTENT_DIR ) );
|
10 |
|
inc/lp-core-functions.php
CHANGED
@@ -554,7 +554,7 @@ function learn_press_setup_pages() {
|
|
554 |
wp_cache_add( $page->ID, $page, 'posts' );
|
555 |
}
|
556 |
|
557 |
-
LP_Object_Cache::set( 'static-page-ids', $page_ids, 'learn-press' );
|
558 |
}
|
559 |
}
|
560 |
|
554 |
wp_cache_add( $page->ID, $page, 'posts' );
|
555 |
}
|
556 |
|
557 |
+
//LP_Object_Cache::set( 'static-page-ids', $page_ids, 'learn-press' );
|
558 |
}
|
559 |
}
|
560 |
|
inc/user-item/class-lp-user-item-course.php
CHANGED
@@ -219,7 +219,7 @@ class LP_User_Item_Course extends LP_User_Item implements ArrayAccess {
|
|
219 |
public function offsetExists( $offset ) {
|
220 |
$items = $this->read_items();
|
221 |
|
222 |
-
return array_key_exists( $offset, $items );
|
223 |
}
|
224 |
|
225 |
public function evaluate() {
|
219 |
public function offsetExists( $offset ) {
|
220 |
$items = $this->read_items();
|
221 |
|
222 |
+
return array_key_exists( $offset, (array) $items );
|
223 |
}
|
224 |
|
225 |
public function evaluate() {
|
inc/user-item/class-lp-user-item.php
CHANGED
@@ -264,7 +264,19 @@ class LP_User_Item extends LP_Abstract_Object_Data implements ArrayAccess {
|
|
264 |
* @return string
|
265 |
*/
|
266 |
public function get_status() {
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
}
|
269 |
|
270 |
public function is_exists() {
|
264 |
* @return string
|
265 |
*/
|
266 |
public function get_status() {
|
267 |
+
$got_status = $this->get_data( 'status' );
|
268 |
+
if ( ! $got_status && false !== ( $user_id = $this->get_extra_data( 'user_id' ) ) ) {
|
269 |
+
$user_item = learn_press_get_user_item( array(
|
270 |
+
'user_id' => $user_id,
|
271 |
+
'item_id' => $this->get_item_id(),
|
272 |
+
'parent_id' => $this->get_parent_id(),
|
273 |
+
'ref_id' => $this->get_data( 'ref_id' )
|
274 |
+
) );
|
275 |
+
if ( ! empty( $user_item ) ) {
|
276 |
+
$got_status = $user_item->status;
|
277 |
+
}
|
278 |
+
}
|
279 |
+
return $got_status;
|
280 |
}
|
281 |
|
282 |
public function is_exists() {
|
inc/user/abstract-lp-user.php
CHANGED
@@ -60,7 +60,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
60 |
/**
|
61 |
* LP_Abstract_User constructor.
|
62 |
*
|
63 |
-
* @param int
|
64 |
* @param array $args
|
65 |
*/
|
66 |
public function __construct( $the_user = 0, $args = array() ) {
|
@@ -96,7 +96,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
96 |
* @updated 3.1.0
|
97 |
*
|
98 |
* @param int|LP_Abstract_Course $course_id
|
99 |
-
* @param bool
|
100 |
*
|
101 |
* @return LP_User_Item_Course|LP_User_Item_Quiz|bool
|
102 |
*/
|
@@ -214,7 +214,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
214 |
* Check if a course is exists then return it's ID.
|
215 |
* Try to get it from global.
|
216 |
*
|
217 |
-
* @param int
|
218 |
* @param string $return
|
219 |
*
|
220 |
* @return bool|false|int|LP_Course
|
@@ -260,8 +260,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
260 |
* Return TRUE if an item has a status.
|
261 |
*
|
262 |
* @param array $statuses
|
263 |
-
* @param int
|
264 |
-
* @param int
|
265 |
*
|
266 |
* @return mixed
|
267 |
*
|
@@ -277,8 +277,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
277 |
/**
|
278 |
* Get all records of an item.
|
279 |
*
|
280 |
-
* @param int
|
281 |
-
* @param int
|
282 |
* @param bool $return_last
|
283 |
*
|
284 |
* @return bool|mixed
|
@@ -318,8 +318,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
318 |
/**
|
319 |
* Start quiz for the user.
|
320 |
*
|
321 |
-
* @param int
|
322 |
-
* @param int
|
323 |
* @param bool $wp_error Optional. Whether to return a WP_Error on failure. Default false.
|
324 |
*
|
325 |
* @throws Exception
|
@@ -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 |
-
$course
|
341 |
$access_level = $this->get_course_access_level( $course_id );
|
342 |
|
343 |
// If user has already finished the course
|
@@ -353,7 +353,7 @@ 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 |
-
$user
|
357 |
|
358 |
if ( $course->is_required_enroll() && $user->is_guest()/* && ! $quiz->get_preview() */ ) {
|
359 |
throw new Exception( __( 'You have to login for starting quiz.', 'learnpress' ), LP_REQUIRE_LOGIN );
|
@@ -374,6 +374,23 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
374 |
$course_data = $this->get_course_data( $course_id );
|
375 |
$quiz = learn_press_get_quiz( $quiz_id );
|
376 |
$quiz_data = $course_data->get_item( $quiz_id );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
if ( ! $enable_history = $quiz->enable_archive_history() ) {
|
379 |
if ( $quiz_data->get_user_item_id() ) {
|
@@ -393,6 +410,10 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
393 |
|
394 |
$course_data->update_item_retaken_count( $quiz_id, '+1' );
|
395 |
$quiz_data->set_status( 'started' );
|
|
|
|
|
|
|
|
|
396 |
|
397 |
if ( $quiz_data->update() ) {
|
398 |
$course_data->set_item( $quiz_data );
|
@@ -412,8 +433,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
412 |
do_action( 'learn-press/user/quiz-started', $quiz_id, $course_id, $this->get_id() );
|
413 |
|
414 |
$return = $quiz_data->get_mysql_data();
|
415 |
-
}
|
416 |
-
catch ( Exception $ex ) {
|
417 |
$return = $wp_error ? new WP_Error( $ex->getCode(), $ex->getMessage() ) : false;
|
418 |
}
|
419 |
|
@@ -423,8 +443,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
423 |
/**
|
424 |
* Finish a quiz for the user and save all data needed
|
425 |
*
|
426 |
-
* @param int
|
427 |
-
* @param int
|
428 |
* @param bool $wp_error
|
429 |
*
|
430 |
* @return mixed
|
@@ -473,8 +493,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
473 |
/**
|
474 |
* Retake a quiz for the user
|
475 |
*
|
476 |
-
* @param int
|
477 |
-
* @param int
|
478 |
* @param bool $wp_error
|
479 |
*
|
480 |
* @return bool|WP_Error
|
@@ -486,6 +506,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
486 |
if ( ! apply_filters( 'learn-press/user/before-retake-quiz', true, $quiz_id, $course_id, $this->get_id() ) ) {
|
487 |
return false;
|
488 |
}
|
|
|
489 |
$return = false;
|
490 |
try {
|
491 |
|
@@ -510,13 +531,18 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
510 |
$quiz_data = $course_data->get_item( $quiz_id );
|
511 |
|
512 |
if ( ! $enable_history = $quiz->enable_archive_history() ) {
|
513 |
-
if ( $quiz_data->get_user_item_id() ) {
|
514 |
global $wpdb;
|
515 |
-
$
|
516 |
-
|
517 |
-
|
518 |
-
|
|
|
519 |
|
|
|
|
|
|
|
|
|
520 |
$wpdb->query( $query );
|
521 |
} else {
|
522 |
$course_data->update_item_retaken_count( $quiz_id, 0 );
|
@@ -662,8 +688,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
662 |
}
|
663 |
|
664 |
/**
|
665 |
-
* @param int
|
666 |
-
* @param int
|
667 |
* @param bool $last
|
668 |
*
|
669 |
* @since 3.0.0
|
@@ -720,8 +746,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
720 |
/**
|
721 |
* Get current status of an item for user.
|
722 |
*
|
723 |
-
* @param int
|
724 |
-
* @param int
|
725 |
* @param bool $force
|
726 |
*
|
727 |
* @return bool|mixed
|
@@ -769,7 +795,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
769 |
//learn_press_show_log($course_data, $course_data->get_item( $item_id ));
|
770 |
|
771 |
if ( $item = $course_data->get_item( $item_id ) ) {
|
772 |
-
learn_press_show_log('HERE');
|
773 |
} else {
|
774 |
$item = LP_User_Item::get_item_object( $item_id );
|
775 |
$item->set_ref_id( $course_id );
|
@@ -829,8 +855,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
829 |
/**
|
830 |
* Get current question's ID/Permalink inside quiz.
|
831 |
*
|
832 |
-
* @param int
|
833 |
-
* @param int
|
834 |
* @param bool $permalink
|
835 |
*
|
836 |
* @return bool|int|string
|
@@ -846,10 +872,13 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
846 |
return false;
|
847 |
}
|
848 |
|
849 |
-
$quiz
|
850 |
-
$quiz_item
|
851 |
-
$question_id
|
852 |
-
|
|
|
|
|
|
|
853 |
if ( $question_id && $permalink ) {
|
854 |
return apply_filters( 'learn-press/current-user-question-permalink', $quiz->get_question_link( $question_id ), $quiz_id, $course_id, $this->get_id() );
|
855 |
}
|
@@ -890,9 +919,9 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
890 |
* Checks if has status of a quiz for user
|
891 |
*
|
892 |
* @param string|array $statuses
|
893 |
-
* @param int
|
894 |
-
* @param int
|
895 |
-
* @param boolean
|
896 |
*
|
897 |
* @return bool
|
898 |
*/
|
@@ -908,8 +937,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
908 |
/**
|
909 |
* Get current results of a quiz
|
910 |
*
|
911 |
-
* @param int
|
912 |
-
* @param int
|
913 |
* @param string $prop
|
914 |
*
|
915 |
* @return mixed
|
@@ -1064,9 +1093,9 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
1064 |
/**
|
1065 |
* Get history of a quiz for an user
|
1066 |
*
|
1067 |
-
* @param int
|
1068 |
-
* @param int
|
1069 |
-
* @param int
|
1070 |
* @param bool $force
|
1071 |
*
|
1072 |
* @return mixed|null|void
|
@@ -1312,7 +1341,9 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
1312 |
|
1313 |
$view = false;
|
1314 |
$course = learn_press_get_course( $course_id );
|
1315 |
-
|
|
|
|
|
1316 |
// Disable preview course when course status is pending
|
1317 |
if ( $course && $course->is_publish() && ( $item = $course->get_item( $item_id ) ) ) {
|
1318 |
if ( $this->has_course_access_level( array(
|
@@ -1546,7 +1577,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
1546 |
* - started: value of column `status` in user_items is started
|
1547 |
* - enrolled: value of column `status` in user_items is enrolled
|
1548 |
*
|
1549 |
-
* @param int
|
1550 |
* @param string|array $statuses
|
1551 |
*
|
1552 |
* @since 2.0
|
@@ -1718,7 +1749,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
1718 |
/**
|
1719 |
* Return true if user has already enrolled course
|
1720 |
*
|
1721 |
-
* @param int
|
1722 |
* @param bool $force
|
1723 |
*
|
1724 |
* @return bool
|
@@ -1845,7 +1876,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
1845 |
/**
|
1846 |
* Count number of time user has retaken a quiz
|
1847 |
*
|
1848 |
-
* @param int
|
1849 |
* @param bool $force
|
1850 |
*
|
1851 |
* @return int
|
@@ -1961,8 +1992,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
1961 |
do_action( 'learn_press_user_complete_lesson', $lesson_id, $result, $this->get_id() );
|
1962 |
|
1963 |
do_action( 'learn-press/user-completed-lesson', $lesson_id, $course_id, $this->get_id() );
|
1964 |
-
}
|
1965 |
-
catch ( Exception $ex ) {
|
1966 |
$result = $return_wp_error ? new WP_Error( $ex->getCode(), $ex->getMessage() ) : false;
|
1967 |
}
|
1968 |
|
@@ -2157,8 +2187,8 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
2157 |
*
|
2158 |
* @since 3.1.0
|
2159 |
*
|
2160 |
-
* @param int[]
|
2161 |
-
* @param int
|
2162 |
* @param string $compare
|
2163 |
*
|
2164 |
* @return bool
|
@@ -2369,7 +2399,7 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
2369 |
global $wpdb;
|
2370 |
|
2371 |
$course = learn_press_get_course( $course_id );
|
2372 |
-
$user_id =
|
2373 |
|
2374 |
if ( $course->is_required_enroll() && ! $force ) {
|
2375 |
|
@@ -2388,7 +2418,11 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
2388 |
}
|
2389 |
|
2390 |
$user_item_api = new LP_User_Item_CURD();
|
2391 |
-
$course_item = $user_item_api->get_item_by( array(
|
|
|
|
|
|
|
|
|
2392 |
|
2393 |
if ( ! $course_item ) {
|
2394 |
$course_item = LP_User_Item::get_empty_item();
|
@@ -2401,13 +2435,16 @@ if ( ! class_exists( 'LP_Abstract_User' ) ) {
|
|
2401 |
$course_item['item_id'] = $course_id;
|
2402 |
$course_item['item_type'] = learn_press_get_post_type( $course_id );
|
2403 |
$course_item['ref_id'] = $order_id;
|
2404 |
-
$course_item['ref_type'] = learn_press_get_post_type( $order_id );
|
2405 |
$course_item['start_time'] = $date->toSql();
|
2406 |
$course_item['start_time_gmt'] = $date->toSql( false );
|
2407 |
|
2408 |
$user_course = new LP_User_Item_Course( $course_item );
|
2409 |
$user_course->set_status( 'enrolled' );
|
2410 |
-
$user_course->
|
|
|
|
|
|
|
2411 |
|
2412 |
learn_press_remove_message( '', 'error' );
|
2413 |
$user_id = is_user_logged_in() ? $this->get_id() : 0;
|
60 |
/**
|
61 |
* LP_Abstract_User constructor.
|
62 |
*
|
63 |
+
* @param int $the_user
|
64 |
* @param array $args
|
65 |
*/
|
66 |
public function __construct( $the_user = 0, $args = array() ) {
|
96 |
* @updated 3.1.0
|
97 |
*
|
98 |
* @param int|LP_Abstract_Course $course_id
|
99 |
+
* @param bool $check_exists
|
100 |
*
|
101 |
* @return LP_User_Item_Course|LP_User_Item_Quiz|bool
|
102 |
*/
|
214 |
* Check if a course is exists then return it's ID.
|
215 |
* Try to get it from global.
|
216 |
*
|
217 |
+
* @param int $course_id
|
218 |
* @param string $return
|
219 |
*
|
220 |
* @return bool|false|int|LP_Course
|
260 |
* Return TRUE if an item has a status.
|
261 |
*
|
262 |
* @param array $statuses
|
263 |
+
* @param int $item_id
|
264 |
+
* @param int $course_id
|
265 |
*
|
266 |
* @return mixed
|
267 |
*
|
277 |
/**
|
278 |
* Get all records of an item.
|
279 |
*
|
280 |
+
* @param int $item_id
|
281 |
+
* @param int $course_id
|
282 |
* @param bool $return_last
|
283 |
*
|
284 |
* @return bool|mixed
|
318 |
/**
|
319 |
* Start quiz for the user.
|
320 |
*
|
321 |
+
* @param int $quiz_id
|
322 |
+
* @param int $course_id
|
323 |
* @param bool $wp_error Optional. Whether to return a WP_Error on failure. Default false.
|
324 |
*
|
325 |
* @throws Exception
|
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
|
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() */ ) {
|
359 |
throw new Exception( __( 'You have to login for starting quiz.', 'learnpress' ), LP_REQUIRE_LOGIN );
|
374 |
$course_data = $this->get_course_data( $course_id );
|
375 |
$quiz = learn_press_get_quiz( $quiz_id );
|
376 |
$quiz_data = $course_data->get_item( $quiz_id );
|
377 |
+
if ( ! $quiz_data ) {
|
378 |
+
$user_item_api = new LP_User_Item_CURD();
|
379 |
+
$course_item = $user_item_api->get_item_by( array(
|
380 |
+
'item_id' => $course_id,
|
381 |
+
'user_id' => $user->get_id()
|
382 |
+
) );
|
383 |
+
|
384 |
+
$quiz_item = LP_User_Item::get_empty_item();
|
385 |
+
$quiz_item['user_id'] = $user->get_id();
|
386 |
+
$quiz_item['item_id'] = $quiz_id;
|
387 |
+
$quiz_item['item_type'] = learn_press_get_post_type( $quiz_id );
|
388 |
+
$quiz_item['ref_id'] = $course_id;
|
389 |
+
$quiz_item['ref_type'] = learn_press_get_post_type( $course_id );
|
390 |
+
$quiz_item['parent_id'] = $course_item->user_item_id;
|
391 |
+
|
392 |
+
$quiz_data = new LP_User_Item_Quiz( $quiz_item );
|
393 |
+
}
|
394 |
|
395 |
if ( ! $enable_history = $quiz->enable_archive_history() ) {
|
396 |
if ( $quiz_data->get_user_item_id() ) {
|
410 |
|
411 |
$course_data->update_item_retaken_count( $quiz_id, '+1' );
|
412 |
$quiz_data->set_status( 'started' );
|
413 |
+
$quiz_data->set_user_id( $user->get_id() );
|
414 |
+
$date = new LP_Datetime();
|
415 |
+
$quiz_data->set_start_time( $date->toSql() );
|
416 |
+
$quiz_data->set_end_time_gmt( $date->toSql( false ) );
|
417 |
|
418 |
if ( $quiz_data->update() ) {
|
419 |
$course_data->set_item( $quiz_data );
|
433 |
do_action( 'learn-press/user/quiz-started', $quiz_id, $course_id, $this->get_id() );
|
434 |
|
435 |
$return = $quiz_data->get_mysql_data();
|
436 |
+
} catch ( Exception $ex ) {
|
|
|
437 |
$return = $wp_error ? new WP_Error( $ex->getCode(), $ex->getMessage() ) : false;
|
438 |
}
|
439 |
|
443 |
/**
|
444 |
* Finish a quiz for the user and save all data needed
|
445 |
*
|
446 |
+
* @param int $quiz_id
|
447 |
+
* @param int $course_id
|
448 |
* @param bool $wp_error
|
449 |
*
|
450 |
* @return mixed
|
493 |
/**
|
494 |
* Retake a quiz for the user
|
495 |
*
|
496 |
+
* @param int $quiz_id
|
497 |
+
* @param int $course_id
|
498 |
* @param bool $wp_error
|
499 |
*
|
500 |
* @return bool|WP_Error
|
506 |
if ( ! apply_filters( 'learn-press/user/before-retake-quiz', true, $quiz_id, $course_id, $this->get_id() ) ) {
|
507 |
return false;
|
508 |
}
|
509 |
+
|
510 |
$return = false;
|
511 |
try {
|
512 |
|
531 |
$quiz_data = $course_data->get_item( $quiz_id );
|
532 |
|
533 |
if ( ! $enable_history = $quiz->enable_archive_history() ) {
|
534 |
+
if ( $user_item_id = $quiz_data->get_user_item_id() ) {
|
535 |
global $wpdb;
|
536 |
+
$query_meta = $wpdb->prepare( "
|
537 |
+
DELETE FROM {$wpdb->learnpress_user_itemmeta}
|
538 |
+
WHERE learnpress_user_item_id = %d
|
539 |
+
", $user_item_id );
|
540 |
+
$wpdb->query( $query_meta );
|
541 |
|
542 |
+
$query = $wpdb->prepare( "
|
543 |
+
DELETE FROM {$wpdb->learnpress_user_items}
|
544 |
+
WHERE user_id = %d AND item_id = %d AND user_item_id <> %d
|
545 |
+
", $this->get_id(), $quiz_id, $quiz_data->get_user_item_id() );
|
546 |
$wpdb->query( $query );
|
547 |
} else {
|
548 |
$course_data->update_item_retaken_count( $quiz_id, 0 );
|
688 |
}
|
689 |
|
690 |
/**
|
691 |
+
* @param int $item_id
|
692 |
+
* @param int $course_id
|
693 |
* @param bool $last
|
694 |
*
|
695 |
* @since 3.0.0
|
746 |
/**
|
747 |
* Get current status of an item for user.
|
748 |
*
|
749 |
+
* @param int $item_id
|
750 |
+
* @param int $course_id
|
751 |
* @param bool $force
|
752 |
*
|
753 |
* @return bool|mixed
|
795 |
//learn_press_show_log($course_data, $course_data->get_item( $item_id ));
|
796 |
|
797 |
if ( $item = $course_data->get_item( $item_id ) ) {
|
798 |
+
learn_press_show_log( 'HERE' );
|
799 |
} else {
|
800 |
$item = LP_User_Item::get_item_object( $item_id );
|
801 |
$item->set_ref_id( $course_id );
|
855 |
/**
|
856 |
* Get current question's ID/Permalink inside quiz.
|
857 |
*
|
858 |
+
* @param int $quiz_id
|
859 |
+
* @param int $course_id
|
860 |
* @param bool $permalink
|
861 |
*
|
862 |
* @return bool|int|string
|
872 |
return false;
|
873 |
}
|
874 |
|
875 |
+
$quiz = learn_press_get_quiz( $quiz_id );
|
876 |
+
$quiz_item = $data[ $quiz_id ];
|
877 |
+
$question_id = $quiz_item->get_current_question();
|
878 |
+
$viewing_question = $quiz->get_viewing_question( 'id' );
|
879 |
+
if ( $viewing_question && $question_id != $viewing_question ) {
|
880 |
+
$question_id = $viewing_question;
|
881 |
+
}
|
882 |
if ( $question_id && $permalink ) {
|
883 |
return apply_filters( 'learn-press/current-user-question-permalink', $quiz->get_question_link( $question_id ), $quiz_id, $course_id, $this->get_id() );
|
884 |
}
|
919 |
* Checks if has status of a quiz for user
|
920 |
*
|
921 |
* @param string|array $statuses
|
922 |
+
* @param int $quiz_id
|
923 |
+
* @param int $course_id
|
924 |
+
* @param boolean $force
|
925 |
*
|
926 |
* @return bool
|
927 |
*/
|
937 |
/**
|
938 |
* Get current results of a quiz
|
939 |
*
|
940 |
+
* @param int $quiz_id
|
941 |
+
* @param int $course_id
|
942 |
* @param string $prop
|
943 |
*
|
944 |
* @return mixed
|
1093 |
/**
|
1094 |
* Get history of a quiz for an user
|
1095 |
*
|
1096 |
+
* @param int $quiz_id
|
1097 |
+
* @param int $course_id
|
1098 |
+
* @param int $history_id
|
1099 |
* @param bool $force
|
1100 |
*
|
1101 |
* @return mixed|null|void
|
1341 |
|
1342 |
$view = false;
|
1343 |
$course = learn_press_get_course( $course_id );
|
1344 |
+
if ( ! $course_id ) {
|
1345 |
+
$course_id = $course->get_id();
|
1346 |
+
}
|
1347 |
// Disable preview course when course status is pending
|
1348 |
if ( $course && $course->is_publish() && ( $item = $course->get_item( $item_id ) ) ) {
|
1349 |
if ( $this->has_course_access_level( array(
|
1577 |
* - started: value of column `status` in user_items is started
|
1578 |
* - enrolled: value of column `status` in user_items is enrolled
|
1579 |
*
|
1580 |
+
* @param int $course_id
|
1581 |
* @param string|array $statuses
|
1582 |
*
|
1583 |
* @since 2.0
|
1749 |
/**
|
1750 |
* Return true if user has already enrolled course
|
1751 |
*
|
1752 |
+
* @param int $course_id
|
1753 |
* @param bool $force
|
1754 |
*
|
1755 |
* @return bool
|
1876 |
/**
|
1877 |
* Count number of time user has retaken a quiz
|
1878 |
*
|
1879 |
+
* @param int $course_id
|
1880 |
* @param bool $force
|
1881 |
*
|
1882 |
* @return int
|
1992 |
do_action( 'learn_press_user_complete_lesson', $lesson_id, $result, $this->get_id() );
|
1993 |
|
1994 |
do_action( 'learn-press/user-completed-lesson', $lesson_id, $course_id, $this->get_id() );
|
1995 |
+
} catch ( Exception $ex ) {
|
|
|
1996 |
$result = $return_wp_error ? new WP_Error( $ex->getCode(), $ex->getMessage() ) : false;
|
1997 |
}
|
1998 |
|
2187 |
*
|
2188 |
* @since 3.1.0
|
2189 |
*
|
2190 |
+
* @param int[] $access_level
|
2191 |
+
* @param int $course_id
|
2192 |
* @param string $compare
|
2193 |
*
|
2194 |
* @return bool
|
2399 |
global $wpdb;
|
2400 |
|
2401 |
$course = learn_press_get_course( $course_id );
|
2402 |
+
$user_id = $this->get_id();
|
2403 |
|
2404 |
if ( $course->is_required_enroll() && ! $force ) {
|
2405 |
|
2418 |
}
|
2419 |
|
2420 |
$user_item_api = new LP_User_Item_CURD();
|
2421 |
+
$course_item = $user_item_api->get_item_by( array(
|
2422 |
+
'item_id' => $course_id,
|
2423 |
+
'ref_id' => $order_id,
|
2424 |
+
'user_id' => $user_id
|
2425 |
+
) );
|
2426 |
|
2427 |
if ( ! $course_item ) {
|
2428 |
$course_item = LP_User_Item::get_empty_item();
|
2435 |
$course_item['item_id'] = $course_id;
|
2436 |
$course_item['item_type'] = learn_press_get_post_type( $course_id );
|
2437 |
$course_item['ref_id'] = $order_id;
|
2438 |
+
$course_item['ref_type'] = ( $order_id != 0 ) ? learn_press_get_post_type( $order_id ) : LP_ORDER_CPT;
|
2439 |
$course_item['start_time'] = $date->toSql();
|
2440 |
$course_item['start_time_gmt'] = $date->toSql( false );
|
2441 |
|
2442 |
$user_course = new LP_User_Item_Course( $course_item );
|
2443 |
$user_course->set_status( 'enrolled' );
|
2444 |
+
$user_course->set_end_time_gmt( '0000-00-00 00:00:00' );
|
2445 |
+
if ( $user_course->update() ) {
|
2446 |
+
$return = true;
|
2447 |
+
}
|
2448 |
|
2449 |
learn_press_remove_message( '', 'error' );
|
2450 |
$user_id = is_user_logged_in() ? $this->get_id() : 0;
|
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,8367 +17,7575 @@ 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 |
|
21 |
#: learnpress.php:379
|
22 |
#, php-format
|
23 |
msgid ""
|
24 |
-
"LearnPress plugin base directory must be <strong>learnpress/learnpres.
|
25 |
-
"strong> (case sensitive) to ensure all functions work properly and
|
26 |
-
"operational (currently <strong>%s</strong>)"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: inc/
|
30 |
-
#: inc/
|
31 |
-
|
|
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: inc/
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: inc/
|
39 |
-
|
|
|
|
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: inc/
|
43 |
-
|
44 |
-
|
|
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: inc/
|
48 |
-
msgid "
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: inc/
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: inc/
|
56 |
-
|
57 |
-
msgid "You have finished this course \"%s\""
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/
|
61 |
-
msgid ""
|
62 |
-
"Error! You cannot finish this course. Please contact your administrator for "
|
63 |
-
"more information."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: inc/
|
67 |
-
msgid "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/
|
71 |
-
|
72 |
-
msgid "Congrats! You have completed \"%s\"."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/
|
80 |
-
msgid "
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/
|
84 |
-
|
85 |
-
msgid "You have retaken the course \"%s\""
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: inc/
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: inc/
|
93 |
-
msgid "
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: inc/
|
97 |
-
|
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/
|
104 |
-
|
105 |
-
#: inc/libraries/meta-box/inc/fields/checkbox.php:53
|
106 |
-
msgid "Yes"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: inc/
|
110 |
-
|
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/
|
117 |
-
|
118 |
-
#: templates/checkout/payment.php:20
|
119 |
-
msgid "Processing"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/
|
123 |
-
msgid "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/
|
127 |
-
msgid "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/
|
131 |
-
msgid "
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/
|
135 |
-
msgid "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/
|
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/
|
146 |
-
|
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/
|
154 |
-
msgid "
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/
|
158 |
-
|
159 |
-
msgid "Courses tagged “%s”"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: inc/
|
163 |
-
|
164 |
-
msgid "Posts tagged “%s”"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/
|
168 |
-
|
169 |
-
msgid "Author: %s"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/
|
173 |
-
|
174 |
-
msgid "Search results for “%s”"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/
|
178 |
-
|
179 |
-
msgid "Page %d"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: inc/
|
183 |
-
msgid "
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: inc/
|
187 |
-
msgid "
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: inc/
|
191 |
-
|
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/
|
198 |
-
|
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/
|
207 |
-
|
208 |
-
#, php-format
|
209 |
-
msgid "Error %d: Unable to create order. Please try again."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/
|
237 |
-
|
238 |
-
msgid "Item \"%s\" is not purchasable."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/
|
246 |
-
|
247 |
-
#, php-format
|
248 |
-
msgid "Field \"%s\" is required."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/
|
252 |
-
msgid "
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: inc/
|
256 |
-
msgid "
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: inc/
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: inc/
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: inc/
|
268 |
-
msgid "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/
|
284 |
-
msgid "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/
|
288 |
-
msgid "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/
|
292 |
-
|
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/
|
299 |
-
msgid "
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: inc/
|
303 |
-
msgid "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/
|
311 |
-
msgid "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/
|
315 |
-
msgid "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/
|
319 |
-
msgid "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: inc/
|
323 |
-
msgid "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/
|
327 |
-
msgid "
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: inc/
|
331 |
-
msgid "
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: inc/
|
335 |
-
|
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/
|
344 |
-
msgid "
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/
|
352 |
-
msgid "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/
|
356 |
-
msgid "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: inc/
|
360 |
-
msgid "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: inc/
|
364 |
-
msgid "
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: inc/
|
368 |
-
msgid "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: inc/
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/
|
376 |
-
msgid "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/
|
380 |
-
msgid "
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/
|
384 |
-
msgid "
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/
|
388 |
-
msgid "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/
|
396 |
-
msgid "
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc/
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/
|
404 |
-
|
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/
|
414 |
-
msgid "
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/
|
418 |
-
|
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/
|
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/
|
432 |
-
msgid "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: inc/
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/
|
440 |
-
|
441 |
-
msgid "Upgrade now"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/
|
445 |
-
msgid "
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/
|
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/
|
455 |
-
msgid "
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc/
|
459 |
-
msgid "
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: inc/
|
463 |
-
|
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/
|
470 |
-
|
471 |
-
msgid "Documentation"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: inc/
|
475 |
-
|
476 |
-
msgid "Add-ons"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: inc/
|
480 |
-
msgid "
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/
|
484 |
-
|
485 |
-
msgid "The user %s is not available!"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: inc/
|
489 |
-
msgid "
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: inc/
|
493 |
-
msgid "
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: inc/
|
497 |
-
|
|
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: inc/
|
501 |
-
|
502 |
-
msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: inc/
|
506 |
-
msgid "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc/
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc/
|
514 |
-
msgid "
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: inc/
|
518 |
-
msgid "
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: inc/
|
522 |
-
|
523 |
-
msgid "The method %s is not callable."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: inc/
|
527 |
-
msgid "
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: inc/
|
531 |
-
msgid ""
|
532 |
-
"You have already purchased this course and the order is still processing..."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: inc/
|
536 |
-
msgid "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: inc/
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: inc/
|
548 |
-
msgid "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: inc/
|
552 |
-
|
553 |
-
msgid "You can not enroll course "%s""
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: inc/
|
557 |
-
|
558 |
-
msgid "Invalid request!"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/
|
562 |
-
|
563 |
-
msgid "Congrats! You have enrolled "%s""
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/
|
567 |
-
msgid "
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/
|
571 |
-
msgid "
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/
|
575 |
-
msgid "
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/
|
579 |
-
msgid "
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/
|
583 |
-
|
584 |
-
msgid "Do you want to redo quiz \"%s\"?"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/
|
588 |
-
|
589 |
-
msgid "Do you want to complete quiz \"%s\"?"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/
|
593 |
-
|
594 |
-
msgid "Do you want to complete lesson \"%s\"?"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/
|
598 |
-
|
599 |
-
msgid "Do you want to finish course \"%s\"?"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/
|
603 |
-
|
604 |
-
msgid "Do you want to retake course \"%s\"?"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: inc/
|
608 |
-
|
609 |
-
msgid "Function %s should be overwritten in child class"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: inc/lp-core-functions.php:
|
613 |
-
|
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:
|
619 |
-
|
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:
|
627 |
-
|
628 |
-
msgid "<"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: inc/lp-core-functions.php:
|
632 |
-
|
633 |
-
msgid ">"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: inc/lp-core-functions.php:
|
637 |
-
msgid "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: inc/lp-core-functions.php:
|
641 |
-
msgid "
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/lp-core-functions.php:
|
645 |
-
msgid "
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/lp-core-functions.php:
|
649 |
-
msgid "
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: inc/lp-core-functions.php:
|
653 |
-
msgid "
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: inc/lp-core-functions.php:
|
657 |
-
msgid "
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc/lp-core-functions.php:
|
661 |
-
msgid "
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: inc/lp-core-functions.php:
|
665 |
-
msgid "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/lp-core-functions.php:
|
669 |
-
msgid "
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/lp-core-functions.php:
|
673 |
-
msgid "
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: inc/lp-core-functions.php:
|
677 |
-
msgid "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: inc/lp-core-functions.php:
|
681 |
-
msgid "
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: inc/lp-core-functions.php:
|
685 |
-
msgid "
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: inc/lp-core-functions.php:
|
689 |
-
msgid "
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: inc/lp-core-functions.php:
|
693 |
-
msgid "
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: inc/lp-core-functions.php:
|
697 |
-
msgid "
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: inc/lp-core-functions.php:
|
701 |
-
msgid "
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: inc/lp-core-functions.php:
|
705 |
-
msgid "
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: inc/lp-core-functions.php:
|
709 |
-
msgid "
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: inc/lp-core-functions.php:
|
713 |
-
msgid "
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: inc/lp-core-functions.php:
|
717 |
-
msgid "
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: inc/lp-core-functions.php:
|
721 |
-
msgid "
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: inc/lp-core-functions.php:
|
725 |
-
msgid "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: inc/lp-core-functions.php:
|
729 |
-
msgid "
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: inc/lp-core-functions.php:
|
733 |
-
msgid "
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: inc/lp-core-functions.php:
|
737 |
-
msgid "
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: inc/lp-core-functions.php:
|
741 |
-
msgid "
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: inc/lp-core-functions.php:
|
745 |
-
msgid "
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: inc/lp-core-functions.php:
|
749 |
-
msgid "
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: inc/lp-core-functions.php:
|
753 |
-
msgid "
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: inc/lp-core-functions.php:
|
757 |
-
msgid "
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: inc/lp-core-functions.php:
|
761 |
-
msgid "
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: inc/lp-core-functions.php:
|
765 |
-
msgid "
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: inc/lp-core-functions.php:
|
769 |
-
msgid "
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: inc/lp-core-functions.php:
|
773 |
-
msgid "
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: inc/lp-core-functions.php:
|
777 |
-
msgid "
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: inc/lp-core-functions.php:
|
781 |
-
msgid "
|
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 |
-
msgid "
|
802 |
-
|
|
|
|
|
803 |
|
804 |
-
#: inc/lp-core-functions.php:
|
805 |
-
msgid "
|
806 |
-
|
|
|
|
|
807 |
|
808 |
-
#: inc/lp-core-functions.php:
|
809 |
-
msgid "
|
810 |
-
|
|
|
|
|
811 |
|
812 |
-
#: inc/lp-core-functions.php:
|
813 |
-
msgid "
|
814 |
-
|
|
|
|
|
815 |
|
816 |
-
#: inc/lp-core-functions.php:
|
817 |
-
|
|
|
|
|
|
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: inc/lp-core-functions.php:
|
821 |
-
msgid "
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: inc/lp-core-functions.php:
|
825 |
-
|
|
|
|
|
|
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: inc/lp-core-functions.php:
|
829 |
-
msgid "
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: inc/lp-core-functions.php:
|
833 |
-
msgid "
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: inc/lp-core-functions.php:
|
837 |
-
msgid "
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: inc/lp-core-functions.php:
|
841 |
-
msgid "
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: inc/lp-core-functions.php:
|
845 |
-
msgid "
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: inc/lp-core-functions.php:
|
849 |
-
msgid "
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: inc/lp-core-functions.php:
|
853 |
-
|
|
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: inc/lp-core-functions.php:
|
857 |
-
|
|
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: inc/lp-core-functions.php:
|
861 |
-
|
|
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: inc/lp-core-functions.php:
|
865 |
-
|
|
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: inc/lp-core-functions.php:
|
869 |
-
|
|
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: inc/lp-core-functions.php:
|
873 |
-
|
|
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: inc/lp-core-functions.php:
|
877 |
-
|
|
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: inc/lp-core-functions.php:
|
881 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: inc/lp-core-functions.php:
|
885 |
-
|
|
|
|
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: inc/lp-core-functions.php:
|
889 |
-
|
|
|
|
|
|
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: inc/lp-core-functions.php:
|
893 |
-
|
|
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: inc/lp-core-functions.php:
|
897 |
-
msgid "
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: inc/lp-core-functions.php:
|
901 |
-
msgid "
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: inc/lp-core-functions.php:
|
905 |
-
msgid "
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: inc/lp-core-functions.php:
|
909 |
-
msgid "
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: inc/lp-core-functions.php:
|
913 |
-
msgid "
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: inc/lp-core-functions.php:
|
917 |
-
msgid "
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: inc/lp-core-functions.php:
|
921 |
-
msgid "
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: inc/lp-core-functions.php:
|
925 |
-
msgid "
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: inc/lp-core-functions.php:
|
929 |
-
msgid "
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: inc/lp-core-functions.php:
|
933 |
-
msgid "
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: inc/lp-core-functions.php:
|
937 |
-
|
|
|
|
|
|
|
|
|
|
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: inc/lp-core-functions.php:
|
941 |
-
|
|
|
|
|
|
|
|
|
|
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/lp-core-functions.php:
|
945 |
-
|
|
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/lp-core-functions.php:
|
949 |
-
|
|
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/lp-core-functions.php:
|
953 |
-
|
|
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/lp-core-functions.php:
|
957 |
-
|
|
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/lp-
|
961 |
-
|
|
|
|
|
|
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: inc/lp-
|
965 |
-
|
|
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/lp-
|
969 |
-
msgid "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/lp-
|
973 |
-
|
|
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/lp-
|
977 |
-
|
|
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/lp-
|
981 |
-
|
|
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: inc/lp-
|
985 |
-
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: inc/lp-
|
989 |
-
|
|
|
|
|
|
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: inc/lp-
|
993 |
-
msgid "
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: inc/lp-
|
997 |
-
msgid "
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: inc/lp-
|
1001 |
-
msgid "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: inc/lp-
|
1005 |
-
msgid "
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: inc/lp-
|
1009 |
-
msgid "
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: inc/lp-
|
1013 |
-
msgid "
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: inc/
|
1017 |
-
msgid "
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: inc/lp-
|
1021 |
-
msgid "
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: inc/lp-
|
1025 |
-
msgid "
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: inc/lp-
|
1029 |
-
msgid "
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: inc/lp-
|
1033 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: inc/lp-
|
1037 |
-
msgid "
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: inc/lp-
|
1041 |
-
|
|
|
|
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: inc/lp-
|
1045 |
-
|
|
|
|
|
|
|
|
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: inc/lp-
|
1049 |
-
|
|
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: inc/lp-
|
1053 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: inc/lp-
|
1057 |
-
|
|
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: inc/lp-
|
1061 |
-
msgid "
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: inc/lp-
|
1065 |
-
msgid "
|
1066 |
-
|
|
|
1067 |
|
1068 |
-
#: inc/lp-
|
1069 |
-
msgid "
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: inc/lp-
|
1073 |
-
msgid "
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: inc/lp-
|
1077 |
-
msgid "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: inc/lp-
|
1081 |
-
|
|
|
|
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: inc/lp-
|
1085 |
-
|
|
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: inc/lp-
|
1089 |
-
|
|
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: inc/lp-
|
1093 |
-
msgid "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: inc/lp-
|
1097 |
-
msgid "
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: inc/lp-
|
1101 |
-
|
|
|
|
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: inc/lp-
|
1105 |
-
|
|
|
|
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: inc/lp-
|
1109 |
-
|
|
|
|
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: inc/lp-
|
1113 |
-
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: inc/lp-
|
1117 |
-
|
|
|
|
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: inc/lp-
|
1121 |
-
msgid "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: inc/lp-
|
1125 |
-
msgid "
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: inc/lp-
|
1129 |
-
msgid "
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: inc/lp-
|
1133 |
-
|
|
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: inc/lp-
|
1137 |
-
|
|
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: inc/lp-
|
1141 |
-
msgid "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: inc/lp-
|
1145 |
-
|
|
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: inc/lp-
|
1149 |
-
msgid "
|
|
|
|
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: inc/lp-
|
1153 |
-
msgid "
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: inc/lp-
|
1157 |
-
|
|
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: inc/lp-
|
1161 |
-
msgid "
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: inc/lp-
|
1165 |
-
msgid "
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: inc/lp-
|
1169 |
-
|
|
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: inc/lp-
|
1173 |
-
msgid "
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: inc/lp-
|
1177 |
-
msgid "
|
|
|
|
|
|
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: inc/lp-
|
1181 |
-
|
|
|
|
|
|
|
|
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: inc/lp-
|
1185 |
-
msgid "
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: inc/lp-
|
1189 |
-
|
|
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: inc/lp-
|
1193 |
-
|
|
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: inc/lp-
|
1197 |
-
|
|
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: inc/lp-
|
1201 |
-
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: inc/lp-
|
1205 |
-
|
|
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: inc/lp-
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: inc/lp-
|
1213 |
-
|
|
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: inc/lp-
|
1217 |
-
msgid "
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: inc/lp-
|
1221 |
-
|
|
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: inc/lp-
|
1225 |
-
msgid "
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: inc/lp-
|
1229 |
-
|
|
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: inc/lp-
|
1233 |
-
msgid "
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: inc/lp-
|
1237 |
-
msgid "
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: inc/lp-
|
1241 |
-
msgid "
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: inc/lp-
|
1245 |
-
msgid "
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: inc/lp-
|
1249 |
-
msgid "
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: inc/lp-
|
1253 |
-
msgid "
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: inc/lp-
|
1257 |
-
msgid "
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: inc/lp-
|
1261 |
-
msgid "
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: inc/lp-
|
1265 |
-
msgid "
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: inc/lp-
|
1269 |
-
msgid "
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: inc/lp-
|
1273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: inc/lp-
|
1277 |
-
|
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: inc/lp-
|
1281 |
-
|
|
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: inc/lp-
|
1285 |
-
|
|
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: inc/lp-
|
1289 |
-
|
|
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: inc/lp-
|
1293 |
-
msgid "
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: inc/lp-
|
1297 |
-
|
|
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: inc/lp-
|
1301 |
-
|
1302 |
-
|
1303 |
-
msgstr
|
1304 |
-
msgstr[1] ""
|
1305 |
|
1306 |
-
#: inc/lp-
|
1307 |
-
|
1308 |
-
|
1309 |
-
msgstr
|
1310 |
-
msgstr[1] ""
|
1311 |
|
1312 |
-
#: inc/lp-
|
1313 |
-
|
1314 |
-
|
1315 |
-
msgstr
|
1316 |
-
msgstr[1] ""
|
1317 |
|
1318 |
-
#: inc/lp-
|
1319 |
-
msgid "
|
1320 |
-
|
1321 |
-
msgstr[0] ""
|
1322 |
-
msgstr[1] ""
|
1323 |
|
1324 |
-
#: inc/lp-
|
1325 |
-
|
1326 |
-
#: inc/admin/views/tools/course/html-user.php:29
|
1327 |
-
msgid "Name"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: inc/lp-
|
1331 |
-
msgid "
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: inc/lp-
|
1335 |
-
|
1336 |
-
#: inc/shortcodes/class-lp-shortcode-register-form.php:74
|
1337 |
-
msgid "Email"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: inc/lp-
|
1341 |
-
|
|
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: inc/lp-
|
1345 |
-
msgid "
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: inc/lp-
|
1349 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: inc/lp-
|
1353 |
-
msgid "
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: inc/lp-
|
1357 |
-
|
|
|
|
|
|
|
|
|
|
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: inc/lp-
|
1361 |
-
|
|
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: inc/lp-
|
1365 |
-
|
1366 |
-
msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: inc/lp-
|
1370 |
-
|
1371 |
-
msgid "Name: %s"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: inc/lp-
|
1375 |
-
|
1376 |
-
msgid "Email: %s"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: inc/lp-
|
1380 |
#, php-format
|
1381 |
-
msgid "
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: inc/lp-
|
1385 |
-
|
1386 |
-
msgid "Accept: %s"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: inc/lp-
|
1390 |
-
|
1391 |
-
msgid "Your request has been sent! We will get back to you soon!"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: inc/lp-
|
1395 |
-
|
1396 |
-
msgid "Congrats! You've enrolled the course \"%s\"."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: inc/lp-
|
1400 |
-
msgid "
|
|
|
|
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: inc/lp-
|
1404 |
-
msgid "
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: inc/lp-
|
1408 |
-
msgid "
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: inc/lp-
|
1412 |
-
|
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: inc/lp-
|
1416 |
-
msgid "
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: inc/lp-
|
1420 |
-
msgid "
|
|
|
|
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: inc/lp-
|
1424 |
-
msgid "
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: inc/
|
1428 |
-
|
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: inc/lp-
|
1432 |
-
|
|
|
|
|
|
|
|
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: inc/lp-
|
1436 |
-
msgid "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: inc/
|
1440 |
-
#: inc/
|
1441 |
-
|
1442 |
-
#: inc/user-item/class-lp-user-item.php:550
|
1443 |
-
msgid "Passed"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: inc/
|
1447 |
-
#: inc/
|
1448 |
-
|
1449 |
-
#: inc/user-item/class-lp-user-item.php:551
|
1450 |
-
msgid "Failed"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: inc/lp-
|
1454 |
-
|
1455 |
-
msgid "Checkout"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: inc/lp-
|
1459 |
-
|
1460 |
-
|
|
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: inc/lp-
|
1464 |
-
|
1465 |
-
|
|
|
|
|
|
|
|
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: inc/lp-
|
1469 |
-
|
1470 |
-
|
|
|
|
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: inc/
|
1474 |
-
|
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-
|
1493 |
-
msgid "
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: inc/lp-
|
1497 |
-
|
1498 |
-
msgid "Purchased"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: inc/
|
1502 |
-
|
1503 |
-
#: inc/user-item/class-lp-user-item.php:549
|
1504 |
-
msgid "Finished"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: inc/
|
1508 |
-
msgid "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: inc/
|
1512 |
-
#:
|
1513 |
-
|
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-
|
1521 |
-
|
|
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: inc/lp-
|
1525 |
-
|
|
|
|
|
|
|
|
|
|
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: inc/lp-
|
1529 |
-
msgid "
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#:
|
1533 |
-
msgid "
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#:
|
1537 |
-
|
|
|
|
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#:
|
1541 |
-
#: inc/
|
1542 |
-
#: inc/
|
1543 |
-
|
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-
|
1550 |
-
|
|
|
|
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: inc/
|
1554 |
-
|
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-
|
1568 |
-
|
1569 |
-
msgid "
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: inc/lp-
|
1573 |
-
#: inc/
|
1574 |
-
|
1575 |
-
msgid "Order received"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: inc/lp-
|
1579 |
-
|
1580 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: inc/lp-
|
1584 |
#, php-format
|
1585 |
-
|
|
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: inc/lp-
|
1589 |
-
|
1590 |
-
msgid " – Page %s"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: inc/
|
1594 |
-
msgid "
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: inc/
|
1598 |
-
|
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-
|
1605 |
-
|
|
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: inc/lp-
|
1609 |
#, php-format
|
1610 |
-
msgid "
|
1611 |
-
msgid_plural "
|
1612 |
msgstr[0] ""
|
1613 |
msgstr[1] ""
|
1614 |
|
1615 |
-
#: inc/lp-
|
1616 |
-
|
1617 |
-
|
1618 |
-
msgid "%s day"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: inc/lp-
|
1622 |
#, php-format
|
1623 |
-
|
1624 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: inc/lp-
|
1628 |
#, php-format
|
1629 |
-
|
1630 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: inc/lp-
|
1634 |
#, php-format
|
1635 |
-
|
1636 |
-
|
1637 |
-
msgstr ""
|
|
|
1638 |
|
1639 |
-
#: inc/
|
1640 |
-
|
|
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: inc/lp-
|
1644 |
-
|
1645 |
-
|
|
|
|
|
|
|
1646 |
|
1647 |
-
#: inc/lp-
|
1648 |
-
msgid "
|
|
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: inc/lp-
|
1652 |
-
msgid "
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: inc/lp-
|
1656 |
-
msgid "
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: inc/lp-
|
1660 |
-
msgid "
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: inc/lp-
|
1664 |
-
|
|
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: inc/lp-
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: inc/lp-
|
1672 |
-
|
|
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: inc/lp-
|
1676 |
-
|
|
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: inc/lp-
|
1680 |
-
|
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: inc/lp-
|
1684 |
-
|
|
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: inc/lp-
|
1688 |
-
|
|
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: inc/lp-
|
1692 |
-
msgid "
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: inc/lp-
|
1696 |
-
|
|
|
|
|
|
|
|
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: inc/lp-
|
1700 |
-
msgid "
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: inc/lp-
|
1704 |
-
|
|
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: inc/
|
1708 |
-
msgid "
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: inc/
|
1712 |
-
|
1713 |
-
|
|
|
|
|
|
|
|
|
|
|
1714 |
|
1715 |
-
#: inc/
|
1716 |
#, php-format
|
1717 |
-
|
1718 |
-
|
|
|
|
|
|
|
|
|
1719 |
|
1720 |
-
#: inc/
|
1721 |
-
msgid "
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: inc/
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
|
|
|
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: inc/
|
|
|
|
|
|
|
1732 |
#, php-format
|
1733 |
-
msgid "%s
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: inc/
|
1737 |
#, php-format
|
1738 |
-
msgid "
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: inc/
|
1742 |
-
|
1743 |
-
msgid "
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: inc/
|
1747 |
-
|
1748 |
-
#: templates/content-archive-course.php:74
|
1749 |
-
msgid "No course found."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: inc/
|
1753 |
-
msgid "
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: inc/
|
1757 |
-
msgid "
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: inc/
|
1761 |
-
|
|
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: inc/
|
1765 |
-
|
1766 |
-
"
|
1767 |
-
"the email we've just sent to your mail box."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: inc/
|
1771 |
-
msgid "
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: inc/
|
1775 |
-
|
|
|
|
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: inc/
|
1779 |
-
msgid "
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: inc/
|
1783 |
-
#: templates/
|
1784 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: inc/
|
1788 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: inc/
|
1792 |
-
#: inc/admin/lp-
|
1793 |
-
|
|
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: inc/
|
1797 |
-
#:
|
1798 |
-
msgid "
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: inc/
|
1802 |
-
msgid "
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: inc/
|
1806 |
-
|
|
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: inc/
|
1810 |
-
|
|
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: inc/
|
1814 |
-
msgid "
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: inc/
|
1818 |
-
|
|
|
|
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: inc/
|
1822 |
-
|
|
|
|
|
|
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: inc/
|
1826 |
-
msgid "
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: inc/
|
1830 |
-
msgid ""
|
1831 |
-
"Unknown error when installing/activating Import/Export add-on. Please try "
|
1832 |
-
"again!"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: inc/
|
1836 |
-
|
1837 |
-
msgid "You do not have the permission to deactivate plugins on this site."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: inc/
|
1841 |
-
msgid "
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: inc/
|
1845 |
-
|
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/
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: inc/
|
1860 |
-
|
|
|
|
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: inc/
|
1864 |
-
|
|
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: inc/
|
1868 |
-
#: inc/
|
1869 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: inc/
|
1873 |
-
#: inc/
|
1874 |
-
#: inc/
|
1875 |
-
|
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/
|
1888 |
-
|
|
|
|
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: inc/
|
1892 |
-
|
|
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: inc/
|
1896 |
-
|
|
|
|
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: inc/
|
1900 |
-
|
|
|
|
|
|
|
|
|
|
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: inc/
|
1904 |
-
msgid "
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: inc/
|
1908 |
-
msgid "
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: inc/
|
1912 |
-
msgid "
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: inc/
|
1916 |
-
msgid "
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: inc/
|
1920 |
-
msgid "
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: inc/
|
1924 |
-
msgid "
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: inc/
|
1928 |
-
msgid "
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: inc/
|
1932 |
-
|
|
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: inc/
|
1936 |
-
#: inc/admin/
|
1937 |
-
|
1938 |
-
msgid "Checkout"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/
|
1942 |
-
|
|
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: inc/
|
1946 |
-
|
|
|
|
|
|
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: inc/
|
1950 |
-
|
|
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: inc/
|
1954 |
-
|
|
|
|
|
|
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: inc/
|
1958 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: inc/
|
1962 |
-
#:
|
1963 |
-
|
|
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: inc/
|
1967 |
-
|
|
|
|
|
|
|
|
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: inc/
|
1971 |
-
#: inc/
|
1972 |
-
#: inc/admin/views/
|
1973 |
-
|
|
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: inc/
|
1977 |
-
#: inc/
|
1978 |
-
|
|
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: inc/
|
1982 |
-
|
|
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: inc/
|
1986 |
-
|
1987 |
-
|
|
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: inc/
|
1991 |
-
|
1992 |
-
|
|
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: inc/
|
1996 |
-
|
1997 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: inc/
|
2001 |
#, php-format
|
2002 |
-
msgid "
|
2003 |
-
|
|
|
|
|
2004 |
|
2005 |
-
#: inc/
|
2006 |
-
msgid "
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: inc/
|
2010 |
-
|
2011 |
-
msgid "
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: inc/
|
2015 |
-
|
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/
|
2023 |
-
msgid "
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: inc/
|
2027 |
#, php-format
|
2028 |
-
msgid "
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: inc/
|
2032 |
-
|
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/
|
2040 |
-
|
2041 |
-
msgid ""
|
2042 |
-
"If you like <strong>LearnPress</strong> please leave us a %s★★"
|
2043 |
-
"★★★%s rating. A huge thanks from LearnPress team for your "
|
2044 |
-
"generous."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: inc/
|
2048 |
-
msgid "
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: inc/
|
2052 |
-
|
|
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: inc/
|
2056 |
-
msgid "
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: inc/
|
|
|
|
|
|
|
|
|
2060 |
#, php-format
|
2061 |
-
msgid "
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: inc/
|
2065 |
-
|
2066 |
-
|
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/
|
2076 |
-
#: inc/
|
2077 |
-
#: inc/custom-post-types/
|
2078 |
-
#: templates/
|
2079 |
-
msgid "
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: inc/
|
2083 |
-
|
2084 |
-
msgid "Sample course"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: inc/
|
2088 |
-
|
2089 |
-
msgctxt "install-sample-course"
|
2090 |
-
msgid " [TRUE]"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: inc/
|
2094 |
-
msgid "
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: inc/
|
2098 |
-
|
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/
|
2105 |
-
|
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/
|
2113 |
-
|
2114 |
-
msgid "Search items"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: inc/
|
2118 |
-
|
2119 |
-
msgid "No item found"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: inc/
|
2123 |
-
msgid "
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: inc/
|
2127 |
-
|
2128 |
-
#: inc/admin/class-lp-modal-search-items.php:351
|
2129 |
-
msgid "Add new item"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: inc/
|
2133 |
-
msgid "
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: inc/
|
2137 |
-
msgid "
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: inc/
|
2141 |
-
|
2142 |
-
|
|
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: inc/
|
2146 |
-
msgid "
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: inc/
|
2150 |
-
|
2151 |
-
|
|
|
|
|
|
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: inc/
|
2155 |
-
|
2156 |
-
msgid "Social"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: inc/
|
2160 |
-
|
2161 |
-
msgid "Tools"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: inc/
|
2165 |
-
|
2166 |
-
msgid "By %s"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: inc/
|
2170 |
-
#: inc/
|
2171 |
-
|
2172 |
-
|
|
|
|
|
|
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: inc/
|
2176 |
-
|
|
|
|
|
|
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: inc/
|
2180 |
-
|
2181 |
-
#, php-format
|
2182 |
-
msgid "Update %s now"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: inc/
|
2186 |
-
#:
|
2187 |
-
#: inc/
|
2188 |
-
#: inc/admin/views/
|
2189 |
-
msgid "
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: inc/
|
2193 |
-
|
2194 |
-
msgid "Enabled"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: inc/
|
2198 |
-
|
2199 |
-
msgid "Enable"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: inc/
|
2203 |
-
msgid "
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: inc/
|
2207 |
-
msgid "
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: inc/
|
2211 |
-
msgid "
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: inc/
|
2215 |
-
msgid "
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: inc/
|
2219 |
-
|
2220 |
-
|
2221 |
-
#, php-format
|
2222 |
-
msgid "%s ago"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: inc/
|
2226 |
-
msgctxt "
|
2227 |
-
msgid "
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: inc/
|
2231 |
-
|
2232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: inc/
|
2236 |
-
|
2237 |
-
msgid "Untested with your version of WordPress"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: inc/
|
2241 |
-
|
2242 |
-
msgid "<strong>Incompatible</strong> with your version of WordPress"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: inc/
|
2246 |
-
|
2247 |
-
msgid "<strong>Compatible</strong> with your version of WordPress"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: inc/
|
2251 |
-
msgid "
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: inc/
|
2255 |
-
msgid "
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: inc/
|
2259 |
-
|
2260 |
-
msgid "LP Courses"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: inc/
|
2264 |
-
|
2265 |
-
msgid "
|
|
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: inc/
|
2269 |
-
|
2270 |
-
msgid "LP Checkout"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: inc/
|
2274 |
-
|
2275 |
-
|
|
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: inc/
|
2279 |
-
|
|
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: inc/
|
2283 |
-
#: inc/
|
2284 |
-
msgid "
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: inc/
|
2288 |
-
|
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/
|
2296 |
-
|
2297 |
-
msgid "Static Pages"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: inc/
|
2301 |
-
|
2302 |
-
|
2303 |
-
msgid "Payment"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: inc/
|
2307 |
-
|
2308 |
-
#: inc/admin/settings/class-lp-settings-emails.php:166
|
2309 |
-
msgid "Emails"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: inc/
|
2313 |
-
|
2314 |
-
#: inc/admin/views/setup/steps/finish.php:12
|
2315 |
-
msgid "Finish"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: inc/
|
2319 |
-
|
2320 |
-
#: inc/gateways/paypal/class-lp-gateway-paypal.php:95
|
2321 |
-
msgid "Paypal"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: inc/
|
2325 |
-
msgid "
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: inc/
|
2329 |
-
msgid "
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: inc/
|
2333 |
-
msgid "
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: inc/
|
2337 |
-
msgid "
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: inc/
|
2341 |
-
msgid "
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: inc/
|
2345 |
-
msgid "
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: inc/
|
2349 |
-
msgid "
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: inc/
|
2353 |
-
msgid "
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: inc/
|
2357 |
-
|
2358 |
-
msgid "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: inc/
|
2362 |
-
|
|
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: inc/
|
2366 |
-
msgid "
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: inc/
|
2370 |
-
msgid "
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: inc/
|
2374 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: inc/
|
2378 |
-
msgid "
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: inc/
|
2382 |
-
msgid "
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: inc/
|
2386 |
-
msgid "
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: inc/
|
2390 |
-
msgid "
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: inc/
|
2394 |
-
|
2395 |
-
msgid "Published"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: inc/
|
2399 |
-
msgid "
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: inc/
|
2403 |
-
msgid "
|
|
|
|
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: inc/
|
2407 |
-
msgid "
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: inc/
|
2411 |
-
msgid "
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: inc/
|
2415 |
-
msgid "
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: inc/
|
2419 |
-
msgid "
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: inc/
|
2423 |
-
msgid "
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: inc/
|
2427 |
-
msgid "
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: inc/
|
2431 |
-
msgid "
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: inc/
|
2435 |
-
msgid "
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: inc/
|
2439 |
-
|
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/
|
2453 |
-
msgid "
|
|
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: inc/
|
2457 |
-
msgid "
|
|
|
|
|
|
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: inc/
|
2461 |
-
msgid "
|
|
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: inc/
|
2465 |
-
msgid "
|
|
|
|
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: inc/
|
2469 |
-
msgid "
|
|
|
|
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: inc/
|
2473 |
-
msgid "
|
|
|
|
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: inc/
|
2477 |
-
msgid "
|
|
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: inc/
|
2481 |
-
msgid "
|
|
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: inc/
|
2485 |
-
msgid "
|
|
|
|
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: inc/
|
2489 |
-
msgid "
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: inc/
|
2493 |
-
msgid "
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: inc/
|
2497 |
-
msgid "
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: inc/
|
2501 |
-
|
2502 |
-
msgid "HTML"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: inc/
|
2506 |
-
|
2507 |
-
msgid "Get it now"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: inc/
|
2511 |
-
|
2512 |
-
msgid "View Demo"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: inc/
|
2516 |
-
|
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/
|
2525 |
-
|
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/
|
2536 |
-
|
2537 |
-
|
2538 |
-
msgid "Publish"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: inc/
|
2542 |
-
|
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/
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
|
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: inc/
|
2556 |
-
|
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/
|
2563 |
-
|
|
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: inc/
|
2567 |
-
|
|
|
|
|
|
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: inc/
|
2571 |
-
msgid "
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: inc/
|
2575 |
#, php-format
|
2576 |
-
msgid "
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: inc/
|
2580 |
-
msgid "
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: inc/
|
2584 |
-
msgid "
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: inc/
|
2588 |
-
msgid "
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: inc/
|
2592 |
-
msgid "
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: inc/
|
2596 |
-
msgid "
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: inc/
|
2600 |
-
msgid "
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: inc/
|
2604 |
-
msgid "
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: inc/
|
2608 |
-
|
2609 |
-
msgid "Question id %s does not exist."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: inc/
|
2613 |
-
|
2614 |
-
msgid "
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: inc/
|
2618 |
-
|
2619 |
-
msgid "New Course"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: inc/
|
2623 |
-
|
2624 |
-
msgid "New Question"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: inc/
|
2628 |
-
msgid "
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: inc/
|
2632 |
-
|
2633 |
-
msgid "New Quiz"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: inc/
|
2637 |
-
|
2638 |
-
msgid "Quiz creation failed."
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: inc/
|
2642 |
-
msgid "
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: inc/
|
2646 |
-
|
2647 |
-
#, php-format
|
2648 |
-
msgid "Disable %s now"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: inc/
|
2652 |
-
|
2653 |
-
msgid "Disable Now"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: inc/
|
2657 |
-
|
2658 |
-
#, php-format
|
2659 |
-
msgid "Enable %s now"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: inc/
|
2663 |
-
|
2664 |
-
msgid "Enable Now"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: inc/
|
2668 |
-
|
2669 |
-
msgid "Buy %s now"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: inc/
|
2673 |
-
msgid "
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: inc/
|
2677 |
-
msgid "
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: inc/
|
2681 |
-
|
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/
|
2688 |
-
msgid "
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: inc/
|
2692 |
-
|
2693 |
-
|
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/
|
2700 |
-
|
2701 |
-
#: inc/admin/views/settings/fields/course-permalink.php:14
|
2702 |
-
msgctxt "default-slug"
|
2703 |
-
msgid "courses"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: inc/
|
2707 |
-
#: inc/
|
2708 |
-
|
2709 |
-
msgid "course"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: inc/
|
2713 |
-
#: inc/
|
2714 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: inc/
|
2718 |
-
#: inc/admin/
|
2719 |
-
msgid "
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: inc/
|
2723 |
-
|
2724 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: inc/
|
2728 |
-
#: inc/
|
2729 |
-
|
|
|
|
|
|
|
|
|
|
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: inc/
|
2733 |
-
|
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/
|
2740 |
-
msgid "
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: inc/
|
2744 |
-
|
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/
|
2751 |
-
#: inc/
|
2752 |
-
|
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/
|
2759 |
-
|
2760 |
-
msgid "Click on variables to add it into email content."
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: inc/
|
2764 |
-
msgid "
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: inc/
|
2768 |
-
|
|
|
|
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: inc/
|
2772 |
-
msgid "
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: inc/
|
2776 |
-
msgid "
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: inc/
|
2780 |
-
|
2781 |
-
msgid "px"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: inc/
|
2785 |
-
|
2786 |
-
#: inc/admin/views/setup/setup-stripe.php:11
|
2787 |
-
msgid "Description"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: inc/
|
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/
|
2797 |
-
msgid "
|
|
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: inc/
|
2801 |
-
msgid "
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: inc/
|
2805 |
-
|
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/
|
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/
|
2822 |
-
|
2823 |
-
msgid "Advanced"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: inc/
|
2827 |
-
msgid "
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: inc/
|
2831 |
-
msgid "
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: inc/
|
2835 |
-
msgid "
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: inc/
|
2839 |
-
msgid "
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: inc/
|
2843 |
-
msgid "
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: inc/
|
2847 |
-
msgid "
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: inc/
|
2851 |
-
msgid "
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: inc/
|
2855 |
-
msgid "
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: inc/
|
2859 |
-
msgid "
|
|
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: inc/
|
2863 |
-
|
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/
|
2870 |
-
msgid "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: inc/
|
2874 |
-
msgid "
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: inc/
|
2878 |
msgid ""
|
2879 |
-
"
|
2880 |
-
"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: inc/
|
2884 |
-
|
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/
|
2895 |
-
|
2896 |
-
|
|
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: inc/
|
2900 |
-
|
2901 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: inc/
|
2905 |
-
#: inc/
|
2906 |
-
|
|
|
|
|
|
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: inc/
|
2910 |
-
msgid "
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: inc/
|
2914 |
-
#: inc/
|
2915 |
-
|
2916 |
-
msgid "courses"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: inc/
|
2920 |
-
#: inc/
|
2921 |
-
|
2922 |
-
msgid "General settings."
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: inc/
|
2926 |
-
|
|
|
|
|
|
|
|
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: inc/
|
2930 |
-
|
|
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: inc/
|
2934 |
-
|
|
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: inc/
|
2938 |
-
|
2939 |
-
"
|
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/
|
2945 |
-
|
|
|
|
|
|
|
|
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: inc/
|
2949 |
-
msgid "
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: inc/
|
2953 |
-
|
|
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: inc/
|
2957 |
-
#: inc/
|
2958 |
-
msgid "
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: inc/
|
2962 |
-
msgid "
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: inc/
|
2966 |
-
msgid "
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: inc/
|
2970 |
-
msgid "
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: inc/
|
2974 |
-
msgid "
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: inc/
|
2978 |
-
msgid "
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: inc/
|
2982 |
-
|
|
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: inc/
|
2986 |
-
|
|
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: inc/
|
2990 |
-
|
2991 |
-
|
|
|
|
|
|
|
|
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: inc/
|
2995 |
-
msgid "
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: inc/
|
2999 |
-
|
|
|
|
|
|
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: inc/
|
3003 |
-
|
|
|
|
|
|
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: inc/
|
3007 |
-
msgid "
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: inc/
|
3011 |
-
msgid "
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: inc/
|
3015 |
-
msgid "
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: inc/
|
3019 |
-
msgid "
|
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/
|
3954 |
-
|
3955 |
-
|
3956 |
-
|
3957 |
-
#: inc/
|
3958 |
-
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
msgid "Email Address"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: inc/
|
3966 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: inc/
|
3970 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: inc/
|
3974 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: inc/
|
3978 |
-
#: inc/
|
3979 |
-
#: inc/
|
3980 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: inc/
|
3984 |
-
#: inc/
|
3985 |
-
msgid "
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: inc/
|
3989 |
-
|
|
|
|
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: inc/
|
3993 |
-
|
|
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: inc/
|
3997 |
-
msgid "
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: inc/
|
4001 |
msgid ""
|
4002 |
-
"
|
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/
|
4030 |
-
msgid "
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: inc/
|
4034 |
-
|
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/
|
4046 |
-
|
4047 |
-
msgid "HTML template"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: inc/
|
4051 |
-
|
4052 |
-
msgid "Plain text template"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: inc/
|
4056 |
-
|
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/
|
4064 |
-
msgid "
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: inc/
|
4068 |
-
msgid "
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: inc/
|
4072 |
-
msgid "
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: inc/
|
4076 |
-
msgid "
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: inc/
|
4080 |
-
msgid "
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: inc/
|
4084 |
-
|
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/
|
4091 |
-
|
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/
|
4098 |
-
|
|
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: inc/
|
4102 |
-
msgid "
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: inc/
|
4106 |
-
msgid "
|
4107 |
msgstr ""
|
4108 |
|
4109 |
-
#: inc/
|
4110 |
-
msgid "
|
4111 |
msgstr ""
|
4112 |
|
4113 |
-
#: inc/admin
|
4114 |
-
msgid "
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: inc/
|
4118 |
-
msgid "
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#: inc/
|
4122 |
-
|
4123 |
-
msgid "Back to Dashboard"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: inc/
|
4127 |
-
#: inc/
|
4128 |
-
|
4129 |
-
#: templates/checkout/form.php:89 templates/checkout/payment.php:132
|
4130 |
-
msgid "Back"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: inc/
|
4134 |
-
#:
|
4135 |
-
|
4136 |
-
msgid "Continue"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: inc/admin
|
4140 |
-
|
4141 |
-
msgid "LearnPress %s. Designed by @ThimPress."
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: inc/
|
4145 |
-
msgid "
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: inc/
|
4149 |
-
|
|
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: inc/
|
4153 |
-
msgid "
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: inc/
|
4157 |
-
|
4158 |
-
msgid "Paypal Email"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
-
#: inc/
|
4162 |
-
msgid "
|
4163 |
msgstr ""
|
4164 |
|
4165 |
-
#: inc/
|
4166 |
-
|
4167 |
-
msgid ""
|
4168 |
-
"For testing purpose with Paypal sandbox mode. Create an account <a href=\"%s"
|
4169 |
-
"\">here</a>!"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: inc/
|
4173 |
-
msgid "
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: inc/
|
4177 |
-
msgid "
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: inc/
|
4181 |
-
|
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/
|
4192 |
-
msgid "
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: inc/
|
4196 |
-
msgid "
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: inc/
|
4200 |
-
msgid "
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: inc/
|
4204 |
-
msgid "
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: inc/
|
4208 |
-
msgid "
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: inc/
|
4212 |
-
msgid "
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: inc/
|
4216 |
-
msgid "
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: inc/
|
4220 |
-
msgid "
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: inc/
|
4224 |
-
msgid "
|
|
|
|
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: inc/
|
4228 |
-
msgid "
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: inc/
|
4232 |
-
msgid "
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: inc/
|
4236 |
-
msgid "
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: inc/
|
4240 |
-
|
4241 |
-
msgid "What's next?"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: inc/
|
4245 |
-
msgid "
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: inc/
|
4249 |
-
msgid "
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: inc/admin/
|
4253 |
-
msgid "
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: inc/admin/
|
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/
|
4263 |
-
|
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/
|
4270 |
-
msgid "
|
|
|
|
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: inc/admin/
|
4274 |
-
msgid "
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: inc/admin/
|
4278 |
-
msgid "
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: inc/admin/
|
4282 |
-
msgid "
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#: inc/admin/
|
4286 |
-
|
|
|
|
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: inc/admin/
|
4290 |
-
msgid "
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: inc/admin/
|
4294 |
-
|
4295 |
-
|
4296 |
-
"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
-
#: inc/admin/
|
4300 |
-
#: inc/admin/
|
4301 |
-
#: inc/admin/
|
4302 |
-
|
4303 |
-
msgid "Last 7 Days"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: inc/admin/
|
4307 |
-
|
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/
|
4314 |
-
|
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/
|
4321 |
-
|
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/
|
4328 |
-
|
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/
|
4335 |
-
|
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/
|
4342 |
-
|
4343 |
-
msgid "Public"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: inc/admin/
|
4347 |
-
msgid "
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: inc/admin/
|
4351 |
-
msgid "
|
|
|
|
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: inc/admin/
|
4355 |
-
|
|
|
|
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: inc/admin/
|
4359 |
-
msgid "
|
4360 |
msgstr ""
|
4361 |
|
4362 |
-
#: inc/admin/
|
4363 |
-
msgid "
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: inc/admin/
|
4367 |
msgid ""
|
4368 |
-
"
|
4369 |
-
"
|
|
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: inc/admin/
|
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/
|
4379 |
-
msgid ""
|
4380 |
-
"And it will not change in all later accesses until the cache is cleared."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: inc/admin/
|
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/
|
4390 |
-
msgid "
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: inc/admin/
|
4394 |
-
|
4395 |
-
msgid "
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: inc/admin/
|
4399 |
-
|
|
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: inc/admin/
|
4403 |
-
|
4404 |
-
|
|
|
4405 |
msgstr ""
|
4406 |
|
4407 |
-
#: inc/admin/
|
4408 |
-
|
|
|
|
|
|
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: inc/admin/
|
4412 |
-
|
4413 |
-
|
|
|
|
|
|
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: inc/admin/
|
4417 |
-
|
4418 |
-
msgid "
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: inc/admin/
|
4422 |
-
|
4423 |
-
msgid "
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: inc/admin/
|
4427 |
-
|
|
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: inc/admin/
|
4431 |
-
msgid "
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: inc/admin/
|
4435 |
-
msgid "
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: inc/admin/
|
4439 |
-
msgid ""
|
4440 |
-
"If you don't want to miss exclussive offers from us, join our newsletter."
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: inc/admin/
|
4444 |
-
msgid "
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: inc/admin/
|
4448 |
-
msgid "
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: inc/admin/
|
4452 |
-
msgid ""
|
4453 |
-
"This action will reset progress of a course for all users have enrolled."
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: inc/admin/
|
4457 |
-
msgid "
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: inc/admin/
|
4461 |
-
msgid "
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: inc/admin/
|
4465 |
-
|
4466 |
-
msgid "Search"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: inc/admin/
|
4470 |
-
msgid "
|
4471 |
msgstr ""
|
4472 |
|
4473 |
-
#: inc/admin/
|
4474 |
-
msgid "
|
4475 |
msgstr ""
|
4476 |
|
4477 |
-
#: inc/admin/
|
4478 |
-
|
4479 |
-
msgid ""
|
4480 |
-
"Are you sure to reset course progress of all users enrolled this course?"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#: inc/admin/
|
4484 |
-
msgid "
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: inc/admin/
|
4488 |
-
msgid "
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: inc/admin/
|
4492 |
-
msgid "
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: inc/admin/
|
4496 |
-
msgid "
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: inc/admin/
|
4500 |
-
msgid "
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: inc/admin/
|
4504 |
-
msgid "
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: inc/admin/
|
4508 |
-
msgid ""
|
4509 |
-
"This action will reset progress of all courses that an user has enrolled."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: inc/admin/
|
4513 |
-
msgid "
|
4514 |
msgstr ""
|
4515 |
|
4516 |
-
#: inc/admin/
|
4517 |
-
msgid "
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: inc/admin/
|
4521 |
-
|
|
|
4522 |
msgstr ""
|
4523 |
|
4524 |
-
#: inc/admin/
|
4525 |
-
|
|
|
|
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#: inc/admin/
|
4529 |
-
|
|
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: inc/admin/
|
4533 |
-
|
|
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: inc/admin/
|
4537 |
-
|
4538 |
-
|
4539 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: inc/admin/
|
4543 |
-
msgid "
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: inc/admin/
|
4547 |
-
msgid "
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: inc/admin/
|
4551 |
-
msgid "
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: inc/admin/
|
4555 |
-
|
|
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: inc/admin/
|
4559 |
-
msgid "
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: inc/admin/
|
4563 |
-
msgid "
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: inc/admin/
|
4567 |
-
|
4568 |
-
msgid "Install"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#: inc/admin/
|
4572 |
-
msgid "
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: inc/admin/
|
4576 |
-
msgid "
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#: inc/admin/
|
4580 |
-
|
4581 |
-
msgid "Delete sample course"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: inc/admin/
|
4585 |
-
msgid "
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: inc/admin/
|
4589 |
-
|
|
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: inc/admin/
|
4593 |
-
|
|
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: inc/admin/
|
4597 |
-
msgid "
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: inc/admin/
|
4601 |
-
|
4602 |
-
msgid "
|
4603 |
msgstr ""
|
4604 |
|
4605 |
-
#: inc/admin/
|
4606 |
-
|
4607 |
-
|
4608 |
-
#: templates/profile/tabs/settings/avatar.php:60
|
4609 |
-
msgid "Remove"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: inc/admin/
|
4613 |
-
msgid "
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: inc/admin/
|
4617 |
-
|
4618 |
-
"
|
4619 |
-
"1.0."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: inc/admin/
|
4623 |
-
|
4624 |
-
|
4625 |
-
"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: inc/admin/
|
4629 |
-
msgid "
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: inc/admin/
|
4633 |
-
msgid "
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: inc/admin/
|
4637 |
-
msgid "
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: inc/admin/
|
4641 |
-
msgid "
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: inc/admin/
|
4645 |
-
|
|
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: inc/admin/
|
4649 |
-
|
|
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: inc/admin/
|
4653 |
-
|
|
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: inc/admin/
|
4657 |
-
|
|
|
4658 |
msgstr ""
|
4659 |
|
4660 |
-
#: inc/admin/
|
4661 |
-
msgid "
|
4662 |
msgstr ""
|
4663 |
|
4664 |
-
#: inc/admin/
|
4665 |
-
msgid "
|
4666 |
msgstr ""
|
4667 |
|
4668 |
-
#: inc/admin/
|
4669 |
-
|
|
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: inc/admin/
|
4673 |
-
|
4674 |
-
"
|
4675 |
-
"this action."
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: inc/admin/
|
4679 |
-
|
4680 |
-
"
|
4681 |
-
"latest version."
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: inc/admin/
|
4685 |
-
|
|
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: inc/admin/
|
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/
|
4695 |
-
|
4696 |
-
msgid "
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: inc/admin/
|
4700 |
-
|
4701 |
-
|
|
|
|
|
|
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: inc/admin/
|
4705 |
-
|
4706 |
-
"
|
4707 |
-
"contact supporter."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: inc/admin/
|
4711 |
-
|
|
|
|
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: inc/admin/
|
4715 |
-
|
|
|
|
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: inc/admin/
|
4719 |
-
|
|
|
|
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: inc/admin/
|
4723 |
-
|
|
|
|
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: inc/admin/
|
4727 |
-
msgid "
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: inc/admin/
|
4731 |
-
msgid "
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: inc/admin/
|
4735 |
-
msgid "
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: inc/admin/
|
4739 |
-
msgid "
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: inc/admin/
|
4743 |
-
|
|
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: inc/admin/
|
4747 |
-
|
4748 |
-
msgid "Update post meta"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: inc/admin/
|
4752 |
-
msgid "
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#: inc/admin/
|
4756 |
-
msgid "
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#: inc/admin/
|
4760 |
-
msgid "
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#: inc/admin/
|
4764 |
-
|
|
|
|
|
|
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#: inc/admin/
|
4768 |
-
msgid "
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#: inc/admin/
|
4772 |
-
msgid "
|
4773 |
msgstr ""
|
4774 |
|
4775 |
-
#: inc/admin/
|
4776 |
-
msgid "
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#: inc/admin/
|
4780 |
-
msgid "
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#: inc/admin/
|
4784 |
-
msgid "
|
4785 |
msgstr ""
|
4786 |
|
4787 |
-
#: inc/admin/
|
4788 |
-
|
4789 |
-
|
4790 |
-
|
4791 |
-
"to upgrade your database to ensure system works properly."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: inc/admin/
|
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/
|
4801 |
-
|
|
|
|
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: inc/admin/
|
4805 |
-
|
|
|
|
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: inc/admin/
|
4809 |
-
msgid "
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: inc/admin/
|
4813 |
-
#: inc/admin/views/updates/0.9/update-wizard.php:19
|
4814 |
#, php-format
|
4815 |
-
msgid "LearnPress
|
4816 |
msgstr ""
|
4817 |
|
4818 |
-
#: inc/
|
4819 |
-
|
4820 |
-
msgid "
|
4821 |
msgstr ""
|
4822 |
|
4823 |
-
#: inc/
|
4824 |
-
|
|
|
4825 |
msgstr ""
|
4826 |
|
4827 |
-
#: inc/
|
4828 |
#, php-format
|
4829 |
-
msgid "
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: inc/
|
4833 |
-
|
|
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: inc/
|
4837 |
-
|
|
|
|
|
|
|
|
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: inc/
|
4841 |
-
msgid "
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: inc/
|
4845 |
-
|
|
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: inc/
|
4849 |
-
|
|
|
|
|
|
|
|
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: inc/
|
4853 |
#, php-format
|
4854 |
-
msgid "
|
|
|
|
|
|
|
4855 |
msgstr ""
|
4856 |
|
4857 |
-
#: inc/
|
4858 |
-
|
4859 |
-
msgid "All Course %s"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: inc/
|
4863 |
-
|
4864 |
-
msgid "Parent Course %s"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#: inc/
|
4868 |
-
|
4869 |
-
msgid "Parent Course %s:"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: inc/
|
4873 |
-
|
4874 |
-
msgid "Edit Course %s"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: inc/
|
4878 |
-
|
4879 |
-
msgid "Update Course %s"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
-
#: inc/
|
4883 |
-
|
4884 |
-
msgid "Add New Course %s"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: inc/
|
4888 |
-
|
4889 |
-
msgid "New Course %s"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: inc/
|
|
|
|
|
|
|
|
|
4893 |
#, php-format
|
4894 |
-
msgid "
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#: inc/
|
4898 |
-
|
4899 |
-
msgid "There is no items found!"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
-
#: inc/
|
4903 |
-
msgid "
|
4904 |
msgstr ""
|
4905 |
|
4906 |
-
#: inc/
|
4907 |
-
msgid "
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#: inc/
|
4911 |
-
msgid "
|
4912 |
msgstr ""
|
4913 |
|
4914 |
-
#: inc/
|
4915 |
-
msgid "
|
4916 |
msgstr ""
|
4917 |
|
4918 |
-
#: inc/
|
4919 |
-
msgid "
|
4920 |
msgstr ""
|
4921 |
|
4922 |
-
#: inc/
|
4923 |
-
msgid "
|
4924 |
msgstr ""
|
4925 |
|
4926 |
-
#: inc/
|
4927 |
-
|
4928 |
-
msgid ""
|
4929 |
-
"%s has been removed from your cart because it can no longer be purchased."
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: inc/
|
4933 |
-
msgid "
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: inc/
|
4937 |
-
|
4938 |
-
|
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/
|
|
|
|
|
|
|
|
|
|
|
4946 |
#, php-format
|
4947 |
-
|
4948 |
-
|
4949 |
-
msgid_plural ""
|
4950 |
-
"<span class=\"course-students-number\">%1$s</span> students enrolled"
|
4951 |
msgstr[0] ""
|
4952 |
msgstr[1] ""
|
4953 |
|
4954 |
-
#: inc/
|
4955 |
-
|
|
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: inc/
|
4959 |
-
#: inc/
|
4960 |
-
|
4961 |
-
msgid "The function %s doesn't exist"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: inc/
|
4965 |
-
|
4966 |
-
msgid "This course will end within next %s"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: inc/
|
4970 |
-
|
4971 |
-
|
|
|
4972 |
msgstr ""
|
4973 |
|
4974 |
-
#: inc/
|
4975 |
-
msgid "
|
4976 |
msgstr ""
|
4977 |
|
4978 |
-
#: inc/
|
4979 |
-
|
4980 |
-
msgid "uncategorized"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: inc/
|
4984 |
-
|
4985 |
-
msgid "The course %d does not exists"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
-
#: inc/
|
4989 |
-
|
|
|
|
|
4990 |
msgstr ""
|
4991 |
|
4992 |
-
#: inc/
|
4993 |
-
|
4994 |
-
msgid "Welcome back, %s"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: inc/
|
4998 |
-
msgid "
|
4999 |
msgstr ""
|
5000 |
|
5001 |
-
#: inc/
|
5002 |
-
|
5003 |
-
|
5004 |
-
|
5005 |
-
|
|
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#: inc/
|
5009 |
-
msgid "
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#: inc/
|
5013 |
-
msgid "
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#: inc/
|
5017 |
-
msgid "
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: inc/
|
5021 |
-
msgid "
|
|
|
|
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#: inc/
|
5025 |
-
|
|
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#: inc/
|
5029 |
-
msgid "
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: inc/
|
5033 |
-
msgid "
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: inc/
|
5037 |
-
|
5038 |
-
msgid "Invalid lesson with ID \"%d\"."
|
5039 |
msgstr ""
|
5040 |
|
5041 |
-
#: inc/
|
5042 |
-
|
5043 |
-
msgid "Invalid order with ID \"%d\"."
|
5044 |
msgstr ""
|
5045 |
|
5046 |
-
#: inc/
|
5047 |
-
|
5048 |
-
msgid "Invalid order."
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: inc/
|
5052 |
-
|
|
|
|
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: inc/
|
5056 |
-
|
|
|
|
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: inc/
|
5060 |
-
|
|
|
|
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: inc/
|
5064 |
-
|
|
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: inc/
|
5068 |
-
msgid "
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: inc/
|
5072 |
-
msgid "
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: inc/
|
5076 |
-
|
5077 |
-
msgid "Invalid question with ID \"%d\"."
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: inc/
|
5081 |
-
msgid "
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: inc/
|
5085 |
-
|
5086 |
-
msgid "Invalid quiz with ID \"%d\"."
|
5087 |
msgstr ""
|
5088 |
|
5089 |
-
#: inc/
|
5090 |
-
msgid "
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: inc/
|
5094 |
-
msgid "
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: inc/
|
5098 |
-
msgid "
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: inc/
|
5102 |
-
msgid "
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: inc/
|
5106 |
-
msgid "
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: inc/
|
5110 |
-
msgid "quiz"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: inc/
|
5114 |
-
msgid "
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: inc/
|
5118 |
-
msgid "
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: inc/
|
5122 |
-
msgid ""
|
5123 |
-
"An account is already registered with your email address. Please log in."
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: inc/
|
5127 |
-
msgid "
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: inc/
|
5131 |
-
msgid ""
|
5132 |
-
"An account is already registered with that username. Please choose another."
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: inc/
|
5136 |
-
msgid "
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: inc/
|
5140 |
-
msgid "
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#: inc/
|
5144 |
-
|
|
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#: inc/
|
5148 |
-
|
5149 |
-
msgid "Search by user"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
-
#: inc/
|
5153 |
-
|
5154 |
-
|
5155 |
-
|
|
|
5156 |
msgstr ""
|
5157 |
|
5158 |
-
#: inc/
|
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/
|
5165 |
-
|
5166 |
-
|
5167 |
-
msgid_plural "Course (%d %s)"
|
5168 |
-
msgstr[0] ""
|
5169 |
-
msgstr[1] ""
|
5170 |
|
5171 |
-
#: inc/
|
5172 |
-
msgid "
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: inc/
|
5176 |
-
#: inc/
|
5177 |
-
msgid "
|
5178 |
msgstr ""
|
5179 |
|
5180 |
-
#: inc/
|
5181 |
-
msgid "
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: inc/
|
5185 |
-
|
|
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: inc/
|
5189 |
-
|
5190 |
-
msgid "
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: inc/
|
5194 |
-
|
|
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: inc/
|
5198 |
-
|
|
|
5199 |
msgstr ""
|
5200 |
|
5201 |
-
#: inc/
|
5202 |
-
msgid "
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: inc/
|
5206 |
-
|
5207 |
-
msgid "scheduled for: <strong>%1$s</strong>."
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: inc/
|
5211 |
-
msgid "
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: inc/
|
5215 |
-
msgid "
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: inc/
|
5219 |
-
msgid "
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: inc/
|
5223 |
-
msgid "
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: inc/
|
5227 |
-
|
|
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: inc/
|
5231 |
-
|
|
|
|
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: inc/
|
5235 |
-
|
|
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: inc/
|
5239 |
-
msgid "
|
|
|
|
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: inc/
|
5243 |
-
msgid "
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: inc/
|
5247 |
-
msgid "
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: inc/
|
5251 |
-
|
5252 |
-
msgid "Courses"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: inc/
|
5256 |
-
|
5257 |
-
msgid "Course"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
-
#: inc/
|
5261 |
-
|
|
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: inc/
|
5265 |
-
msgid "
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: inc/
|
5269 |
-
msgid "
|
5270 |
msgstr ""
|
5271 |
|
5272 |
-
#: inc/
|
5273 |
-
|
5274 |
-
msgid "Add New"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#: inc/
|
5278 |
-
msgid "
|
5279 |
msgstr ""
|
5280 |
|
5281 |
-
#: inc/
|
5282 |
-
msgid "
|
5283 |
msgstr ""
|
5284 |
|
5285 |
-
#: inc/
|
5286 |
-
|
|
|
|
|
|
|
5287 |
msgstr ""
|
5288 |
|
5289 |
-
#: inc/
|
5290 |
-
|
5291 |
-
msgid ""
|
5292 |
-
"You haven't had any courses yet. Click <a href=\"%s\">Add new</a> to start"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#: inc/
|
5296 |
-
msgid "
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: inc/
|
5300 |
-
msgid "
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: inc/
|
5304 |
-
|
|
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: inc/
|
5308 |
-
msgid "Add New
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: inc/
|
5312 |
-
msgid "All
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: inc/
|
5316 |
-
|
5317 |
-
msgid "
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: inc/
|
5321 |
-
|
|
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: inc/
|
5325 |
-
|
5326 |
-
|
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/
|
5333 |
-
|
|
|
5334 |
msgstr ""
|
5335 |
|
5336 |
-
#: inc/
|
5337 |
-
|
|
|
5338 |
msgstr ""
|
5339 |
|
5340 |
-
#: inc/
|
5341 |
-
|
|
|
5342 |
msgstr ""
|
5343 |
|
5344 |
-
#: inc/
|
5345 |
-
|
|
|
5346 |
msgstr ""
|
5347 |
|
5348 |
-
#: inc/
|
5349 |
-
|
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: inc/
|
5353 |
-
|
|
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: inc/
|
5357 |
-
|
|
|
|
|
|
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: inc/
|
5361 |
-
|
|
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: inc/
|
5365 |
-
|
|
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
#: inc/
|
5369 |
-
|
|
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: inc/
|
5373 |
-
|
5374 |
-
msgid "course-tag"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
-
#: inc/
|
5378 |
-
msgid "
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: inc/
|
5382 |
-
msgid "
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: inc/
|
5386 |
-
|
5387 |
-
#: templates/content-quiz/intro.php:28
|
5388 |
-
msgid "Duration"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
-
#: inc/
|
5392 |
-
|
|
|
|
|
5393 |
msgstr ""
|
5394 |
|
5395 |
-
#: inc/
|
5396 |
-
msgid "
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#: inc/
|
5400 |
-
msgid "
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: inc/
|
5404 |
-
msgid "
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: inc/
|
5408 |
-
msgid "
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: inc/
|
5412 |
-
msgid "
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#: inc/
|
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/
|
5422 |
-
|
|
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: inc/
|
5426 |
-
|
|
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: inc/
|
5430 |
-
msgid "
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: inc/
|
5434 |
-
msgid "
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: inc/
|
5438 |
-
msgid "
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: inc/
|
5442 |
-
msgid "
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: inc/
|
5446 |
-
msgid "
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: inc/
|
5450 |
-
msgid "
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: inc/
|
5454 |
-
|
|
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: inc/
|
5458 |
-
|
5459 |
-
|
|
|
|
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: inc/
|
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/
|
5470 |
-
msgid ""
|
5471 |
-
"<p>Evaluate by number of lessons completed per number of total lessons.</p>"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: inc/
|
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/
|
5481 |
-
|
5482 |
-
"
|
5483 |
-
"of course."
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: inc/
|
5487 |
-
|
5488 |
-
|
5489 |
-
"quizzes."
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: inc/
|
5493 |
-
msgid ""
|
5494 |
-
"Evaluate by achieved points of quizzes passed per total point of all quizzes."
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: inc/
|
5498 |
-
msgid ""
|
5499 |
-
"<p>Evaluate by number of quizzes completed per number of total quizzes.</p>"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: inc/
|
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/
|
5509 |
-
msgid "
|
|
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: inc/
|
5513 |
-
msgid "
|
5514 |
msgstr ""
|
5515 |
|
5516 |
-
#: inc/
|
5517 |
-
msgid "
|
|
|
5518 |
msgstr ""
|
5519 |
|
5520 |
-
#: inc/
|
5521 |
-
msgid "
|
5522 |
msgstr ""
|
5523 |
|
5524 |
-
#: inc/
|
5525 |
-
|
|
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#: inc/
|
5529 |
-
|
|
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: inc/
|
5533 |
-
msgid "
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: inc/
|
5537 |
-
msgid "
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#: inc/
|
5541 |
-
msgid ""
|
5542 |
-
"The percentage of quiz result or completed lessons to finish the course."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: inc/
|
5546 |
-
msgid "
|
5547 |
msgstr ""
|
5548 |
|
5549 |
-
#: inc/
|
5550 |
-
|
5551 |
-
msgid ""
|
5552 |
-
"This course requires enrollment and the suggested price is <strong>%s</"
|
5553 |
-
"strong>"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: inc/
|
5557 |
-
msgid "
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: inc/
|
5561 |
#, php-format
|
5562 |
-
msgid "
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: inc/
|
5566 |
-
|
5567 |
-
#: templates/emails/order-items-table.php:68
|
5568 |
-
msgid "Price"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: inc/
|
5572 |
-
|
|
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: inc/
|
5576 |
-
|
5577 |
-
msgid "Course sale price in <strong>%s</strong> currency."
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: inc/
|
5581 |
-
msgid "
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: inc/
|
5585 |
-
msgid "
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: inc/
|
5589 |
-
|
|
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: inc/
|
5593 |
-
msgid "
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: inc/
|
5597 |
-
|
|
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: inc/
|
5601 |
-
msgid "
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: inc/
|
5605 |
-
msgid "
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: inc/
|
5609 |
-
msgid "
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#:
|
5613 |
-
msgid "
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#:
|
5617 |
-
msgid "
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#:
|
5621 |
-
#: inc/
|
5622 |
-
#: inc/
|
5623 |
-
|
5624 |
-
msgid "Author"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#:
|
5628 |
-
msgid "
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#:
|
5632 |
-
msgid "
|
|
|
|
|
5633 |
msgstr ""
|
5634 |
|
5635 |
-
#:
|
5636 |
-
msgid "
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#:
|
5640 |
-
msgid "
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#:
|
5644 |
-
msgid "
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#:
|
5648 |
-
msgid "
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#:
|
5652 |
-
msgid "
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#:
|
5656 |
-
msgid "
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#:
|
5660 |
-
msgid "
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#:
|
5664 |
-
|
|
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#:
|
5668 |
-
|
|
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#:
|
5672 |
-
msgid "
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#:
|
5676 |
-
|
|
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#:
|
5680 |
-
|
|
|
|
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#:
|
5684 |
-
|
5685 |
-
msgid "
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#:
|
5689 |
-
|
|
|
|
|
|
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#:
|
5693 |
-
|
|
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#:
|
5697 |
-
|
5698 |
-
msgid "
|
5699 |
-
|
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 |
-
#:
|
5711 |
-
msgid "
|
5712 |
msgstr ""
|
5713 |
|
5714 |
-
#:
|
5715 |
-
|
5716 |
-
#, php-format
|
5717 |
-
msgid "Unassigned %s"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#:
|
5721 |
-
|
5722 |
-
msgid "Preview %s"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#:
|
5726 |
-
|
5727 |
-
|
|
|
5728 |
msgstr ""
|
5729 |
|
5730 |
-
#:
|
5731 |
-
|
5732 |
-
#: templates/widgets/course-info/default.php:29
|
5733 |
-
msgid "Lessons"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#:
|
5737 |
-
msgid "
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#:
|
5741 |
-
|
|
|
|
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#:
|
5745 |
-
msgid "
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#:
|
5749 |
-
msgid "
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#:
|
5753 |
-
msgid "
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#:
|
5757 |
-
msgid "
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#:
|
5761 |
-
msgid "
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#:
|
5765 |
-
|
|
|
5766 |
msgstr ""
|
5767 |
|
5768 |
-
#:
|
5769 |
-
msgid "
|
5770 |
msgstr ""
|
5771 |
|
5772 |
-
#:
|
5773 |
-
msgid "
|
5774 |
msgstr ""
|
5775 |
|
5776 |
-
#:
|
5777 |
-
msgid "
|
5778 |
msgstr ""
|
5779 |
|
5780 |
-
#:
|
5781 |
msgid ""
|
5782 |
-
"
|
5783 |
-
"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#:
|
5787 |
-
|
|
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#:
|
5791 |
-
msgid "
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#:
|
5795 |
-
msgid "
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#:
|
5799 |
-
|
5800 |
-
msgid "Assigned"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#:
|
5804 |
-
|
|
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
#:
|
5808 |
-
msgid "
|
5809 |
msgstr ""
|
5810 |
|
5811 |
-
#:
|
5812 |
-
|
|
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#:
|
5816 |
-
|
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#:
|
5820 |
-
msgid "
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#:
|
5824 |
-
|
5825 |
-
msgid "Order"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#:
|
5829 |
-
msgid "
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#:
|
5833 |
-
|
|
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#:
|
5837 |
-
|
5838 |
-
msgid "Course does not exist"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#:
|
5842 |
-
|
|
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#:
|
5846 |
-
|
5847 |
-
msgid "(No item)"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
-
#:
|
5851 |
#, php-format
|
5852 |
-
msgid "
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#:
|
5856 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#:
|
5860 |
-
|
5861 |
-
msgid "Order Details"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#:
|
5865 |
-
|
|
|
|
|
|
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#:
|
5869 |
-
msgid "
|
5870 |
msgstr ""
|
5871 |
|
5872 |
-
#:
|
5873 |
-
|
|
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#:
|
5877 |
-
|
|
|
|
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#:
|
5881 |
-
msgid "
|
5882 |
msgstr ""
|
5883 |
|
5884 |
-
#:
|
5885 |
-
|
5886 |
-
msgid "New Option"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#:
|
5890 |
-
#:
|
5891 |
-
msgid "
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#:
|
5895 |
-
|
5896 |
-
msgid "Add New Tag"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#:
|
5900 |
-
|
5901 |
-
msgid "All Tags"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#:
|
5905 |
-
|
5906 |
-
msgid "Question Bank"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#:
|
5910 |
-
|
5911 |
-
msgid "Question"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#:
|
5915 |
-
|
|
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#:
|
5919 |
-
|
|
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#:
|
5923 |
-
|
|
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#:
|
5927 |
-
|
|
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#:
|
5931 |
-
|
|
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#:
|
5935 |
-
|
|
|
5936 |
msgstr ""
|
5937 |
|
5938 |
-
#:
|
5939 |
-
|
|
|
5940 |
msgstr ""
|
5941 |
|
5942 |
-
#:
|
5943 |
-
msgid "
|
5944 |
msgstr ""
|
5945 |
|
5946 |
-
#:
|
5947 |
-
msgid "
|
5948 |
msgstr ""
|
5949 |
|
5950 |
-
#:
|
5951 |
-
msgid "
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#:
|
5955 |
-
msgid "
|
5956 |
msgstr ""
|
5957 |
|
5958 |
-
#:
|
5959 |
-
msgid "
|
5960 |
msgstr ""
|
5961 |
|
5962 |
-
#:
|
5963 |
#, php-format
|
5964 |
msgid ""
|
5965 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5966 |
msgstr ""
|
5967 |
|
5968 |
-
#:
|
5969 |
-
msgid "
|
5970 |
msgstr ""
|
5971 |
|
5972 |
-
#:
|
5973 |
-
msgid "
|
5974 |
msgstr ""
|
5975 |
|
5976 |
-
#:
|
5977 |
-
|
|
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#:
|
5981 |
-
msgid "
|
|
|
|
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: inc/
|
5985 |
-
|
|
|
|
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: inc/
|
5989 |
-
msgid ""
|
5990 |
-
"Show list of questions while doing quiz as ordered numbers (1, 2, 3, etc)."
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#: inc/
|
5994 |
-
msgid "
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: inc/
|
5998 |
-
msgid "
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: inc/
|
6002 |
-
msgid "
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: inc/
|
6006 |
-
msgid "
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: inc/
|
6010 |
-
msgid "
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#: inc/
|
6014 |
-
msgid "
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: inc/
|
6018 |
-
|
|
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: inc/
|
6022 |
-
msgid "
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#: inc/
|
6026 |
-
msgid "
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#: inc/
|
6030 |
-
msgid "
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: inc/
|
6034 |
-
msgid "
|
6035 |
msgstr ""
|
6036 |
|
6037 |
-
#: inc/
|
6038 |
-
msgid "
|
6039 |
msgstr ""
|
6040 |
|
6041 |
-
#: inc/
|
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/
|
6047 |
-
msgid "
|
6048 |
msgstr ""
|
6049 |
|
6050 |
-
#: inc/
|
6051 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6052 |
msgstr ""
|
6053 |
|
6054 |
-
#: inc/
|
6055 |
-
msgid "
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#: inc/
|
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/
|
6065 |
-
msgid "
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: inc/
|
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/
|
6075 |
-
msgid "
|
6076 |
msgstr ""
|
6077 |
|
6078 |
-
#: inc/
|
6079 |
-
msgid "
|
6080 |
msgstr ""
|
6081 |
|
6082 |
-
#: inc/
|
6083 |
-
msgid "
|
6084 |
msgstr ""
|
6085 |
|
6086 |
-
#: inc/
|
6087 |
-
msgid "
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#: inc/
|
6091 |
-
msgid "
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: inc/
|
6095 |
-
|
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/
|
6103 |
-
|
|
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: inc/
|
6107 |
-
#:
|
6108 |
-
msgid "
|
|
|
|
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
#: inc/
|
6112 |
-
|
6113 |
-
msgid "User order has been cancelled"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: inc/
|
6117 |
-
msgid "
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: inc/
|
6121 |
-
|
6122 |
-
msgid "Your order on {{order_date}} has been cancelled"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: inc/
|
6126 |
-
|
6127 |
-
msgid "Your order has been cancelled"
|
6128 |
msgstr ""
|
6129 |
|
6130 |
-
#: inc/
|
6131 |
-
|
|
|
6132 |
msgstr ""
|
6133 |
|
6134 |
-
#: inc/
|
6135 |
-
#: inc/
|
6136 |
-
|
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/
|
6144 |
-
|
|
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#: inc/
|
6148 |
-
|
|
|
6149 |
msgstr ""
|
6150 |
|
6151 |
-
#: inc/
|
6152 |
-
msgid "
|
6153 |
msgstr ""
|
6154 |
|
6155 |
-
#: inc/
|
6156 |
-
msgid "
|
6157 |
msgstr ""
|
6158 |
|
6159 |
-
#: inc/
|
6160 |
-
|
6161 |
-
msgid "Send email to the user who has bought course as guest."
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: inc/
|
6165 |
-
|
6166 |
-
msgid "Your order on {{order_date}} has completed"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: inc/
|
6170 |
-
|
6171 |
-
msgid "Your order has completed"
|
6172 |
msgstr ""
|
6173 |
|
6174 |
-
#: inc/
|
6175 |
-
msgid "
|
6176 |
msgstr ""
|
6177 |
|
6178 |
-
#: inc/
|
6179 |
-
msgid "
|
6180 |
msgstr ""
|
6181 |
|
6182 |
-
#: inc/
|
6183 |
-
|
6184 |
-
msgid "{{user_display_name}} has enrolled course"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
#: inc/
|
6188 |
-
#: inc/
|
6189 |
-
msgid "
|
6190 |
msgstr ""
|
6191 |
|
6192 |
-
#: inc/
|
6193 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6194 |
msgstr ""
|
6195 |
|
6196 |
-
#: inc/
|
6197 |
-
msgid "
|
|
|
|
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: inc/
|
6201 |
-
msgid "
|
6202 |
msgstr ""
|
6203 |
|
6204 |
-
#: inc/
|
6205 |
-
msgid "
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#: inc/
|
6209 |
-
msgid "
|
6210 |
msgstr ""
|
6211 |
|
6212 |
-
#: inc/
|
6213 |
-
#: inc/emails/
|
6214 |
-
msgid "
|
|
|
|
|
6215 |
msgstr ""
|
6216 |
|
6217 |
-
#: inc/
|
6218 |
-
|
6219 |
-
msgid "User has finished course"
|
6220 |
msgstr ""
|
6221 |
|
6222 |
-
#: inc/
|
6223 |
-
msgid "
|
6224 |
msgstr ""
|
6225 |
|
6226 |
-
#: inc/
|
6227 |
-
msgid "Send
|
6228 |
msgstr ""
|
6229 |
|
6230 |
-
#: inc/
|
6231 |
-
msgid "
|
6232 |
msgstr ""
|
6233 |
|
6234 |
-
#: inc/
|
6235 |
-
msgid "
|
6236 |
msgstr ""
|
6237 |
|
6238 |
-
#: inc/
|
6239 |
-
msgid "
|
6240 |
msgstr ""
|
6241 |
|
6242 |
-
#: inc/
|
6243 |
-
msgid "
|
|
|
|
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#: inc/
|
6247 |
-
msgid "
|
6248 |
msgstr ""
|
6249 |
|
6250 |
-
#: inc/
|
6251 |
-
|
|
|
6252 |
msgstr ""
|
6253 |
|
6254 |
-
#: inc/
|
6255 |
-
|
|
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#: inc/
|
6259 |
-
|
|
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#: inc/
|
6263 |
-
msgid "
|
6264 |
msgstr ""
|
6265 |
|
6266 |
-
#: inc/
|
6267 |
-
|
|
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#: inc/
|
6271 |
-
msgid "
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#: inc/
|
6275 |
-
msgid ""
|
6276 |
-
"[{{site_title}}] New course has been submitted for review ({{course_name}})"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
-
#: inc/
|
6280 |
-
|
6281 |
-
msgid "Recipient(s)"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
-
#: inc/
|
6285 |
-
|
6286 |
-
#, php-format
|
6287 |
-
msgid "Email recipient(s) (separated by comma), default: <code>%s</code>."
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: inc/
|
6291 |
-
|
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/
|
6302 |
-
|
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/
|
6312 |
-
|
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/
|
6323 |
-
msgid "
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#: inc/
|
6327 |
-
|
6328 |
-
msgid "New order placed on {{order_date}}"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#: inc/
|
6332 |
-
|
6333 |
-
msgid "
|
|
|
|
|
6334 |
msgstr ""
|
6335 |
|
6336 |
-
#: inc/
|
6337 |
-
|
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/
|
6344 |
-
|
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/
|
6351 |
-
msgid "
|
|
|
|
|
6352 |
msgstr ""
|
6353 |
|
6354 |
-
#: inc/
|
6355 |
-
msgid "
|
6356 |
msgstr ""
|
6357 |
|
6358 |
-
#: inc/
|
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/
|
6365 |
-
msgid "
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: inc/
|
6369 |
-
|
|
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: inc/
|
6373 |
-
|
|
|
6374 |
msgstr ""
|
6375 |
|
6376 |
-
#: inc/
|
6377 |
-
|
|
|
6378 |
msgstr ""
|
6379 |
|
6380 |
-
#: inc/
|
6381 |
-
|
|
|
6382 |
msgstr ""
|
6383 |
|
6384 |
-
#: inc/
|
6385 |
-
|
6386 |
-
msgid "Rejected course"
|
6387 |
msgstr ""
|
6388 |
|
6389 |
-
#: inc/
|
6390 |
-
msgid "
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: inc/
|
6394 |
-
msgid "
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: inc/
|
6398 |
-
msgid "
|
6399 |
msgstr ""
|
6400 |
|
6401 |
-
#: inc/
|
6402 |
-
msgid "
|
6403 |
msgstr ""
|
6404 |
|
6405 |
-
#: inc/
|
6406 |
-
msgid "
|
6407 |
msgstr ""
|
6408 |
|
6409 |
-
#: inc/
|
6410 |
-
|
|
|
|
|
|
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: inc/
|
6414 |
-
msgid "
|
6415 |
msgstr ""
|
6416 |
|
6417 |
-
#: inc/
|
6418 |
-
msgid "
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: inc/
|
6422 |
-
msgid "
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: inc/
|
6426 |
-
msgid "
|
|
|
|
|
|
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: inc/
|
6430 |
-
msgid "
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#: inc/
|
6434 |
-
msgid "
|
6435 |
msgstr ""
|
6436 |
|
6437 |
-
#: inc/
|
6438 |
-
msgid "
|
6439 |
msgstr ""
|
6440 |
|
6441 |
-
#: inc/
|
6442 |
-
msgid "
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: inc/
|
6446 |
-
msgid "
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: inc/
|
6450 |
-
msgid "
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: inc/
|
6454 |
-
msgid "
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: inc/
|
6458 |
-
msgid "
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: inc/
|
6462 |
-
|
6463 |
-
msgid "Error: Order Keys do not match %s and %s."
|
6464 |
msgstr ""
|
6465 |
|
6466 |
-
#: inc/
|
6467 |
-
msgid "
|
6468 |
msgstr ""
|
6469 |
|
6470 |
-
#: inc/
|
6471 |
-
|
6472 |
-
|
6473 |
msgstr ""
|
6474 |
|
6475 |
-
#: inc/
|
6476 |
-
|
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/
|
6483 |
-
msgid "
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: inc/
|
6487 |
-
msgid "
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: inc/
|
6491 |
-
msgid "
|
6492 |
msgstr ""
|
6493 |
|
6494 |
-
#: inc/
|
6495 |
-
|
6496 |
-
msgid "Meta Box"
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
#: inc/
|
6500 |
-
msgid "
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: inc/
|
6504 |
-
#, php-format
|
6505 |
msgid ""
|
6506 |
-
"
|
6507 |
-
"
|
6508 |
-
"
|
6509 |
-
"Meta Box team!"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: inc/
|
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/
|
6519 |
-
|
|
|
6520 |
msgstr ""
|
6521 |
|
6522 |
-
#: inc/
|
6523 |
-
|
6524 |
-
"
|
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/
|
6556 |
-
|
6557 |
-
|
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/
|
6569 |
-
msgid ""
|
6570 |
-
"Create repeatable groups of custom fields for better appearance and "
|
6571 |
-
"structure."
|
6572 |
msgstr ""
|
6573 |
|
6574 |
-
#: inc/
|
6575 |
-
msgid "
|
6576 |
msgstr ""
|
6577 |
|
6578 |
-
#: inc/
|
6579 |
-
msgid ""
|
6580 |
-
"Control the visibility of meta boxes and fields or even HTML elements with "
|
6581 |
-
"ease."
|
6582 |
msgstr ""
|
6583 |
|
6584 |
-
#: inc/
|
6585 |
-
msgid "
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: inc/
|
6589 |
-
msgid ""
|
6590 |
-
"Add custom fields to user profile (user meta) quickly with simple syntax."
|
6591 |
msgstr ""
|
6592 |
|
6593 |
-
#: inc/
|
6594 |
-
msgid ""
|
6595 |
-
"Create register, login and edit user profile forms in the frontend. Embed "
|
6596 |
-
"everywhere with shortcodes."
|
6597 |
msgstr ""
|
6598 |
|
6599 |
-
#: inc/
|
6600 |
-
msgid ""
|
6601 |
-
"Create frontend forms for users to submit custom content. Embed everywhere "
|
6602 |
-
"with shortcode."
|
6603 |
msgstr ""
|
6604 |
|
6605 |
-
#: inc/
|
6606 |
-
msgid "
|
6607 |
msgstr ""
|
6608 |
|
6609 |
-
#: inc/
|
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/
|
6616 |
-
msgid "
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#: inc/
|
6620 |
-
msgid ""
|
6621 |
-
"A lightweight WordPress plugin for creating many-to-many relationships "
|
6622 |
-
"between posts, terms and users."
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: inc/
|
6626 |
-
msgid ""
|
6627 |
-
"Integrates Meta Box and FacetWP, makes custom fields searchable and "
|
6628 |
-
"filterable in the frontend."
|
6629 |
msgstr ""
|
6630 |
|
6631 |
-
#: inc/
|
6632 |
-
|
6633 |
-
|
6634 |
-
|
|
|
6635 |
msgstr ""
|
6636 |
|
6637 |
-
#: inc/
|
|
|
6638 |
msgid ""
|
6639 |
-
"
|
6640 |
-
"
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#: inc/
|
|
|
6644 |
msgid ""
|
6645 |
-
"
|
6646 |
-
"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: inc/
|
6650 |
-
msgid ""
|
6651 |
-
"Automatically and instantly populate location data with the power of Google "
|
6652 |
-
"Maps Geolocation API."
|
6653 |
msgstr ""
|
6654 |
|
6655 |
-
#: inc/
|
6656 |
-
|
6657 |
-
"
|
6658 |
-
"(types)."
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: inc/
|
6662 |
-
|
6663 |
-
"
|
6664 |
-
"correct SEO score."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
-
#: inc/
|
6668 |
-
msgid ""
|
6669 |
-
"Limit the number of characters or words entered for text and textarea fields."
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: inc/
|
6673 |
-
|
6674 |
-
"
|
6675 |
-
"area."
|
6676 |
msgstr ""
|
6677 |
|
6678 |
-
#: inc/
|
6679 |
-
msgid "
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#: inc/
|
6683 |
-
msgid "
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: inc/
|
6687 |
-
msgid "
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: inc/
|
6691 |
-
|
|
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: inc/
|
6695 |
-
|
|
|
|
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: inc/
|
6699 |
-
|
6700 |
-
"
|
6701 |
-
"WordPress."
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: inc/
|
6705 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: inc/
|
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/
|
6716 |
-
msgid "
|
6717 |
msgstr ""
|
6718 |
|
6719 |
-
#: inc/
|
6720 |
-
msgid "
|
6721 |
msgstr ""
|
6722 |
|
6723 |
-
#: inc/
|
6724 |
-
|
|
|
6725 |
msgstr ""
|
6726 |
|
6727 |
-
#: inc/
|
6728 |
-
|
6729 |
-
|
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/
|
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/
|
6743 |
-
msgid "
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: inc/
|
6747 |
-
msgid "
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: inc/
|
6751 |
-
msgid "
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
#: inc/
|
6755 |
-
msgid "
|
6756 |
msgstr ""
|
6757 |
|
6758 |
-
#: inc/
|
6759 |
-
msgid "
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#: inc/
|
6763 |
-
|
|
|
|
|
|
|
|
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#: inc/
|
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/
|
6773 |
-
msgid "
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: inc/
|
6777 |
-
|
6778 |
-
|
6779 |
-
"
|
6780 |
-
"forget to check our <a href=\"%s\">documentation</a> first."
|
6781 |
msgstr ""
|
6782 |
|
6783 |
-
#: inc/
|
6784 |
-
|
|
|
|
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#: inc/
|
6788 |
-
|
6789 |
-
|
6790 |
-
"
|
6791 |
-
"(preferable). We will try to answer as soon as we can."
|
6792 |
msgstr ""
|
6793 |
|
6794 |
-
#: inc/
|
6795 |
-
|
|
|
|
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#: inc/
|
6799 |
-
|
|
|
|
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: inc/
|
6803 |
-
|
|
|
|
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: inc/
|
6807 |
-
|
6808 |
-
|
6809 |
-
"
|
6810 |
-
"details within 24 hours."
|
6811 |
msgstr ""
|
6812 |
|
6813 |
-
#: inc/
|
6814 |
-
|
|
|
|
|
6815 |
msgstr ""
|
6816 |
|
6817 |
-
#: inc/
|
6818 |
-
msgid "
|
6819 |
msgstr ""
|
6820 |
|
6821 |
-
#: inc/
|
6822 |
-
|
6823 |
-
msgid "Support"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#: inc/
|
6827 |
-
msgid "
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#:
|
6831 |
-
|
|
|
6832 |
msgstr ""
|
6833 |
|
6834 |
-
#:
|
6835 |
-
|
6836 |
-
"
|
6837 |
-
"required!"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#:
|
6841 |
-
|
|
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#:
|
6845 |
-
msgid "
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#:
|
6849 |
-
|
|
|
|
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#:
|
6853 |
-
msgid "
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#:
|
6857 |
-
msgid "
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#:
|
6861 |
-
msgid "
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#:
|
6865 |
-
|
6866 |
-
msgid "
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#:
|
6870 |
-
|
6871 |
-
"
|
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 |
-
#:
|
6878 |
-
msgid "
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#:
|
6882 |
-
msgid "
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#:
|
6886 |
-
|
|
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#:
|
6890 |
-
|
|
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#:
|
6894 |
-
msgid "
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#:
|
6898 |
-
msgid "
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#:
|
6902 |
-
#:
|
6903 |
-
#: inc/
|
6904 |
-
msgid "
|
6905 |
msgstr ""
|
6906 |
|
6907 |
-
#:
|
6908 |
-
msgid "
|
6909 |
msgstr ""
|
6910 |
|
6911 |
-
#:
|
6912 |
-
|
|
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
#:
|
6916 |
-
msgid "
|
6917 |
msgstr ""
|
6918 |
|
6919 |
-
#:
|
6920 |
-
msgid "
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#:
|
6924 |
-
msgid "
|
6925 |
msgstr ""
|
6926 |
|
6927 |
-
#:
|
6928 |
-
msgid "
|
6929 |
msgstr ""
|
6930 |
|
6931 |
-
#:
|
6932 |
-
|
|
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#:
|
6936 |
-
|
|
|
6937 |
msgstr ""
|
6938 |
|
6939 |
-
#:
|
6940 |
-
|
|
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#:
|
6944 |
-
msgid "
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#:
|
6948 |
-
msgid "
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#:
|
6952 |
-
msgid "
|
6953 |
msgstr ""
|
6954 |
|
6955 |
-
#:
|
6956 |
-
msgid "
|
6957 |
msgstr ""
|
6958 |
|
6959 |
-
#:
|
6960 |
-
msgid "
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#:
|
6964 |
-
msgid "
|
6965 |
msgstr ""
|
6966 |
|
6967 |
-
#:
|
6968 |
-
|
|
|
|
|
6969 |
msgstr ""
|
6970 |
|
6971 |
-
#:
|
6972 |
-
|
|
|
|
|
6973 |
msgstr ""
|
6974 |
|
6975 |
-
#:
|
6976 |
-
|
|
|
|
|
|
|
6977 |
msgstr ""
|
6978 |
|
6979 |
-
#:
|
|
|
|
|
6980 |
#, php-format
|
6981 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: inc/
|
6985 |
-
|
6986 |
-
msgid "You may only upload maximum %d files"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
-
#: inc/
|
6990 |
-
msgid "
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: inc/
|
6994 |
-
|
6995 |
-
msgid "+ Add new file"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#: inc/
|
6999 |
-
|
7000 |
-
msgid "Delete"
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#: inc/
|
7004 |
-
|
7005 |
-
msgid "Edit"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: inc/
|
7009 |
-
msgid "
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#: inc/
|
7013 |
-
msgid "
|
7014 |
msgstr ""
|
7015 |
|
7016 |
-
#: inc/
|
7017 |
-
msgid "
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: inc/
|
7021 |
-
#: inc/
|
7022 |
-
msgid "
|
7023 |
msgstr ""
|
7024 |
|
7025 |
-
#: inc/
|
7026 |
-
|
7027 |
-
|
|
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#: inc/
|
7031 |
-
|
7032 |
-
msgid "
|
7033 |
msgstr ""
|
7034 |
|
7035 |
-
#: inc/
|
7036 |
-
|
7037 |
-
msgid "
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: inc/
|
7041 |
-
|
7042 |
-
msgid "
|
7043 |
msgstr ""
|
7044 |
|
7045 |
-
#: inc/
|
7046 |
-
|
7047 |
-
msgid "
|
7048 |
msgstr ""
|
7049 |
|
7050 |
-
#: inc/
|
7051 |
-
|
7052 |
-
msgid "
|
|
|
|
|
7053 |
msgstr ""
|
7054 |
|
7055 |
-
#: inc/
|
7056 |
-
|
7057 |
-
msgid "No Title"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: inc/
|
7061 |
-
|
7062 |
-
msgid "Select Files"
|
7063 |
msgstr ""
|
7064 |
|
7065 |
-
#: inc/
|
7066 |
-
|
7067 |
-
msgid "or"
|
7068 |
msgstr ""
|
7069 |
|
7070 |
-
#: inc/
|
7071 |
-
|
7072 |
-
msgid "Drop files here to upload"
|
7073 |
msgstr ""
|
7074 |
|
7075 |
-
#: inc/
|
7076 |
-
|
|
|
|
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#: inc/
|
7080 |
-
|
|
|
|
|
7081 |
msgstr ""
|
7082 |
|
7083 |
-
#: inc/
|
7084 |
-
|
7085 |
-
#, php-format
|
7086 |
-
msgid "Select a %s"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
-
#: inc/
|
7090 |
-
msgid "
|
7091 |
msgstr ""
|
7092 |
|
7093 |
-
#: inc/
|
7094 |
-
|
|
|
7095 |
msgstr ""
|
7096 |
|
7097 |
-
#: inc/
|
7098 |
-
msgid "
|
7099 |
msgstr ""
|
7100 |
|
7101 |
-
#: inc/
|
7102 |
-
|
|
|
|
|
|
|
7103 |
msgstr ""
|
7104 |
|
7105 |
-
#: inc/
|
7106 |
-
|
|
|
|
|
|
|
|
|
7107 |
msgstr ""
|
7108 |
|
7109 |
-
#: inc/
|
7110 |
-
|
|
|
7111 |
msgstr ""
|
7112 |
|
7113 |
-
#: inc/
|
7114 |
-
|
7115 |
-
|
|
|
7116 |
msgstr ""
|
7117 |
|
7118 |
-
#: inc/
|
7119 |
-
msgid "
|
7120 |
msgstr ""
|
7121 |
|
7122 |
-
#: inc/
|
7123 |
-
|
7124 |
-
msgid "Thank you. Your order has been received."
|
7125 |
msgstr ""
|
7126 |
|
7127 |
-
#: inc/
|
7128 |
-
|
|
|
|
|
|
|
7129 |
msgstr ""
|
7130 |
|
7131 |
-
#: inc/
|
7132 |
-
|
7133 |
-
|
|
|
|
|
7134 |
msgstr ""
|
7135 |
|
7136 |
-
#: inc/
|
7137 |
-
|
7138 |
-
|
7139 |
-
|
|
|
7140 |
msgstr ""
|
7141 |
|
7142 |
-
#: inc/
|
7143 |
-
|
|
|
|
|
|
|
7144 |
msgstr ""
|
7145 |
|
7146 |
-
#: inc/
|
7147 |
-
|
|
|
|
|
|
|
7148 |
msgstr ""
|
7149 |
|
7150 |
-
#: inc/
|
7151 |
-
|
|
|
|
|
|
|
7152 |
msgstr ""
|
7153 |
|
7154 |
-
#: inc/
|
7155 |
-
|
7156 |
-
msgid "
|
7157 |
msgstr ""
|
7158 |
|
7159 |
-
#: inc/
|
7160 |
-
|
7161 |
-
|
7162 |
-
msgid_plural "Pending Payment <span class=\"count\">(%s)</span>"
|
7163 |
-
msgstr[0] ""
|
7164 |
-
msgstr[1] ""
|
7165 |
|
7166 |
-
#: inc/
|
7167 |
-
|
7168 |
-
msgid "Processing"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
-
#: inc/
|
7172 |
-
|
7173 |
-
|
7174 |
-
msgid_plural "Processing <span class=\"count\">(%s)</span>"
|
7175 |
-
msgstr[0] ""
|
7176 |
-
msgstr[1] ""
|
7177 |
|
7178 |
-
#: inc/
|
7179 |
-
|
7180 |
-
msgid "Completed"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
-
#: inc/
|
7184 |
-
|
7185 |
-
|
7186 |
-
|
7187 |
-
msgstr
|
7188 |
-
msgstr[1] ""
|
7189 |
|
7190 |
-
#: inc/
|
7191 |
-
|
7192 |
-
msgid "Cancelled"
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: inc/
|
7196 |
-
|
7197 |
-
|
7198 |
-
msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
|
7199 |
-
msgstr[0] ""
|
7200 |
-
msgstr[1] ""
|
7201 |
|
7202 |
-
#: inc/
|
7203 |
-
|
7204 |
-
msgid "Failed"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
-
#: inc/
|
7208 |
-
|
7209 |
-
|
7210 |
-
msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
7211 |
-
msgstr[0] ""
|
7212 |
-
msgstr[1] ""
|
7213 |
|
7214 |
-
#: inc/
|
7215 |
-
msgid ""
|
7216 |
-
"Order received in case user buy a course but doesn't finalise the order."
|
7217 |
msgstr ""
|
7218 |
|
7219 |
-
#: inc/
|
7220 |
-
msgid "
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#: inc/
|
7224 |
-
msgid "
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: inc/
|
7228 |
-
msgid "
|
7229 |
msgstr ""
|
7230 |
|
7231 |
-
#: inc/
|
7232 |
-
|
7233 |
-
msgid "Order number <strong>%s</strong> not found"
|
7234 |
msgstr ""
|
7235 |
|
7236 |
-
#: inc/
|
7237 |
-
msgid "
|
7238 |
msgstr ""
|
7239 |
|
7240 |
-
#: inc/
|
7241 |
-
|
7242 |
-
msgid "Order number <strong>%s</strong> has been cancelled"
|
7243 |
msgstr ""
|
7244 |
|
7245 |
-
#: inc/
|
7246 |
-
|
7247 |
-
|
|
|
7248 |
msgstr ""
|
7249 |
|
7250 |
-
#: inc/
|
7251 |
-
|
7252 |
-
|
|
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: inc/
|
7256 |
-
msgid "
|
|
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: inc/
|
7260 |
-
msgid "
|
|
|
|
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: inc/
|
7264 |
-
msgid "
|
7265 |
msgstr ""
|
7266 |
|
7267 |
-
#: inc/
|
7268 |
-
|
|
|
7269 |
msgstr ""
|
7270 |
|
7271 |
-
#: inc/
|
7272 |
-
msgid "
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: inc/
|
7276 |
-
|
|
|
7277 |
msgstr ""
|
7278 |
|
7279 |
-
#: inc/
|
7280 |
-
msgid "
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: inc/
|
7284 |
-
|
|
|
7285 |
msgstr ""
|
7286 |
|
7287 |
-
#: inc/
|
7288 |
-
|
|
|
7289 |
msgstr ""
|
7290 |
|
7291 |
-
#: inc/
|
7292 |
-
|
7293 |
-
msgid "
|
7294 |
msgstr ""
|
7295 |
|
7296 |
-
#: inc/
|
7297 |
-
msgid "
|
7298 |
msgstr ""
|
7299 |
|
7300 |
-
#: inc/
|
7301 |
-
msgid "
|
7302 |
msgstr ""
|
7303 |
|
7304 |
-
#: inc/
|
7305 |
-
msgid "
|
7306 |
msgstr ""
|
7307 |
|
7308 |
-
#: inc/
|
7309 |
-
msgid "
|
|
|
7310 |
msgstr ""
|
7311 |
|
7312 |
-
#: inc/
|
7313 |
-
msgid "
|
7314 |
msgstr ""
|
7315 |
|
7316 |
-
#: inc/
|
7317 |
-
msgid "
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#: inc/
|
7321 |
-
|
|
|
|
|
7322 |
msgstr ""
|
7323 |
|
7324 |
-
#: inc/
|
7325 |
-
|
7326 |
-
"
|
7327 |
-
|
7328 |
msgstr ""
|
7329 |
|
7330 |
-
#: inc/
|
7331 |
-
|
7332 |
-
msgid "Please %s to send your request!"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
-
#: inc/
|
7336 |
-
|
7337 |
-
msgid "login"
|
7338 |
msgstr ""
|
7339 |
|
7340 |
-
#: inc/
|
7341 |
-
msgid "
|
7342 |
msgstr ""
|
7343 |
|
7344 |
-
#: inc/
|
7345 |
-
msgid "
|
7346 |
msgstr ""
|
7347 |
|
7348 |
-
#: inc/
|
7349 |
-
msgid "
|
7350 |
msgstr ""
|
7351 |
|
7352 |
-
#: inc/
|
7353 |
-
msgid "
|
7354 |
msgstr ""
|
7355 |
|
7356 |
-
#: inc/
|
7357 |
-
|
|
|
7358 |
msgstr ""
|
7359 |
|
7360 |
-
#: inc/
|
7361 |
-
|
|
|
7362 |
msgstr ""
|
7363 |
|
7364 |
-
#: inc/
|
7365 |
-
|
7366 |
-
msgid "Submit"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
-
#: inc/
|
7370 |
-
|
|
|
7371 |
msgstr ""
|
7372 |
|
7373 |
-
#: inc/
|
7374 |
-
|
7375 |
-
#, php-format
|
7376 |
-
msgid "Your are logged in as %s. <a href=\"%s\">Log out</a>?"
|
7377 |
msgstr ""
|
7378 |
|
7379 |
-
#: inc/
|
7380 |
-
#: inc/
|
7381 |
-
|
|
|
7382 |
msgstr ""
|
7383 |
|
7384 |
-
#: inc/
|
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/
|
7391 |
-
|
7392 |
-
msgid "lesson-tag"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: inc/
|
7396 |
-
|
7397 |
-
msgid "question-tag"
|
7398 |
msgstr ""
|
7399 |
|
7400 |
-
#: inc/
|
7401 |
-
msgid "
|
7402 |
msgstr ""
|
7403 |
|
7404 |
-
#: inc/
|
7405 |
-
msgid "
|
7406 |
msgstr ""
|
7407 |
|
7408 |
-
#: inc/
|
7409 |
-
msgid "
|
7410 |
msgstr ""
|
7411 |
|
7412 |
-
#: inc/
|
7413 |
-
|
|
|
7414 |
msgstr ""
|
7415 |
|
7416 |
-
#: inc/
|
7417 |
-
msgid "
|
7418 |
msgstr ""
|
7419 |
|
7420 |
-
#: inc/
|
7421 |
-
msgid "
|
7422 |
msgstr ""
|
7423 |
|
7424 |
-
#: inc/
|
7425 |
-
msgid "
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: inc/
|
7429 |
-
msgid "
|
7430 |
msgstr ""
|
7431 |
|
7432 |
-
#: inc/
|
7433 |
-
msgid "
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#: inc/
|
7437 |
-
msgid "
|
7438 |
msgstr ""
|
7439 |
|
7440 |
-
#: inc/
|
7441 |
-
msgid "
|
7442 |
msgstr ""
|
7443 |
|
7444 |
-
#: inc/
|
7445 |
-
|
7446 |
-
msgid "%s::%s - User has not completed quiz."
|
7447 |
msgstr ""
|
7448 |
|
7449 |
-
#: inc/
|
7450 |
-
|
|
|
|
|
|
|
7451 |
msgstr ""
|
7452 |
|
7453 |
-
#: inc/
|
7454 |
-
|
7455 |
-
#, php-format
|
7456 |
-
msgid "The role %s for user doesn't exist"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: inc/
|
7460 |
-
msgid "
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: inc/
|
7464 |
-
msgid "
|
7465 |
msgstr ""
|
7466 |
|
7467 |
-
#: inc/
|
7468 |
-
msgid "
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: inc/
|
7472 |
-
msgid "
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: inc/
|
7476 |
-
msgid "
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: inc/
|
7480 |
-
msgid "
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: inc/
|
7484 |
-
msgid "
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: inc/
|
7488 |
-
msgid "
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: inc/
|
7492 |
-
|
|
|
7493 |
msgstr ""
|
7494 |
|
7495 |
-
#: inc/
|
7496 |
-
msgid "
|
7497 |
msgstr ""
|
7498 |
|
7499 |
-
#: inc/
|
7500 |
-
|
|
|
7501 |
msgstr ""
|
7502 |
|
7503 |
-
#: inc/
|
7504 |
-
|
7505 |
-
|
|
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#: inc/
|
7509 |
-
msgid "
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#: inc/
|
7513 |
-
msgid "
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: inc/
|
7517 |
-
msgid "
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: inc/
|
7521 |
-
msgid "
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: inc/
|
7525 |
-
msgid "
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#: inc/
|
7529 |
-
|
|
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#: inc/
|
7533 |
-
|
|
|
7534 |
msgstr ""
|
7535 |
|
7536 |
-
#: inc/
|
7537 |
-
|
|
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: inc/
|
7541 |
-
msgid "
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: inc/
|
7545 |
-
msgid "
|
|
|
|
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: inc/
|
7549 |
-
|
|
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: inc/
|
7553 |
-
|
7554 |
-
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#: inc/
|
7558 |
-
msgid "
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: inc/
|
7562 |
-
msgid "
|
7563 |
msgstr ""
|
7564 |
|
7565 |
-
#: inc/
|
7566 |
-
msgid "
|
7567 |
msgstr ""
|
7568 |
|
7569 |
-
#: inc/
|
7570 |
-
msgid "
|
|
|
|
|
7571 |
msgstr ""
|
7572 |
|
7573 |
-
#: inc/
|
7574 |
-
|
7575 |
-
msgid "And"
|
7576 |
msgstr ""
|
7577 |
|
7578 |
-
#: inc/
|
7579 |
-
|
7580 |
-
msgid "Or"
|
7581 |
msgstr ""
|
7582 |
|
7583 |
-
#: inc/
|
7584 |
-
msgid "
|
7585 |
msgstr ""
|
7586 |
|
7587 |
-
#: inc/
|
7588 |
-
msgid "
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: inc/
|
7592 |
-
msgid "
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: inc/
|
7596 |
-
msgid "
|
7597 |
msgstr ""
|
7598 |
|
7599 |
-
#: inc/
|
7600 |
-
msgid "
|
7601 |
msgstr ""
|
7602 |
|
7603 |
#: inc/widgets/course-filters/tmpl/default.php:83
|
7604 |
msgid "Filter"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
-
#:
|
7608 |
-
msgid "
|
7609 |
msgstr ""
|
7610 |
|
7611 |
-
#:
|
7612 |
-
|
7613 |
-
|
7614 |
-
|
7615 |
-
#: inc/widgets/recent-courses/recent-courses.php:96
|
7616 |
-
msgid "CSS Class"
|
7617 |
msgstr ""
|
7618 |
|
7619 |
-
#:
|
7620 |
-
msgid "
|
7621 |
msgstr ""
|
7622 |
|
7623 |
-
#:
|
7624 |
-
msgid "
|
7625 |
msgstr ""
|
7626 |
|
7627 |
-
#:
|
7628 |
-
|
7629 |
-
#: inc/widgets/recent-courses/recent-courses.php:52
|
7630 |
-
msgid "Show teacher"
|
7631 |
msgstr ""
|
7632 |
|
7633 |
-
#:
|
7634 |
-
|
7635 |
-
#: inc/widgets/recent-courses/recent-courses.php:58
|
7636 |
-
msgid "Show lesson"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
-
#:
|
7640 |
-
#:
|
7641 |
-
#:
|
7642 |
-
|
|
|
|
|
|
|
|
|
|
|
7643 |
msgstr ""
|
7644 |
|
7645 |
-
#:
|
7646 |
-
|
7647 |
-
#: inc/widgets/recent-courses/recent-courses.php:70
|
7648 |
-
msgid "Limit"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#:
|
7652 |
-
|
7653 |
-
#: inc/widgets/recent-courses/recent-courses.php:77
|
7654 |
-
msgid "Description Length"
|
7655 |
msgstr ""
|
7656 |
|
7657 |
-
#:
|
7658 |
-
|
7659 |
-
#: inc/widgets/recent-courses/recent-courses.php:84
|
7660 |
-
msgid "Show Enrolled Students"
|
7661 |
msgstr ""
|
7662 |
|
7663 |
-
#:
|
7664 |
-
|
7665 |
-
#: inc/widgets/recent-courses/recent-courses.php:90
|
7666 |
-
msgid "Show Price"
|
7667 |
msgstr ""
|
7668 |
|
7669 |
-
#:
|
7670 |
-
#: inc/
|
7671 |
-
#: inc/
|
7672 |
-
msgid "
|
7673 |
msgstr ""
|
7674 |
|
7675 |
-
#:
|
7676 |
-
msgid "
|
7677 |
msgstr ""
|
7678 |
|
7679 |
-
#:
|
7680 |
-
msgid "
|
7681 |
msgstr ""
|
7682 |
|
7683 |
-
#: templates/
|
7684 |
-
msgid "
|
7685 |
msgstr ""
|
7686 |
|
7687 |
-
#: templates/
|
7688 |
-
|
7689 |
-
msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
|
7690 |
msgstr ""
|
7691 |
|
7692 |
-
#: templates/
|
7693 |
-
|
|
|
7694 |
msgstr ""
|
7695 |
|
7696 |
-
#: templates/
|
7697 |
-
msgid "
|
7698 |
msgstr ""
|
7699 |
|
7700 |
-
#: templates/
|
7701 |
-
|
|
|
7702 |
msgstr ""
|
7703 |
|
7704 |
-
#: templates/
|
7705 |
-
|
|
|
7706 |
msgstr ""
|
7707 |
|
7708 |
-
#: templates/
|
7709 |
-
|
7710 |
-
msgid "Login"
|
7711 |
msgstr ""
|
7712 |
|
7713 |
-
#: templates/
|
7714 |
-
msgid "
|
7715 |
msgstr ""
|
7716 |
|
7717 |
-
#: templates/
|
7718 |
-
msgid "
|
7719 |
msgstr ""
|
7720 |
|
7721 |
-
#: templates/
|
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 |
-
#:
|
7728 |
-
|
7729 |
-
msgid "Please login to continue checkout. %s"
|
7730 |
msgstr ""
|
7731 |
|
7732 |
-
#:
|
7733 |
-
msgid "
|
7734 |
msgstr ""
|
7735 |
|
7736 |
-
#:
|
7737 |
-
msgid "
|
7738 |
msgstr ""
|
7739 |
|
7740 |
-
#:
|
7741 |
-
|
|
|
7742 |
msgstr ""
|
7743 |
|
7744 |
-
#:
|
7745 |
-
|
|
|
7746 |
msgstr ""
|
7747 |
|
7748 |
-
#:
|
7749 |
-
|
|
|
|
|
|
|
|
|
7750 |
msgstr ""
|
7751 |
|
7752 |
-
#:
|
|
|
7753 |
msgid ""
|
7754 |
-
"
|
7755 |
-
"
|
7756 |
msgstr ""
|
7757 |
|
7758 |
-
#:
|
7759 |
-
|
|
|
|
|
|
|
7760 |
msgstr ""
|
7761 |
|
7762 |
-
#:
|
7763 |
-
msgid "
|
7764 |
msgstr ""
|
7765 |
|
7766 |
-
#:
|
7767 |
-
|
7768 |
-
#: templates/emails/plain/order-items-table.php:24
|
7769 |
-
msgid "Order Number"
|
7770 |
msgstr ""
|
7771 |
|
7772 |
-
#:
|
7773 |
-
|
7774 |
-
#: templates/emails/plain/order-items-table.php:28
|
7775 |
-
msgid "Payment Method"
|
7776 |
msgstr ""
|
7777 |
|
7778 |
-
#:
|
7779 |
-
msgid "
|
7780 |
msgstr ""
|
7781 |
|
7782 |
-
#:
|
7783 |
-
msgid "
|
7784 |
msgstr ""
|
7785 |
|
7786 |
-
#:
|
7787 |
-
|
7788 |
-
msgid "Subtotal"
|
7789 |
msgstr ""
|
7790 |
|
7791 |
-
#:
|
7792 |
-
|
7793 |
-
msgid "I’ve read and accept the <a href=\"%s\">terms & conditions.</a>"
|
7794 |
msgstr ""
|
7795 |
|
7796 |
-
#:
|
7797 |
-
msgid "
|
7798 |
msgstr ""
|
7799 |
|
7800 |
-
#:
|
7801 |
-
msgid "
|
7802 |
msgstr ""
|
7803 |
|
7804 |
-
#:
|
7805 |
-
|
7806 |
-
|
|
|
7807 |
msgstr ""
|
7808 |
|
7809 |
-
#:
|
7810 |
-
msgid "
|
|
|
|
|
7811 |
msgstr ""
|
7812 |
|
7813 |
-
#:
|
7814 |
-
|
|
|
7815 |
msgstr ""
|
7816 |
|
7817 |
-
#:
|
7818 |
-
msgid "
|
7819 |
msgstr ""
|
7820 |
|
7821 |
-
#:
|
7822 |
-
|
7823 |
-
|
|
|
7824 |
msgstr ""
|
7825 |
|
7826 |
-
#:
|
7827 |
-
|
7828 |
-
msgid "Other results (newest %d items)"
|
7829 |
msgstr ""
|
7830 |
|
7831 |
-
#:
|
7832 |
-
msgid "
|
7833 |
msgstr ""
|
7834 |
|
7835 |
-
#:
|
7836 |
-
msgid "
|
7837 |
msgstr ""
|
7838 |
|
7839 |
-
#:
|
7840 |
-
msgid "
|
7841 |
msgstr ""
|
7842 |
|
7843 |
-
#:
|
7844 |
-
msgid "
|
7845 |
msgstr ""
|
7846 |
|
7847 |
-
#:
|
7848 |
-
msgid "
|
7849 |
msgstr ""
|
7850 |
|
7851 |
-
#:
|
7852 |
-
|
|
|
7853 |
msgstr ""
|
7854 |
|
7855 |
-
#:
|
7856 |
-
|
7857 |
-
#, php-format
|
7858 |
-
msgid "%d/%d"
|
7859 |
msgstr ""
|
7860 |
|
7861 |
-
#:
|
7862 |
-
msgid "
|
7863 |
msgstr ""
|
7864 |
|
7865 |
-
#:
|
7866 |
-
|
|
|
7867 |
msgstr ""
|
7868 |
|
7869 |
-
#:
|
7870 |
-
msgid "
|
7871 |
msgstr ""
|
7872 |
|
7873 |
-
#:
|
7874 |
-
|
7875 |
-
msgid "Your grade is <strong>%s</strong>"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
-
#:
|
7879 |
-
|
7880 |
-
|
|
|
|
|
|
|
7881 |
msgstr ""
|
7882 |
|
7883 |
-
#:
|
7884 |
-
|
7885 |
-
msgid "Questions"
|
7886 |
msgstr ""
|
7887 |
|
7888 |
-
#:
|
7889 |
-
|
7890 |
-
msgid "Correct"
|
7891 |
msgstr ""
|
7892 |
|
7893 |
-
#:
|
7894 |
-
|
7895 |
-
msgid "Wrong"
|
7896 |
msgstr ""
|
7897 |
|
7898 |
-
#:
|
7899 |
-
|
7900 |
-
msgid "Skipped"
|
7901 |
msgstr ""
|
7902 |
|
7903 |
-
#:
|
7904 |
-
|
7905 |
-
msgid "Review"
|
7906 |
msgstr ""
|
7907 |
|
7908 |
-
#:
|
7909 |
-
msgid "
|
7910 |
msgstr ""
|
7911 |
|
7912 |
-
#:
|
7913 |
-
msgid "Check"
|
7914 |
msgstr ""
|
7915 |
|
7916 |
-
#:
|
7917 |
-
msgid "
|
7918 |
msgstr ""
|
7919 |
|
7920 |
-
#:
|
7921 |
-
msgid "
|
|
|
|
|
7922 |
msgstr ""
|
7923 |
|
7924 |
-
#:
|
7925 |
-
msgid "
|
7926 |
msgstr ""
|
7927 |
|
7928 |
-
#:
|
7929 |
-
|
7930 |
-
msgid "Prev"
|
7931 |
msgstr ""
|
7932 |
|
7933 |
-
#:
|
7934 |
-
|
7935 |
-
msgid "Next"
|
7936 |
msgstr ""
|
7937 |
|
7938 |
-
#:
|
7939 |
-
|
7940 |
-
msgid "Skip"
|
7941 |
msgstr ""
|
7942 |
|
7943 |
-
#:
|
7944 |
-
msgid "
|
|
|
7945 |
msgstr ""
|
7946 |
|
7947 |
-
#:
|
7948 |
-
msgid "
|
7949 |
msgstr ""
|
7950 |
|
7951 |
-
#:
|
7952 |
-
msgid "
|
7953 |
msgstr ""
|
7954 |
|
7955 |
-
#:
|
7956 |
-
msgid "
|
7957 |
msgstr ""
|
7958 |
|
7959 |
-
#:
|
7960 |
-
|
7961 |
-
msgid "Order summary"
|
7962 |
msgstr ""
|
7963 |
|
7964 |
-
#:
|
7965 |
-
#:
|
7966 |
-
msgid "
|
|
|
7967 |
msgstr ""
|
7968 |
|
7969 |
-
#:
|
7970 |
-
|
7971 |
-
msgid "User Email"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
-
#:
|
7975 |
-
|
7976 |
-
|
7977 |
msgstr ""
|
7978 |
|
7979 |
-
#:
|
7980 |
-
|
7981 |
-
msgid "Cost: %s"
|
7982 |
msgstr ""
|
7983 |
|
7984 |
-
#:
|
7985 |
-
msgid "
|
7986 |
msgstr ""
|
7987 |
|
7988 |
-
#:
|
7989 |
-
msgid "Please
|
7990 |
msgstr ""
|
7991 |
|
7992 |
-
#:
|
7993 |
-
|
7994 |
-
msgid ""
|
7995 |
-
"Please <a href=\\\"%s\\\" target=\\\"_blank\\\">setup</a> it so users can "
|
7996 |
-
"purchase courses."
|
7997 |
msgstr ""
|
7998 |
|
7999 |
-
#:
|
8000 |
-
msgid ""
|
8001 |
-
"Content of this item has blocked because the course has exceeded duration."
|
8002 |
msgstr ""
|
8003 |
|
8004 |
-
#:
|
8005 |
-
|
8006 |
-
msgid "Login"
|
8007 |
msgstr ""
|
8008 |
|
8009 |
-
#:
|
8010 |
-
msgid "
|
8011 |
msgstr ""
|
8012 |
|
8013 |
-
#:
|
8014 |
-
msgid "
|
8015 |
msgstr ""
|
8016 |
|
8017 |
-
#:
|
8018 |
-
|
8019 |
-
msgid "Register"
|
8020 |
msgstr ""
|
8021 |
|
8022 |
-
#:
|
8023 |
-
msgid ""
|
8024 |
-
"You have no permission to view this area. Please contact site's "
|
8025 |
-
"administrators for more details."
|
8026 |
msgstr ""
|
8027 |
|
8028 |
-
#:
|
8029 |
-
msgid "
|
8030 |
msgstr ""
|
8031 |
|
8032 |
-
#:
|
8033 |
-
|
8034 |
-
"
|
8035 |
-
"merchant has declined your transaction."
|
8036 |
msgstr ""
|
8037 |
|
8038 |
-
#:
|
8039 |
-
msgid "
|
8040 |
msgstr ""
|
8041 |
|
8042 |
-
#:
|
8043 |
-
msgid "
|
8044 |
msgstr ""
|
8045 |
|
8046 |
-
#:
|
8047 |
-
msgid "
|
8048 |
msgstr ""
|
8049 |
|
8050 |
-
#:
|
8051 |
-
msgid "
|
8052 |
msgstr ""
|
8053 |
|
8054 |
-
#:
|
8055 |
-
msgid "
|
8056 |
msgstr ""
|
8057 |
|
8058 |
-
#:
|
8059 |
-
msgid "
|
8060 |
msgstr ""
|
8061 |
|
8062 |
-
#:
|
8063 |
-
msgid "
|
8064 |
msgstr ""
|
8065 |
|
8066 |
-
#:
|
8067 |
-
|
8068 |
-
msgid "<strong>Order key:</strong> %s"
|
8069 |
msgstr ""
|
8070 |
|
8071 |
-
#:
|
8072 |
-
msgid "
|
8073 |
msgstr ""
|
8074 |
|
8075 |
-
#:
|
8076 |
-
msgid "
|
|
|
|
|
8077 |
msgstr ""
|
8078 |
|
8079 |
-
#:
|
8080 |
#, php-format
|
8081 |
-
msgid "
|
|
|
|
|
8082 |
msgstr ""
|
8083 |
|
8084 |
-
#:
|
8085 |
-
msgid "
|
8086 |
msgstr ""
|
8087 |
|
8088 |
-
#:
|
8089 |
-
|
8090 |
-
msgid "This order was checked out by you but there is no user was assigned to."
|
8091 |
msgstr ""
|
8092 |
|
8093 |
-
#:
|
8094 |
-
|
8095 |
-
msgid ""
|
8096 |
-
"If the order is made for another one, you can send the code below to them."
|
8097 |
msgstr ""
|
8098 |
|
8099 |
-
#:
|
8100 |
-
|
8101 |
-
msgid "If the order is made for yourself, you can assign it to you here."
|
8102 |
msgstr ""
|
8103 |
|
8104 |
-
#:
|
8105 |
-
|
8106 |
-
msgid "Please <a href=\"%s\">login</a> to see your profile content"
|
8107 |
msgstr ""
|
8108 |
|
8109 |
-
#:
|
8110 |
-
msgid "
|
8111 |
msgstr ""
|
8112 |
|
8113 |
-
#:
|
8114 |
-
msgid "
|
|
|
|
|
8115 |
msgstr ""
|
8116 |
|
8117 |
-
#:
|
8118 |
-
|
8119 |
-
msgid "My Courses"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#:
|
8123 |
-
|
8124 |
-
msgid "Passing Grade"
|
8125 |
msgstr ""
|
8126 |
|
8127 |
-
#:
|
8128 |
-
#:
|
8129 |
-
msgid "
|
8130 |
msgstr ""
|
8131 |
|
8132 |
-
#:
|
8133 |
-
msgid "
|
8134 |
msgstr ""
|
8135 |
|
8136 |
-
#:
|
8137 |
-
msgid "
|
8138 |
msgstr ""
|
8139 |
|
8140 |
-
#:
|
8141 |
-
msgid "
|
8142 |
msgstr ""
|
8143 |
|
8144 |
-
#:
|
8145 |
-
|
8146 |
-
msgid "No courses!"
|
8147 |
msgstr ""
|
8148 |
|
8149 |
-
#:
|
8150 |
-
msgid "
|
8151 |
msgstr ""
|
8152 |
|
8153 |
-
#:
|
8154 |
-
msgid "
|
8155 |
msgstr ""
|
8156 |
|
8157 |
-
#:
|
8158 |
-
msgid "
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#:
|
8162 |
-
|
|
|
|
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#:
|
8166 |
-
|
8167 |
-
msgid "This order is paid for %s"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
-
#:
|
8171 |
-
|
8172 |
-
msgid "This order is paid by %s"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
-
#:
|
8176 |
-
|
|
|
|
|
|
|
8177 |
msgstr ""
|
8178 |
|
8179 |
-
#:
|
8180 |
-
msgid "
|
|
|
|
|
8181 |
msgstr ""
|
8182 |
|
8183 |
-
#:
|
8184 |
-
|
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 |
-
#:
|
8191 |
-
msgid "
|
8192 |
msgstr ""
|
8193 |
|
8194 |
-
#:
|
8195 |
-
msgid ""
|
8196 |
-
"Share a little biographical information to fill out your profile. This may "
|
8197 |
-
"be shown publicly."
|
8198 |
msgstr ""
|
8199 |
|
8200 |
-
#:
|
8201 |
-
msgid "
|
8202 |
msgstr ""
|
8203 |
|
8204 |
-
#:
|
8205 |
-
msgid "
|
8206 |
msgstr ""
|
8207 |
|
8208 |
-
#:
|
8209 |
-
msgid "
|
8210 |
msgstr ""
|
8211 |
|
8212 |
-
#:
|
8213 |
-
msgid "
|
8214 |
msgstr ""
|
8215 |
|
8216 |
-
#:
|
8217 |
-
msgid "
|
8218 |
msgstr ""
|
8219 |
|
8220 |
-
#:
|
8221 |
-
msgid "
|
8222 |
msgstr ""
|
8223 |
|
8224 |
-
#:
|
8225 |
-
msgid "
|
8226 |
msgstr ""
|
8227 |
|
8228 |
-
#:
|
8229 |
-
|
|
|
8230 |
msgstr ""
|
8231 |
|
8232 |
-
#:
|
8233 |
-
msgid "
|
8234 |
msgstr ""
|
8235 |
|
8236 |
-
#:
|
8237 |
-
|
|
|
|
|
8238 |
msgstr ""
|
8239 |
|
8240 |
-
#:
|
8241 |
-
|
|
|
|
|
|
|
8242 |
msgstr ""
|
8243 |
|
8244 |
-
#:
|
8245 |
-
|
|
|
8246 |
msgstr ""
|
8247 |
|
8248 |
-
#:
|
8249 |
-
msgid "
|
8250 |
msgstr ""
|
8251 |
|
8252 |
-
#:
|
8253 |
-
#, php-format
|
8254 |
msgid ""
|
8255 |
-
"
|
8256 |
-
"
|
8257 |
msgstr ""
|
8258 |
|
8259 |
-
#:
|
8260 |
-
msgid "
|
8261 |
msgstr ""
|
8262 |
|
8263 |
-
#:
|
8264 |
-
msgid "
|
8265 |
msgstr ""
|
8266 |
|
8267 |
-
#:
|
8268 |
-
msgid "
|
8269 |
msgstr ""
|
8270 |
|
8271 |
-
#:
|
8272 |
-
|
8273 |
-
msgid "%d of %d items"
|
8274 |
msgstr ""
|
8275 |
|
8276 |
-
#:
|
8277 |
-
msgid "
|
8278 |
msgstr ""
|
8279 |
|
8280 |
-
#:
|
8281 |
-
|
8282 |
-
msgid "Passing condition: %s%%"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
-
#:
|
8286 |
-
msgid "
|
|
|
|
|
8287 |
msgstr ""
|
8288 |
|
8289 |
-
#:
|
8290 |
-
|
8291 |
-
msgid "You have %s remaining for the course"
|
8292 |
msgstr ""
|
8293 |
|
8294 |
-
#:
|
8295 |
-
|
8296 |
-
msgid "%d students"
|
8297 |
msgstr ""
|
8298 |
|
8299 |
-
#:
|
8300 |
-
|
8301 |
-
msgid "%d student"
|
8302 |
msgstr ""
|
8303 |
|
8304 |
-
#:
|
8305 |
-
msgid "
|
8306 |
msgstr ""
|
8307 |
|
8308 |
-
#:
|
8309 |
-
msgid "
|
8310 |
msgstr ""
|
8311 |
|
8312 |
-
#:
|
8313 |
-
msgid "
|
|
|
|
|
8314 |
msgstr ""
|
8315 |
|
8316 |
-
#:
|
8317 |
-
msgid "
|
8318 |
msgstr ""
|
8319 |
|
8320 |
-
#:
|
8321 |
-
|
|
|
8322 |
msgstr ""
|
8323 |
|
8324 |
-
#:
|
8325 |
-
|
8326 |
-
msgid "Retake course (+%d)"
|
8327 |
msgstr ""
|
8328 |
|
8329 |
-
#:
|
8330 |
-
msgid "
|
8331 |
msgstr ""
|
8332 |
|
8333 |
-
#:
|
8334 |
-
|
8335 |
-
|
|
|
|
|
|
|
8336 |
|
8337 |
-
#:
|
8338 |
-
|
8339 |
-
msgid "Prev"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#:
|
8343 |
-
|
8344 |
-
msgid "Next"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
-
#:
|
8348 |
-
msgid "
|
8349 |
msgstr ""
|
8350 |
|
8351 |
-
#:
|
8352 |
-
msgid "
|
8353 |
msgstr ""
|
8354 |
|
8355 |
-
#:
|
8356 |
-
msgid "
|
8357 |
msgstr ""
|
8358 |
|
8359 |
-
|
8360 |
-
|
8361 |
-
|
8362 |
-
|
|
|
8363 |
msgstr ""
|
8364 |
|
8365 |
-
|
8366 |
-
|
8367 |
-
#: templates/widgets/recent-courses/default.php:65
|
8368 |
-
msgid "..."
|
8369 |
msgstr ""
|
8370 |
|
8371 |
-
|
8372 |
-
|
8373 |
-
#: templates/widgets/recent-courses/default.php:86
|
8374 |
-
#, php-format
|
8375 |
-
msgid "%d lessons"
|
8376 |
msgstr ""
|
8377 |
|
8378 |
-
|
8379 |
-
|
8380 |
-
#: templates/widgets/recent-courses/default.php:86
|
8381 |
-
#, php-format
|
8382 |
-
msgid "%d lesson"
|
8383 |
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: 2018-12-28 08:15+0000\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
20 |
+
"X-Generator: Loco https://localise.biz/"
|
21 |
|
22 |
#: learnpress.php:379
|
23 |
#, php-format
|
24 |
msgid ""
|
25 |
+
"LearnPress plugin base directory must be <strong>learnpress/learnpres."
|
26 |
+
"php</strong> (case sensitive) to ensure all functions work properly and "
|
27 |
+
"fully operational (currently <strong>%s</strong>)"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: inc/lp-core-functions.php:351
|
31 |
+
#: inc/course/lp-course-functions.php:581
|
32 |
+
#: inc/custom-post-types/lesson.php:184
|
33 |
+
#: inc/admin/settings/class-lp-settings-courses.php:150
|
34 |
+
msgid "Lesson"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: inc/lp-core-functions.php:352
|
38 |
+
#: inc/course/lp-course-functions.php:582
|
39 |
+
#: inc/custom-post-types/question.php:337
|
40 |
+
#: inc/custom-post-types/quiz.php:92
|
41 |
+
#: inc/admin/settings/class-lp-settings-courses.php:157
|
42 |
+
#: templates/profile/tabs/quizzes.php:38
|
43 |
+
msgid "Quiz"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/lp-core-functions.php:726
|
47 |
+
#: inc/admin/class-lp-modal-search-users.php:135
|
48 |
+
#: inc/admin/class-lp-modal-search-items.php:210
|
49 |
+
msgid "<"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: inc/lp-core-functions.php:727
|
53 |
+
#: inc/admin/class-lp-modal-search-users.php:136
|
54 |
+
#: inc/admin/class-lp-modal-search-items.php:211
|
55 |
+
msgid ">"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: inc/lp-core-functions.php:805
|
59 |
+
msgid "Minute(s)"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/lp-core-functions.php:806
|
63 |
+
msgid "Hour(s)"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: inc/lp-core-functions.php:807
|
67 |
+
msgid "Day(s)"
|
|
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/lp-core-functions.php:808
|
71 |
+
msgid "Week(s)"
|
|
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/lp-core-functions.php:953
|
75 |
+
msgid "Left"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/lp-core-functions.php:954
|
79 |
+
msgid "Right"
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/lp-core-functions.php:955
|
83 |
+
msgid "Left with space"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/lp-core-functions.php:956
|
87 |
+
msgid "Right with space"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/lp-core-functions.php:1020
|
91 |
+
msgid "Afghan afghani"
|
|
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/lp-core-functions.php:1021
|
95 |
+
msgid "Albanian lek"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/lp-core-functions.php:1022
|
99 |
+
msgid "Algerian dinar"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/lp-core-functions.php:1023
|
103 |
+
msgid "Euro"
|
|
|
|
|
|
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/lp-core-functions.php:1024
|
107 |
+
msgid "Angolan kwanza"
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/lp-core-functions.php:1025
|
111 |
+
msgid "East Caribbean dollar"
|
|
|
|
|
|
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/lp-core-functions.php:1026
|
115 |
+
msgid "Argentine peso"
|
|
|
|
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/lp-core-functions.php:1027
|
119 |
+
msgid "Armenian dram"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: inc/lp-core-functions.php:1028
|
123 |
+
msgid "Aruban florin"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/lp-core-functions.php:1029
|
127 |
+
msgid "Australian dollar"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/lp-core-functions.php:1030
|
131 |
+
msgid "Azerbaijani manat"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: inc/lp-core-functions.php:1031
|
135 |
+
msgid "Bahamian dollar"
|
|
|
|
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/lp-core-functions.php:1032
|
139 |
+
msgid "Bahraini dinar"
|
|
|
|
|
|
|
|
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/lp-core-functions.php:1033
|
143 |
+
msgid "Bangladeshi taka"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/lp-core-functions.php:1034
|
147 |
+
msgid "Barbadian dollar"
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/lp-core-functions.php:1035
|
151 |
+
msgid "Belarusian ruble"
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/lp-core-functions.php:1036
|
155 |
+
msgid "Belizean dollar"
|
|
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: inc/lp-core-functions.php:1037
|
159 |
+
msgid "West African CFA franc"
|
|
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/lp-core-functions.php:1038
|
163 |
+
msgid "Bermudian dollar"
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: inc/lp-core-functions.php:1039
|
167 |
+
msgid "Bhutanese ngultrum"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/lp-core-functions.php:1040
|
171 |
+
msgid "Bolivian boliviano"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/lp-core-functions.php:1041
|
175 |
+
msgid "US dollar"
|
|
|
|
|
|
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/lp-core-functions.php:1042
|
179 |
+
msgid "Bosnia and Herzegovina convertible mark"
|
|
|
|
|
|
|
|
|
|
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/lp-core-functions.php:1043
|
183 |
+
msgid "Botswana pula"
|
|
|
|
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc/lp-core-functions.php:1044
|
187 |
+
msgid "Brazilian real"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: inc/lp-core-functions.php:1045
|
191 |
+
msgid "Brunei dollar"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: inc/lp-core-functions.php:1046
|
195 |
+
msgid "Bulgarian lev"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: inc/lp-core-functions.php:1047
|
199 |
+
msgid "Burmese kyat"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/lp-core-functions.php:1048
|
203 |
+
msgid "Burundian franc"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/lp-core-functions.php:1049
|
207 |
+
msgid "Cambodian riel"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: inc/lp-core-functions.php:1050
|
211 |
+
msgid "Central African CFA franc"
|
|
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: inc/lp-core-functions.php:1051
|
215 |
+
msgid "Canadian dollar"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: inc/lp-core-functions.php:1052
|
219 |
+
msgid "Cape Verdean escudo"
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/lp-core-functions.php:1053
|
223 |
+
msgid "Cayman Islands dollar"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/lp-core-functions.php:1054
|
227 |
+
msgid "Chilean peso"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/lp-core-functions.php:1055
|
231 |
+
msgid "Chinese renminbi"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/lp-core-functions.php:1056
|
235 |
+
msgid "Colombian peso"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/lp-core-functions.php:1057
|
239 |
+
msgid "Comorian franc"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/lp-core-functions.php:1058
|
243 |
+
msgid "Congolese franc"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/lp-core-functions.php:1059
|
247 |
+
msgid "New Zealand dollar"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/lp-core-functions.php:1060
|
251 |
+
msgid "Costa Rican colón"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/lp-core-functions.php:1061
|
255 |
+
msgid "Croatian kuna"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/lp-core-functions.php:1062
|
259 |
+
msgid "Cuban peso"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/lp-core-functions.php:1063
|
263 |
+
msgid "Netherlands Antilles guilder"
|
|
|
|
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/lp-core-functions.php:1064
|
267 |
+
msgid "Czech koruna"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/lp-core-functions.php:1065
|
271 |
+
msgid "Danish krone"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/lp-core-functions.php:1066
|
275 |
+
msgid "Djiboutian franc"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/lp-core-functions.php:1067
|
279 |
+
msgid "Dominican peso"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/lp-core-functions.php:1068
|
283 |
+
msgid "Egyptian pound"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/lp-core-functions.php:1069
|
287 |
+
msgid "Salvadoran colón"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/lp-core-functions.php:1070
|
291 |
+
msgid "Eritrean nakfa"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/lp-core-functions.php:1071
|
295 |
+
msgid "Ethiopian birr"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/lp-core-functions.php:1072
|
299 |
+
msgid "Falkland Islands pound"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/lp-core-functions.php:1073
|
303 |
+
msgid "Fijian dollar"
|
|
|
|
|
|
|
|
|
|
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/lp-core-functions.php:1074
|
307 |
+
msgid "CFP franc"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/lp-core-functions.php:1075
|
311 |
+
msgid "Gambian dalasi"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/lp-core-functions.php:1076
|
315 |
+
msgid "Georgian lari"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/lp-core-functions.php:1077
|
319 |
+
msgid "Ghanian cedi"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/lp-core-functions.php:1078
|
323 |
+
msgid "Gibraltar pound"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/lp-core-functions.php:1079
|
327 |
+
msgid "Guatemalan quetzal"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/lp-core-functions.php:1080
|
331 |
+
msgid "British pound"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/lp-core-functions.php:1081
|
335 |
+
msgid "Guinean franc"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/lp-core-functions.php:1082
|
339 |
+
msgid "Guyanese dollar"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: inc/lp-core-functions.php:1083
|
343 |
+
msgid "Haitian gourde"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: inc/lp-core-functions.php:1084
|
347 |
+
msgid "Honduran lempira"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: inc/lp-core-functions.php:1085
|
351 |
+
msgid "Hong Kong dollar"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: inc/lp-core-functions.php:1086
|
355 |
+
msgid "Hungarian forint"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: inc/lp-core-functions.php:1087
|
359 |
+
msgid "Icelandic króna"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/lp-core-functions.php:1088
|
363 |
+
msgid "Indian rupee"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: inc/lp-core-functions.php:1089
|
367 |
+
msgid "Indonesian rupiah"
|
|
|
|
|
|
|
|
|
|
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: inc/lp-core-functions.php:1090
|
371 |
+
msgid "Iranian rial"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/lp-core-functions.php:1091
|
375 |
+
msgid "Iraqi dinar"
|
|
|
|
|
|
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/lp-core-functions.php:1092
|
379 |
+
msgid "Israeli new sheqel"
|
|
|
|
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/lp-core-functions.php:1093
|
383 |
+
msgid "Jamaican dollar"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: inc/lp-core-functions.php:1094
|
387 |
+
msgid "Japanese yen "
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/lp-core-functions.php:1095
|
391 |
+
msgid "Jordanian dinar"
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/lp-core-functions.php:1096
|
395 |
+
msgid "Kazakhstani tenge"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: inc/lp-core-functions.php:1097
|
399 |
+
msgid "Kenyan shilling"
|
|
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/lp-core-functions.php:1098
|
403 |
+
msgid "North Korean won"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: inc/lp-core-functions.php:1099
|
407 |
+
msgid "Kuwaiti dinar"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/lp-core-functions.php:1100
|
411 |
+
msgid "Kyrgyzstani som"
|
|
|
|
|
|
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/lp-core-functions.php:1101
|
415 |
+
msgid "South Korean won"
|
|
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/lp-core-functions.php:1102
|
419 |
+
msgid "Lao kip"
|
|
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/lp-core-functions.php:1103
|
423 |
+
msgid "Latvian lats"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/lp-core-functions.php:1104
|
427 |
+
msgid "Lebanese pound"
|
|
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/lp-core-functions.php:1105
|
431 |
+
msgid "Lesotho loti"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/lp-core-functions.php:1106
|
435 |
+
msgid "Liberian dollar"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/lp-core-functions.php:1107
|
439 |
+
#: inc/lp-core-functions.php:1178
|
440 |
+
msgid "Libyan dinar"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: inc/lp-core-functions.php:1108
|
444 |
+
msgid "Swiss franc"
|
|
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: inc/lp-core-functions.php:1109
|
448 |
+
msgid "Lithuanian litas"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: inc/lp-core-functions.php:1110
|
452 |
+
msgid "Macanese pataca"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: inc/lp-core-functions.php:1111
|
456 |
+
msgid "Macedonian denar"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: inc/lp-core-functions.php:1112
|
460 |
+
msgid "Malagasy ariary"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: inc/lp-core-functions.php:1113
|
464 |
+
msgid "Malawian kwacha"
|
|
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: inc/lp-core-functions.php:1114
|
468 |
+
msgid "Malaysian ringgit"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: inc/lp-core-functions.php:1115
|
472 |
+
msgid "Maldivian rufiyaa"
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: inc/lp-core-functions.php:1116
|
476 |
+
msgid "Mauritanian ouguiya"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: inc/lp-core-functions.php:1117
|
480 |
+
msgid "Mauritian rupee"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: inc/lp-core-functions.php:1118
|
484 |
+
msgid "Mexican peso"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: inc/lp-core-functions.php:1119
|
488 |
+
msgid "Moldovan leu"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: inc/lp-core-functions.php:1120
|
492 |
+
msgid "Mongolian tugrik"
|
|
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: inc/lp-core-functions.php:1121
|
496 |
+
msgid "Moroccan dirham"
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: inc/lp-core-functions.php:1122
|
500 |
+
msgid "Mozambican metical"
|
|
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: inc/lp-core-functions.php:1123
|
504 |
+
msgid "Namibian dollar"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: inc/lp-core-functions.php:1124
|
508 |
+
msgid "Nepalese rupee"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/lp-core-functions.php:1125
|
512 |
+
msgid "Nicaraguan córdoba"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: inc/lp-core-functions.php:1126
|
516 |
+
msgid "Nigerian naira"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: inc/lp-core-functions.php:1127
|
520 |
+
msgid "Norwegian krone"
|
|
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: inc/lp-core-functions.php:1128
|
524 |
+
msgid "Omani rial"
|
|
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: inc/lp-core-functions.php:1129
|
528 |
+
msgid "Pakistani rupee"
|
|
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: inc/lp-core-functions.php:1130
|
532 |
+
msgid "Panamanian balboa"
|
|
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: inc/lp-core-functions.php:1131
|
536 |
+
msgid "Papua New Guinea kina"
|
|
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: inc/lp-core-functions.php:1132
|
540 |
+
msgid "Paraguayan guarani"
|
|
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: inc/lp-core-functions.php:1133
|
544 |
+
msgid "Peruvian nuevo sol"
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/lp-core-functions.php:1134
|
548 |
+
msgid "Philippine peso"
|
|
|
|
|
|
|
|
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: inc/lp-core-functions.php:1135
|
552 |
+
msgid "Polish zloty"
|
|
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: inc/lp-core-functions.php:1136
|
556 |
+
msgid "Qatari riyal"
|
|
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/lp-core-functions.php:1137
|
560 |
+
msgid "Romanian leu"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/lp-core-functions.php:1138
|
564 |
+
msgid "Russian ruble"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/lp-core-functions.php:1139
|
568 |
+
msgid "Rwandan franc"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/lp-core-functions.php:1140
|
572 |
+
msgid "Samoan tālā"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/lp-core-functions.php:1141
|
576 |
+
msgid "São Tomé and Príncipe dobra"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/lp-core-functions.php:1142
|
580 |
+
msgid "Saudi riyal"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/lp-core-functions.php:1143
|
584 |
+
msgid "Serbian dinar"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/lp-core-functions.php:1144
|
588 |
+
msgid "Seychellois rupee"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: inc/lp-core-functions.php:1145
|
592 |
+
msgid "Sierra Leonean leone"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: inc/lp-core-functions.php:1146
|
596 |
+
msgid "Singapore dollar"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: inc/lp-core-functions.php:1147
|
600 |
+
msgid "Solomon Islands dollar"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: inc/lp-core-functions.php:1148
|
604 |
+
msgid "Somali shilling"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: inc/lp-core-functions.php:1149
|
608 |
+
msgid "South African rand"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: inc/lp-core-functions.php:1150
|
612 |
+
msgid "Sri Lankan rupee"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: inc/lp-core-functions.php:1151
|
616 |
+
msgid "St. Helena pound"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: inc/lp-core-functions.php:1152
|
620 |
+
msgid "Sudanese pound"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/lp-core-functions.php:1153
|
624 |
+
msgid "Surinamese dollar"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: inc/lp-core-functions.php:1154
|
628 |
+
msgid "Swazi lilangeni"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: inc/lp-core-functions.php:1155
|
632 |
+
msgid "Swedish krona"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/lp-core-functions.php:1156
|
636 |
+
msgid "Syrian pound"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/lp-core-functions.php:1157
|
640 |
+
msgid "New Taiwan dollar"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/lp-core-functions.php:1158
|
644 |
+
msgid "Tajikistani somoni"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: inc/lp-core-functions.php:1159
|
648 |
+
msgid "Tanzanian shilling"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: inc/lp-core-functions.php:1160
|
652 |
+
msgid "Thai baht "
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/lp-core-functions.php:1161
|
656 |
+
msgid "Tongan pa’anga"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/lp-core-functions.php:1162
|
660 |
+
msgid "Trinidad and Tobago dollar"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: inc/lp-core-functions.php:1163
|
664 |
+
msgid "Tunisian dinar"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/lp-core-functions.php:1164
|
668 |
+
msgid "Turkish lira"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/lp-core-functions.php:1165
|
672 |
+
msgid "Turkmenistani manat"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: inc/lp-core-functions.php:1166
|
676 |
+
msgid "Ugandan shilling"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: inc/lp-core-functions.php:1167
|
680 |
+
msgid "Ukrainian hryvnia"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc/lp-core-functions.php:1168
|
684 |
+
msgid "United Arab Emirates dirham"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: inc/lp-core-functions.php:1169
|
688 |
+
msgid "Uruguayan peso"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: inc/lp-core-functions.php:1170
|
692 |
+
msgid "Uzbekistani som"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: inc/lp-core-functions.php:1171
|
696 |
+
msgid "Vanuatu vatu"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: inc/lp-core-functions.php:1172
|
700 |
+
msgid "Venezuelan bolivar"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: inc/lp-core-functions.php:1173
|
704 |
+
msgid "Vietnamese dong"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: inc/lp-core-functions.php:1174
|
708 |
+
msgid "Yemeni rial"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: inc/lp-core-functions.php:1175
|
712 |
+
msgid "Zambian kwacha"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: inc/lp-core-functions.php:1176
|
716 |
+
msgid "Zimbabwean dollar"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: inc/lp-core-functions.php:1177
|
720 |
+
msgid "Jersey pound"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: inc/lp-core-functions.php:1464
|
724 |
+
msgid "week"
|
725 |
+
msgid_plural "weeks"
|
726 |
+
msgstr[0] ""
|
727 |
+
msgstr[1] ""
|
728 |
|
729 |
+
#: inc/lp-core-functions.php:1468
|
730 |
+
msgid "day"
|
731 |
+
msgid_plural "days"
|
732 |
+
msgstr[0] ""
|
733 |
+
msgstr[1] ""
|
734 |
|
735 |
+
#: inc/lp-core-functions.php:1473
|
736 |
+
msgid "hour"
|
737 |
+
msgid_plural "hours"
|
738 |
+
msgstr[0] ""
|
739 |
+
msgstr[1] ""
|
740 |
|
741 |
+
#: inc/lp-core-functions.php:1477
|
742 |
+
msgid "minute"
|
743 |
+
msgid_plural "minutes"
|
744 |
+
msgstr[0] ""
|
745 |
+
msgstr[1] ""
|
746 |
|
747 |
+
#: inc/lp-core-functions.php:1546
|
748 |
+
#: inc/admin/views/quiz/editor.php:29
|
749 |
+
#: inc/admin/views/tools/course/html-course.php:29
|
750 |
+
#: inc/admin/views/tools/course/html-user.php:29
|
751 |
+
msgid "Name"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: inc/lp-core-functions.php:1548
|
755 |
+
msgid "Your name"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: inc/lp-core-functions.php:1554
|
759 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:72
|
760 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:74
|
761 |
+
#: inc/admin/meta-box/fields/list-emails.php:28
|
762 |
+
msgid "Email"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: inc/lp-core-functions.php:1556
|
766 |
+
msgid "Your email address"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: inc/lp-core-functions.php:1562
|
770 |
+
msgid "Phone"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: inc/lp-core-functions.php:1564
|
774 |
+
msgid "Your phone number"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: inc/lp-core-functions.php:1594
|
778 |
+
msgid "Please enter your name"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: inc/lp-core-functions.php:1599
|
782 |
+
msgid "Please enter your email address"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: inc/lp-core-functions.php:1607
|
786 |
+
msgid "Please moderate"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: inc/lp-core-functions.php:1618
|
790 |
+
#, php-format
|
791 |
+
msgid "The user <a href=\"%s\">%s</a> wants to become a teacher."
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: inc/lp-core-functions.php:1619
|
795 |
+
#, php-format
|
796 |
+
msgid "Name: %s"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: inc/lp-core-functions.php:1620
|
800 |
+
#, php-format
|
801 |
+
msgid "Email: %s"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: inc/lp-core-functions.php:1621
|
805 |
+
#, php-format
|
806 |
+
msgid "Phone: %s"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: inc/lp-core-functions.php:1627
|
810 |
+
#, php-format
|
811 |
+
msgid "Accept: %s"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: inc/lp-core-functions.php:1638
|
815 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:109
|
816 |
+
msgid "Your request has been sent! We will get back to you soon!"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: inc/lp-core-functions.php:2256
|
820 |
+
#: inc/class-lp-assets.php:48
|
821 |
+
msgid "OK"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: inc/lp-core-functions.php:2257
|
825 |
+
#: inc/class-lp-assets.php:49
|
826 |
+
#: inc/class-lp-install.php:505
|
827 |
+
#: inc/order/class-lp-order.php:935
|
828 |
+
#: inc/custom-post-types/course.php:864
|
829 |
+
#: inc/admin/class-lp-admin-ajax.php:861
|
830 |
+
#: inc/admin/class-lp-admin.php:215
|
831 |
+
#: templates/checkout/form-login.php:103
|
832 |
+
msgid "Cancel"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: inc/lp-core-functions.php:2258
|
836 |
+
#: inc/class-lp-assets.php:50
|
837 |
+
#: inc/class-lp-gdpr.php:426
|
838 |
+
msgid "Yes"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: inc/lp-core-functions.php:2259
|
842 |
+
#: inc/class-lp-assets.php:51
|
843 |
+
#: inc/class-lp-gdpr.php:426
|
844 |
+
#: templates/content-quiz/intro.php:25
|
845 |
+
msgid "No"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/lp-core-functions.php:2504
|
849 |
+
#, php-format
|
850 |
+
msgid "Congrats! You've enrolled the course \"%s\"."
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: inc/lp-core-functions.php:2537
|
854 |
+
msgid "Cart"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: inc/lp-core-functions.php:2541
|
858 |
+
msgid "Enable cart"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: inc/lp-core-functions.php:2542
|
862 |
+
msgid "Check this option to enable user purchase multiple courses at one time."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: inc/lp-core-functions.php:2548
|
866 |
+
msgid "Add to cart redirect"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: inc/lp-core-functions.php:2549
|
870 |
+
msgid "Redirect to checkout immediately after adding course to cart."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: inc/lp-core-functions.php:2555
|
874 |
+
msgid "AJAX add to cart"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: inc/lp-core-functions.php:2556
|
878 |
+
msgid "Using AJAX to add course to cart."
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: inc/lp-core-functions.php:2562
|
882 |
+
msgid "Cart page"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: inc/lp-core-functions.php:2701
|
886 |
+
msgid "Are you sure you want to cancel order?"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: inc/lp-core-functions.php:2702
|
890 |
+
msgid "Cancel Order"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: inc/lp-core-functions.php:2757
|
894 |
+
#: inc/course/lp-course-functions.php:1083
|
895 |
+
#: inc/user/class-lp-profile.php:847
|
896 |
+
#: inc/user/class-lp-profile.php:881
|
897 |
+
#: inc/user-item/class-lp-user-item-quiz.php:108
|
898 |
+
#: inc/user-item/class-lp-user-item.php:550
|
899 |
+
msgid "Passed"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: inc/lp-core-functions.php:2760
|
903 |
+
#: inc/course/lp-course-functions.php:1086
|
904 |
+
#: inc/user/class-lp-profile.php:848
|
905 |
+
#: inc/user/class-lp-profile.php:882
|
906 |
+
#: inc/user-item/class-lp-user-item-quiz.php:109
|
907 |
+
#: inc/user-item/class-lp-user-item.php:551
|
908 |
+
msgid "Failed"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: inc/lp-core-functions.php:2954
|
912 |
+
msgctxt "static-page-name"
|
913 |
+
msgid "Checkout"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: inc/lp-core-functions.php:2955
|
917 |
+
msgctxt "static-page-name"
|
918 |
+
msgid "Courses"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc/lp-core-functions.php:2956
|
922 |
+
msgctxt "static-page-name"
|
923 |
+
msgid "Profile"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/lp-core-functions.php:2957
|
927 |
+
msgctxt "static-page-name"
|
928 |
+
msgid "Become a Teacher"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: inc/class-lp-assets.php:58
|
932 |
+
#: inc/class-lp-assets.php:65
|
933 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:124
|
934 |
+
#: templates/checkout/payment.php:20
|
935 |
+
msgid "Processing"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/class-lp-assets.php:59
|
939 |
+
#: inc/class-lp-assets.php:66
|
940 |
+
msgid "Redirecting"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: inc/class-lp-assets.php:60
|
944 |
+
msgid "Invalid field"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: inc/class-lp-assets.php:61
|
948 |
+
#: inc/attributes/course.php:103
|
949 |
+
msgid "Unknown error"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: inc/class-lp-assets.php:62
|
953 |
+
#: templates/checkout/payment.php:19
|
954 |
+
msgid "Place order"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: inc/class-lp-emails.php:136
|
958 |
+
#: inc/class-lp-emails.php:143
|
959 |
+
msgid "Cheatin’ huh?"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/class-lp-widget.php:213
|
963 |
+
#, php-format
|
964 |
+
msgid "Function %s should be overwritten in child class"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: inc/class-lp-forms-handler.php:39
|
968 |
+
#: inc/class-lp-forms-handler.php:116
|
969 |
+
#: inc/class-lp-forms-handler.php:200
|
970 |
+
#, php-format
|
971 |
+
msgid "Field \"%s\" is required."
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: inc/class-lp-forms-handler.php:52
|
975 |
+
msgid "Thank you! Your message has been sent."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: inc/class-lp-forms-handler.php:76
|
979 |
+
msgid "Your email does not exist!"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: inc/class-lp-forms-handler.php:150
|
983 |
+
msgid "Login successfully."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: inc/class-lp-forms-handler.php:239
|
987 |
+
msgid "Register successfully."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: inc/class-lp-forms-handler.php:264
|
991 |
+
msgid "Password is too short!"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: inc/class-lp-forms-handler.php:268
|
995 |
+
msgid "Password can not have spacing!"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: inc/class-lp-forms-handler.php:272
|
999 |
+
msgid "Password must include at least one letter!"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: inc/class-lp-forms-handler.php:276
|
1003 |
+
msgid "Password must include at least one capitalized letter!"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: inc/class-lp-forms-handler.php:280
|
1007 |
+
msgid "Password must include at least one number!"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: inc/class-lp-forms-handler.php:284
|
1011 |
+
msgid "Password must include at least one of these characters ~!@#$%^&*() !"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: inc/lp-deprecated.php:370
|
1015 |
+
#: inc/lp-deprecated.php:402
|
1016 |
+
#: inc/admin/lp-admin-actions.php:60
|
1017 |
+
#: inc/admin/lp-admin-functions.php:850
|
1018 |
+
#: inc/admin/lp-admin-functions.php:1015
|
1019 |
+
#: inc/admin/lp-admin-functions.php:1217
|
1020 |
+
#: inc/admin/lp-admin-functions.php:2098
|
1021 |
+
#: inc/user/class-lp-profile.php:813
|
1022 |
+
#: inc/user/class-lp-profile.php:845
|
1023 |
+
#: inc/user/class-lp-profile.php:879
|
1024 |
+
#: templates/widgets/course-info/default.php:44
|
1025 |
+
#: inc/admin/views/statistics/courses.php:27
|
1026 |
+
#: inc/admin/views/statistics/courses.php:42
|
1027 |
+
#: inc/admin/views/statistics/users.php:29
|
1028 |
+
#: inc/admin/views/statistics/users.php:45
|
1029 |
+
#: inc/admin/views/statistics/general.php:43
|
1030 |
+
#: inc/admin/views/statistics/general.php:59
|
1031 |
+
#: inc/admin/views/statistics/orders.php:28
|
1032 |
+
#: inc/admin/views/statistics/orders.php:62
|
1033 |
+
msgid "All"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: inc/lp-deprecated.php:371
|
1037 |
+
msgid "Learning"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: inc/lp-deprecated.php:372
|
1041 |
+
#: inc/custom-post-types/order.php:770
|
1042 |
+
#: inc/user/class-lp-profile.php:284
|
1043 |
+
msgid "Purchased"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: inc/lp-deprecated.php:373
|
1047 |
+
#: inc/lp-deprecated.php:404
|
1048 |
+
#: inc/user/class-lp-profile.php:846
|
1049 |
+
#: inc/user/class-lp-profile.php:880
|
1050 |
+
#: inc/user-item/class-lp-user-item.php:549
|
1051 |
+
msgid "Finished"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: inc/lp-deprecated.php:374
|
1055 |
+
#: inc/user/class-lp-profile.php:277
|
1056 |
+
msgid "Owned"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: inc/lp-deprecated.php:403
|
1060 |
+
#: inc/course/lp-course-functions.php:1089
|
1061 |
+
#: inc/user-item/class-lp-user-item-quiz.php:105
|
1062 |
+
#: inc/user-item/class-lp-user-item-quiz.php:106
|
1063 |
+
#: inc/user-item/class-lp-user-item.php:544
|
1064 |
+
#: inc/user-item/class-lp-user-item.php:545
|
1065 |
+
#: inc/user-item/class-lp-user-item.php:546
|
1066 |
+
msgid "In Progress"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: inc/class-lp-repair-database.php:597
|
1070 |
+
#, php-format
|
1071 |
+
msgid "The method %s is not callable."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: inc/class-lp-request-handler.php:148
|
1075 |
+
msgid "You have already purchased this course and haven't finished it."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: inc/class-lp-request-handler.php:156
|
1079 |
+
msgid ""
|
1080 |
+
"You have already purchased this course and the order is still processing..."
|
1081 |
+
msgstr ""
|
1082 |
|
1083 |
+
#: inc/class-lp-request-handler.php:179
|
1084 |
+
msgid "You have finished course."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: inc/class-lp-request-handler.php:195
|
1088 |
+
msgid "You have to purchase the course before enrolling."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: inc/class-lp-request-handler.php:232
|
1092 |
+
msgid "Invalid action."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: inc/class-lp-request-handler.php:297
|
1096 |
+
#: inc/class-lp-request-handler.php:332
|
1097 |
+
#, php-format
|
1098 |
+
msgid "You can not enroll course "%s""
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: inc/class-lp-request-handler.php:324
|
1102 |
+
#: inc/course/lp-course-functions.php:1151
|
1103 |
+
msgid "Invalid request!"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: inc/class-lp-request-handler.php:349
|
1107 |
+
#, php-format
|
1108 |
+
msgid "Congrats! You have enrolled "%s""
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: inc/class-lp-request-handler.php:379
|
1112 |
+
msgid "Checkout page hasn't been setup or page does not exists."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: inc/class-lp-request-handler.php:381
|
1116 |
+
msgid "Checkout error! Please contact with admin for getting more information."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: inc/class-lp-strings.php:16
|
1120 |
+
#: inc/lp-strings.php:7
|
1121 |
+
#, php-format
|
1122 |
+
msgid "Do you want to redo quiz \"%s\"?"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: inc/class-lp-strings.php:17
|
1126 |
+
#: inc/lp-strings.php:8
|
1127 |
+
#, php-format
|
1128 |
+
msgid "Do you want to complete quiz \"%s\"?"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: inc/class-lp-strings.php:18
|
1132 |
+
#: inc/lp-strings.php:9
|
1133 |
+
#, php-format
|
1134 |
+
msgid "Do you want to complete lesson \"%s\"?"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: inc/class-lp-strings.php:19
|
1138 |
+
#: inc/lp-strings.php:10
|
1139 |
+
#, php-format
|
1140 |
+
msgid "Do you want to finish course \"%s\"?"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: inc/class-lp-strings.php:20
|
1144 |
+
#: inc/lp-strings.php:11
|
1145 |
+
#, php-format
|
1146 |
+
msgid "Do you want to retake course \"%s\"?"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: inc/lp-strings.php:6
|
1150 |
+
msgid "You've already completed quiz."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: inc/class-lp-ajax.php:109
|
1154 |
+
msgid "Sorry! Registration is not allowed on this site."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: inc/class-lp-ajax.php:113
|
1158 |
+
msgid "Bad request."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: inc/class-lp-ajax.php:192
|
1162 |
+
#, php-format
|
1163 |
+
msgid "The order %s has been successfully recovered."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: inc/class-lp-ajax.php:246
|
1167 |
+
#: inc/admin/class-lp-admin-ajax.php:1064
|
1168 |
+
msgid "Profile picture upload failed"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: inc/class-lp-ajax.php:269
|
1172 |
+
msgid "Access denied!"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: inc/class-lp-ajax.php:278
|
1176 |
+
#, php-format
|
1177 |
+
msgid "You have finished this course \"%s\""
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: inc/class-lp-ajax.php:281
|
1181 |
+
msgid ""
|
1182 |
+
"Error! You cannot finish this course. Please contact your administrator for "
|
1183 |
+
"more information."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: inc/class-lp-ajax.php:314
|
1187 |
+
msgid "Error! Invalid lesson or failed security check."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: inc/class-lp-ajax.php:324
|
1191 |
+
#, php-format
|
1192 |
+
msgid "Congrats! You have completed \"%s\"."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: inc/class-lp-ajax.php:363
|
1196 |
+
msgid "Error! Invalid course or failed security check."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: inc/class-lp-ajax.php:367
|
1200 |
+
msgid "Error!"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: inc/class-lp-ajax.php:369
|
1204 |
+
#, php-format
|
1205 |
+
msgid "You have retaken the course \"%s\""
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: inc/class-lp-ajax.php:373
|
1209 |
+
msgid "Error! You can not retake the course"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: inc/class-lp-backward-plugins.php:40
|
1213 |
+
msgid ""
|
1214 |
+
"There are some add-ons had gone outdated and might conflict with <strong>"
|
1215 |
+
"LearnPress</strong> that need to be deactivated. Please upgrade them to the "
|
1216 |
+
"newest version to ensure stability and performance of your site."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: inc/class-lp-backward-plugins.php:95
|
1220 |
+
#, php-format
|
1221 |
+
msgid ""
|
1222 |
+
"LearnPress plugin slug should be <strong>%s</strong> to make sure it works "
|
1223 |
+
"properly. Currently, it is <strong>%s</strong>. Please correct it's name and "
|
1224 |
+
"active again. <a href=\"%s\">Back</a>"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: inc/class-lp-breadcrumb.php:124
|
1228 |
+
msgid "Error 404"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: inc/class-lp-breadcrumb.php:223
|
1232 |
+
#, php-format
|
1233 |
+
msgid "Courses tagged “%s”"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: inc/class-lp-breadcrumb.php:278
|
1237 |
+
#, php-format
|
1238 |
+
msgid "Posts tagged “%s”"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/class-lp-breadcrumb.php:355
|
1242 |
+
#, php-format
|
1243 |
+
msgid "Author: %s"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: inc/class-lp-breadcrumb.php:388
|
1247 |
+
#, php-format
|
1248 |
+
msgid "Search results for “%s”"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: inc/class-lp-breadcrumb.php:397
|
1252 |
+
#, php-format
|
1253 |
+
msgid "Page %d"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: inc/class-lp-page-controller.php:129
|
1257 |
+
msgid "You can not view this item or it does not exist!"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: inc/class-lp-page-controller.php:462
|
1261 |
+
#, php-format
|
1262 |
+
msgid "The user %s is not available!"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: inc/class-lp-preview-course.php:35
|
1266 |
+
msgid "Preview Course"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: inc/class-lp-preview-course.php:80
|
1270 |
+
#: inc/class-lp-preview-course.php:97
|
1271 |
+
msgid "Invalid preview item."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: inc/class-lp-preview-course.php:103
|
1275 |
+
msgid "Access denied."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: inc/class-lp-preview-course.php:176
|
1279 |
+
#, php-format
|
1280 |
+
msgid "You are in preview mode. Continue <a href=\"%s\">editing</a>?"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: inc/lp-js-template.php:11
|
1284 |
+
msgid "--Select a Lesson--"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: inc/class-lp-gdpr.php:49
|
1288 |
+
msgid "LearnPress Owned Courses"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: inc/class-lp-gdpr.php:57
|
1292 |
+
msgid "LearnPress Orders"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: inc/class-lp-gdpr.php:65
|
1296 |
+
msgid "LearnPress Purchased Courses"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: inc/class-lp-gdpr.php:73
|
1300 |
+
msgid "LearnPress User Profile"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: inc/class-lp-gdpr.php:98
|
1304 |
+
msgid "Profile Settings"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: inc/class-lp-gdpr.php:147
|
1308 |
+
msgid "Order ID"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: inc/class-lp-gdpr.php:151
|
1312 |
+
msgid "Order Date"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: inc/class-lp-gdpr.php:155
|
1316 |
+
msgid "Order status"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: inc/class-lp-gdpr.php:159
|
1320 |
+
msgid "Order Total"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: inc/class-lp-gdpr.php:165
|
1324 |
+
#: inc/custom-post-types/order.php:903
|
1325 |
+
#: inc/custom-post-types/order.php:904
|
1326 |
+
#: inc/custom-post-types/order.php:908
|
1327 |
+
#: inc/user/class-lp-profile.php:312
|
1328 |
+
#: inc/admin/settings/class-lp-settings-profile.php:165
|
1329 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:22
|
1330 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:29
|
1331 |
+
msgid "Orders"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: inc/class-lp-gdpr.php:213
|
1335 |
+
#: inc/class-lp-gdpr.php:332
|
1336 |
+
msgid "Course Author"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: inc/class-lp-gdpr.php:217
|
1340 |
+
#: inc/class-lp-gdpr.php:336
|
1341 |
+
msgid "Course Name"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: inc/class-lp-gdpr.php:221
|
1345 |
+
#: inc/class-lp-gdpr.php:340
|
1346 |
+
msgid "Course Date"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: inc/class-lp-gdpr.php:225
|
1350 |
+
#: inc/class-lp-gdpr.php:344
|
1351 |
+
msgid "Course URL"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: inc/class-lp-gdpr.php:231
|
1355 |
+
msgid "Owned Course"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: inc/class-lp-gdpr.php:264
|
1359 |
+
#: inc/class-lp-gdpr.php:400
|
1360 |
+
msgid "Item Name"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: inc/class-lp-gdpr.php:268
|
1364 |
+
#: inc/class-lp-gdpr.php:404
|
1365 |
+
msgid "Item Type"
|
1366 |
+
msgstr ""
|
|
|
1367 |
|
1368 |
+
#: inc/class-lp-gdpr.php:272
|
1369 |
+
#: inc/class-lp-gdpr.php:408
|
1370 |
+
msgid "Item URL"
|
1371 |
+
msgstr ""
|
|
|
1372 |
|
1373 |
+
#: inc/class-lp-gdpr.php:279
|
1374 |
+
#: inc/class-lp-gdpr.php:432
|
1375 |
+
msgid "Course Items"
|
1376 |
+
msgstr ""
|
|
|
1377 |
|
1378 |
+
#: inc/class-lp-gdpr.php:348
|
1379 |
+
msgid "Enrolled Date"
|
1380 |
+
msgstr ""
|
|
|
|
|
1381 |
|
1382 |
+
#: inc/class-lp-gdpr.php:352
|
1383 |
+
msgid "Finished Date"
|
|
|
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: inc/class-lp-gdpr.php:356
|
1387 |
+
msgid "Course Status"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: inc/class-lp-gdpr.php:360
|
1391 |
+
msgid "Course Grade"
|
|
|
|
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: inc/class-lp-gdpr.php:361
|
1395 |
+
#: templates/content-quiz/result.php:33
|
1396 |
+
msgid "Ungraded"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: inc/class-lp-gdpr.php:366
|
1400 |
+
msgid "Purchased Course"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: inc/class-lp-gdpr.php:415
|
1404 |
+
#: inc/custom-post-types/order.php:773
|
1405 |
+
#: inc/custom-post-types/order.php:773
|
1406 |
+
#: templates/emails/order-items-table.php:53
|
1407 |
+
#: templates/emails/plain/order-items-table.php:30
|
1408 |
+
#: inc/admin/meta-box/fields/payment-order.php:32
|
1409 |
+
#: inc/admin/meta-box/fields/list-emails.php:30
|
1410 |
+
#: templates/profile/tabs/orders/list.php:34
|
1411 |
+
#: inc/admin/views/meta-boxes/order/details.php:57
|
1412 |
+
msgid "Status"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: inc/class-lp-gdpr.php:420
|
1416 |
+
msgid "Grade"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: inc/class-lp-gdpr.php:425
|
1420 |
+
#: inc/admin/lp-admin-functions.php:1222
|
1421 |
+
#: inc/user-item/class-lp-user-item-quiz.php:107
|
1422 |
+
#: inc/user-item/class-lp-user-item.php:548
|
1423 |
+
#: templates/content-lesson/button-complete.php:36
|
1424 |
+
#: inc/admin/views/statistics/orders.php:63
|
1425 |
+
msgid "Completed"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: inc/class-lp-query-list-table.php:28
|
1429 |
+
#: inc/custom-post-types/course.php:99
|
1430 |
+
msgid "item"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: inc/class-lp-query-list-table.php:29
|
1434 |
+
msgid "items"
|
|
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: inc/class-lp-query-list-table.php:142
|
1438 |
+
msgid "Displaying {{from}} to {{to}} of {{total}} {{item_name}}."
|
|
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: inc/class-lp-query-list-table.php:144
|
1442 |
+
msgid "Displaying {{from}} to {{to}} of {{total}}."
|
|
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: inc/lp-webhooks.php:82
|
1446 |
#, php-format
|
1447 |
+
msgid "LearnPress webhook %s process completed"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: inc/lp-webhooks.php:88
|
1451 |
+
msgid "LearnPress webhook process Complete"
|
|
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: inc/class-lp-shortcodes.php:225
|
1455 |
+
msgid "Forgot password?"
|
|
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: inc/class-lp-shortcodes.php:227
|
1459 |
+
msgid "Create new account"
|
|
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: inc/class-lp-install.php:504
|
1463 |
+
msgid ""
|
1464 |
+
"It seems like you have updated LearnPress from an older version and there "
|
1465 |
+
"are some outdated courses or data that need to be upgraded."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: inc/class-lp-install.php:505
|
1469 |
+
msgid "Do not ask again."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: inc/class-lp-install.php:505
|
1473 |
+
msgid "Ok"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: inc/class-lp-install.php:506
|
1477 |
+
#: inc/admin/views/tools/database/html-upgrade-database.php:17
|
1478 |
+
msgid "Upgrade now"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: inc/class-lp-install.php:506
|
1482 |
+
msgid "No, thank!"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: inc/class-lp-install.php:513
|
1486 |
+
msgid ""
|
1487 |
+
"LearnPress has been updated and the database needs to be upgraded before you "
|
1488 |
+
"can work with it. Please notify the site administrator."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: inc/class-lp-install.php:532
|
1492 |
+
msgid "Thank you for using LearnPress"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: inc/abstract-settings.php:69
|
1496 |
+
#: inc/admin/settings/abstract-settings-page.php:49
|
1497 |
+
msgid "No setting available."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: inc/class-lp-multi-language.php:52
|
1501 |
+
#: inc/custom-post-types/question.php:294
|
1502 |
+
#: inc/user/class-lp-profile.php:325
|
1503 |
+
#: inc/admin/sub-menus/class-lp-submenu-settings.php:14
|
1504 |
+
#: inc/admin/views/quiz/question-meta.php:12
|
1505 |
+
msgid "Settings"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: inc/class-lp-multi-language.php:53
|
1509 |
+
msgid "Documentation"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: inc/class-lp-multi-language.php:54
|
1513 |
+
#: inc/admin/sub-menus/class-lp-submenu-addons.php:15
|
1514 |
+
msgid "Add-ons"
|
|
|
|
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: inc/class-lp-checkout.php:160
|
1518 |
+
#: inc/class-lp-checkout.php:425
|
1519 |
+
msgid "Please enter your email."
|
|
|
|
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: inc/class-lp-checkout.php:165
|
1523 |
+
msgid "You must accept our Terms & Conditions."
|
|
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: inc/class-lp-checkout.php:210
|
1527 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:64
|
1528 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:66
|
1529 |
+
msgid "Username"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: inc/class-lp-checkout.php:211
|
1533 |
+
#: inc/user/class-lp-profile.php:336
|
1534 |
+
#: inc/shortcodes/class-lp-shortcode-login-form.php:69
|
1535 |
+
#: inc/shortcodes/class-lp-shortcode-login-form.php:71
|
1536 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:80
|
1537 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:82
|
1538 |
+
msgid "Password"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: inc/class-lp-checkout.php:267
|
1542 |
+
#: inc/class-lp-checkout.php:276
|
1543 |
+
#: inc/class-lp-checkout.php:315
|
1544 |
+
#, php-format
|
1545 |
+
msgid "Error %d: Unable to create order. Please try again."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: inc/class-lp-checkout.php:309
|
1549 |
+
msgid "Item does not exist!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: inc/class-lp-checkout.php:339
|
1553 |
+
msgid "Unable to checkout. Order creation failed."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: inc/class-lp-checkout.php:416
|
1557 |
+
msgid "Please enter username."
|
|
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: inc/class-lp-checkout.php:420
|
1561 |
+
msgid "Please enter user password"
|
|
|
|
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: inc/class-lp-checkout.php:505
|
1565 |
+
msgid "No payment method is selected"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: inc/class-lp-checkout.php:545
|
1569 |
+
#: templates/checkout/empty-cart.php:19
|
1570 |
+
msgid "Your cart is currently empty."
|
|
|
|
|
|
|
|
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: inc/class-lp-checkout.php:564
|
1574 |
+
#, php-format
|
1575 |
+
msgid "Item \"%s\" is not purchasable."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: inc/class-lp-market-products.php:12
|
1579 |
+
#: inc/admin/class-lp-admin-menu.php:90
|
1580 |
+
#: inc/admin/lp-admin-functions.php:1597
|
1581 |
+
#: inc/admin/class-lp-admin.php:103
|
1582 |
+
#: inc/admin/class-lp-admin.php:105
|
1583 |
+
#: inc/admin/settings/class-lp-settings-emails.php:161
|
1584 |
+
msgid "LearnPress"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: inc/class-lp-market-products.php:13
|
1588 |
+
msgid "Ahihi"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: templates/search-form.php:26
|
1592 |
+
msgid "Search course..."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: templates/search-form.php:29
|
1596 |
+
#: inc/admin/views/tools/course/html-course.php:21
|
1597 |
+
#: inc/admin/views/tools/course/html-user.php:21
|
1598 |
+
msgid "Search"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: templates/content-archive-course.php:74
|
1602 |
+
#: inc/abstracts/abstract-shortcode-courses.php:142
|
1603 |
+
#: inc/admin/views/tools/course/html-course.php:53
|
1604 |
+
msgid "No course found."
|
|
|
|
|
|
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: inc/order/class-lp-order.php:186
|
1608 |
+
#: inc/order/class-lp-order.php:205
|
1609 |
+
#: templates/checkout/order-received.php:25
|
1610 |
+
msgid "Thank you. Your order has been received."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: inc/order/class-lp-order.php:377
|
1614 |
+
msgid "Removed"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: inc/order/class-lp-order.php:494
|
1618 |
+
#, php-format
|
1619 |
+
msgid "%s (Guest)"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: inc/order/class-lp-order.php:496
|
1623 |
+
#: inc/custom-post-types/order.php:821
|
1624 |
+
msgid "(Guest)"
|
|
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: inc/order/class-lp-order.php:928
|
1628 |
+
#: inc/custom-post-types/question.php:376
|
1629 |
+
#: inc/custom-post-types/abstract.php:582
|
1630 |
+
#: inc/custom-post-types/abstract.php:774
|
1631 |
+
#: inc/custom-post-types/abstract.php:783
|
1632 |
+
#: inc/admin/class-lp-install-sample-data.php:130
|
1633 |
+
#: inc/admin/views/meta-boxes/course/assigned.php:22
|
1634 |
+
#: inc/admin/views/meta-boxes/quiz/assigned.php:28
|
1635 |
+
#: inc/admin/views/meta-boxes/quiz/assigned.php:38
|
1636 |
+
msgid "View"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: inc/order/class-lp-order.php:981
|
1640 |
#, php-format
|
1641 |
+
msgctxt "full name"
|
1642 |
+
msgid "%1$s"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: inc/order/class-lp-order.php:1022
|
1646 |
+
msgid "No user assigned"
|
|
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: inc/order/class-lp-order.php:1098
|
1650 |
+
msgid "Order on"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: inc/order/lp-order-functions.php:67
|
1654 |
+
msgid "Invalid order ID when updating."
|
|
|
|
|
|
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: inc/order/lp-order-functions.php:705
|
1658 |
+
msgctxt "Order status"
|
1659 |
+
msgid "Pending Payment"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: inc/order/lp-order-functions.php:710
|
1663 |
#, php-format
|
1664 |
+
msgid "Pending Payment <span class=\"count\">(%s)</span>"
|
1665 |
+
msgid_plural "Pending Payment <span class=\"count\">(%s)</span>"
|
1666 |
msgstr[0] ""
|
1667 |
msgstr[1] ""
|
1668 |
|
1669 |
+
#: inc/order/lp-order-functions.php:713
|
1670 |
+
msgctxt "Order status"
|
1671 |
+
msgid "Processing"
|
|
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: inc/order/lp-order-functions.php:718
|
1675 |
#, php-format
|
1676 |
+
msgid "Processing <span class=\"count\">(%s)</span>"
|
1677 |
+
msgid_plural "Processing <span class=\"count\">(%s)</span>"
|
1678 |
+
msgstr[0] ""
|
1679 |
+
msgstr[1] ""
|
1680 |
+
|
1681 |
+
#: inc/order/lp-order-functions.php:721
|
1682 |
+
msgctxt "Order status"
|
1683 |
+
msgid "Completed"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: inc/order/lp-order-functions.php:726
|
1687 |
#, php-format
|
1688 |
+
msgid "Completed <span class=\"count\">(%s)</span>"
|
1689 |
+
msgid_plural "Completed <span class=\"count\">(%s)</span>"
|
1690 |
+
msgstr[0] ""
|
1691 |
+
msgstr[1] ""
|
1692 |
+
|
1693 |
+
#: inc/order/lp-order-functions.php:729
|
1694 |
+
msgctxt "Order status"
|
1695 |
+
msgid "Cancelled"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: inc/order/lp-order-functions.php:734
|
1699 |
#, php-format
|
1700 |
+
msgid "Cancelled <span class=\"count\">(%s)</span>"
|
1701 |
+
msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
|
1702 |
+
msgstr[0] ""
|
1703 |
+
msgstr[1] ""
|
1704 |
|
1705 |
+
#: inc/order/lp-order-functions.php:737
|
1706 |
+
msgctxt "Order status"
|
1707 |
+
msgid "Failed"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: inc/order/lp-order-functions.php:742
|
1711 |
+
#, php-format
|
1712 |
+
msgid "Failed <span class=\"count\">(%s)</span>"
|
1713 |
+
msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
1714 |
+
msgstr[0] ""
|
1715 |
+
msgstr[1] ""
|
1716 |
|
1717 |
+
#: inc/order/lp-order-functions.php:751
|
1718 |
+
msgid ""
|
1719 |
+
"Order received in case user buy a course but doesn't finalise the order."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: inc/order/lp-order-functions.php:752
|
1723 |
+
msgid "Payment received and the order is awaiting fulfillment."
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: inc/order/lp-order-functions.php:753
|
1727 |
+
msgid "Order fulfilled and complete."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: inc/order/lp-order-functions.php:754
|
1731 |
+
msgid "The order is cancelled by an admin or the customer."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: inc/order/lp-order-functions.php:792
|
1735 |
+
#, php-format
|
1736 |
+
msgid "Order number <strong>%s</strong> not found"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: inc/order/lp-order-functions.php:795
|
1740 |
+
msgid "Order cancelled by customer"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: inc/order/lp-order-functions.php:798
|
1744 |
+
#, php-format
|
1745 |
+
msgid "Order number <strong>%s</strong> has been cancelled"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: inc/order/lp-order-functions.php:801
|
1749 |
+
#, php-format
|
1750 |
+
msgid "Order number <strong>%s</strong> can not be cancelled"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: inc/order/lp-order-functions.php:839
|
1754 |
+
#, php-format
|
1755 |
+
msgid "You have enrolled in this course. <a href=\"%s\">Order details</a>"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: inc/course/lp-course-functions.php:187
|
1759 |
+
msgctxt "slug"
|
1760 |
+
msgid "uncategorized"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: inc/course/lp-course-functions.php:235
|
1764 |
+
#, php-format
|
1765 |
+
msgid "The course %d does not exists"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: inc/course/lp-course-functions.php:869
|
1769 |
+
msgid "Edit this item"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: inc/course/lp-course-functions.php:948
|
1773 |
+
#: inc/custom-post-types/abstract.php:795
|
1774 |
+
#: inc/custom-post-types/lesson.php:319
|
1775 |
+
#: inc/custom-post-types/quiz.php:382
|
1776 |
+
#: templates/single-course/section/item-meta.php:25
|
1777 |
+
msgid "Preview"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: inc/course/lp-course-functions.php:951
|
1781 |
+
msgid "Permalink only available if the item is already assigned to a course."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: inc/course/lp-course-functions.php:1169
|
1785 |
+
#, php-format
|
1786 |
+
msgid "Welcome back, %s"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: inc/course/abstract-course.php:485
|
1790 |
+
msgid "You enrolled"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: inc/course/abstract-course.php:488
|
1794 |
+
#, php-format
|
1795 |
+
msgctxt "students-html"
|
1796 |
+
msgid "You and one student enrolled"
|
1797 |
+
msgid_plural ""
|
1798 |
+
"You and <span class=\"course-students-number\">%1$s</span> students enrolled"
|
1799 |
+
msgstr[0] ""
|
1800 |
+
msgstr[1] ""
|
1801 |
|
1802 |
+
#: inc/course/abstract-course.php:499
|
1803 |
#, php-format
|
1804 |
+
msgctxt "students-html"
|
1805 |
+
msgid "One student enrolled"
|
1806 |
+
msgid_plural ""
|
1807 |
+
"<span class=\"course-students-number\">%1$s</span> students enrolled"
|
1808 |
+
msgstr[0] ""
|
1809 |
+
msgstr[1] ""
|
1810 |
|
1811 |
+
#: inc/course/abstract-course.php:502
|
1812 |
+
msgid "No student enrolled"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: inc/course/abstract-course.php:673
|
1816 |
+
#: inc/custom-post-types/course.php:1374
|
1817 |
+
#: inc/admin/lp-admin-functions.php:1035
|
1818 |
+
#: inc/admin/lp-admin-functions.php:2118
|
1819 |
+
#: inc/admin/views/statistics/courses.php:46
|
1820 |
+
#: inc/admin/views/statistics/general.php:63
|
1821 |
+
msgid "Free"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: inc/course/abstract-course.php:754
|
1825 |
+
#: inc/course/abstract-course.php:773
|
1826 |
+
#: inc/quiz/class-lp-quiz.php:552
|
1827 |
+
#: inc/lesson/class-lp-lesson.php:104
|
1828 |
#, php-format
|
1829 |
+
msgid "The function %s doesn't exist"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: inc/course/abstract-course.php:1586
|
1833 |
#, php-format
|
1834 |
+
msgid "This course will end within next %s"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: inc/course/abstract-course.php:1662
|
1838 |
+
msgctxt "Text of Buy this course with external link"
|
1839 |
+
msgid "Buy this course"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: inc/course/abstract-course.php:1713
|
1843 |
+
msgid "Tags: "
|
|
|
|
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: inc/custom-post-types/order.php:473
|
1847 |
+
msgid "Order number, user name, user email, course name etc..."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: inc/custom-post-types/order.php:634
|
1851 |
+
msgid "Processing..."
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: inc/custom-post-types/order.php:651
|
1855 |
+
#: inc/custom-post-types/order.php:654
|
1856 |
+
msgid "Apply"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: inc/custom-post-types/order.php:692
|
1860 |
+
#: inc/custom-post-types/order.php:909
|
1861 |
+
msgid "View Order"
|
|
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: inc/custom-post-types/order.php:700
|
1865 |
+
msgid "View child orders"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: inc/custom-post-types/order.php:768
|
1869 |
+
#: inc/custom-post-types/order.php:905
|
1870 |
+
#: templates/profile/tabs/orders/list.php:32
|
1871 |
+
msgid "Order"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: inc/custom-post-types/order.php:769
|
1875 |
+
msgid "Student"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: inc/custom-post-types/order.php:771
|
1879 |
+
#: templates/checkout/order-received.php:62
|
1880 |
+
#: templates/profile/tabs/quizzes.php:39
|
1881 |
+
#: templates/profile/tabs/courses.php:33
|
1882 |
+
#: inc/admin/views/statistics/orders.php:46
|
1883 |
+
#: templates/profile/tabs/courses/purchased.php:39
|
1884 |
+
#: templates/profile/tabs/orders/list.php:33
|
1885 |
+
#: inc/admin/views/meta-boxes/order/details.php:38
|
1886 |
+
msgid "Date"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: inc/custom-post-types/order.php:772
|
1890 |
+
#: templates/order/order-details.php:29
|
1891 |
+
#: templates/order/order-details.php:85
|
1892 |
+
#: templates/emails/order-items-table.php:96
|
1893 |
+
#: templates/checkout/review-order.php:33
|
1894 |
+
#: templates/checkout/review-order.php:162
|
1895 |
+
#: templates/checkout/order-received.php:68
|
1896 |
+
#: templates/emails/plain/order-items-table.php:60
|
1897 |
+
#: templates/profile/tabs/orders/list.php:35
|
1898 |
+
#: inc/admin/views/meta-boxes/order/details.php:158
|
1899 |
+
msgid "Total"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: inc/custom-post-types/order.php:837
|
1903 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:455
|
1904 |
+
#, php-format
|
1905 |
+
msgid "%s ago"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: inc/custom-post-types/order.php:851
|
1909 |
+
#: templates/checkout/order-received.php:43
|
1910 |
+
msgid "Course does not exist"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: inc/custom-post-types/order.php:853
|
1914 |
+
msgid "Deleted"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: inc/custom-post-types/order.php:868
|
1918 |
+
#: templates/checkout/order-received.php:57
|
1919 |
+
msgid "(No item)"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: inc/custom-post-types/order.php:876
|
1923 |
+
#, php-format
|
1924 |
+
msgid "Pay via <strong>%s</strong>"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: inc/custom-post-types/order.php:906
|
1928 |
+
msgid "Add New Order"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: inc/custom-post-types/order.php:907
|
1932 |
+
#: inc/custom-post-types/order.php:990
|
1933 |
+
#: templates/order/order-details.php:23
|
1934 |
+
msgid "Order Details"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: inc/custom-post-types/order.php:910
|
1938 |
+
#: inc/custom-post-types/question.php:191
|
1939 |
+
#: inc/custom-post-types/lesson.php:188
|
1940 |
+
#: inc/custom-post-types/course.php:137
|
1941 |
+
msgid "Add New"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: inc/custom-post-types/order.php:911
|
1945 |
+
msgid "Update Order"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: inc/custom-post-types/order.php:912
|
1949 |
+
msgid "Search Orders"
|
|
|
|
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: inc/custom-post-types/order.php:913
|
1953 |
+
msgid "No order found"
|
|
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: inc/custom-post-types/order.php:914
|
1957 |
+
msgid "No order found in Trash"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: inc/custom-post-types/order.php:991
|
1961 |
+
msgid "Order Actions"
|
|
|
|
|
|
|
|
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: inc/custom-post-types/question.php:64
|
1965 |
+
#: inc/custom-post-types/lesson.php:98
|
1966 |
+
#: inc/custom-post-types/quiz.php:64
|
1967 |
+
#, php-format
|
1968 |
+
msgid "Unassigned %s"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: inc/custom-post-types/question.php:148
|
1972 |
+
#: inc/custom-post-types/quiz.php:180
|
1973 |
+
#: inc/question/class-lp-question.php:594
|
1974 |
+
msgid "New Option"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: inc/custom-post-types/question.php:163
|
1978 |
+
#: inc/updates/_update-from-0.9.php:1216
|
1979 |
+
msgid "Question Tag"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: inc/custom-post-types/question.php:164
|
1983 |
+
#: inc/custom-post-types/question.php:165
|
1984 |
+
#: inc/custom-post-types/course.php:211
|
1985 |
+
#: inc/updates/_update-from-0.9.php:1194
|
1986 |
+
#: inc/updates/_update-from-0.9.php:1195
|
1987 |
+
#: inc/updates/_update-from-0.9.php:1196
|
1988 |
+
#: inc/updates/_update-from-0.9.php:1217
|
1989 |
+
#: inc/updates/_update-from-0.9.php:1218
|
1990 |
+
msgid "Tag"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: inc/custom-post-types/question.php:166
|
1994 |
+
#: inc/updates/_update-from-0.9.php:1197
|
1995 |
+
#: inc/updates/_update-from-0.9.php:1219
|
1996 |
+
msgid "Add New Tag"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: inc/custom-post-types/question.php:167
|
2000 |
+
#: inc/updates/_update-from-0.9.php:1198
|
2001 |
+
#: inc/updates/_update-from-0.9.php:1220
|
2002 |
+
msgid "All Tags"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: inc/custom-post-types/question.php:185
|
2006 |
+
#: inc/custom-post-types/question.php:186
|
2007 |
+
msgid "Question Bank"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: inc/custom-post-types/question.php:187
|
2011 |
+
#: inc/custom-post-types/quiz.php:183
|
2012 |
+
#: templates/content-quiz/progress.php:43
|
2013 |
+
msgid "Question"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: inc/custom-post-types/question.php:188
|
2017 |
+
#: inc/custom-post-types/quiz.php:184
|
2018 |
+
#: inc/custom-post-types/quiz.php:380
|
2019 |
+
#: templates/content-quiz/intro.php:36
|
2020 |
+
#: inc/admin/views/quiz/editor.php:16
|
2021 |
+
#: inc/admin/views/quiz/modal-choose-items.php:55
|
2022 |
+
msgid "Questions"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: inc/custom-post-types/question.php:189
|
2026 |
+
msgid "View Question"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: inc/custom-post-types/question.php:190
|
2030 |
+
msgid "Add New Question"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: inc/custom-post-types/question.php:192
|
2034 |
+
msgid "Edit Question"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: inc/custom-post-types/question.php:193
|
2038 |
+
msgid "Update Question"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: inc/custom-post-types/question.php:194
|
2042 |
+
msgid "Search Questions"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: inc/custom-post-types/question.php:195
|
2046 |
+
msgid "No questions found"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: inc/custom-post-types/question.php:196
|
2050 |
+
msgid "No questions found in trash"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: inc/custom-post-types/question.php:298
|
2054 |
+
#: inc/admin/views/quiz/question-meta.php:31
|
2055 |
+
msgid "Mark for this question"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: inc/custom-post-types/question.php:302
|
2059 |
+
#: inc/admin/views/quiz/question-meta.php:37
|
2060 |
+
msgid "Mark for choosing the right answer."
|
|
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: inc/custom-post-types/question.php:307
|
2064 |
+
#: inc/admin/views/quiz/question-meta.php:43
|
2065 |
+
msgid "Question Explanation"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: inc/custom-post-types/question.php:310
|
2069 |
+
#: inc/admin/views/quiz/question-meta.php:51
|
2070 |
+
msgid ""
|
2071 |
+
"Explain why an option is true and other is false. The text will be shown "
|
2072 |
+
"when user click on 'Check answer' button."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: inc/custom-post-types/question.php:314
|
2076 |
+
#: inc/admin/views/quiz/question-meta.php:57
|
2077 |
+
msgid "Question Hint"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: inc/custom-post-types/question.php:317
|
2081 |
+
#: inc/admin/views/quiz/question-meta.php:64
|
2082 |
+
msgid ""
|
2083 |
+
"Instruction for user to select the right answer. The text will be shown when "
|
2084 |
+
"users click the 'Hint' button."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: inc/custom-post-types/question.php:336
|
2088 |
+
#: inc/custom-post-types/lesson.php:310
|
2089 |
+
#: inc/custom-post-types/course.php:939
|
2090 |
+
#: inc/custom-post-types/course.php:951
|
2091 |
+
#: inc/custom-post-types/course.php:1294
|
2092 |
+
#: inc/custom-post-types/course.php:1301
|
2093 |
+
#: inc/custom-post-types/quiz.php:378
|
2094 |
+
msgid "Author"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: inc/custom-post-types/question.php:338
|
2098 |
+
#: inc/admin/views/settings/payments.php:24
|
2099 |
+
#: inc/admin/views/quiz/editor.php:30
|
2100 |
+
msgid "Type"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: inc/custom-post-types/question.php:374
|
2104 |
+
#: inc/custom-post-types/abstract.php:580
|
2105 |
+
#: inc/admin/class-lp-install-sample-data.php:132
|
2106 |
+
#: inc/attributes/course.php:232
|
2107 |
+
#: templates/content-lesson/no-content.php:22
|
2108 |
+
msgid "Edit"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: inc/custom-post-types/question.php:379
|
2112 |
+
#: inc/custom-post-types/abstract.php:595
|
2113 |
+
#: inc/admin/views/meta-boxes/course/assigned.php:27
|
2114 |
+
#: inc/admin/views/meta-boxes/quiz/assigned.php:49
|
2115 |
+
msgid "Not assigned yet"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: inc/custom-post-types/question.php:529
|
2119 |
+
#: inc/custom-post-types/lesson.php:471
|
2120 |
+
#: inc/custom-post-types/quiz.php:617
|
2121 |
+
msgid "Assigned"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: inc/custom-post-types/abstract.php:144
|
2125 |
+
#: inc/custom-post-types/abstract.php:160
|
2126 |
+
msgid "Search by user"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: inc/custom-post-types/abstract.php:211
|
2130 |
+
msgid ""
|
2131 |
+
"This item has already assigned to course. It will be removed from course if "
|
2132 |
+
"it is not published."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: inc/custom-post-types/abstract.php:222
|
2136 |
+
msgid ""
|
2137 |
+
"This question has already assigned to quiz. It will be removed from quiz if "
|
2138 |
+
"it is not published."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: inc/custom-post-types/abstract.php:556
|
2142 |
+
#: inc/custom-post-types/quiz.php:379
|
2143 |
+
#: inc/admin/lp-admin-functions.php:44
|
2144 |
+
#: templates/order/order-details.php:28
|
2145 |
+
#: templates/emails/order-items-table.php:66
|
2146 |
+
#: templates/checkout/review-order.php:32
|
2147 |
+
#: inc/admin/sub-menus/class-lp-submenu-tools.php:22
|
2148 |
+
#: templates/profile/tabs/quizzes.php:37
|
2149 |
+
#: templates/profile/tabs/courses.php:32
|
2150 |
+
#: inc/admin/meta-box/fields/course-permalink.php:47
|
2151 |
+
#: inc/admin/views/statistics/orders.php:47
|
2152 |
+
#: templates/profile/tabs/courses/purchased.php:38
|
2153 |
+
#: inc/admin/views/settings/fields/course-permalink.php:31
|
2154 |
+
msgid "Course"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: inc/custom-post-types/abstract.php:562
|
2158 |
#, php-format
|
2159 |
+
msgid "Course (%d %s)"
|
2160 |
+
msgid_plural "Course (%d %s)"
|
2161 |
+
msgstr[0] ""
|
2162 |
+
msgstr[1] ""
|
2163 |
|
2164 |
+
#: inc/custom-post-types/abstract.php:589
|
2165 |
+
msgid "Remove Filter"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: inc/custom-post-types/abstract.php:754
|
2169 |
+
#: inc/custom-post-types/abstract.php:757
|
2170 |
+
msgid "updated."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: inc/custom-post-types/abstract.php:755
|
2174 |
+
msgid "Custom field updated."
|
|
|
|
|
|
|
|
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: inc/custom-post-types/abstract.php:756
|
2178 |
+
msgid "Custom field deleted."
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: inc/custom-post-types/abstract.php:759
|
2182 |
#, php-format
|
2183 |
+
msgid "Lesson restored to revision from %s"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: inc/custom-post-types/abstract.php:760
|
2187 |
+
msgid "published."
|
|
|
|
|
|
|
|
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: inc/custom-post-types/abstract.php:761
|
2191 |
+
msgid "saved."
|
|
|
|
|
|
|
|
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: inc/custom-post-types/abstract.php:762
|
2195 |
+
msgid "submitted."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: inc/custom-post-types/abstract.php:764
|
2199 |
+
#, php-format
|
2200 |
+
msgid "scheduled for: <strong>%1$s</strong>."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: inc/custom-post-types/abstract.php:766
|
2204 |
+
msgid "M j, Y @ G:i"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: inc/custom-post-types/abstract.php:768
|
2208 |
+
msgid "draft updated."
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: inc/custom-post-types/lesson.php:114
|
2212 |
#, php-format
|
2213 |
+
msgid "Preview %s"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: inc/custom-post-types/lesson.php:131
|
2217 |
+
#, php-format
|
2218 |
+
msgid "No Preview %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: inc/custom-post-types/lesson.php:182
|
2222 |
+
#: inc/custom-post-types/lesson.php:183
|
2223 |
+
#: inc/custom-post-types/lesson.php:186
|
2224 |
+
#: templates/widgets/course-info/default.php:29
|
2225 |
+
msgid "Lessons"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: inc/custom-post-types/lesson.php:185
|
2229 |
+
msgid "Add New Lesson"
|
|
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: inc/custom-post-types/lesson.php:187
|
2233 |
+
msgid "View Lesson"
|
|
|
|
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: inc/custom-post-types/lesson.php:189
|
2237 |
+
msgid "Edit Lesson"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: inc/custom-post-types/lesson.php:190
|
2241 |
+
msgid "Update Lesson"
|
|
|
|
|
|
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: inc/custom-post-types/lesson.php:191
|
2245 |
+
msgid "Search Lessons"
|
|
|
|
|
|
|
|
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: inc/custom-post-types/lesson.php:192
|
2249 |
+
msgid "No lesson found"
|
|
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: inc/custom-post-types/lesson.php:193
|
2253 |
+
msgid "No lesson found in Trash"
|
|
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: inc/custom-post-types/lesson.php:227
|
2257 |
+
msgid "Lesson Settings"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: inc/custom-post-types/lesson.php:231
|
2261 |
+
msgid "Lesson Duration"
|
|
|
|
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: inc/custom-post-types/lesson.php:235
|
2265 |
+
msgid "Duration of the lesson. Set 0 to disable."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: inc/custom-post-types/lesson.php:239
|
2269 |
+
msgid "Preview Lesson"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: inc/custom-post-types/lesson.php:242
|
2273 |
+
msgid ""
|
2274 |
+
"If this is a preview lesson, then student can view this lesson content "
|
2275 |
+
"without taking the course."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: inc/custom-post-types/lesson.php:315
|
2279 |
+
msgid "Format"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: inc/custom-post-types/lesson.php:316
|
2283 |
+
#: inc/custom-post-types/course.php:584
|
2284 |
+
#: inc/custom-post-types/quiz.php:263
|
2285 |
+
#: inc/custom-post-types/quiz.php:381
|
2286 |
+
#: templates/content-quiz/intro.php:28
|
2287 |
+
msgid "Duration"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: inc/custom-post-types/lesson.php:359
|
2291 |
+
msgid "Standard"
|
|
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: inc/custom-post-types/lesson.php:429
|
2295 |
+
msgid "Please enter the title of the lesson"
|
|
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: inc/custom-post-types/course.php:100
|
2299 |
+
msgid "Create a new"
|
|
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: inc/custom-post-types/course.php:101
|
2303 |
+
#: inc/custom-post-types/quiz.php:178
|
2304 |
+
#: templates/checkout/payment.php:132
|
2305 |
+
#: templates/checkout/form.php:89
|
2306 |
+
#: inc/admin/views/setup/content.php:75
|
2307 |
+
#: inc/admin/views/updates/update-screen.php:46
|
2308 |
+
msgid "Back"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: inc/custom-post-types/course.php:102
|
2312 |
+
#: inc/custom-post-types/quiz.php:179
|
2313 |
+
#: inc/admin/views/course/modal-choose-items.php:57
|
2314 |
+
#: inc/admin/views/quiz/modal-choose-items.php:52
|
2315 |
+
msgid "Selected items"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: inc/custom-post-types/course.php:103
|
2319 |
+
msgid "Do you want to remove item \"{{ITEM_NAME}}\" to trash?"
|
|
|
|
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: inc/custom-post-types/course.php:105
|
2323 |
+
#: templates/checkout/order-received.php:35
|
2324 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:436
|
2325 |
+
#: inc/admin/views/meta-boxes/order/details.php:125
|
2326 |
+
msgid "Item"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: inc/custom-post-types/course.php:106
|
2330 |
+
msgid "Items"
|
|
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: inc/custom-post-types/course.php:108
|
2334 |
+
msgid "Course sale price must less than the regular price"
|
|
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: inc/custom-post-types/course.php:109
|
2338 |
+
msgid "Course price must greater than the sale price"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: inc/custom-post-types/course.php:110
|
2342 |
+
msgid "Sale start date must before sale end date"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: inc/custom-post-types/course.php:111
|
2346 |
+
msgid "Sale end date must before sale start date"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: inc/custom-post-types/course.php:112
|
2350 |
+
msgid "Invalid date"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: inc/custom-post-types/course.php:130
|
2354 |
+
msgctxt "Post Type General Name"
|
2355 |
+
msgid "Courses"
|
|
|
|
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: inc/custom-post-types/course.php:131
|
2359 |
+
msgctxt "Post Type Singular Name"
|
2360 |
+
msgid "Course"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: inc/custom-post-types/course.php:132
|
2364 |
+
#: inc/custom-post-types/course.php:134
|
2365 |
+
#: inc/admin/lp-admin-actions.php:206
|
2366 |
+
#: inc/admin/class-lp-admin.php:277
|
2367 |
+
#: inc/user/class-lp-profile.php:299
|
2368 |
+
#: inc/admin/settings/class-lp-settings-profile.php:149
|
2369 |
+
#: inc/admin/settings/class-lp-settings-profile.php:274
|
2370 |
+
#: inc/admin/settings/class-lp-settings-courses.php:12
|
2371 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:21
|
2372 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:28
|
2373 |
+
#: inc/admin/views/tools/course/html-user.php:30
|
2374 |
+
#: inc/admin/views/setup/steps/pages.php:22
|
2375 |
+
msgid "Courses"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: inc/custom-post-types/course.php:133
|
2379 |
+
msgid "Parent Item:"
|
|
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: inc/custom-post-types/course.php:135
|
2383 |
+
msgid "View Course"
|
|
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: inc/custom-post-types/course.php:136
|
2387 |
+
msgid "Add New Course"
|
|
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: inc/custom-post-types/course.php:138
|
2391 |
+
msgid "Edit Course"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: inc/custom-post-types/course.php:139
|
2395 |
+
msgid "Update Course"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: inc/custom-post-types/course.php:140
|
2399 |
+
msgid "Search Courses"
|
|
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: inc/custom-post-types/course.php:141
|
2403 |
+
#, php-format
|
2404 |
+
msgid ""
|
2405 |
+
"You haven't had any courses yet. Click <a href=\"%s\">Add new</a> to start"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: inc/custom-post-types/course.php:142
|
2409 |
+
msgid "No course found in Trash"
|
|
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: inc/custom-post-types/course.php:145
|
2413 |
+
#: inc/admin/settings/class-lp-settings-courses.php:24
|
2414 |
+
msgctxt "slug"
|
2415 |
+
msgid "courses"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: inc/custom-post-types/course.php:182
|
2419 |
+
#: inc/custom-post-types/course.php:184
|
2420 |
+
msgid "Course Categories"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: inc/custom-post-types/course.php:185
|
2424 |
+
#: inc/custom-post-types/course.php:186
|
2425 |
+
msgid "Category"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: inc/custom-post-types/course.php:187
|
2429 |
+
msgid "Add New Course Category"
|
|
|
|
|
|
|
|
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: inc/custom-post-types/course.php:188
|
2433 |
+
msgid "All Categories"
|
|
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: inc/custom-post-types/course.php:199
|
2437 |
+
msgctxt "slug"
|
2438 |
+
msgid "course-category"
|
|
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: inc/custom-post-types/course.php:210
|
2442 |
+
msgid "Course Tags"
|
|
|
|
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: inc/custom-post-types/course.php:212
|
2446 |
+
msgid "Search Course Tags"
|
|
|
|
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: inc/custom-post-types/course.php:213
|
2450 |
+
msgid "Popular Course Tags"
|
|
|
|
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: inc/custom-post-types/course.php:214
|
2454 |
+
msgid "All Course Tags"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: inc/custom-post-types/course.php:217
|
2458 |
+
msgid "Edit Course Tag"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: inc/custom-post-types/course.php:218
|
2462 |
+
msgid "Update Course Tag"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: inc/custom-post-types/course.php:219
|
2466 |
+
msgid "Add New Course Tag"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: inc/custom-post-types/course.php:220
|
2470 |
+
msgid "New Course Tag Name"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: inc/custom-post-types/course.php:221
|
2474 |
+
msgid "Separate tags with commas"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: inc/custom-post-types/course.php:222
|
2478 |
+
msgid "Add or remove tags"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: inc/custom-post-types/course.php:223
|
2482 |
+
msgid "Choose from the most used tags"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: inc/custom-post-types/course.php:224
|
2486 |
+
#: inc/admin/lp-admin-actions.php:217
|
2487 |
+
msgid "Tags"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: inc/custom-post-types/course.php:233
|
2491 |
+
msgctxt "slug"
|
2492 |
+
msgid "course-tag"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: inc/custom-post-types/course.php:375
|
2496 |
+
msgid "Sorry! You can not update a course while it is being viewed!"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: inc/custom-post-types/course.php:562
|
2500 |
+
msgid "Course Settings"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: inc/custom-post-types/course.php:578
|
2504 |
+
#: inc/user/class-lp-profile.php:330
|
2505 |
+
#: inc/admin/settings/class-lp-settings-profile.php:54
|
2506 |
+
#: inc/admin/settings/class-lp-settings-payments.php:55
|
2507 |
+
#: inc/admin/settings/class-lp-settings-general.php:16
|
2508 |
+
#: inc/admin/settings/class-lp-settings-general.php:40
|
2509 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:36
|
2510 |
+
#: inc/admin/settings/class-lp-settings-courses.php:66
|
2511 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:26
|
2512 |
+
msgid "General"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: inc/custom-post-types/course.php:587
|
2516 |
+
msgid "The duration of the course."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: inc/custom-post-types/course.php:591
|
2520 |
+
msgid "Maximum Students"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: inc/custom-post-types/course.php:594
|
2524 |
+
msgid "Maximum number of students who can enroll in this course."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: inc/custom-post-types/course.php:598
|
2528 |
+
msgid "Students Enrolled"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: inc/custom-post-types/course.php:601
|
2532 |
+
msgid "How many students have taken this course."
|
|
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: inc/custom-post-types/course.php:605
|
2536 |
+
msgid "Re-take Course"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: inc/custom-post-types/course.php:609
|
2540 |
+
msgid ""
|
2541 |
+
"How many times the user can re-take this course. Set to 0 to disable re-"
|
2542 |
+
"taking"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: inc/custom-post-types/course.php:613
|
2546 |
+
msgid "Featured"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: inc/custom-post-types/course.php:616
|
2550 |
+
msgid "Set course as featured."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: inc/custom-post-types/course.php:620
|
2554 |
+
msgid "Block Lessons"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: inc/custom-post-types/course.php:623
|
2558 |
+
msgid "Block lessons content when completed course."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: inc/custom-post-types/course.php:627
|
2562 |
+
msgid "External Link"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: inc/custom-post-types/course.php:630
|
2566 |
+
msgid "Redirect to this url when you press button buy this course."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: inc/custom-post-types/course.php:634
|
2570 |
+
msgid "Show item links"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: inc/custom-post-types/course.php:637
|
2574 |
+
msgid "Enable link of course items in case user can not view content of them."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: inc/custom-post-types/course.php:665
|
2578 |
+
msgid "The method to assess the result of a student for a course."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: inc/custom-post-types/course.php:668
|
2582 |
+
msgid ""
|
2583 |
+
"<br /><strong>Note! </strong>No final quiz in course, please add a final quiz"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: inc/custom-post-types/course.php:685
|
2587 |
+
msgid ""
|
2588 |
+
"This is conditional \"passing grade\" of Final quiz will apply for result of "
|
2589 |
+
"this course. When you change it here, the \"passing grade\" also change with "
|
2590 |
+
"new value for the Final quiz."
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: inc/custom-post-types/course.php:691
|
2594 |
+
msgid ""
|
2595 |
+
"<p>Evaluate by number of lessons completed per number of total lessons.</p>"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: inc/custom-post-types/course.php:692
|
2599 |
+
msgid ""
|
2600 |
+
"E.g: Course has 10 lessons and user completed 5 lessons then the result = "
|
2601 |
+
"5/10 = 50.%"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: inc/custom-post-types/course.php:693
|
2605 |
+
msgid ""
|
2606 |
+
"Evaluate by results of final quiz in course. You have to add a quiz into end "
|
2607 |
+
"of course."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: inc/custom-post-types/course.php:694
|
2611 |
+
msgid ""
|
2612 |
+
"Evaluate by achieved points of completed quizzes per total point of all "
|
2613 |
+
"quizzes."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: inc/custom-post-types/course.php:695
|
2617 |
+
msgid ""
|
2618 |
+
"Evaluate by achieved points of quizzes passed per total point of all quizzes."
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: inc/custom-post-types/course.php:696
|
2622 |
+
msgid ""
|
2623 |
+
"<p>Evaluate by number of quizzes completed per number of total quizzes.</p>"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: inc/custom-post-types/course.php:697
|
2627 |
+
msgid ""
|
2628 |
+
"<p>E.g: Course has 10 quizzes and user completed 5 quizzes then the result = "
|
2629 |
+
"5/10 = 50%.</p>"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: inc/custom-post-types/course.php:704
|
2633 |
+
msgid "Assessment"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: inc/custom-post-types/course.php:710
|
2637 |
+
msgid "Course result"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: inc/custom-post-types/course.php:715
|
2641 |
+
msgid "Evaluate via lessons"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: inc/custom-post-types/course.php:717
|
2645 |
+
msgid "Evaluate via results of the final quiz"
|
|
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: inc/custom-post-types/course.php:720
|
2649 |
+
msgid "Evaluate via results of quizzes"
|
|
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: inc/custom-post-types/course.php:722
|
2653 |
+
msgid "Evaluate via results of quizzes passed"
|
|
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: inc/custom-post-types/course.php:724
|
2657 |
+
msgid "Evaluate via quizzes"
|
|
|
|
|
|
|
|
|
|
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: inc/custom-post-types/course.php:731
|
2661 |
+
msgid "Passing condition value"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: inc/custom-post-types/course.php:736
|
2665 |
+
msgid ""
|
2666 |
+
"The percentage of quiz result or completed lessons to finish the course."
|
|
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: inc/custom-post-types/course.php:767
|
2670 |
+
msgid "Pricing"
|
|
|
|
|
|
|
|
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: inc/custom-post-types/course.php:799
|
2674 |
+
#, php-format
|
2675 |
+
msgid ""
|
2676 |
+
"This course requires enrollment and the suggested price is <strong>"
|
2677 |
+
"%s</strong>"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: inc/custom-post-types/course.php:807
|
2681 |
+
msgid "This course is free."
|
|
|
|
|
|
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: inc/custom-post-types/course.php:814
|
2685 |
+
#, php-format
|
2686 |
+
msgid "Course price in <strong>%s</strong> currency."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: inc/custom-post-types/course.php:828
|
2690 |
+
#: inc/custom-post-types/course.php:1297
|
2691 |
+
#: inc/custom-post-types/course.php:1304
|
2692 |
+
#: templates/emails/order-items-table.php:68
|
2693 |
+
msgid "Price"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: inc/custom-post-types/course.php:838
|
2697 |
+
msgid "Sale Price"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: inc/custom-post-types/course.php:845
|
2701 |
#, php-format
|
2702 |
+
msgid "Course sale price in <strong>%s</strong> currency."
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: inc/custom-post-types/course.php:846
|
2706 |
+
msgid "Leave blank to remove sale price."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: inc/custom-post-types/course.php:848
|
2710 |
+
msgid "Schedule"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: inc/custom-post-types/course.php:853
|
2714 |
+
msgid "Sale start date"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: inc/custom-post-types/course.php:861
|
2718 |
+
msgid "Sale end date"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: inc/custom-post-types/course.php:873
|
2722 |
+
msgid "Price set by Admin"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: inc/custom-post-types/course.php:877
|
2726 |
+
msgid "Not set"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: inc/custom-post-types/course.php:880
|
2730 |
+
msgid "Course Suggestion Price"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: inc/custom-post-types/course.php:885
|
2734 |
+
msgid "The course price you want to suggest for admin to set."
|
|
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: inc/custom-post-types/course.php:896
|
2738 |
+
#: inc/custom-post-types/course.php:1377
|
2739 |
+
msgid "No requirement enroll"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: inc/custom-post-types/course.php:899
|
2743 |
+
msgid "Require users logged in to study or public to all."
|
|
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: inc/custom-post-types/course.php:971
|
2747 |
+
msgid "Review Logs"
|
|
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: inc/custom-post-types/course.php:1020
|
2751 |
+
msgid "Course Video"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: inc/custom-post-types/course.php:1025
|
2755 |
+
msgid "Video ID"
|
|
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: inc/custom-post-types/course.php:1028
|
2759 |
+
msgid "The ID of Youtube or Vimeo video"
|
|
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: inc/custom-post-types/course.php:1032
|
2763 |
+
msgid "Video Type"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: inc/custom-post-types/course.php:1035
|
2767 |
+
msgid "Chose video type"
|
|
|
|
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: inc/custom-post-types/course.php:1038
|
2771 |
+
msgid "Youtube"
|
|
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: inc/custom-post-types/course.php:1039
|
2775 |
+
msgid "Vimeo"
|
|
|
|
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: inc/custom-post-types/course.php:1043
|
2779 |
+
msgid "Embed width"
|
|
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: inc/custom-post-types/course.php:1046
|
2783 |
+
msgid "Set width of embed"
|
|
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: inc/custom-post-types/course.php:1050
|
2787 |
+
msgid "Embed height"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: inc/custom-post-types/course.php:1053
|
2791 |
+
msgid "Set height of embed"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: inc/custom-post-types/course.php:1175
|
2795 |
+
msgid "Course has been approved by Reviewer"
|
|
|
|
|
|
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: inc/custom-post-types/course.php:1180
|
2799 |
+
msgid "Course has been rejected by Reviewer"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: inc/custom-post-types/course.php:1185
|
2803 |
+
#, php-format
|
2804 |
+
msgid "Course has been submitted by %s"
|
|
|
|
|
|
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: inc/custom-post-types/course.php:1190
|
2808 |
+
msgid "Course has been updated by Reviewer"
|
|
|
|
|
|
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: inc/custom-post-types/course.php:1295
|
2812 |
+
#: inc/custom-post-types/course.php:1302
|
2813 |
+
msgid "Content"
|
|
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: inc/custom-post-types/course.php:1296
|
2817 |
+
#: inc/custom-post-types/course.php:1303
|
2818 |
+
#: inc/admin/lp-admin-functions.php:860
|
2819 |
+
#: inc/admin/views/statistics/courses.php:8
|
2820 |
+
#: inc/admin/views/statistics/users.php:8
|
2821 |
+
#: inc/admin/views/statistics/users.php:47
|
2822 |
+
#: inc/admin/views/statistics/general.php:8
|
2823 |
+
#: inc/admin/views/statistics/orders.php:8
|
2824 |
+
#: inc/admin/views/tools/course/html-course.php:30
|
2825 |
+
msgid "Students"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: inc/custom-post-types/course.php:1307
|
2829 |
+
#: inc/admin/lp-admin-actions.php:212
|
2830 |
+
msgid "Categories"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: inc/custom-post-types/course.php:1335
|
2834 |
+
#, php-format
|
2835 |
+
msgid "<strong>%d</strong> section"
|
2836 |
+
msgid_plural "<strong>%d</strong> sections"
|
2837 |
+
msgstr[0] ""
|
2838 |
+
msgstr[1] ""
|
2839 |
+
|
2840 |
+
#: inc/custom-post-types/course.php:1357
|
2841 |
+
msgid "No content"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: inc/custom-post-types/quiz.php:90
|
2845 |
+
#: inc/custom-post-types/quiz.php:91
|
2846 |
+
#: inc/custom-post-types/quiz.php:95
|
2847 |
+
#: inc/user/class-lp-profile.php:306
|
2848 |
+
#: inc/admin/settings/class-lp-settings-profile.php:157
|
2849 |
+
#: inc/admin/settings/class-lp-settings-profile.php:291
|
2850 |
+
#: templates/widgets/course-info/default.php:34
|
2851 |
+
msgid "Quizzes"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: inc/custom-post-types/quiz.php:93
|
2855 |
+
msgid "Add New Quiz"
|
|
|
|
|
|
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: inc/custom-post-types/quiz.php:94
|
2859 |
+
msgid "Edit Quiz"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: inc/custom-post-types/quiz.php:96
|
2863 |
+
msgid "View Quiz"
|
|
|
|
|
|
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: inc/custom-post-types/quiz.php:97
|
2867 |
+
#: inc/curds/class-lp-quiz-curd.php:85
|
2868 |
+
#: inc/admin/editor/class-lp-admin-editor-quiz.php:147
|
2869 |
+
msgid "New Quiz"
|
|
|
|
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: inc/custom-post-types/quiz.php:98
|
2873 |
+
msgid "Update Quiz"
|
|
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: inc/custom-post-types/quiz.php:99
|
2877 |
+
msgid "Search Quizzes"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: inc/custom-post-types/quiz.php:100
|
2881 |
+
#, php-format
|
2882 |
+
msgid ""
|
2883 |
+
"You haven't had any quizzes yet. Click <a href=\"%s\">Add new</a> to start"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: inc/custom-post-types/quiz.php:101
|
2887 |
+
msgid "No quiz found in Trash"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: inc/custom-post-types/quiz.php:176
|
2891 |
+
msgid "Option"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: inc/custom-post-types/quiz.php:181
|
2895 |
+
msgid "Do you want to move question \"{{QUESTION_NAME}}\" to trash?"
|
|
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: inc/custom-post-types/quiz.php:226
|
2899 |
+
msgid "General Settings"
|
|
|
|
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: inc/custom-post-types/quiz.php:232
|
2903 |
+
msgid "Pagination Questions"
|
|
|
|
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: inc/custom-post-types/quiz.php:233
|
2907 |
+
msgid ""
|
2908 |
+
"Show list of questions while doing quiz as ordered numbers (1, 2, 3, etc)."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: inc/custom-post-types/quiz.php:239
|
2912 |
+
msgid "Review Questions"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: inc/custom-post-types/quiz.php:242
|
2916 |
+
msgid "Allow re-viewing questions after completing quiz."
|
|
|
|
|
|
|
|
|
|
|
|
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: inc/custom-post-types/quiz.php:246
|
2920 |
+
msgid "Show Correct Answer"
|
|
|
|
|
|
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: inc/custom-post-types/quiz.php:249
|
2924 |
+
msgid "Show correct answer when reviewing questions."
|
|
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: inc/custom-post-types/quiz.php:264
|
2928 |
+
msgid "Duration of the quiz. Set 0 to disable."
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: inc/custom-post-types/quiz.php:279
|
2932 |
+
msgid "Minus Points"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: inc/custom-post-types/quiz.php:282
|
2936 |
+
msgid "How many points minus for each wrong question in quiz."
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: inc/custom-post-types/quiz.php:288
|
2940 |
+
msgid "Minus For Skip"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: inc/custom-post-types/quiz.php:291
|
2944 |
+
msgid "Minus points for skip questions."
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: inc/custom-post-types/quiz.php:305
|
2948 |
+
msgid "Passing Grade (<span>%</span>)"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: inc/custom-post-types/quiz.php:306
|
2952 |
+
msgid "Requires user reached this point to pass the quiz."
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: inc/custom-post-types/quiz.php:315
|
2956 |
+
msgid "Re-take"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: inc/custom-post-types/quiz.php:318
|
2960 |
+
msgid ""
|
2961 |
+
"How many times the user can re-take this quiz. Set to 0 to disable re-taking."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: inc/custom-post-types/quiz.php:323
|
2965 |
+
msgid "Archive History"
|
|
|
|
|
|
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: inc/custom-post-types/quiz.php:326
|
2969 |
+
msgid "Archive quiz results for each time."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: inc/custom-post-types/quiz.php:340
|
2973 |
+
msgid "Show Check Answer"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: inc/custom-post-types/quiz.php:343
|
2977 |
msgid ""
|
2978 |
+
"Show button to check answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
|
2979 |
+
"N = Number of check )."
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: inc/custom-post-types/quiz.php:349
|
2983 |
+
msgid "Show Hint"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: inc/custom-post-types/quiz.php:352
|
2987 |
+
msgid ""
|
2988 |
+
"Show button to hint answer while doing quiz ( 0 = Disabled, -1 = Unlimited, "
|
2989 |
+
"N = Number of check )."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: inc/custom-post-types/quiz.php:419
|
2993 |
+
#, php-format
|
2994 |
+
msgid "%d question"
|
2995 |
+
msgid_plural "%d questions"
|
2996 |
+
msgstr[0] ""
|
2997 |
+
msgstr[1] ""
|
2998 |
+
|
2999 |
+
#: inc/custom-post-types/quiz.php:419
|
3000 |
+
msgid "This quiz has no questions"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: inc/emails/class-lp-email-new-order-instructor.php:26
|
3004 |
+
#: inc/emails/class-lp-email-enrolled-course-instructor.php:27
|
3005 |
+
#: inc/emails/class-lp-email-cancelled-order-instructor.php:24
|
3006 |
+
#: inc/emails/class-lp-email-finished-course-instructor.php:27
|
3007 |
+
#: templates/single-course/tabs/instructor.php:22
|
3008 |
+
msgid "Instructor"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: inc/emails/class-lp-email-new-order-instructor.php:27
|
3012 |
+
msgid "Send email to course's instructor when user has purchased course."
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: inc/emails/class-lp-email-new-order-instructor.php:29
|
3016 |
+
#: inc/emails/class-lp-email-new-order-admin.php:30
|
3017 |
+
msgid "New order placed on {{order_date}}"
|
|
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: inc/emails/class-lp-email-new-order-instructor.php:30
|
3021 |
+
#: inc/emails/class-lp-email-new-order-admin.php:31
|
3022 |
+
msgid "New user order"
|
|
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: inc/emails/class-lp-email-completed-order-guest.php:29
|
3026 |
+
#: inc/emails/class-lp-email-cancelled-order-guest.php:27
|
3027 |
+
#: inc/emails/class-lp-email-processing-order-guest.php:27
|
3028 |
+
#: inc/emails/class-lp-email-new-order-guest.php:27
|
3029 |
+
#: inc/admin/class-lp-admin-assets.php:39
|
3030 |
+
msgid "Guest"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: inc/emails/class-lp-email-completed-order-guest.php:30
|
3034 |
+
#: inc/emails/class-lp-email-new-order-guest.php:28
|
3035 |
+
msgid "Send email to the user who has bought course as guest."
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: inc/emails/class-lp-email-completed-order-guest.php:32
|
3039 |
+
#: inc/emails/class-lp-email-completed-order-user.php:32
|
3040 |
+
msgid "Your order on {{order_date}} has completed"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: inc/emails/class-lp-email-completed-order-guest.php:33
|
3044 |
+
#: inc/emails/class-lp-email-completed-order-user.php:33
|
3045 |
+
msgid "Your order has completed"
|
|
|
|
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: inc/emails/class-lp-email-finished-course-admin.php:28
|
3049 |
+
#: inc/emails/class-lp-email-cancelled-order-admin.php:27
|
3050 |
+
#: inc/emails/class-lp-email-new-order-admin.php:27
|
3051 |
+
#: inc/emails/class-lp-email-completed-order-admin.php:29
|
3052 |
+
#: inc/emails/class-lp-email-enrolled-course-admin.php:28
|
3053 |
+
msgid "Admin"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: inc/emails/class-lp-email-finished-course-admin.php:29
|
3057 |
+
msgid "Send this email to admin when user has finished course."
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: inc/emails/class-lp-email-finished-course-admin.php:30
|
3061 |
+
#: inc/emails/class-lp-email-finished-course-instructor.php:30
|
3062 |
+
msgid "{{user_display_name}} has finished course"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: inc/emails/class-lp-email-finished-course-admin.php:31
|
3066 |
+
#: inc/emails/class-lp-email-finished-course-instructor.php:31
|
3067 |
+
msgid "User has finished course"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: inc/emails/class-lp-email-instructor-accepted.php:26
|
3071 |
+
msgid "Accepted"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: inc/emails/class-lp-email-instructor-accepted.php:27
|
3075 |
+
msgid "Become an instructor email accepted."
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: inc/emails/class-lp-email-instructor-accepted.php:29
|
3079 |
+
msgid "[{{site_title}}] Your request to become an instructor accepted"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: inc/emails/class-lp-email-instructor-accepted.php:30
|
3083 |
+
msgid "Become an instructor accepted"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: inc/emails/class-lp-email-cancelled-order-admin.php:28
|
3087 |
+
msgid "Send email to admin when order has been cancelled."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: inc/emails/class-lp-email-cancelled-order-admin.php:30
|
3091 |
+
#: inc/emails/class-lp-email-cancelled-order-instructor.php:27
|
3092 |
+
msgid "Order placed on {{order_date}} has been cancelled"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: inc/emails/class-lp-email-cancelled-order-admin.php:31
|
3096 |
+
#: inc/emails/class-lp-email-cancelled-order-instructor.php:28
|
3097 |
+
msgid "User order has been cancelled"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: inc/emails/class-lp-email-new-order-user.php:27
|
3101 |
+
#: inc/emails/class-lp-email-finished-course-user.php:27
|
3102 |
+
#: inc/emails/class-lp-email-enrolled-course-user.php:27
|
3103 |
+
#: inc/emails/class-lp-email-completed-order-user.php:29
|
3104 |
+
#: inc/emails/class-lp-email-processing-order-user.php:26
|
3105 |
+
#: inc/emails/class-lp-email-cancelled-order-user.php:27
|
3106 |
+
msgid "User"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: inc/emails/class-lp-email-new-order-user.php:28
|
3110 |
+
msgid "Send email to the user who has bought course."
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: inc/emails/class-lp-email-new-order-user.php:30
|
3114 |
+
#: inc/emails/class-lp-email-processing-order-guest.php:30
|
3115 |
+
#: inc/emails/class-lp-email-new-order-guest.php:30
|
3116 |
+
#: inc/emails/class-lp-email-processing-order-user.php:29
|
3117 |
+
msgid "Your order placed on {{order_date}}"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: inc/emails/class-lp-email-new-order-user.php:31
|
3121 |
+
#: inc/emails/class-lp-email-processing-order-guest.php:31
|
3122 |
+
#: inc/emails/class-lp-email-new-order-guest.php:31
|
3123 |
+
#: inc/emails/class-lp-email-processing-order-user.php:30
|
3124 |
+
msgid "Thank you for your order"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: inc/emails/class-lp-email-published-course.php:28
|
3128 |
+
msgid "Approved course"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: inc/emails/class-lp-email-published-course.php:29
|
3132 |
+
msgid "Settings for email when a course is approved."
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: inc/emails/class-lp-email-published-course.php:34
|
3136 |
+
msgid "[{{site_title}}] Your course {{course_name}} has been approved"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: inc/emails/class-lp-email-published-course.php:35
|
3140 |
+
msgid "Course approved"
|
3141 |
msgstr ""
|
3142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3143 |
#: inc/emails/class-lp-email-published-course.php:122
|
3144 |
+
#: inc/emails/class-lp-email.php:996
|
3145 |
+
#: inc/emails/class-lp-email-new-course.php:131
|
3146 |
+
#: inc/emails/class-lp-email-user-order-completed.php:137
|
3147 |
#: inc/emails/class-lp-email-rejected-course.php:119
|
3148 |
#: inc/emails/class-lp-email-updated-course.php:164
|
3149 |
#: inc/emails/class-lp-email-user-order-changed-status.php:136
|
|
|
|
|
3150 |
#: inc/gateways/paypal/class-lp-gateway-paypal.php:500
|
3151 |
+
#: inc/admin/views/settings/payments.php:17
|
3152 |
+
#: inc/admin/views/setup/setup-paypal.php:17
|
3153 |
+
#: inc/admin/views/setup/setup-stripe.php:3
|
3154 |
+
#: inc/admin/views/settings/emails/become-a-teacher-request.php:25
|
3155 |
msgid "Enable"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: inc/emails/class-lp-email-published-course.php:128
|
3159 |
+
#: inc/emails/class-lp-email.php:1019
|
3160 |
+
#: inc/emails/class-lp-email-new-course.php:154
|
3161 |
+
#: inc/emails/class-lp-email-user-order-completed.php:143
|
3162 |
+
#: inc/emails/class-lp-email-rejected-course.php:125
|
3163 |
+
#: inc/emails/class-lp-email-updated-course.php:170
|
3164 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:142
|
3165 |
+
#: inc/admin/views/settings/emails/become-a-teacher-request.php:33
|
3166 |
+
msgid "Subject"
|
|
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: inc/emails/class-lp-email-published-course.php:132
|
3170 |
+
#: inc/emails/class-lp-email.php:1023
|
3171 |
+
#: inc/emails/class-lp-email-new-course.php:158
|
3172 |
+
#: inc/emails/class-lp-email-user-order-completed.php:147
|
3173 |
+
#: inc/emails/class-lp-email-rejected-course.php:129
|
3174 |
+
#: inc/emails/class-lp-email-updated-course.php:174
|
3175 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:146
|
3176 |
+
#, php-format
|
3177 |
+
msgid "Email subject, default: <code>%s</code>."
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: inc/emails/class-lp-email-published-course.php:145
|
3181 |
+
#: inc/emails/class-lp-email.php:1036
|
3182 |
+
#: inc/emails/class-lp-email-new-course.php:171
|
3183 |
+
#: inc/emails/class-lp-email-user-order-completed.php:160
|
3184 |
+
#: inc/emails/class-lp-email-rejected-course.php:142
|
3185 |
+
#: inc/emails/class-lp-email-updated-course.php:187
|
3186 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:159
|
3187 |
+
msgid "Heading"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: inc/emails/class-lp-email-published-course.php:149
|
3191 |
+
#: inc/emails/class-lp-email.php:1040
|
3192 |
+
#: inc/emails/class-lp-email-new-course.php:175
|
3193 |
+
#: inc/emails/class-lp-email-user-order-completed.php:164
|
3194 |
+
#: inc/emails/class-lp-email-rejected-course.php:146
|
3195 |
+
#: inc/emails/class-lp-email-updated-course.php:191
|
3196 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:163
|
3197 |
+
#, php-format
|
3198 |
+
msgid "Email heading, default: <code>%s</code>."
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: inc/emails/class-lp-email-published-course.php:162
|
3202 |
+
#: inc/emails/class-lp-email.php:1053
|
3203 |
+
#: inc/emails/class-lp-email-new-course.php:188
|
3204 |
+
#: inc/emails/class-lp-email-user-order-completed.php:177
|
3205 |
+
#: inc/emails/class-lp-email-rejected-course.php:159
|
3206 |
+
#: inc/emails/class-lp-email-updated-course.php:204
|
3207 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:176
|
3208 |
+
#: inc/admin/views/settings/emails/email-template.php:6
|
3209 |
+
#: inc/admin/views/settings/emails/_email-template.php:3
|
3210 |
+
msgid "Email content"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: inc/emails/class-lp-email.php:1002
|
3214 |
+
#: inc/emails/class-lp-email-new-course.php:137
|
3215 |
+
msgid "Recipient(s)"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: inc/emails/class-lp-email.php:1006
|
3219 |
+
#: inc/emails/class-lp-email-new-course.php:141
|
3220 |
+
#, php-format
|
3221 |
+
msgid "Email recipient(s) (separated by comma), default: <code>%s</code>."
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: inc/emails/class-lp-email-new-course.php:28
|
3225 |
+
#: inc/emails/class-lp-email-new-course.php:35
|
3226 |
+
msgid "New course"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: inc/emails/class-lp-email-new-course.php:29
|
3230 |
+
msgid "Email settings when a new course is submitted for review."
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: inc/emails/class-lp-email-new-course.php:34
|
3234 |
msgid ""
|
3235 |
+
"[{{site_title}}] New course has been submitted for review ({{course_name}})"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: inc/emails/class-lp-email-finished-course-user.php:28
|
3239 |
+
msgid "Send this email to user when they have finished course."
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: inc/emails/class-lp-email-finished-course-user.php:30
|
3243 |
+
msgid "[{{site_title}}] You have finished course"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: inc/emails/class-lp-email-finished-course-user.php:31
|
3247 |
+
msgid "You have finished course"
|
|
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: inc/emails/class-lp-email-enrolled-course-user.php:28
|
3251 |
+
msgid "Send this email to user when they have enrolled course."
|
|
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: inc/emails/class-lp-email-enrolled-course-user.php:30
|
3255 |
+
msgid "[{{site_title}}] You have enrolled in course"
|
|
|
|
|
|
|
|
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: inc/emails/class-lp-email-enrolled-course-user.php:31
|
3259 |
+
msgid "You have enrolled course"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: inc/emails/class-lp-email-user-order-completed.php:27
|
3263 |
+
msgid "User order completed"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: inc/emails/class-lp-email-user-order-completed.php:28
|
3267 |
+
msgid "Send email to user when the order is completed"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: inc/emails/class-lp-email-user-order-completed.php:33
|
3271 |
+
msgid "Your order {{order_date}} is completed"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: inc/emails/class-lp-email-user-order-completed.php:34
|
3275 |
+
msgid "Your order {{order_number}} is completed"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: inc/emails/class-lp-email-enrolled-course-instructor.php:28
|
3279 |
+
msgid "Send this email to instructor when they have enrolled course."
|
|
|
|
|
|
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: inc/emails/class-lp-email-enrolled-course-instructor.php:30
|
3283 |
+
#: inc/emails/class-lp-email-enrolled-course-admin.php:30
|
3284 |
+
msgid "{{user_display_name}} has enrolled course"
|
|
|
|
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: inc/emails/class-lp-email-enrolled-course-instructor.php:31
|
3288 |
+
#: inc/emails/class-lp-email-enrolled-course-admin.php:31
|
3289 |
+
msgid "User has enrolled course"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: inc/emails/class-lp-email-new-order-admin.php:28
|
3293 |
+
msgid "Send email to admin when new order is placed."
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: inc/emails/class-lp-email-completed-order-admin.php:30
|
3297 |
+
msgid "Send email to admin when an order has been completed."
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: inc/emails/class-lp-email-completed-order-admin.php:32
|
3301 |
+
msgid "Order placed on {{order_date}} has been completed"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: inc/emails/class-lp-email-completed-order-admin.php:33
|
3305 |
+
msgid "User order has been completed"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: inc/emails/class-lp-email-cancelled-order-instructor.php:25
|
3309 |
+
msgid "Send email to course instructor when order has been cancelled"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: inc/emails/class-lp-email-cancelled-order-guest.php:28
|
3313 |
+
msgid "Send email to guest when order has been cancelled."
|
|
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: inc/emails/class-lp-email-cancelled-order-guest.php:30
|
3317 |
+
#: inc/emails/class-lp-email-cancelled-order-user.php:30
|
3318 |
+
msgid "Your order on {{order_date}} has been cancelled"
|
|
|
|
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: inc/emails/class-lp-email-cancelled-order-guest.php:31
|
3322 |
+
#: inc/emails/class-lp-email-cancelled-order-user.php:31
|
3323 |
+
msgid "Your order has been cancelled"
|
|
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: inc/emails/class-lp-email-enrolled-course-admin.php:29
|
3327 |
+
msgid "Send this email to admin when user has enrolled course."
|
|
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: inc/emails/class-lp-email-finished-course-instructor.php:28
|
3331 |
+
msgid "Send this email to instructor when they have finished course."
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: inc/emails/class-lp-email-rejected-course.php:28
|
3335 |
+
#: inc/emails/class-lp-email-rejected-course.php:35
|
3336 |
+
msgid "Rejected course"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: inc/emails/class-lp-email-rejected-course.php:29
|
3340 |
+
msgid "Settings for email when a course is rejected."
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: inc/emails/class-lp-email-rejected-course.php:34
|
3344 |
+
msgid "[{{site_title}}] Your course {{course_name}} has been rejected"
|
|
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: inc/emails/class-lp-email-updated-course.php:32
|
3348 |
+
msgid "Updated course"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: inc/emails/class-lp-email-updated-course.php:33
|
3352 |
+
msgid "Send this email to users have purchased when the course is updated."
|
|
|
|
|
|
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: inc/emails/class-lp-email-updated-course.php:38
|
3356 |
+
msgid "[{{site_title}}] The course ({{course_name}}) has just been updated."
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: inc/emails/class-lp-email-updated-course.php:39
|
3360 |
+
msgid "Update course"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: inc/emails/class-lp-email-become-an-instructor.php:27
|
3364 |
+
msgid "Request"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: inc/emails/class-lp-email-become-an-instructor.php:28
|
3368 |
+
msgid "Become an instructor email."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: inc/emails/class-lp-email-become-an-instructor.php:30
|
3372 |
+
msgid "[{{site_title}}] Request to become an instructor"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: inc/emails/class-lp-email-become-an-instructor.php:31
|
3376 |
+
msgid "Become an instructor"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: inc/emails/class-lp-email-instructor-denied.php:26
|
3380 |
+
msgid "Denied"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: inc/emails/class-lp-email-instructor-denied.php:27
|
3384 |
+
msgid "Become an instructor email denied."
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: inc/emails/class-lp-email-instructor-denied.php:29
|
3388 |
+
msgid "[{{site_title}}] Your request to become an instructor denied"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: inc/emails/class-lp-email-instructor-denied.php:30
|
3392 |
+
msgid "Become an instructor denied"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: inc/emails/class-lp-email-completed-order-user.php:30
|
3396 |
+
msgid "Send email to the user who has bought course when order is completed."
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: inc/emails/class-lp-email-processing-order-guest.php:28
|
3400 |
+
msgid ""
|
3401 |
+
"Send email to user who has purchased course as a Guest when the order is "
|
3402 |
+
"processing."
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:26
|
3406 |
+
msgid "User order changed status"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:27
|
3410 |
+
msgid "Send email to user when the order status is changed"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:32
|
3414 |
+
msgid "Your order {{order_date}} status has just been changed"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: inc/emails/class-lp-email-user-order-changed-status.php:33
|
3418 |
+
msgid "Your order {{order_number}} status has just been changed"
|
|
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: inc/emails/class-lp-email-processing-order-user.php:27
|
3422 |
+
msgid "Send email to user who has bought course whe the order is processing."
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: inc/emails/class-lp-email-cancelled-order-user.php:28
|
3426 |
+
msgid "Send email to user when order has been cancelled."
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: inc/admin/class-lp-admin-ajax.php:342
|
3430 |
+
msgid "Dismissed!"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: inc/admin/class-lp-admin-ajax.php:346
|
3434 |
+
msgid "Fail while joining newsletter! Please try again!"
|
|
|
|
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: inc/admin/class-lp-admin-ajax.php:368
|
3438 |
+
msgid "Something went wrong: "
|
|
|
|
|
|
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: inc/admin/class-lp-admin-ajax.php:371
|
3442 |
+
msgid ""
|
3443 |
+
"Thank you for subscribing! Please check and click the confirmation link from "
|
3444 |
+
"the email we've just sent to your mail box."
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: inc/admin/class-lp-admin-ajax.php:387
|
3448 |
+
msgid "Ops! ID not found"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: inc/admin/class-lp-admin-ajax.php:416
|
3452 |
+
msgid "Duplicate post fail, please try again"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: inc/admin/class-lp-admin-ajax.php:568
|
3456 |
+
msgid "Access denied"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: inc/admin/class-lp-admin-ajax.php:580
|
3460 |
+
#: inc/admin/class-lp-admin-ajax.php:620
|
3461 |
+
#: templates/order/order-details.php:18
|
3462 |
+
msgid "Invalid order"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: inc/admin/class-lp-admin-ajax.php:614
|
3466 |
+
msgid "Permission denied"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: inc/admin/class-lp-admin-ajax.php:810
|
3470 |
+
#: inc/admin/class-lp-admin-ajax.php:983
|
3471 |
+
#: inc/admin/lp-admin-functions.php:253
|
3472 |
+
msgid "Edit Page"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: inc/admin/class-lp-admin-ajax.php:811
|
3476 |
+
#: inc/admin/class-lp-admin-ajax.php:985
|
3477 |
+
#: inc/admin/lp-admin-functions.php:255
|
3478 |
+
msgid "View Page"
|
|
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: inc/admin/class-lp-admin-ajax.php:813
|
3482 |
+
msgid "Error! Page creation failed. Please try again."
|
|
|
|
|
|
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: inc/admin/class-lp-admin-ajax.php:816
|
3486 |
+
msgid "Empty page name!"
|
|
|
|
|
|
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: inc/admin/class-lp-admin-ajax.php:850
|
3490 |
+
msgid "The required pages are successfully created."
|
|
|
|
|
|
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: inc/admin/class-lp-admin-ajax.php:860
|
3494 |
+
msgid "Please try again."
|
|
|
|
|
|
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: inc/admin/class-lp-admin-ajax.php:886
|
3498 |
+
msgid "Successfully import sample data."
|
|
|
|
|
|
|
3499 |
msgstr ""
|
3500 |
|
3501 |
+
#: inc/admin/class-lp-admin-ajax.php:886
|
3502 |
+
msgid "View courses"
|
|
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: inc/admin/class-lp-admin-ajax.php:890
|
3506 |
+
msgid "Failed to import sample data. Please try again."
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: inc/admin/class-lp-admin-ajax.php:894
|
3510 |
+
msgid ""
|
3511 |
+
"Unknown error when installing/activating Import/Export add-on. Please try "
|
3512 |
+
"again!"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: inc/admin/class-lp-admin-ajax.php:910
|
3516 |
+
#: inc/admin/class-lp-admin-ajax.php:931
|
3517 |
+
#: inc/admin/class-lp-admin-ajax.php:951
|
3518 |
+
msgid "You do not have the permission to deactivate plugins on this site."
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: inc/admin/class-lp-meta-box-tabs.php:29
|
3522 |
+
msgid "Meta box tabs"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: inc/admin/class-lp-admin-assets.php:38
|
3526 |
+
msgid "Ooops! Error."
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: inc/admin/class-lp-admin-assets.php:45
|
3530 |
msgid ""
|
3531 |
+
"Before taking this action, we strongly recommend you should backup your site "
|
3532 |
+
"first before proceeding. Should any issues come at hand, do not hesitate to "
|
3533 |
+
"contact our Support team. Are you sure to proceed the update protocol?"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: inc/admin/class-lp-admin-tools.php:129
|
3537 |
+
msgid "All courses, lessons, quizzes and questions have been removed"
|
|
|
|
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: inc/admin/class-lp-admin-tools.php:192
|
3541 |
+
msgid "Outdated data from version older than 1.0 has been removed"
|
|
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: inc/admin/class-lp-install-sample-data.php:64
|
3545 |
+
msgid "Are you sure you want to install sample course data?"
|
|
|
|
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: inc/admin/class-lp-install-sample-data.php:65
|
3549 |
+
msgid "Are you sure you want to delete sample course data?"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: inc/admin/class-lp-install-sample-data.php:128
|
3553 |
+
#, php-format
|
3554 |
+
msgid "Course \"%s\" has been created"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: inc/admin/class-lp-install-sample-data.php:300
|
3558 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:25
|
3559 |
+
msgid "Sample course"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: inc/admin/class-lp-install-sample-data.php:606
|
3563 |
+
#: inc/admin/class-lp-install-sample-data.php:614
|
3564 |
+
msgctxt "install-sample-course"
|
3565 |
+
msgid " [TRUE]"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: inc/admin/class-lp-modal-search-users.php:49
|
3569 |
+
#: inc/admin/class-lp-modal-search-items.php:59
|
3570 |
+
#: inc/admin/views/course/modal-choose-items.php:100
|
3571 |
+
#: inc/admin/views/quiz/modal-choose-items.php:88
|
3572 |
+
msgid "Add"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: inc/admin/class-lp-modal-search-users.php:50
|
3576 |
+
#: inc/admin/class-lp-modal-search-items.php:60
|
3577 |
+
#: inc/admin/views/course/modal-choose-items.php:71
|
3578 |
+
#: inc/admin/views/quiz/modal-choose-items.php:58
|
3579 |
+
#: inc/admin/views/meta-boxes/order/details.php:242
|
3580 |
+
msgid "Close"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: inc/admin/class-lp-modal-search-users.php:51
|
3584 |
+
#: inc/admin/views/modal-search-users.php:10
|
3585 |
+
msgid "Search users"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: inc/admin/class-lp-modal-search-users.php:184
|
3589 |
+
#: inc/admin/class-lp-modal-search-items.php:249
|
3590 |
+
msgid "No item found"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: inc/admin/lp-admin-actions.php:61
|
3594 |
+
#: inc/admin/views/dashboard/plugin-status/html-results.php:31
|
3595 |
+
msgid "Published"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: inc/admin/lp-admin-actions.php:62
|
3599 |
+
msgid "Private"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: inc/admin/lp-admin-actions.php:63
|
3603 |
+
msgid "Pending Review"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: inc/admin/lp-admin-actions.php:64
|
3607 |
+
msgid "Scheduled"
|
|
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
#: inc/admin/lp-admin-actions.php:65
|
3611 |
+
msgid "Draft"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: inc/admin/lp-admin-actions.php:66
|
3615 |
+
msgid "Trash"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: inc/admin/lp-admin-actions.php:144
|
3619 |
+
msgid "LearnPress Plugin"
|
|
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: inc/admin/lp-admin-actions.php:148
|
3623 |
+
msgid "LearnPress Status"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: inc/admin/class-lp-admin-menu.php:69
|
3627 |
+
msgid "View Courses"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: inc/admin/class-lp-admin-menu.php:89
|
3631 |
+
msgid "Learning Management System"
|
|
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: inc/admin/lp-admin-functions.php:32
|
3635 |
+
msgid "Duplicate this course"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: inc/admin/lp-admin-functions.php:52
|
3639 |
+
msgid "Duplicate this quiz"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: inc/admin/lp-admin-functions.php:56
|
3643 |
+
msgid "Duplicate this question"
|
|
|
|
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: inc/admin/lp-admin-functions.php:60
|
3647 |
+
msgid "Duplicate this lesson"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: inc/admin/lp-admin-functions.php:183
|
3651 |
+
msgid "[ Add a new page ]"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: inc/admin/lp-admin-functions.php:206
|
3655 |
+
msgid "Select Page"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: inc/admin/lp-admin-functions.php:223
|
3659 |
+
msgid "Select a page…"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: inc/admin/lp-admin-functions.php:244
|
3663 |
+
msgid "Create"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: inc/admin/lp-admin-functions.php:247
|
3667 |
+
msgid "New page title"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: inc/admin/lp-admin-functions.php:248
|
3671 |
+
msgid "Ok [Enter]"
|
|
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: inc/admin/lp-admin-functions.php:249
|
3675 |
+
msgid "Cancel [ESC]"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: inc/admin/lp-admin-functions.php:333
|
3679 |
+
msgid "Minutes"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: inc/admin/lp-admin-functions.php:376
|
3683 |
+
#: inc/admin/lp-admin-functions.php:417
|
3684 |
+
msgid "Plain text"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: inc/admin/lp-admin-functions.php:377
|
3688 |
+
#: inc/admin/lp-admin-functions.php:418
|
3689 |
+
#: inc/admin/settings/class-lp-settings-emails.php:147
|
3690 |
+
msgid "HTML"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: inc/admin/lp-admin-functions.php:578
|
3694 |
+
#: inc/admin/views/addons/html-loop-theme.php:51
|
3695 |
+
msgid "Get it now"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: inc/admin/lp-admin-functions.php:580
|
3699 |
+
#: inc/admin/views/addons/html-loop-theme.php:53
|
3700 |
+
msgid "View Demo"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: inc/admin/lp-admin-functions.php:855
|
3704 |
+
#: inc/admin/views/statistics/courses.php:9
|
3705 |
+
#: inc/admin/views/statistics/users.php:9
|
3706 |
+
#: inc/admin/views/statistics/users.php:46
|
3707 |
+
#: inc/admin/views/statistics/general.php:9
|
3708 |
+
#: inc/admin/views/statistics/orders.php:9
|
3709 |
+
msgid "Instructors"
|
3710 |
+
msgstr ""
|
3711 |
+
|
3712 |
+
#: inc/admin/lp-admin-functions.php:1020
|
3713 |
+
#: inc/admin/lp-admin-functions.php:2103
|
3714 |
+
#: inc/user/class-lp-profile.php:814
|
3715 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:25
|
3716 |
+
msgid "Publish"
|
3717 |
+
msgstr ""
|
3718 |
+
|
3719 |
+
#: inc/admin/lp-admin-functions.php:1025
|
3720 |
+
#: inc/admin/lp-admin-functions.php:1227
|
3721 |
+
#: inc/admin/lp-admin-functions.php:2108
|
3722 |
+
#: inc/user/class-lp-profile.php:815
|
3723 |
+
#: inc/admin/views/statistics/courses.php:44
|
3724 |
+
#: inc/admin/views/statistics/general.php:61
|
3725 |
+
#: inc/admin/views/statistics/orders.php:64
|
3726 |
+
msgid "Pending"
|
3727 |
+
msgstr ""
|
3728 |
+
|
3729 |
+
#: inc/admin/lp-admin-functions.php:1030
|
3730 |
+
#: inc/admin/lp-admin-functions.php:2113
|
3731 |
+
#: inc/admin/views/statistics/courses.php:45
|
3732 |
+
#: inc/admin/views/statistics/general.php:62
|
3733 |
+
msgid "Paid"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: inc/admin/lp-admin-functions.php:1254
|
3737 |
+
msgid "Pending Courses / Publish Courses"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: inc/admin/lp-admin-functions.php:1255
|
3741 |
+
msgid "Free Courses / Priced Courses"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: inc/admin/lp-admin-functions.php:1423
|
3745 |
+
msgid "Installed"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: inc/admin/lp-admin-functions.php:1456
|
3749 |
+
#, php-format
|
3750 |
+
msgid "The user %s has become a teacher"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: inc/admin/lp-admin-functions.php:1514
|
3754 |
+
msgid "You haven't got any courses yet! Would you like to import sample data?"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: inc/admin/lp-admin-functions.php:1515
|
3758 |
+
msgid "If yes, please install add-on name"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: inc/admin/lp-admin-functions.php:1516
|
3762 |
+
msgid "LearnPress Import/Export"
|
|
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: inc/admin/lp-admin-functions.php:1517
|
3766 |
+
msgid "but don't worry because it is completely automated."
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: inc/admin/lp-admin-functions.php:1518
|
3770 |
+
msgid "Import now"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: inc/admin/lp-admin-functions.php:1519
|
3774 |
+
msgid "No, thanks!"
|
|
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: inc/admin/lp-admin-functions.php:1729
|
3778 |
+
msgid " Copy"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: inc/admin/lp-admin-functions.php:1822
|
3782 |
+
#, php-format
|
3783 |
+
msgid "Question id %s does not exist."
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: inc/admin/lp-admin-functions.php:1825
|
3787 |
+
#, php-format
|
3788 |
+
msgid "Quiz id %s does not exist."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:162
|
3792 |
+
msgid "No plugin found."
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:341
|
3796 |
+
#, php-format
|
3797 |
+
msgid "By %s"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:362
|
3801 |
+
#, php-format
|
3802 |
+
msgid "Install %s now"
|
|
|
|
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:362
|
3806 |
+
msgid "Install and Active"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:369
|
3810 |
+
#, php-format
|
3811 |
+
msgid "Update %s now"
|
|
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:369
|
3815 |
+
#: inc/admin/views/updates/html-update-message.php:17
|
3816 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:17
|
3817 |
+
msgid "Update Now"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:420
|
3821 |
+
msgid "Enabled"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:422
|
3825 |
+
msgid "Disabled"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:425
|
3829 |
+
msgid "Not Install"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:454
|
3833 |
+
msgid "Last Updated:"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:465
|
3837 |
+
#, php-format
|
3838 |
+
msgid "%s Active Installs"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:471
|
3842 |
+
#: inc/admin/views/addons/html-loop-plugin.php:55
|
3843 |
+
msgid "Untested with your version of WordPress"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:473
|
3847 |
+
#: inc/admin/views/addons/html-loop-plugin.php:57
|
3848 |
+
msgid "<strong>Incompatible</strong> with your version of WordPress"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: inc/admin/class-lp-plugin-install-list-table.php:475
|
3852 |
+
#: inc/admin/views/addons/html-loop-plugin.php:59
|
3853 |
+
msgid "<strong>Compatible</strong> with your version of WordPress"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: inc/admin/class-lp-reset-data.php:90
|
3857 |
+
msgid "Item progress deleted"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: inc/admin/class-lp-reset-data.php:92
|
3861 |
+
msgid "No data found"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: inc/admin/class-lp-setup-wizard.php:72
|
3865 |
+
msgctxt "static-page"
|
3866 |
+
msgid "LP Courses"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: inc/admin/class-lp-setup-wizard.php:73
|
3870 |
+
msgctxt "static-page"
|
3871 |
+
msgid "LP Profile"
|
|
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: inc/admin/class-lp-setup-wizard.php:74
|
3875 |
+
msgctxt "static-page"
|
3876 |
+
msgid "LP Checkout"
|
|
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: inc/admin/class-lp-setup-wizard.php:75
|
3880 |
+
msgctxt "static-page"
|
3881 |
+
msgid "LP Become Teacher"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: inc/admin/class-lp-setup-wizard.php:206
|
3885 |
+
msgid "Welcome"
|
|
|
|
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: inc/admin/class-lp-setup-wizard.php:208
|
3889 |
+
#: inc/admin/views/setup/notice-setup.php:5
|
3890 |
+
msgid "Run setup wizard"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: inc/admin/class-lp-setup-wizard.php:211
|
3894 |
+
#: inc/admin/settings/class-lp-settings-general.php:52
|
3895 |
+
#: inc/admin/settings/class-lp-settings-general.php:57
|
3896 |
+
#: inc/admin/views/setup/steps/currency.php:17
|
3897 |
+
#: inc/admin/views/setup/steps/currency.php:21
|
3898 |
+
msgid "Currency"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: inc/admin/class-lp-setup-wizard.php:217
|
3902 |
+
#: inc/admin/views/setup/steps/pages.php:14
|
3903 |
+
msgid "Static Pages"
|
|
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: inc/admin/class-lp-setup-wizard.php:221
|
3907 |
+
#: inc/admin/meta-box/fields/payment-order.php:29
|
3908 |
+
#: inc/admin/views/setup/steps/payment.php:16
|
3909 |
+
msgid "Payment"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: inc/admin/class-lp-setup-wizard.php:225
|
3913 |
+
#: inc/admin/settings/class-lp-settings-emails.php:26
|
3914 |
+
#: inc/admin/settings/class-lp-settings-emails.php:166
|
3915 |
+
msgid "Emails"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: inc/admin/class-lp-setup-wizard.php:229
|
3919 |
+
#: inc/admin/views/setup/content.php:92
|
3920 |
+
#: inc/admin/views/setup/steps/finish.php:12
|
3921 |
+
msgid "Finish"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: inc/admin/class-lp-setup-wizard.php:346
|
3925 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:91
|
3926 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:95
|
3927 |
+
msgid "Paypal"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: inc/admin/class-lp-setup-wizard.php:347
|
3931 |
+
msgid "Enter your Paypal email address to accept payment via Paypal."
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: inc/admin/class-lp-admin.php:62
|
3935 |
+
msgid "Available Courses"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: inc/admin/class-lp-admin.php:180
|
3939 |
+
msgid "Shop Page"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: inc/admin/class-lp-admin.php:184
|
3943 |
+
msgid "Cart Page"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: inc/admin/class-lp-admin.php:188
|
3947 |
+
#: inc/admin/class-lp-admin.php:601
|
3948 |
+
msgid "Checkout Page"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: inc/admin/class-lp-admin.php:192
|
3952 |
+
msgid "My Account Page"
|
|
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: inc/admin/class-lp-admin.php:196
|
3956 |
+
msgid "Terms and Conditions Page"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: inc/admin/class-lp-admin.php:213
|
3960 |
+
msgid "Account"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: inc/admin/class-lp-admin.php:214
|
3964 |
+
msgid "Billing"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: inc/admin/class-lp-admin.php:216
|
3968 |
+
#: inc/admin/class-lp-admin.php:279
|
3969 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:22
|
3970 |
+
#: inc/admin/views/setup/steps/pages.php:40
|
3971 |
+
msgid "Checkout"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: inc/admin/class-lp-admin.php:217
|
3975 |
+
msgid "Confirmation"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: inc/admin/class-lp-admin.php:218
|
3979 |
+
msgid "Invoice"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: inc/admin/class-lp-admin.php:219
|
3983 |
+
msgid "Levels"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: inc/admin/class-lp-admin.php:247
|
3987 |
+
msgid "Members"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: inc/admin/class-lp-admin.php:248
|
3991 |
+
msgid "Activity"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: inc/admin/class-lp-admin.php:249
|
3995 |
+
#: templates/checkout/form-register.php:48
|
3996 |
+
#: templates/global/form-register.php:43
|
3997 |
+
msgid "Register"
|
|
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: inc/admin/class-lp-admin.php:250
|
4001 |
+
msgid "Activate"
|
|
|
|
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: inc/admin/class-lp-admin.php:278
|
4005 |
+
#: inc/admin/settings/class-lp-settings-profile.php:22
|
4006 |
+
#: inc/admin/views/setup/steps/pages.php:31
|
4007 |
+
msgid "Profile"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: inc/admin/class-lp-admin.php:280
|
4011 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:121
|
4012 |
+
#: inc/admin/views/setup/steps/pages.php:49
|
4013 |
+
msgid "Become a Teacher"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: inc/admin/class-lp-admin.php:318
|
4017 |
+
msgid "LearnPress Page"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: inc/admin/class-lp-admin.php:360
|
|
|
4021 |
#, php-format
|
4022 |
+
msgid "LearnPress Pages (%d)"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: inc/admin/class-lp-admin.php:399
|
4026 |
+
msgctxt "pending-request"
|
4027 |
+
msgid "Accept"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: inc/admin/class-lp-admin.php:400
|
4031 |
+
msgctxt "pending-request"
|
4032 |
+
msgid "Deny"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: inc/admin/class-lp-admin.php:462
|
4036 |
#, php-format
|
4037 |
+
msgid "Pending Request %s"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: inc/admin/class-lp-admin.php:492
|
4041 |
+
#, php-format
|
4042 |
+
msgid "User has %s to become a teacher."
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: inc/admin/class-lp-admin.php:577
|
4046 |
+
#, php-format
|
4047 |
+
msgid ""
|
4048 |
+
"LearnPress requires permalink option <strong>Post name</strong> is enabled. "
|
4049 |
+
"Please enable it <a href=\"%s\">here</a> to ensure that all functions work "
|
4050 |
+
"properly."
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: inc/admin/class-lp-admin.php:597
|
4054 |
+
msgid "Profile Page"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: inc/admin/class-lp-admin.php:626
|
4058 |
+
#, php-format
|
4059 |
+
msgid "The following required page(s) are currently missing: %s."
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: inc/admin/class-lp-admin.php:627
|
4063 |
+
#, php-format
|
4064 |
+
msgid ""
|
4065 |
+
"To ensure all functions work properly, please click <a class=\"button\" "
|
4066 |
+
"id=\"learn-press-create-pages\" href=\"%s\">here</a> to create and set it up "
|
4067 |
+
"automatically."
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: inc/admin/class-lp-admin.php:677
|
4071 |
#, php-format
|
4072 |
+
msgid ""
|
4073 |
+
"If you like <strong>LearnPress</strong> please leave us a %s★★"
|
4074 |
+
"★★★%s rating. A huge thanks from LearnPress team for your "
|
4075 |
+
"generous."
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: inc/admin/class-lp-admin.php:677
|
4079 |
+
msgid "Thanks :)"
|
|
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: inc/admin/class-lp-upgrader.php:12
|
4083 |
+
msgid "Invalid Data provided."
|
|
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: inc/admin/class-lp-upgrader.php:13
|
4087 |
+
msgid "Could not access filesystem."
|
|
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: inc/admin/class-lp-upgrader.php:14
|
4091 |
+
msgid "Filesystem error."
|
|
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: inc/admin/class-lp-upgrader.php:15
|
4095 |
+
msgid "Unable to locate WordPress Root directory."
|
|
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: inc/admin/class-lp-upgrader.php:16
|
4099 |
+
msgid "Unable to locate WordPress Content directory (wp-content)."
|
|
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: inc/admin/class-lp-upgrader.php:17
|
4103 |
+
msgid "Unable to locate WordPress Plugin directory."
|
|
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: inc/admin/class-lp-upgrader.php:18
|
4107 |
+
msgid "Unable to locate WordPress Theme directory."
|
4108 |
+
msgstr ""
|
4109 |
+
|
4110 |
+
#: inc/admin/class-lp-upgrader.php:20
|
4111 |
#, php-format
|
4112 |
+
msgid "Unable to locate necessary folder (%s)."
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: inc/admin/class-lp-upgrader.php:22
|
4116 |
+
msgid "Download failed."
|
|
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: inc/admin/class-lp-upgrader.php:23
|
4120 |
+
msgid "Installing the latest version…"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: inc/admin/class-lp-upgrader.php:24
|
4124 |
+
msgid "The package contains no files."
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: inc/admin/class-lp-upgrader.php:25
|
4128 |
+
msgid "Destination folder already exists."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: inc/admin/class-lp-upgrader.php:26
|
4132 |
+
msgid "Could not create directory."
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: inc/admin/class-lp-upgrader.php:27
|
4136 |
+
msgid "The package could not be installed."
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: inc/admin/class-lp-upgrader.php:29
|
4140 |
+
msgid "Enabling Maintenance mode…"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: inc/admin/class-lp-upgrader.php:30
|
4144 |
+
msgid "Disabling Maintenance mode…"
|
|
|
|
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: inc/admin/class-lp-admin-dashboard.php:19
|
4148 |
+
msgid "LearnPress order status"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: inc/admin/class-lp-admin-dashboard.php:24
|
4152 |
+
msgid "LearnPress status"
|
4153 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
4154 |
|
4155 |
+
#: inc/admin/class-lp-admin-dashboard.php:49
|
4156 |
+
#: inc/admin/dashboard-statistics/class-lp-statistic-status.php:30
|
4157 |
+
msgid "Total Raised"
|
4158 |
+
msgstr ""
|
4159 |
+
|
4160 |
+
#: inc/admin/class-lp-admin-dashboard.php:67
|
4161 |
#, php-format
|
4162 |
+
msgid "%d order"
|
4163 |
+
msgid_plural "%d orders"
|
|
|
|
|
4164 |
msgstr[0] ""
|
4165 |
msgstr[1] ""
|
4166 |
|
4167 |
+
#: inc/admin/class-lp-admin-dashboard.php:83
|
4168 |
+
#: inc/admin/dashboard-statistics/class-lp-statistic-status.php:63
|
4169 |
+
msgid "Created by: "
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: inc/admin/class-lp-modal-search-items.php:61
|
4173 |
+
#: inc/admin/views/modal-search-items.php:11
|
4174 |
+
msgid "Search items"
|
|
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: inc/admin/class-lp-modal-search-items.php:342
|
4178 |
+
msgid "There are no available lessons for this course, please use "
|
|
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: inc/admin/class-lp-modal-search-items.php:343
|
4182 |
+
#: inc/admin/class-lp-modal-search-items.php:347
|
4183 |
+
#: inc/admin/class-lp-modal-search-items.php:351
|
4184 |
+
msgid "Add new item"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
+
#: inc/admin/class-lp-modal-search-items.php:346
|
4188 |
+
msgid "There are no available quizzes for this course, please use "
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: inc/admin/class-lp-modal-search-items.php:350
|
4192 |
+
msgid "There are no available questions for this quiz, please use "
|
|
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: inc/quiz/class-lp-quiz-factory.php:513
|
4196 |
+
msgid "Something went wrong!"
|
|
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: inc/quiz/class-lp-quiz.php:438
|
4200 |
+
#: templates/content-quiz/progress.php:47
|
4201 |
+
#: templates/content-quiz/intro.php:25
|
4202 |
+
msgid "Unlimited"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: inc/quiz/class-lp-quiz.php:493
|
4206 |
+
msgid "Finish quiz"
|
|
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: inc/quiz/class-lp-quiz.php:494
|
4210 |
+
msgid "Are you sure you want to finish this quiz?"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: inc/quiz/class-lp-quiz.php:497
|
4214 |
+
msgid "Retake quiz"
|
4215 |
+
msgstr ""
|
4216 |
+
|
4217 |
+
#: inc/quiz/class-lp-quiz.php:498
|
4218 |
+
msgid "Are you sure you want to retake this quiz?"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: inc/quiz/class-lp-quiz.php:501
|
4222 |
+
msgid "Time's up!"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: inc/quiz/class-lp-quiz.php:502
|
4226 |
+
msgid "The time is up! Your quiz will automate come to finish"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: inc/quiz/class-lp-quiz.php:504
|
4230 |
+
msgid "Congrats! You have finished this quiz"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: inc/quiz/class-lp-quiz.php:505
|
4234 |
+
msgid ""
|
4235 |
+
"Congrats! You have re-taken this quiz. Please wait a moment and the page "
|
4236 |
+
"will reload"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: inc/libraries/wp-background-process.php:421
|
4240 |
+
#, php-format
|
4241 |
+
msgid "Every %d minutes"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: inc/user/class-lp-user-factory.php:363
|
4245 |
+
msgid "Every 3 Minutes"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: inc/user/class-lp-profile.php:84
|
4249 |
+
msgid "Account information updated successful."
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: inc/user/class-lp-profile.php:85
|
4253 |
+
msgid "Account avatar updated successful."
|
|
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: inc/user/class-lp-profile.php:86
|
4257 |
+
msgid "Password updated successful."
|
|
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: inc/user/class-lp-profile.php:87
|
4261 |
+
msgid "Account publicity updated successful."
|
|
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: inc/user/class-lp-profile.php:293
|
4265 |
+
#: inc/admin/settings/class-lp-settings-profile.php:141
|
4266 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:16
|
4267 |
+
msgid "Dashboard"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: inc/user/class-lp-profile.php:318
|
4271 |
+
#: inc/admin/settings/class-lp-settings-profile.php:173
|
4272 |
+
#: inc/admin/views/meta-boxes/order/details.php:36
|
4273 |
+
msgid "Order details"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: inc/user/class-lp-profile.php:348
|
4277 |
+
#: inc/admin/settings/class-lp-settings-profile.php:208
|
4278 |
+
#: inc/admin/settings/class-lp-settings-profile.php:229
|
4279 |
+
msgid "Avatar"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: inc/user/class-lp-profile.php:357
|
4283 |
+
#: inc/admin/settings/class-lp-settings-profile.php:262
|
4284 |
+
msgid "Publicity"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: inc/user/class-lp-profile.php:849
|
4288 |
+
msgid "Not enrolled"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: inc/user/lp-user-functions.php:388
|
4292 |
+
msgid "Want to become an instructor?"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
+
#: inc/user/lp-user-functions.php:920
|
4296 |
+
msgid "Please login to enroll this course"
|
|
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: inc/user/lp-user-functions.php:938
|
4300 |
+
msgid "You have already finished course"
|
4301 |
msgstr ""
|
4302 |
|
4303 |
+
#: inc/user/lp-user-functions.php:941
|
4304 |
+
msgid "You have already enrolled in this course"
|
|
|
4305 |
msgstr ""
|
4306 |
|
4307 |
+
#: inc/user/lp-user-functions.php:1234
|
4308 |
+
msgid "Old password incorrect!"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: inc/user/lp-user-functions.php:1241
|
4312 |
+
msgid "Confirmation password incorrect!"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: inc/user/abstract-lp-user.php:331
|
4316 |
+
msgid "You cannot start a quiz in preview mode."
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: inc/user/abstract-lp-user.php:338
|
4320 |
+
msgid "Course does not exist or does not contain the quiz"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: inc/user/abstract-lp-user.php:345
|
4324 |
+
msgid "You have already finished the course of this quiz"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: inc/user/abstract-lp-user.php:349
|
4328 |
+
msgid "Please enroll course before starting quiz."
|
4329 |
msgstr ""
|
4330 |
|
4331 |
+
#: inc/user/abstract-lp-user.php:354
|
4332 |
+
msgid "User has started or completed quiz"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: inc/user/abstract-lp-user.php:359
|
4336 |
+
msgid "You have to login for starting quiz."
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: inc/user/abstract-lp-user.php:442
|
4340 |
+
msgid "Course is not exists or does not contain the quiz"
|
|
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: inc/user/abstract-lp-user.php:447
|
4344 |
+
msgid "User has already finished course of this quiz"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: inc/user/abstract-lp-user.php:453
|
4348 |
+
msgid "User has completed quiz"
|
|
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: inc/user/abstract-lp-user.php:494
|
4352 |
+
msgid "Course does not exist or does not contain the quiz."
|
4353 |
msgstr ""
|
4354 |
|
4355 |
+
#: inc/user/abstract-lp-user.php:499
|
4356 |
+
msgid "You can not redo a quiz in a finished course."
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: inc/user/abstract-lp-user.php:505
|
4360 |
+
#, php-format
|
4361 |
+
msgid "%s::%s - User has not completed quiz."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: inc/user/abstract-lp-user.php:1002
|
4365 |
+
msgid "You can not hint question."
|
|
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: inc/user/abstract-lp-user.php:1254
|
4369 |
+
#: inc/user/abstract-lp-user.php:1671
|
4370 |
+
#: inc/user/abstract-lp-user.php:1683
|
4371 |
+
#, php-format
|
4372 |
+
msgid "The role %s for user doesn't exist"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
+
#: inc/user/abstract-lp-user.php:1933
|
4376 |
+
msgid "You can not complete a preview lesson."
|
|
|
|
|
4377 |
msgstr ""
|
4378 |
|
4379 |
+
#: inc/user/abstract-lp-user.php:1939
|
4380 |
+
msgid "You have to enroll course to complete lesson."
|
4381 |
+
msgstr ""
|
|
|
|
|
|
|
4382 |
|
4383 |
+
#: inc/user/abstract-lp-user.php:1950
|
4384 |
+
msgid "You have already completed this lesson."
|
4385 |
msgstr ""
|
4386 |
|
4387 |
+
#: inc/user/abstract-lp-user.php:2377
|
4388 |
+
#: inc/user/abstract-lp-user.php:2381
|
4389 |
+
msgid "Failed to enroll course."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: inc/user/abstract-lp-user.php:2385
|
4393 |
+
msgid "Please login to enroll course."
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: inc/updates/_update-from-0.9.php:1206
|
4397 |
+
msgctxt "Permalink Slug"
|
4398 |
+
msgid "lesson-tag"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: inc/updates/_update-from-0.9.php:1228
|
4402 |
+
msgctxt "Permalink Slug"
|
4403 |
+
msgid "question-tag"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
|
4407 |
+
#, php-format
|
4408 |
+
msgid "Please %s to send your request!"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:39
|
4412 |
+
msgctxt "become-teacher-form"
|
4413 |
+
msgid "login"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:42
|
4417 |
+
msgid "Your have already sent the request. Please wait for approvement."
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:44
|
4421 |
+
msgid "You are a teacher!"
|
|
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:103
|
4425 |
+
msgid "Please login to fill in this form."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:106
|
4429 |
+
msgid "You are a teacher now."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:112
|
4433 |
+
msgid "Your role is allowed to create a course."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:122
|
4437 |
+
msgid "Fill in your information and send us to become a teacher."
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: inc/shortcodes/class-lp-shortcode-become-a-teacher.php:123
|
4441 |
+
#: templates/global/become-teacher-form/button.php:18
|
4442 |
+
msgid "Submit"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
+
#: inc/shortcodes/class-lp-shortcode-login-form.php:39
|
4446 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:41
|
4447 |
+
#, php-format
|
4448 |
+
msgid "Your are logged in as %s. <a href=\"%s\">Log out</a>?"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: inc/shortcodes/class-lp-shortcode-login-form.php:61
|
4452 |
+
#: inc/shortcodes/class-lp-shortcode-login-form.php:63
|
4453 |
+
msgid "Username or email"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: inc/shortcodes/class-lp-shortcode-register-form.php:86
|
4457 |
+
msgid ""
|
4458 |
+
"The password should be at least twelve characters long. To make it stronger, "
|
4459 |
+
"use upper and lower case letters, numbers, and symbols like ! \" ? $ % ^ & )"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: inc/shortcodes/class-lp-shortcode-course-curriculum.php:44
|
4463 |
+
msgid "Invalid course."
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: inc/question/class-lp-question.php:311
|
4467 |
+
msgid "True Or False"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: inc/question/class-lp-question.php:312
|
4471 |
+
msgid "Multi Choice"
|
|
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: inc/question/class-lp-question.php:313
|
4475 |
+
msgid "Single Choice"
|
|
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: inc/question/class-lp-question.php:438
|
4479 |
+
#: inc/admin/views/quiz/question-meta.php:19
|
4480 |
+
msgid "Question Content"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: inc/question/class-lp-question.php:612
|
4484 |
+
msgid "First option"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: inc/question/class-lp-question.php:617
|
4488 |
+
msgid "Second option"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: inc/question/class-lp-question.php:622
|
4492 |
+
msgid "Third option"
|
|
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: inc/question/class-lp-question-true-or-false.php:52
|
4496 |
+
msgid "True"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: inc/question/class-lp-question-true-or-false.php:58
|
4500 |
+
msgid "False"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: inc/attributes/course.php:137
|
4504 |
+
#: inc/attributes/course.php:295
|
4505 |
+
#: inc/attributes/course.php:308
|
4506 |
+
#: inc/attributes/course.php:310
|
4507 |
+
msgid "Attributes"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: inc/attributes/course.php:207
|
4511 |
+
msgid "No terms found."
|
|
|
|
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: inc/attributes/course.php:238
|
4515 |
+
msgid "Clear"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: inc/attributes/course.php:253
|
4519 |
+
msgid "Terms"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: inc/attributes/course.php:306
|
4523 |
+
#: inc/attributes/course.php:309
|
4524 |
+
msgid "Attribute"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: inc/attributes/course.php:311
|
4528 |
+
msgid "Add New Attribute"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: inc/attributes/course.php:312
|
4532 |
+
msgid "All Attributes"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: inc/attributes/course.php:356
|
4536 |
+
#, php-format
|
4537 |
+
msgid "Search Course %s"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
+
#: inc/attributes/course.php:357
|
4541 |
+
#, php-format
|
4542 |
+
msgid "All Course %s"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
+
#: inc/attributes/course.php:358
|
4546 |
+
#, php-format
|
4547 |
+
msgid "Parent Course %s"
|
|
|
|
|
|
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: inc/attributes/course.php:359
|
4551 |
+
#, php-format
|
4552 |
+
msgid "Parent Course %s:"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
+
#: inc/attributes/course.php:360
|
4556 |
+
#, php-format
|
4557 |
+
msgid "Edit Course %s"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: inc/attributes/course.php:361
|
4561 |
+
#, php-format
|
4562 |
+
msgid "Update Course %s"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: inc/attributes/course.php:362
|
4566 |
+
#, php-format
|
4567 |
+
msgid "Add New Course %s"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: inc/attributes/course.php:363
|
4571 |
+
#, php-format
|
4572 |
+
msgid "New Course %s"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: inc/attributes/course.php:364
|
4576 |
+
#, php-format
|
4577 |
+
msgid "No "Course %s" found"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: inc/abstracts/abstract-addon.php:185
|
4581 |
+
#, php-format
|
4582 |
+
msgid ""
|
4583 |
+
"<strong>%s</strong> add-on version %s requires <strong>LearnPress</strong> "
|
4584 |
+
"version %s or higher"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: inc/abstracts/abstract-addon.php:244
|
4588 |
+
#, php-format
|
4589 |
+
msgid "%s plugin file does not exist."
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: inc/abstracts/abstract-addon.php:262
|
4593 |
+
#, php-format
|
4594 |
+
msgid "%s plugin class does not exist."
|
4595 |
msgstr ""
|
4596 |
|
4597 |
+
#: inc/abstracts/abstract-object-data.php:341
|
4598 |
+
#, php-format
|
4599 |
+
msgid "The following these functions %s do not exists in %s"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: inc/gateways/class-lp-gateway-abstract.php:244
|
4603 |
+
msgid "%s has been deprecated. Please use % instead of."
|
|
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: inc/cart/class-lp-cart.php:119
|
4607 |
+
msgid "Get cart should not be called before the wp_loaded action."
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: inc/cart/class-lp-cart.php:144
|
4611 |
+
msgid "Sorry! This course is not purchasable."
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: inc/cart/class-lp-cart.php:149
|
4615 |
+
msgid "Sorry! The number of enrolled students has reached limit"
|
|
|
|
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: inc/cart/class-lp-cart.php:281
|
4619 |
+
#, php-format
|
4620 |
+
msgid ""
|
4621 |
+
"%s has been removed from your cart because it can no longer be purchased."
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: inc/cart/class-lp-cart.php:459
|
4625 |
+
msgid "Checkout page hasn't been setup"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: inc/user-item/class-lp-user-item-quiz.php:116
|
4629 |
+
msgid "Not Started"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: inc/user-item/class-lp-user-item-quiz.php:265
|
4633 |
+
msgid "passed"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: inc/user-item/class-lp-user-item-quiz.php:265
|
4637 |
+
msgid "failed"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: inc/user-item/class-lp-user-item-quiz.php:458
|
4641 |
+
msgid "Check question has reached limit."
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: inc/user-item/class-lp-user-item-quiz.php:460
|
4645 |
+
msgid "You have already checked this question."
|
|
|
|
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: inc/user-item/class-lp-user-item.php:547
|
4649 |
+
#: inc/user-item/class-lp-user-item.php:558
|
4650 |
+
msgid "Not Enrolled"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: inc/background-process/class-lp-background-query-items.php:156
|
4654 |
+
#: inc/background-process/class-lp-background-query-items.php:207
|
4655 |
+
msgid "There is no items found!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: inc/background-process/class-lp-background-query-items.php:161
|
4659 |
+
msgid "WP query plugins error!"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: inc/background-process/class-lp-background-query-items.php:164
|
4663 |
+
msgid "WP query plugins empty!"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: inc/background-process/class-lp-background-query-items.php:259
|
4667 |
+
msgid "There is no item found!"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: inc/curds/class-lp-user-item-curd.php:21
|
4671 |
+
msgid "Quiz does not exists."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: inc/curds/class-lp-user-item-curd.php:34
|
4675 |
+
msgid "Invalid quiz."
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: inc/curds/class-lp-course-curd.php:27
|
4679 |
+
msgid "Course does not exist."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: inc/curds/class-lp-course-curd.php:45
|
4683 |
+
#: inc/admin/editor/class-lp-admin-editor-course.php:71
|
4684 |
+
msgid "New Course"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: inc/curds/class-lp-course-curd.php:125
|
4688 |
+
#: inc/curds/class-lp-lesson-curd.php:101
|
4689 |
+
#: inc/curds/class-lp-question-curd.php:161
|
4690 |
+
#: inc/curds/class-lp-quiz-curd.php:151
|
4691 |
+
msgid "<p>Op! ID not found</p>"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: inc/curds/class-lp-course-curd.php:129
|
4695 |
+
msgid "<p>Op! The course does not exist</p>"
|
|
|
|
|
|
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: inc/curds/class-lp-course-curd.php:134
|
4699 |
+
msgid "<p>Sorry! You don't have permission to duplicate this course</p>"
|
|
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: inc/curds/class-lp-course-curd.php:140
|
4703 |
+
msgid "<p>Sorry! Failed to duplicate course!</p>"
|
|
|
|
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: inc/curds/class-lp-user-curd.php:1257
|
4707 |
+
#: inc/curds/class-lp-user-curd.php:1497
|
4708 |
+
msgid "course"
|
|
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: inc/curds/class-lp-user-curd.php:1258
|
4712 |
+
#: inc/curds/class-lp-user-curd.php:1498
|
4713 |
+
msgid "courses"
|
|
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: inc/curds/class-lp-user-curd.php:1704
|
4717 |
+
msgid "quiz"
|
|
|
4718 |
msgstr ""
|
4719 |
|
4720 |
+
#: inc/curds/class-lp-user-curd.php:1705
|
4721 |
+
msgid "quizzes"
|
|
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: inc/curds/class-lp-user-curd.php:1762
|
4725 |
+
msgid "Please provide a valid email address."
|
|
|
|
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: inc/curds/class-lp-user-curd.php:1766
|
4729 |
+
msgid ""
|
4730 |
+
"An account is already registered with your email address. Please log in."
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: inc/curds/class-lp-user-curd.php:1772
|
4734 |
+
msgid "Please enter a valid account username."
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: inc/curds/class-lp-user-curd.php:1776
|
4738 |
+
msgid ""
|
4739 |
+
"An account is already registered with that username. Please choose another."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: inc/curds/class-lp-user-curd.php:1788
|
4743 |
+
msgid "Failed to create user"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: inc/curds/class-lp-order-curd.php:420
|
4747 |
+
#, php-format
|
4748 |
+
msgid "Invalid order with ID \"%d\"."
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: inc/curds/class-lp-order-curd.php:476
|
4752 |
+
#: templates/checkout/order-received.php:88
|
4753 |
+
msgid "Invalid order."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: inc/curds/class-lp-order-curd.php:480
|
4757 |
+
msgid "Order is already assigned."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: inc/curds/class-lp-order-curd.php:486
|
4761 |
+
msgid "User does not exist."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: inc/curds/class-lp-lesson-curd.php:34
|
4765 |
+
msgid "New Lesson"
|
|
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: inc/curds/class-lp-lesson-curd.php:105
|
4769 |
+
msgid "<p>Op! The lesson does not exist</p>"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: inc/curds/class-lp-lesson-curd.php:110
|
4773 |
+
msgid "<p>Sorry! You don't have permission to duplicate this lesson</p>"
|
|
|
|
|
|
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: inc/curds/class-lp-lesson-curd.php:117
|
4777 |
+
msgid "<p>Sorry! Failed to duplicate lesson!</p>"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: inc/curds/class-lp-lesson-curd.php:138
|
4781 |
#, php-format
|
4782 |
+
msgid "Invalid lesson with ID \"%d\"."
|
4783 |
msgstr ""
|
4784 |
|
4785 |
+
#: inc/curds/class-lp-question-curd.php:28
|
4786 |
+
msgid "Question does not exist."
|
|
|
|
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: inc/curds/class-lp-question-curd.php:46
|
4790 |
+
#: inc/admin/editor/class-lp-admin-editor-question.php:104
|
4791 |
+
msgid "New Question"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: inc/curds/class-lp-question-curd.php:165
|
4795 |
+
msgid "<p>Op! The question does not exist</p>"
|
|
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: inc/curds/class-lp-question-curd.php:170
|
4799 |
+
msgid "<p>Sorry! You don't have permission to duplicate this question</p>"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: inc/curds/class-lp-question-curd.php:180
|
4803 |
+
msgid "<p>Sorry! Failed to duplicate question!</p>"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: inc/curds/class-lp-question-curd.php:241
|
4807 |
+
#, php-format
|
4808 |
+
msgid "Invalid question with ID \"%d\"."
|
4809 |
msgstr ""
|
4810 |
|
4811 |
+
#: inc/curds/class-lp-quiz-curd.php:29
|
4812 |
+
msgid "Quiz does not exist."
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: inc/curds/class-lp-quiz-curd.php:44
|
4816 |
+
#, php-format
|
4817 |
+
msgid "Invalid quiz with ID \"%d\"."
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: inc/curds/class-lp-quiz-curd.php:155
|
4821 |
+
msgid "<p>Op! The quiz does not exist</p>"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: inc/curds/class-lp-quiz-curd.php:160
|
4825 |
+
msgid "<p>Sorry! You have not permission to duplicate this quiz</p>"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
+
#: inc/curds/class-lp-quiz-curd.php:167
|
4829 |
+
msgid "<p>Sorry! Failed to duplicate quiz!</p>"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
+
#: templates/content-question/explanation.php:23
|
4833 |
+
msgid "Explanation:"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
+
#: templates/content-question/hint.php:23
|
4837 |
+
msgid "Hint:"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: templates/order/recover-form.php:22
|
4841 |
+
#: inc/admin/views/meta-boxes/order/details.php:116
|
4842 |
+
#: inc/admin/views/meta-boxes/order/child-order.php:22
|
4843 |
+
msgid "Order key"
|
|
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: templates/order/recover-form.php:25
|
4847 |
+
msgid "Recover"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: templates/order/confirm.php:25
|
4851 |
+
msgid ""
|
4852 |
+
"Unfortunately your order cannot be processed as the originating "
|
4853 |
+
"bank/merchant has declined your transaction."
|
4854 |
msgstr ""
|
4855 |
|
4856 |
+
#: templates/order/confirm.php:29
|
4857 |
+
msgid "Please attempt your purchase again or go to your account page."
|
4858 |
msgstr ""
|
4859 |
|
4860 |
+
#: templates/order/confirm.php:31
|
4861 |
+
msgid "Please attempt your purchase again."
|
4862 |
msgstr ""
|
4863 |
|
4864 |
+
#: templates/order/confirm.php:48
|
4865 |
+
msgid "Order Number:"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
+
#: templates/order/confirm.php:52
|
4869 |
+
msgid "Date:"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
+
#: templates/order/confirm.php:56
|
4873 |
+
msgid "Total:"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
+
#: templates/order/confirm.php:61
|
4877 |
+
msgid "Payment Method:"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
+
#: templates/order/confirm.php:66
|
4881 |
+
msgid "Status:"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
+
#: templates/order/order-details.php:81
|
4885 |
+
#: templates/checkout/review-order.php:130
|
4886 |
+
msgid "Subtotal"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: templates/order/order-details.php:92
|
4890 |
+
#, php-format
|
4891 |
+
msgid "<strong>Order key:</strong> %s"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: templates/order/order-details.php:96
|
4895 |
+
msgid "Order status:"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: templates/emails/order-items-table.php:36
|
4899 |
+
#: templates/emails/plain/order-items-table.php:22
|
4900 |
+
msgid "Order summary"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: templates/emails/order-items-table.php:41
|
4904 |
+
#: templates/checkout/order-received.php:29
|
4905 |
+
#: templates/emails/plain/order-items-table.php:24
|
4906 |
+
msgid "Order Number"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
+
#: templates/emails/order-items-table.php:45
|
4910 |
+
#: templates/emails/plain/order-items-table.php:26
|
4911 |
+
msgid "Purchase Date"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: templates/emails/order-items-table.php:49
|
4915 |
+
#: templates/checkout/payment.php:40
|
4916 |
+
#: templates/checkout/order-received.php:75
|
4917 |
+
#: templates/emails/plain/order-items-table.php:28
|
4918 |
+
msgid "Payment Method"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: templates/emails/order-items-table.php:57
|
4922 |
+
#: templates/emails/plain/order-items-table.php:32
|
4923 |
+
msgid "User Email"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: templates/emails/order-items-table.php:67
|
4927 |
+
#: inc/admin/views/meta-boxes/order/details.php:127
|
4928 |
+
msgid "Quantity"
|
4929 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4930 |
|
4931 |
+
#: templates/checkout/guest-email.php:24
|
4932 |
+
msgid "Your email"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: templates/checkout/guest-email.php:25
|
4936 |
+
msgid "Your real email we will send the order code."
|
|
|
|
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: templates/checkout/guest-email.php:35
|
4940 |
+
msgid "Your email is already exists. Checkout as this account?"
|
|
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: templates/checkout/guest-email.php:42
|
4944 |
+
msgid ""
|
4945 |
+
"Create new account with this email? Account information will be sent to this "
|
4946 |
+
"email."
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: templates/checkout/form-login.php:34
|
4950 |
+
msgid "Returning customer"
|
|
|
|
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: templates/checkout/form-login.php:35
|
4954 |
+
msgid "I am a returning customer."
|
4955 |
msgstr ""
|
4956 |
|
4957 |
+
#: templates/checkout/form-login.php:102
|
4958 |
+
#: templates/checkout/form-login.php:112
|
4959 |
+
#: templates/global/form-login.php:49
|
4960 |
+
msgid "Login"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: templates/checkout/review-order.php:20
|
4964 |
+
msgid "Your order"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: templates/checkout/order-comment.php:20
|
4968 |
+
msgid "Additional Information"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: templates/checkout/order-comment.php:23
|
4972 |
+
msgid "Note to administrator"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: templates/checkout/form-logged-in.php:30
|
4976 |
+
msgid "Log out of this account"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: templates/checkout/form-logged-in.php:30
|
4980 |
+
msgid "Log out »"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: templates/checkout/term-conditions.php:20
|
4984 |
+
#, php-format
|
4985 |
+
msgid "I’ve read and accept the <a href=\"%s\">terms & conditions.</a>"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
+
#: templates/checkout/payment.php:34
|
4989 |
+
msgid "No payment method is available."
|
4990 |
msgstr ""
|
4991 |
|
4992 |
+
#: templates/checkout/form-register.php:36
|
4993 |
+
msgid "New Customer"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
+
#: templates/checkout/form-register.php:38
|
4997 |
+
msgid "Register Account"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: templates/checkout/form-register.php:40
|
5001 |
msgid ""
|
5002 |
+
"By creating an account you will be able to keep track of the course's "
|
5003 |
+
"progress you have previously enrolled."
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: templates/checkout/form.php:96
|
5007 |
+
#, php-format
|
5008 |
+
msgid "Please login to continue checkout. %s"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: templates/checkout/form.php:96
|
5012 |
+
msgid "Login?"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: templates/checkout/form.php:103
|
5016 |
+
msgid "Continue checkout as Guest?"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: templates/content-lesson/block-content.php:17
|
5020 |
+
msgid "This lesson has been locked"
|
|
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: templates/content-lesson/button-complete.php:46
|
5024 |
+
#: templates/content-quiz/buttons/complete.php:29
|
5025 |
+
msgid "Complete"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: templates/content-lesson/no-content.php:19
|
5029 |
+
msgid "Lesson content is empty."
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: templates/profile/not-logged-in.php:19
|
5033 |
+
#, php-format
|
5034 |
+
msgid "Please <a href=\"%s\">login</a> to see your profile content"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
+
#: templates/profile/dashboard-logged-in.php:26
|
5038 |
+
#, php-format
|
5039 |
+
msgid "Hello <strong>%s</strong> (not %s? %s)"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: templates/profile/dashboard-logged-in.php:26
|
5043 |
+
msgid "Sign out"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: templates/profile/profile.php:47
|
5047 |
+
msgid "This user does not public their profile."
|
|
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: templates/single-course/progress.php:38
|
5051 |
+
msgid "Items completed"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: templates/single-course/progress.php:42
|
5055 |
+
#, php-format
|
5056 |
+
msgid "%d of %d items"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: templates/single-course/progress.php:56
|
5060 |
+
msgid "Course results"
|
|
|
5061 |
msgstr ""
|
5062 |
|
5063 |
+
#: templates/single-course/progress.php:80
|
5064 |
+
#, php-format
|
5065 |
+
msgid "Passing condition: %s%%"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: templates/single-course/instructor.php:22
|
5069 |
+
msgid "About the Instructor"
|
|
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: templates/single-course/students.php:29
|
5073 |
#, php-format
|
5074 |
+
msgid "%d students"
|
5075 |
msgstr ""
|
5076 |
|
5077 |
+
#: templates/single-course/students.php:29
|
5078 |
+
#, php-format
|
5079 |
+
msgid "%d student"
|
5080 |
+
msgid_plural "%d students"
|
5081 |
+
msgstr[0] ""
|
5082 |
+
msgstr[1] ""
|
5083 |
+
|
5084 |
+
#: templates/single-course/description.php:25
|
5085 |
+
msgid "Course description"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: templates/single-course/content-protected.php:25
|
5089 |
+
msgid "This content is protected, please enroll course to view this content!"
|
|
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#: templates/single-course/content-protected.php:29
|
5093 |
+
#, php-format
|
5094 |
+
msgid ""
|
5095 |
+
"This content is protected, please <a href=\"%s\">login</a> and enroll course "
|
5096 |
+
"to view this content!"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: templates/single-course/remaining-time.php:22
|
5100 |
+
msgid "Enrolled"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: templates/single-course/remaining-time.php:25
|
5104 |
+
#, php-format
|
5105 |
+
msgid "You have %s remaining for the course"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: templates/content-quiz/progress.php:40
|
5109 |
+
#: templates/single-course/section/title.php:52
|
5110 |
+
#, php-format
|
5111 |
+
msgid "%d/%d"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
+
#: templates/content-quiz/progress.php:50
|
5115 |
+
msgid "Time remaining"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
+
#: templates/content-quiz/progress.php:52
|
5119 |
+
msgid "Duration Unlimited"
|
|
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: templates/content-quiz/review-title.php:18
|
5123 |
+
#: templates/content-quiz/buttons/review.php:26
|
5124 |
+
msgid "Review"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: templates/content-quiz/preview-mode.php:17
|
5128 |
+
msgid "You are currently viewing quiz in preview mode."
|
|
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: templates/content-quiz/intro.php:24
|
5132 |
+
msgid "Attempts allowed"
|
|
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: templates/content-quiz/intro.php:32
|
5136 |
+
msgid "Passing grade"
|
|
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: templates/content-quiz/result.php:28
|
5140 |
+
msgid "Your Result"
|
|
|
5141 |
msgstr ""
|
5142 |
|
5143 |
+
#: templates/content-quiz/result.php:33
|
5144 |
+
#, php-format
|
5145 |
+
msgid "Your grade is <strong>%s</strong>"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: templates/content-quiz/result.php:38
|
5149 |
+
msgctxt "quiz-result"
|
5150 |
+
msgid "Time spend"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
+
#: templates/content-quiz/result.php:42
|
5154 |
+
msgctxt "quiz-result"
|
5155 |
+
msgid "Questions"
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
#: templates/content-quiz/result.php:46
|
5159 |
+
msgctxt "quiz-result"
|
5160 |
+
msgid "Correct"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
+
#: templates/content-quiz/result.php:50
|
5164 |
+
msgctxt "quiz-result"
|
5165 |
+
msgid "Wrong"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: templates/content-quiz/result.php:54
|
5169 |
+
msgctxt "quiz-result"
|
5170 |
+
msgid "Skipped"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
+
#: templates/content-quiz/history.php:34
|
5174 |
+
#, php-format
|
5175 |
+
msgid "Other results (newest %d items)"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: templates/content-quiz/history.php:53
|
5179 |
+
msgid "Time"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: templates/content-quiz/history.php:54
|
5183 |
+
msgid "Result"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: templates/content-quiz/history.php:83
|
5187 |
+
msgid "No history found!"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: templates/global/before-main-content.php:26
|
5191 |
+
msgid "LearnPress <strong>Checkout</strong> page is not set up. "
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: templates/global/before-main-content.php:29
|
5195 |
+
msgid "Please contact administrator for setting up this page."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: templates/global/before-main-content.php:31
|
5199 |
#, php-format
|
5200 |
msgid ""
|
5201 |
+
"Please <a href=\\\"%s\\\" target=\\\"_blank\\\">setup</a> it so users can "
|
5202 |
+
"purchase courses."
|
5203 |
+
msgstr ""
|
5204 |
+
|
5205 |
+
#: templates/global/block-content.php:18
|
5206 |
+
msgid ""
|
5207 |
+
"Content of this item has blocked because the course has exceeded duration."
|
5208 |
+
msgstr ""
|
5209 |
+
|
5210 |
+
#: templates/global/form-login.php:23
|
5211 |
+
msgctxt "login-heading"
|
5212 |
+
msgid "Login"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
+
#: templates/global/form-login.php:43
|
5216 |
+
msgid "Remember me"
|
5217 |
msgstr ""
|
5218 |
|
5219 |
+
#: templates/global/form-login.php:52
|
5220 |
+
msgid "Lost your password?"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: templates/global/form-register.php:23
|
5224 |
+
msgctxt "register-heading"
|
5225 |
+
msgid "Register"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: templates/global/restrict-access.php:28
|
5229 |
+
msgid ""
|
5230 |
+
"You have no permission to view this area. Please contact site's "
|
5231 |
+
"administrators for more details."
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: inc/admin/settings/class-lp-settings-profile.php:56
|
5235 |
+
#: inc/admin/settings/class-lp-settings-general.php:42
|
5236 |
+
#: inc/admin/settings/class-lp-settings-courses.php:68
|
5237 |
+
msgid "General settings."
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: inc/admin/settings/class-lp-settings-profile.php:59
|
5241 |
+
msgid "Profile page"
|
|
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: inc/admin/settings/class-lp-settings-profile.php:65
|
5245 |
+
msgid "Add link to admin bar"
|
5246 |
msgstr ""
|
5247 |
|
5248 |
+
#: inc/admin/settings/class-lp-settings-profile.php:71
|
5249 |
+
msgid "Text link"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
+
#: inc/admin/settings/class-lp-settings-profile.php:76
|
5253 |
+
msgid "If empty, please enter the name of the page used for profile."
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: inc/admin/settings/class-lp-settings-profile.php:89
|
5257 |
+
msgid "Target link"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: inc/admin/settings/class-lp-settings-profile.php:94
|
5261 |
+
msgid "Open in same the window"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
+
#: inc/admin/settings/class-lp-settings-profile.php:95
|
5265 |
+
msgid "Open in a new window"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: inc/admin/settings/class-lp-settings-profile.php:109
|
5269 |
+
#: inc/admin/settings/class-lp-settings-courses.php:110
|
5270 |
+
msgid "Courses per page"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
+
#: inc/admin/settings/class-lp-settings-profile.php:114
|
5274 |
+
msgid "Number of courses displayed per page in profile."
|
5275 |
msgstr ""
|
5276 |
|
5277 |
+
#: inc/admin/settings/class-lp-settings-profile.php:117
|
5278 |
+
msgid "Enable login form"
|
5279 |
msgstr ""
|
5280 |
|
5281 |
+
#: inc/admin/settings/class-lp-settings-profile.php:121
|
5282 |
+
msgid "Enable login from profile if the user is not logged in."
|
5283 |
msgstr ""
|
5284 |
|
5285 |
+
#: inc/admin/settings/class-lp-settings-profile.php:124
|
5286 |
+
msgid "Enable register form"
|
5287 |
msgstr ""
|
5288 |
|
5289 |
+
#: inc/admin/settings/class-lp-settings-profile.php:128
|
5290 |
+
msgid "Enable register from profile if the user is not logged in."
|
5291 |
msgstr ""
|
5292 |
|
5293 |
+
#: inc/admin/settings/class-lp-settings-profile.php:136
|
5294 |
+
msgid "Sub Tab Slugs"
|
|
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: inc/admin/settings/class-lp-settings-profile.php:138
|
5298 |
+
msgid "The slugs of tabs display in profile page. Each tab should be unique."
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: inc/admin/settings/class-lp-settings-profile.php:146
|
5302 |
+
#: inc/admin/settings/class-lp-settings-profile.php:154
|
5303 |
+
#: inc/admin/settings/class-lp-settings-profile.php:162
|
5304 |
+
#: inc/admin/settings/class-lp-settings-profile.php:170
|
5305 |
+
#: inc/admin/settings/class-lp-settings-profile.php:178
|
5306 |
+
#: inc/admin/settings/class-lp-settings-profile.php:197
|
5307 |
+
#: inc/admin/settings/class-lp-settings-profile.php:205
|
5308 |
+
#: inc/admin/settings/class-lp-settings-profile.php:213
|
5309 |
+
#: inc/admin/settings/class-lp-settings-profile.php:221
|
5310 |
+
#, php-format
|
5311 |
+
msgid "Example link is %s"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: inc/admin/settings/class-lp-settings-profile.php:187
|
5315 |
+
msgid "Settings Tab"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: inc/admin/settings/class-lp-settings-profile.php:189
|
5319 |
+
msgid "The slugs of sections in settings tab. Each slugs should be unique."
|
|
|
|
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: inc/admin/settings/class-lp-settings-profile.php:192
|
5323 |
+
msgid "Slug"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: inc/admin/settings/class-lp-settings-profile.php:200
|
5327 |
+
msgid "Basic Information"
|
|
|
|
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: inc/admin/settings/class-lp-settings-profile.php:216
|
5331 |
+
msgid "Change Password"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: inc/admin/settings/class-lp-settings-profile.php:231
|
5335 |
+
msgid "User avatar settings."
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: inc/admin/settings/class-lp-settings-profile.php:234
|
5339 |
+
msgid "Enable custom avatar"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: inc/admin/settings/class-lp-settings-profile.php:240
|
5343 |
+
msgid "Size"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: inc/admin/settings/class-lp-settings-profile.php:254
|
5347 |
+
msgid "The height and width of avatar should be equal."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: inc/admin/settings/class-lp-settings-profile.php:264
|
5351 |
+
msgid "Publicity and sharing user profile content."
|
|
|
|
|
|
|
|
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: inc/admin/settings/class-lp-settings-profile.php:267
|
5355 |
+
#: templates/profile/tabs/settings/publicity.php:38
|
5356 |
+
msgid "My dashboard"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
+
#: inc/admin/settings/class-lp-settings-profile.php:271
|
5360 |
+
#: templates/profile/tabs/settings/publicity.php:43
|
5361 |
+
msgid ""
|
5362 |
+
"Public user profile content, if this option is turn off then other sections "
|
5363 |
+
"in profile also become invisible."
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: inc/admin/settings/class-lp-settings-profile.php:278
|
5367 |
+
msgid "Public user profile courses."
|
|
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: inc/admin/settings/class-lp-settings-profile.php:278
|
5371 |
+
msgid "Allow user to turn on/off sharing profile course option"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: inc/admin/settings/class-lp-settings-profile.php:295
|
5375 |
+
msgid "Public user profile quizzes."
|
|
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: inc/admin/settings/class-lp-settings-profile.php:295
|
5379 |
+
msgid "Allow user to turn on/off sharing profile quizzes option"
|
|
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: inc/admin/settings/class-lp-settings-payments.php:28
|
5383 |
+
#: inc/admin/settings/class-lp-settings-payments.php:143
|
5384 |
+
msgid "Payments"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: inc/admin/settings/class-lp-settings-payments.php:81
|
5388 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:66
|
5389 |
+
msgid "Checkout page"
|
|
|
|
|
|
|
|
|
5390 |
msgstr ""
|
5391 |
|
5392 |
+
#: inc/admin/settings/class-lp-settings-payments.php:87
|
5393 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:59
|
5394 |
+
msgid "Auto enroll"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: inc/admin/settings/class-lp-settings-payments.php:91
|
5398 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:60
|
5399 |
+
msgid "Auto enroll a user after they buy a course."
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: inc/admin/settings/class-lp-settings-payments.php:94
|
5403 |
+
msgid "Enable guest checkout"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: inc/admin/settings/class-lp-settings-payments.php:98
|
5407 |
+
msgid "Enable user buy course as a Guest."
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: inc/admin/settings/class-lp-settings-payments.php:101
|
5411 |
+
msgid "Enable login in checkout"
|
|
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: inc/admin/settings/class-lp-settings-payments.php:105
|
5415 |
+
msgid "Enable login form in checkout page."
|
|
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: inc/admin/settings/class-lp-settings-payments.php:108
|
5419 |
+
msgid "Enable registration in checkout"
|
|
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: inc/admin/settings/class-lp-settings-payments.php:112
|
5423 |
+
msgid "Enable registration form in checkout page."
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: inc/admin/settings/class-lp-settings-payments.php:115
|
5427 |
+
msgid "Terms & conditions page"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: inc/admin/settings/class-lp-settings-payments.php:127
|
5431 |
+
msgid "Endpoints"
|
|
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: inc/admin/settings/class-lp-settings-payments.php:131
|
5435 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:76
|
5436 |
+
msgid "Order received"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
+
#: inc/admin/settings/class-lp-settings-payments.php:134
|
5440 |
+
msgid "lp-order-received"
|
5441 |
+
msgstr ""
|
5442 |
+
|
5443 |
+
#: inc/admin/settings/class-lp-settings-payments.php:136
|
5444 |
+
#, php-format
|
5445 |
+
msgid ""
|
5446 |
+
"Unique slug in checkout page to displays order details. Example: http:"
|
5447 |
+
"//example.com/lp-checkout/%s/"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: inc/admin/settings/class-lp-settings-payments.php:145
|
5451 |
+
msgid ""
|
5452 |
+
"All available payments are listed here. Drag and drop the payments to re-"
|
5453 |
+
"order."
|
5454 |
msgstr ""
|
5455 |
|
5456 |
+
#: inc/admin/settings/class-lp-settings-payments.php:148
|
5457 |
+
msgid "Payment order"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
+
#: inc/admin/settings/class-lp-settings-emails.php:64
|
5461 |
+
msgid "General options"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
+
#: inc/admin/settings/class-lp-settings-emails.php:112
|
5465 |
+
msgid "Email options"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: inc/admin/settings/class-lp-settings-emails.php:114
|
5469 |
+
#: inc/admin/views/settings/emails/general.php:17
|
5470 |
+
msgid ""
|
5471 |
+
"The following options affect the sender (email address and name) used in "
|
5472 |
+
"LearnPress emails."
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: inc/admin/settings/class-lp-settings-emails.php:117
|
5476 |
+
msgid "From name"
|
|
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: inc/admin/settings/class-lp-settings-emails.php:123
|
5480 |
+
msgid "From email"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: inc/admin/settings/class-lp-settings-emails.php:129
|
5484 |
+
msgid "Send email in background"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: inc/admin/settings/class-lp-settings-emails.php:133
|
5488 |
+
msgid "Defer transaction email and runs in background."
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: inc/admin/settings/class-lp-settings-emails.php:136
|
5492 |
+
msgid "Email template"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: inc/admin/settings/class-lp-settings-emails.php:140
|
5496 |
+
msgid "Default Email Content"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: inc/admin/settings/class-lp-settings-emails.php:144
|
5500 |
+
msgid ""
|
5501 |
+
"Default email content type for all emails that set content type is <strong>"
|
5502 |
+
"General Settings</strong>."
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: inc/admin/settings/class-lp-settings-emails.php:146
|
5506 |
+
msgid "Plain Text"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: inc/admin/settings/class-lp-settings-emails.php:151
|
5510 |
+
#: inc/admin/views/settings/emails/general.php:40
|
5511 |
+
msgid "Header image"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: inc/admin/settings/class-lp-settings-emails.php:156
|
5515 |
+
#: inc/admin/views/settings/emails/general.php:43
|
5516 |
+
msgid "The image will be displayed in the top of the email."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: inc/admin/settings/class-lp-settings-emails.php:159
|
5520 |
+
#: inc/admin/views/settings/emails/general.php:47
|
5521 |
+
msgid "Footer text"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
+
#: inc/admin/settings/class-lp-settings-emails.php:163
|
5525 |
+
msgid "The texts display in the bottom of email."
|
5526 |
msgstr ""
|
5527 |
|
5528 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:22
|
5529 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:88
|
5530 |
+
msgid "Advanced"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:53
|
5534 |
+
msgid "Enable custom colors"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:57
|
5538 |
+
msgid "Use color schema for main colors."
|
|
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:60
|
5542 |
+
msgid "Color schema"
|
|
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:66
|
5546 |
+
msgid "Load css"
|
|
|
|
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:70
|
5550 |
+
msgid "Load default stylesheet for LearnPress."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:73
|
5554 |
+
msgid "Debug mode"
|
|
|
|
|
|
|
|
|
|
|
|
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:77
|
5558 |
+
msgid "Turn on/off debug mode for developer."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:80
|
5562 |
+
msgid "Hard cache"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:84
|
5566 |
+
msgid "Enable hard cache"
|
|
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:88
|
5570 |
+
#, php-format
|
5571 |
+
msgid ""
|
5572 |
+
"Enable cache for static content such as content and settings of course, "
|
5573 |
+
"lesson, quiz. <a href=\"%s\">%s</a>"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:91
|
5577 |
+
msgid "Others"
|
|
|
|
|
|
|
5578 |
msgstr ""
|
5579 |
|
5580 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:95
|
5581 |
+
msgid "Enable lesson video"
|
|
|
|
|
|
|
5582 |
msgstr ""
|
5583 |
|
5584 |
+
#: inc/admin/settings/class-lp-settings-advanced.php:99
|
5585 |
+
msgid ""
|
5586 |
+
"When this option is enabled, the first video embed in lesson content will be "
|
5587 |
+
"detected and move to the top."
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: inc/admin/settings/class-lp-settings-general.php:45
|
5591 |
+
msgid "Logout redirect"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: inc/admin/settings/class-lp-settings-general.php:49
|
5595 |
+
msgid "The page where user will be redirected to after logging out."
|
|
|
|
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: inc/admin/settings/class-lp-settings-general.php:54
|
5599 |
+
msgid "Setting up your currency unit and its formatting."
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: inc/admin/settings/class-lp-settings-general.php:65
|
5603 |
+
#: inc/admin/views/setup/steps/currency.php:37
|
5604 |
+
msgid "Currency position"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: inc/admin/settings/class-lp-settings-general.php:72
|
5608 |
+
#: inc/admin/views/setup/steps/currency.php:51
|
5609 |
+
msgid "Thousands Separator"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
+
#: inc/admin/settings/class-lp-settings-general.php:78
|
5613 |
+
#: inc/admin/views/setup/steps/currency.php:56
|
5614 |
+
msgid "Decimals Separator"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: inc/admin/settings/class-lp-settings-general.php:84
|
5618 |
+
#: inc/admin/views/setup/steps/currency.php:61
|
5619 |
+
msgid "Number of Decimals"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: inc/admin/settings/class-lp-settings-pages.php:16
|
5623 |
+
msgid "Pages"
|
|
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: inc/admin/settings/class-lp-settings-pages.php:28
|
5627 |
+
msgid "Become a teacher"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
+
#: inc/admin/settings/class-lp-settings-pages.php:39
|
5631 |
+
msgid "Become a teacher page"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: inc/admin/settings/class-lp-settings-pages.php:45
|
5635 |
+
msgid "Instructors registration"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: inc/admin/settings/class-lp-settings-pages.php:46
|
5639 |
+
msgid "Create option for instructors registration."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: inc/admin/settings/class-lp-settings-checkout.php:72
|
5643 |
+
msgid "Checkout Endpoints"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: inc/admin/settings/class-lp-settings-courses.php:38
|
5647 |
+
#: inc/admin/meta-box/fields/course-permalink.php:36
|
5648 |
+
#: inc/admin/views/settings/fields/course-permalink.php:14
|
5649 |
+
msgctxt "default-slug"
|
5650 |
+
msgid "courses"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: inc/admin/settings/class-lp-settings-courses.php:71
|
5654 |
+
msgid "Review course before publishing"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
+
#: inc/admin/settings/class-lp-settings-courses.php:72
|
5658 |
+
msgid "The course needs to be reviewed by admin before it can be published."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
+
#: inc/admin/settings/class-lp-settings-courses.php:78
|
5662 |
+
msgid "Enable editing published course"
|
5663 |
msgstr ""
|
5664 |
|
5665 |
+
#: inc/admin/settings/class-lp-settings-courses.php:79
|
5666 |
+
msgid ""
|
5667 |
+
"Allow instructors to edit the course which were published without review.<br "
|
5668 |
+
"/> If this option is disabled, the course status will be changed to Pending "
|
5669 |
+
"Review when the instructor update course."
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: inc/admin/settings/class-lp-settings-courses.php:99
|
5673 |
+
msgid "Archive"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: inc/admin/settings/class-lp-settings-courses.php:101
|
5677 |
+
msgid "Those settings are applied to archive course page."
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: inc/admin/settings/class-lp-settings-courses.php:104
|
5681 |
+
msgid "Courses Page"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: inc/admin/settings/class-lp-settings-courses.php:111
|
5685 |
+
msgid "Number of courses displayed per page."
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: inc/admin/settings/class-lp-settings-courses.php:126
|
5689 |
+
msgid "Single course"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: inc/admin/settings/class-lp-settings-courses.php:128
|
5693 |
+
msgid "Those settings are applied to single course page."
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: inc/admin/settings/class-lp-settings-courses.php:132
|
5697 |
+
msgid "Course category base"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: inc/admin/settings/class-lp-settings-courses.php:138
|
5701 |
+
msgid "Course tag base"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: inc/admin/settings/class-lp-settings-courses.php:144
|
5705 |
+
msgid "Single course permalink"
|
|
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: inc/admin/settings/class-lp-settings-courses.php:164
|
5709 |
+
msgid "Enrolled students number"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: inc/admin/settings/class-lp-settings-courses.php:167
|
5713 |
+
msgid ""
|
5714 |
+
"Displays a fake numbers of enrolled students. Disable to show the real value."
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: inc/admin/settings/class-lp-settings-courses.php:175
|
5718 |
+
msgid "Course thumbnails"
|
|
|
|
|
|
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: inc/admin/settings/class-lp-settings-courses.php:177
|
5722 |
+
msgid "Thumbnail generation for archive/single course."
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: inc/admin/settings/class-lp-settings-courses.php:202
|
5726 |
+
msgid "Archive course"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
+
#: inc/admin/settings/class-lp-settings-courses.php:206
|
5730 |
+
msgid "Turn on/off courses extra thumbnail."
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: inc/admin/settings/class-lp-settings-courses.php:209
|
5734 |
+
msgid "Thumbnail dimensions"
|
|
|
5735 |
msgstr ""
|
5736 |
|
5737 |
+
#: inc/admin/pointers/pointers.php:66
|
5738 |
+
msgid "Course Curriculum"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
+
#: inc/admin/pointers/pointers.php:67
|
|
|
5742 |
msgid ""
|
5743 |
+
"Build a course by selecting created lessons and quizzes or adding new ones. "
|
5744 |
+
"You can easily sort, edit, shortcut (l and q). With LearnPress, it's never "
|
5745 |
+
"been easier."
|
|
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: inc/admin/sub-menus/class-lp-submenu-addons.php:16
|
5749 |
+
msgid "LearnPress Add-ons"
|
|
|
|
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: inc/admin/sub-menus/class-lp-submenu-addons.php:28
|
5753 |
+
#, php-format
|
5754 |
+
msgid "Installed (%d)"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
+
#: inc/admin/sub-menus/class-lp-submenu-addons.php:29
|
5758 |
+
#, php-format
|
5759 |
+
msgid "Get more (%d)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
#: inc/admin/sub-menus/class-lp-submenu-addons.php:30
|
5763 |
+
#, php-format
|
5764 |
+
msgid "Themes (%d)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: inc/admin/sub-menus/class-lp-submenu-addons.php:57
|
5768 |
+
msgid "Search..."
|
|
|
|
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:15
|
5772 |
+
msgid "Statistics"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:16
|
5776 |
+
msgid "LearnPress Statistics"
|
|
|
|
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: inc/admin/sub-menus/class-lp-submenu-statistics.php:27
|
5780 |
+
msgid "Users"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: inc/admin/sub-menus/class-lp-submenu-tools.php:13
|
5784 |
+
msgid "Tools"
|
|
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: inc/admin/sub-menus/class-lp-submenu-tools.php:14
|
5788 |
+
msgid "LearnPress Tools"
|
|
|
|
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: inc/admin/sub-menus/class-lp-submenu-tools.php:20
|
5792 |
+
msgid "Template"
|
|
|
|
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: inc/admin/sub-menus/class-lp-submenu-tools.php:21
|
5796 |
+
msgid "Database"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: inc/admin/sub-menus/class-lp-submenu-tools.php:23
|
5800 |
+
msgid "Cache"
|
|
|
|
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: inc/admin/sub-menus/class-lp-submenu-settings.php:15
|
5804 |
+
msgid "LearnPress Settings"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: inc/admin/sub-menus/class-lp-submenu-settings.php:95
|
5808 |
+
msgid "Save settings"
|
|
|
|
|
5809 |
msgstr ""
|
5810 |
|
5811 |
+
#: inc/admin/sub-menus/class-lp-submenu-settings.php:99
|
5812 |
+
msgid "Do you want to restore all settings to default?"
|
|
|
|
|
5813 |
msgstr ""
|
5814 |
|
5815 |
+
#: inc/admin/sub-menus/class-lp-submenu-settings.php:100
|
5816 |
+
#: inc/admin/meta-box/fields/color-schema.php:101
|
5817 |
+
#: inc/widgets/course-filters/tmpl/default.php:85
|
5818 |
+
#: inc/admin/views/tools/course/html-user-item.php:28
|
5819 |
+
msgid "Reset"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: inc/admin/views/html-admin-notice-templates.php:31
|
5823 |
+
#, php-format
|
5824 |
msgid ""
|
5825 |
+
"There is a new update of LearnPress. You may need to update your theme "
|
5826 |
+
"<strong>(%s)</strong> to avoid outdated template files."
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: inc/admin/views/html-admin-notice-templates.php:32
|
5830 |
+
#, php-format
|
5831 |
msgid ""
|
5832 |
+
"This is not a bug, don't worry. Read more about Outdated template files "
|
5833 |
+
"notice <a href=\"%s\" target=\"_blank\">here</a>."
|
5834 |
msgstr ""
|
5835 |
|
5836 |
+
#: inc/admin/views/html-admin-notice-templates.php:40
|
5837 |
+
msgid "View list of outdated templates"
|
|
|
|
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: inc/admin/helpers/class-lp-plugins-helper.php:252
|
5841 |
+
#: inc/admin/helpers/class-lp-plugins-helper.php:262
|
5842 |
+
msgid "Disable Now"
|
|
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: inc/admin/helpers/class-lp-plugins-helper.php:254
|
5846 |
+
#: inc/admin/helpers/class-lp-plugins-helper.php:264
|
5847 |
+
msgid "Enable Now"
|
|
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: inc/admin/editor/class-lp-admin-editor-quiz.php:45
|
5851 |
+
msgid "Invalid quiz"
|
|
|
5852 |
msgstr ""
|
5853 |
|
5854 |
+
#: inc/admin/editor/class-lp-admin-editor-quiz.php:156
|
5855 |
+
#: inc/admin/editor/class-lp-admin-editor-quiz.php:591
|
5856 |
+
msgid "Quiz creation failed."
|
|
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:92
|
5860 |
+
msgid "Make payment via Paypal."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:96
|
5864 |
+
msgid "Pay with Paypal"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:381
|
5868 |
+
msgid "IPN payment completed"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:506
|
5872 |
+
#: inc/admin/views/setup/setup-paypal.php:24
|
5873 |
+
msgid "Paypal Email"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:526
|
5877 |
+
#: inc/admin/views/settings/payments.php:68
|
5878 |
+
#: inc/admin/views/setup/setup-paypal.php:34
|
5879 |
+
msgid "Sandbox Mode"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
+
#: inc/gateways/paypal/class-lp-gateway-paypal.php:542
|
5883 |
+
#: inc/admin/views/settings/payments.php:76
|
5884 |
+
msgid "Sandbox Email Address"
|
|
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: inc/widgets/course-filters/course-filters.php:11
|
5888 |
+
#: inc/widgets/course-progress/course-progress.php:46
|
5889 |
+
#: inc/widgets/course-attributes/course-attributes.php:11
|
5890 |
+
#: inc/widgets/featured-courses/featured-courses.php:45
|
5891 |
+
#: inc/widgets/course-info/course-info.php:46
|
5892 |
+
#: inc/widgets/popular-courses/popular-courses.php:46
|
5893 |
+
#: inc/widgets/recent-courses/recent-courses.php:46
|
5894 |
+
#: inc/admin/views/setup/setup-stripe.php:7
|
5895 |
+
msgid "Title"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
+
#: inc/widgets/course-filters/course-filters.php:14
|
5899 |
+
msgid "Course filters"
|
|
|
|
|
|
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: inc/widgets/course-filters/course-filters.php:17
|
5903 |
+
msgid "Filter by"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: inc/widgets/course-filters/course-filters.php:24
|
5907 |
+
msgid "Attribute operation"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
+
#: inc/widgets/course-filters/course-filters.php:29
|
5911 |
+
#: inc/widgets/course-filters/course-filters.php:39
|
5912 |
+
msgid "And"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: inc/widgets/course-filters/course-filters.php:30
|
5916 |
+
#: inc/widgets/course-filters/course-filters.php:40
|
5917 |
+
msgid "Or"
|
|
|
|
|
|
|
|
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: inc/widgets/course-filters/course-filters.php:34
|
5921 |
+
msgid "Value operation"
|
|
|
|
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: inc/widgets/course-filters/course-filters.php:44
|
5925 |
+
msgid "Ajax filter"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: inc/widgets/course-filters/course-filters.php:48
|
5929 |
+
msgid "Use ajax to fetch content while filtering"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: inc/widgets/course-filters/course-filters.php:51
|
5933 |
+
msgid "Button filter"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
+
#: inc/widgets/course-filters/course-filters.php:55
|
5937 |
+
msgid "If checked, user has to click this button to start filtering"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: inc/widgets/course-progress/course-progress.php:49
|
5941 |
+
msgid "Course Progress"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: inc/widgets/course-progress/course-progress.php:52
|
5945 |
+
#: inc/widgets/featured-courses/featured-courses.php:95
|
5946 |
+
#: inc/widgets/course-info/course-info.php:52
|
5947 |
+
#: inc/widgets/popular-courses/popular-courses.php:96
|
5948 |
+
#: inc/widgets/recent-courses/recent-courses.php:96
|
5949 |
+
msgid "CSS Class"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: inc/widgets/course-attributes/course-attributes.php:14
|
5953 |
+
msgid "Course attributes"
|
|
|
|
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: inc/widgets/featured-courses/featured-courses.php:48
|
5957 |
+
msgid "Featured Courses"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: inc/widgets/featured-courses/featured-courses.php:51
|
5961 |
+
#: inc/widgets/popular-courses/popular-courses.php:52
|
5962 |
+
#: inc/widgets/recent-courses/recent-courses.php:52
|
5963 |
+
msgid "Show teacher"
|
|
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: inc/widgets/featured-courses/featured-courses.php:57
|
5967 |
+
#: inc/widgets/popular-courses/popular-courses.php:58
|
5968 |
+
#: inc/widgets/recent-courses/recent-courses.php:58
|
5969 |
+
msgid "Show lesson"
|
5970 |
msgstr ""
|
5971 |
|
5972 |
+
#: inc/widgets/featured-courses/featured-courses.php:63
|
5973 |
+
#: inc/widgets/popular-courses/popular-courses.php:64
|
5974 |
+
#: inc/widgets/recent-courses/recent-courses.php:64
|
5975 |
+
msgid "Show Thumbnail"
|
|
|
5976 |
msgstr ""
|
5977 |
|
5978 |
+
#: inc/widgets/featured-courses/featured-courses.php:69
|
5979 |
+
#: inc/widgets/popular-courses/popular-courses.php:70
|
5980 |
+
#: inc/widgets/recent-courses/recent-courses.php:70
|
5981 |
+
msgid "Limit"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
+
#: inc/widgets/featured-courses/featured-courses.php:76
|
5985 |
+
#: inc/widgets/popular-courses/popular-courses.php:77
|
5986 |
+
#: inc/widgets/recent-courses/recent-courses.php:77
|
5987 |
+
msgid "Description Length"
|
5988 |
msgstr ""
|
5989 |
|
5990 |
+
#: inc/widgets/featured-courses/featured-courses.php:83
|
5991 |
+
#: inc/widgets/popular-courses/popular-courses.php:84
|
5992 |
+
#: inc/widgets/recent-courses/recent-courses.php:84
|
5993 |
+
msgid "Show Enrolled Students"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: inc/widgets/featured-courses/featured-courses.php:89
|
5997 |
+
#: inc/widgets/popular-courses/popular-courses.php:90
|
5998 |
+
#: inc/widgets/recent-courses/recent-courses.php:90
|
5999 |
+
msgid "Show Price"
|
|
|
6000 |
msgstr ""
|
6001 |
|
6002 |
+
#: inc/widgets/featured-courses/featured-courses.php:101
|
6003 |
+
#: inc/widgets/popular-courses/popular-courses.php:102
|
6004 |
+
#: inc/widgets/recent-courses/recent-courses.php:102
|
6005 |
+
msgid "Go to Courses"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
+
#: inc/widgets/course-info/course-info.php:49
|
6009 |
+
msgid "Course Info"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
+
#: inc/widgets/popular-courses/popular-courses.php:49
|
6013 |
+
msgid "Popular Courses"
|
|
|
6014 |
msgstr ""
|
6015 |
|
6016 |
+
#: inc/widgets/recent-courses/recent-courses.php:49
|
6017 |
+
msgid "Recent Courses"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
+
#: templates/content-question/single-choice/answer-options.php:17
|
6021 |
+
#: templates/content-question/multi-choice/answer-options.php:17
|
6022 |
+
msgid "Invalid question!"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: templates/emails/plain/order-items-table.php:48
|
6026 |
+
#, php-format
|
6027 |
+
msgid "Quantity: %s"
|
|
|
6028 |
msgstr ""
|
6029 |
|
6030 |
+
#: templates/emails/plain/order-items-table.php:50
|
6031 |
+
#, php-format
|
6032 |
+
msgid "Cost: %s"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: templates/profile/tabs/quizzes.php:23
|
6036 |
+
msgid "My Quizzes"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: templates/profile/tabs/quizzes.php:40
|
6040 |
+
#: templates/profile/tabs/courses.php:35
|
6041 |
+
#: templates/profile/tabs/courses/purchased.php:41
|
6042 |
+
msgid "Progress"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
+
#: templates/profile/tabs/quizzes.php:41
|
6046 |
+
msgid "Interval"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: templates/profile/tabs/quizzes.php:97
|
6050 |
+
msgid "No quizzes!"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: templates/profile/tabs/courses.php:21
|
6054 |
+
msgid "You haven't got any courses yet!"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: templates/profile/tabs/courses.php:27
|
6058 |
+
#: templates/profile/tabs/courses/owned.php:25
|
6059 |
+
msgid "My Courses"
|
6060 |
msgstr ""
|
6061 |
|
6062 |
+
#: templates/profile/tabs/courses.php:34
|
6063 |
+
#: templates/profile/tabs/courses/purchased.php:40
|
6064 |
+
msgid "Passing Grade"
|
|
|
|
|
|
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: templates/single-course/tabs/curriculum.php:47
|
6068 |
+
msgid "Curriculum is empty"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
+
#: templates/single-course/section/content.php:72
|
6072 |
+
msgid "No items in this section"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
+
#: templates/single-course/content-item/nav.php:20
|
6076 |
+
msgctxt "course-item-navigation"
|
6077 |
+
msgid "Prev"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
+
#: templates/single-course/content-item/nav.php:29
|
6081 |
+
msgctxt "course-item-navigation"
|
6082 |
+
msgid "Next"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: templates/single-course/content-item/header.php:24
|
6086 |
+
msgid "Search item"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: templates/single-course/content-item/header.php:36
|
6090 |
+
msgid "Back to Course"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: templates/single-course/buttons/continue.php:23
|
6094 |
+
#: templates/content-quiz/buttons/continue.php:26
|
6095 |
+
#: inc/admin/views/setup/content.php:86
|
6096 |
+
msgid "Continue"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: templates/single-course/buttons/purchase.php:32
|
6100 |
+
msgid "Buy this course"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: templates/single-course/buttons/retake.php:39
|
6104 |
+
#, php-format
|
6105 |
+
msgid "Retake course (+%d)"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
+
#: templates/single-course/buttons/enroll.php:32
|
6109 |
+
msgid "Enroll"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
+
#: templates/single-course/buttons/finish.php:24
|
6113 |
+
msgid "Finish course"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: templates/content-quiz/buttons/check.php:24
|
6117 |
+
msgid "Checked"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#: templates/content-quiz/buttons/check.php:24
|
6121 |
+
msgid "Check"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: templates/content-quiz/buttons/nav.php:36
|
6125 |
+
msgctxt "quiz-question-navigation"
|
6126 |
+
msgid "Prev"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
+
#: templates/content-quiz/buttons/nav.php:57
|
6130 |
+
msgctxt "quiz-question-navigation"
|
6131 |
+
msgid "Next"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: templates/content-quiz/buttons/nav.php:78
|
6135 |
+
msgctxt "quiz-question-navigation"
|
6136 |
+
msgid "Skip"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
+
#: templates/content-quiz/buttons/hint.php:21
|
6140 |
+
msgid "Hinted"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
+
#: templates/content-quiz/buttons/hint.php:21
|
6144 |
+
msgid "Hint"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: templates/content-quiz/buttons/summary.php:27
|
6148 |
+
msgid "Summary"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: templates/content-quiz/buttons/redo.php:32
|
6152 |
+
msgid "Redo"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
+
#: templates/content-quiz/buttons/start.php:27
|
6156 |
+
msgid "Start"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
+
#: templates/global/become-teacher-form/button.php:18
|
6160 |
+
msgid "Submitting"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: templates/widgets/featured-courses/default.php:24
|
6164 |
+
#: templates/widgets/popular-courses/default.php:19
|
6165 |
+
#: templates/widgets/recent-courses/default.php:24
|
6166 |
+
msgid "No courses"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: templates/widgets/featured-courses/default.php:65
|
6170 |
+
#: templates/widgets/popular-courses/default.php:60
|
6171 |
+
#: templates/widgets/recent-courses/default.php:65
|
6172 |
+
msgid "..."
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: templates/widgets/featured-courses/default.php:86
|
6176 |
+
#: templates/widgets/popular-courses/default.php:81
|
6177 |
+
#: templates/widgets/recent-courses/default.php:86
|
6178 |
+
#, php-format
|
6179 |
+
msgid "%d lessons"
|
6180 |
msgstr ""
|
6181 |
|
6182 |
+
#: templates/widgets/featured-courses/default.php:86
|
6183 |
+
#: templates/widgets/popular-courses/default.php:81
|
6184 |
+
#: templates/widgets/recent-courses/default.php:86
|
6185 |
#, php-format
|
6186 |
+
msgid "%d lesson"
|
6187 |
+
msgid_plural "%d lessons"
|
6188 |
+
msgstr[0] ""
|
6189 |
+
msgstr[1] ""
|
6190 |
+
|
6191 |
+
#: templates/widgets/course-info/default.php:39
|
6192 |
+
msgid "Preview Lessons"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: inc/admin/settings/email-groups/class-lp-settings-processing-order-emails.php:22
|
6196 |
+
msgid "Processing Order"
|
|
|
6197 |
msgstr ""
|
6198 |
|
6199 |
+
#: inc/admin/settings/email-groups/class-lp-settings-enrolled-course-emails.php:26
|
6200 |
+
msgid "Enrolled Course"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
+
#: inc/admin/settings/email-groups/class-lp-settings-finished-course-emails.php:26
|
6204 |
+
msgid "Finished Course"
|
|
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: inc/admin/settings/email-groups/class-lp-settings-cancelled-order-emails.php:24
|
6208 |
+
msgid "Cancelled Order"
|
|
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: inc/admin/settings/email-groups/class-lp-settings-course-review-emails.php:23
|
6212 |
+
msgid "Review Course"
|
|
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: inc/admin/settings/email-groups/class-lp-settings-completed-order-emails.php:23
|
6216 |
+
msgid "Completed Order"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: inc/admin/settings/email-groups/class-lp-settings-become-teacher-emails.php:23
|
6220 |
+
msgid "Become an Instructor"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
+
#: inc/admin/settings/email-groups/class-lp-settings-new-order-emails.php:24
|
6224 |
+
msgid "New Order"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: inc/admin/meta-box/fields/image-dimensions.php:32
|
6228 |
+
#: inc/admin/views/settings/fields/image-size.php:13
|
6229 |
+
msgid "px"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: inc/admin/meta-box/fields/course-permalink.php:37
|
6233 |
+
#: inc/admin/views/settings/fields/course-permalink.php:15
|
6234 |
+
msgctxt "default-slug"
|
6235 |
+
msgid "course"
|
6236 |
msgstr ""
|
6237 |
|
6238 |
+
#: inc/admin/meta-box/fields/course-permalink.php:42
|
6239 |
+
#: inc/admin/views/settings/fields/course-permalink.php:26
|
6240 |
+
msgid "Default"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: inc/admin/meta-box/fields/course-permalink.php:52
|
6244 |
+
#: inc/admin/views/settings/fields/course-permalink.php:36
|
6245 |
+
msgid "Courses base"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
+
#: inc/admin/meta-box/fields/course-permalink.php:57
|
6249 |
+
#: inc/admin/views/settings/fields/course-permalink.php:41
|
6250 |
+
msgid "Courses base with category"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
+
#: inc/admin/meta-box/fields/course-permalink.php:92
|
6254 |
+
#: inc/admin/views/settings/fields/course-permalink.php:77
|
6255 |
+
msgid "Custom Base"
|
6256 |
msgstr ""
|
6257 |
|
6258 |
+
#: inc/admin/meta-box/fields/course-permalink.php:100
|
6259 |
+
#: inc/admin/views/settings/fields/course-permalink.php:84
|
6260 |
+
msgid ""
|
6261 |
+
"Enter a custom base to use. A base <strong>must</strong> be set or WordPress "
|
6262 |
+
"will use default values instead."
|
6263 |
msgstr ""
|
6264 |
|
6265 |
+
#: inc/admin/meta-box/fields/google-fonts.php:30
|
6266 |
+
msgid "Fonts"
|
|
|
6267 |
msgstr ""
|
6268 |
|
6269 |
+
#: inc/admin/meta-box/fields/google-fonts.php:38
|
6270 |
+
msgid "Font families separated by |, eg: Open Sans|Roboto."
|
|
|
6271 |
msgstr ""
|
6272 |
|
6273 |
+
#: inc/admin/meta-box/fields/google-fonts.php:40
|
6274 |
+
msgid "Subset"
|
|
|
6275 |
msgstr ""
|
6276 |
|
6277 |
+
#: inc/admin/meta-box/fields/google-fonts.php:48
|
6278 |
+
msgid "Font subsets separated by comma, eg: greek,latin."
|
|
|
6279 |
msgstr ""
|
6280 |
|
6281 |
+
#: inc/admin/meta-box/fields/payment-order.php:30
|
6282 |
+
#: inc/admin/views/tools/course/html-course.php:28
|
6283 |
+
#: inc/admin/views/tools/course/html-user.php:28
|
6284 |
+
msgid "ID"
|
6285 |
msgstr ""
|
6286 |
|
6287 |
+
#: inc/admin/meta-box/fields/payment-order.php:31
|
6288 |
+
#: inc/admin/meta-box/fields/list-emails.php:29
|
6289 |
+
#: inc/admin/views/setup/setup-stripe.php:11
|
6290 |
+
msgid "Description"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
+
#: inc/admin/meta-box/fields/color-schema.php:99
|
6294 |
+
msgid "Save as new"
|
|
|
|
|
6295 |
msgstr ""
|
6296 |
|
6297 |
+
#: inc/admin/meta-box/fields/color-schema.php:102
|
6298 |
+
msgid "Use this colors"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: inc/admin/meta-box/fields/color-schema.php:103
|
6302 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:31
|
6303 |
+
msgid "Delete"
|
6304 |
msgstr ""
|
6305 |
|
6306 |
+
#: inc/admin/meta-box/fields/email-content.php:66
|
6307 |
+
msgid "General setting"
|
6308 |
msgstr ""
|
6309 |
|
6310 |
+
#: inc/admin/meta-box/fields/email-content.php:70
|
6311 |
+
#, php-format
|
6312 |
+
msgid ""
|
6313 |
+
"Choose <strong>General setting</strong> to apply the setting from Email <a "
|
6314 |
+
"href=\"%s\">General Options</a> "
|
6315 |
msgstr ""
|
6316 |
|
6317 |
+
#: inc/admin/meta-box/fields/email-content.php:115
|
6318 |
+
#: inc/admin/views/settings/emails/email-template.php:52
|
6319 |
+
#, php-format
|
6320 |
+
msgid ""
|
6321 |
+
"This template has been overridden by your theme and can be found in: <code>"
|
6322 |
+
"%s</code>. <br />Please open the file in an editor program to edit"
|
6323 |
msgstr ""
|
6324 |
|
6325 |
+
#: inc/admin/meta-box/fields/email-content.php:151
|
6326 |
+
#: inc/admin/views/settings/emails/email-template.php:77
|
6327 |
+
msgid "Click on variables to add it into email content."
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: inc/admin/meta-box/fields/list-emails.php:70
|
6331 |
+
msgid ""
|
6332 |
+
"You can enable/disable each email by clicking on the status icon or apply "
|
6333 |
+
"status for all emails by clicking these buttons"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
+
#: inc/admin/meta-box/fields/list-emails.php:73
|
6337 |
+
msgid "Enable all"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
+
#: inc/admin/meta-box/fields/list-emails.php:76
|
6341 |
+
msgid "Disable all"
|
|
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: inc/admin/views/statistics/courses.php:18
|
6345 |
+
#: inc/admin/views/statistics/users.php:19
|
6346 |
+
#: inc/admin/views/statistics/general.php:33
|
6347 |
+
#: inc/admin/views/statistics/orders.php:19
|
6348 |
+
msgid "Last 7 Days"
|
6349 |
msgstr ""
|
6350 |
|
6351 |
+
#: inc/admin/views/statistics/courses.php:21
|
6352 |
+
#: inc/admin/views/statistics/users.php:22
|
6353 |
+
#: inc/admin/views/statistics/general.php:36
|
6354 |
+
#: inc/admin/views/statistics/orders.php:22
|
6355 |
+
msgid "Last 30 Days"
|
6356 |
msgstr ""
|
6357 |
|
6358 |
+
#: inc/admin/views/statistics/courses.php:24
|
6359 |
+
#: inc/admin/views/statistics/users.php:26
|
6360 |
+
#: inc/admin/views/statistics/general.php:40
|
6361 |
+
#: inc/admin/views/statistics/orders.php:25
|
6362 |
+
msgid "Last 12 Months"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
+
#: inc/admin/views/statistics/courses.php:31
|
6366 |
+
#: inc/admin/views/statistics/users.php:33
|
6367 |
+
#: inc/admin/views/statistics/general.php:47
|
6368 |
+
#: inc/admin/views/statistics/orders.php:32
|
6369 |
+
msgid "From"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: inc/admin/views/statistics/courses.php:33
|
6373 |
+
#: inc/admin/views/statistics/users.php:35
|
6374 |
+
#: inc/admin/views/statistics/general.php:49
|
6375 |
+
#: inc/admin/views/statistics/orders.php:34
|
6376 |
+
msgid "To"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
+
#: inc/admin/views/statistics/courses.php:36
|
6380 |
+
#: inc/admin/views/statistics/users.php:39
|
6381 |
+
#: inc/admin/views/statistics/general.php:53
|
6382 |
+
#: inc/admin/views/statistics/orders.php:37
|
6383 |
+
msgid "Go"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#: inc/admin/views/statistics/courses.php:43
|
6387 |
+
#: inc/admin/views/statistics/general.php:60
|
6388 |
+
msgid "Public"
|
6389 |
msgstr ""
|
6390 |
|
6391 |
+
#: inc/admin/views/statistics/orders.php:44
|
6392 |
+
msgid "Sale by"
|
6393 |
+
msgstr ""
|
|
|
|
|
|
|
6394 |
|
6395 |
+
#: inc/admin/views/statistics/orders.php:48
|
6396 |
+
msgid "Course Category"
|
|
|
6397 |
msgstr ""
|
6398 |
|
6399 |
+
#: inc/admin/views/statistics/orders.php:51
|
6400 |
+
msgid "Select a course"
|
6401 |
+
msgstr ""
|
|
|
|
|
|
|
6402 |
|
6403 |
+
#: inc/admin/views/statistics/orders.php:55
|
6404 |
+
msgid "Select a course category"
|
|
|
6405 |
msgstr ""
|
6406 |
|
6407 |
+
#: inc/admin/views/settings/setting-field.php:96
|
6408 |
+
msgid ""
|
6409 |
+
"The settings of this image size have been disabled because its values are "
|
6410 |
+
"being overwritten by a filter."
|
6411 |
+
msgstr ""
|
|
|
6412 |
|
6413 |
+
#: inc/admin/views/settings/setting-field.php:108
|
6414 |
+
msgid "Hard Crop?"
|
|
|
6415 |
msgstr ""
|
6416 |
|
6417 |
+
#: inc/admin/views/settings/payments.php:27
|
6418 |
+
msgid "Basic"
|
6419 |
+
msgstr ""
|
|
|
|
|
|
|
6420 |
|
6421 |
+
#: inc/admin/views/settings/payments.php:28
|
6422 |
+
msgid "Security"
|
|
|
6423 |
msgstr ""
|
6424 |
|
6425 |
+
#: inc/admin/views/settings/payments.php:33
|
6426 |
+
msgid "Email Address"
|
6427 |
+
msgstr ""
|
|
|
|
|
|
|
6428 |
|
6429 |
+
#: inc/admin/views/settings/payments.php:42
|
6430 |
+
msgid "API Username"
|
|
|
6431 |
msgstr ""
|
6432 |
|
6433 |
+
#: inc/admin/views/settings/payments.php:49
|
6434 |
+
msgid "API Password"
|
6435 |
msgstr ""
|
6436 |
|
6437 |
+
#: inc/admin/views/settings/payments.php:56
|
6438 |
+
msgid "API Signature"
|
6439 |
msgstr ""
|
6440 |
|
6441 |
+
#: inc/admin/views/settings/payments.php:85
|
6442 |
+
msgid "Sandbox API Username"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
+
#: inc/admin/views/settings/payments.php:93
|
6446 |
+
msgid "Sandbox API Password"
|
|
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: inc/admin/views/settings/payments.php:101
|
6450 |
+
msgid "Sandbox API Signature"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
+
#: inc/admin/views/tools/html-cache.php:12
|
6454 |
+
msgid "LearnPress hard cache"
|
|
|
6455 |
msgstr ""
|
6456 |
|
6457 |
+
#: inc/admin/views/tools/html-cache.php:13
|
6458 |
+
msgid ""
|
6459 |
+
"Hard cache is build-in tool of LearnPress for caching of static content such "
|
6460 |
+
"as course, lesson, quiz."
|
6461 |
msgstr ""
|
6462 |
|
6463 |
+
#: inc/admin/views/tools/html-cache.php:14
|
6464 |
+
msgid ""
|
6465 |
+
"When caching is enabled, the content will be cached when course is accessed "
|
6466 |
+
"in the first time."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
+
#: inc/admin/views/tools/html-cache.php:15
|
6470 |
+
msgid ""
|
6471 |
+
"And it will not change in all later accesses until the cache is cleared."
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: inc/admin/views/tools/html-cache.php:16
|
6475 |
+
msgid ""
|
6476 |
+
"If the content is not changed after updating course, click the button below "
|
6477 |
+
"to flush the cache and apply changes."
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: inc/admin/views/tools/html-cache.php:21
|
6481 |
+
msgid "Enable/Disable hard cache"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: inc/admin/views/tools/html-cache.php:25
|
6485 |
+
#: inc/admin/views/tools/html-cache.php:28
|
6486 |
+
msgid "Clear cache"
|
6487 |
msgstr ""
|
6488 |
|
6489 |
+
#: inc/admin/views/tools/html-cache.php:26
|
6490 |
+
msgid "Cleaning..."
|
6491 |
msgstr ""
|
6492 |
|
6493 |
+
#: inc/admin/views/tools/html-template.php:30
|
6494 |
+
#, php-format
|
6495 |
+
msgid "Override Templates (%s)"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
+
#: inc/admin/views/tools/html-template.php:38
|
6499 |
+
msgid "File"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
+
#: inc/admin/views/tools/html-template.php:41
|
6503 |
+
#, php-format
|
6504 |
+
msgid "All (%d)"
|
6505 |
msgstr ""
|
6506 |
|
6507 |
+
#: inc/admin/views/tools/html-template.php:49
|
6508 |
+
#, php-format
|
6509 |
+
msgid "Outdated (%d)"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: inc/admin/views/tools/html-template.php:51
|
6513 |
+
#, php-format
|
6514 |
+
msgid "Unversioned (%d)"
|
6515 |
msgstr ""
|
6516 |
|
6517 |
+
#: inc/admin/views/tools/html-template.php:55
|
6518 |
+
msgid "Version"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
+
#: inc/admin/views/tools/html-template.php:57
|
6522 |
+
msgid "Core version"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
+
#: inc/admin/views/tools/html-template.php:89
|
6526 |
+
msgid "There is no template file has overwritten"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: inc/admin/views/tools/subscription-button.php:14
|
6530 |
+
msgid ""
|
6531 |
+
"If you don't want to miss exclussive offers from us, join our newsletter."
|
6532 |
msgstr ""
|
6533 |
|
6534 |
+
#: inc/admin/views/tools/subscription-button.php:17
|
6535 |
+
msgid "Sure! I want to get the latest news."
|
6536 |
msgstr ""
|
6537 |
|
6538 |
+
#: inc/admin/views/course/new-section.php:17
|
6539 |
+
msgid "Write section name and press Enter"
|
6540 |
msgstr ""
|
6541 |
|
6542 |
+
#: inc/admin/views/course/pagination.php:18
|
6543 |
+
#: inc/admin/views/quiz/pagination.php:16
|
6544 |
+
msgctxt "page-navigation"
|
6545 |
+
msgid "Previous"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: inc/admin/views/course/pagination.php:20
|
6549 |
+
#: inc/admin/views/quiz/pagination.php:18
|
6550 |
+
msgctxt "page-navigation"
|
6551 |
+
msgid "Next"
|
6552 |
msgstr ""
|
6553 |
|
6554 |
+
#: inc/admin/views/course/editor.php:25
|
6555 |
+
msgid "Something went wrong! Please reload to continue editing curriculum."
|
|
|
6556 |
msgstr ""
|
6557 |
|
6558 |
+
#: inc/admin/views/course/section.php:21
|
6559 |
+
msgid "Enter the name section"
|
|
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: inc/admin/views/course/section.php:38
|
6563 |
+
msgid "Describe about this section"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
+
#: inc/admin/views/course/section.php:56
|
6567 |
+
msgid "Select items"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
+
#: inc/admin/views/course/section.php:61
|
6571 |
+
msgid "Are you sure?"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: inc/admin/views/course/modal-choose-items.php:77
|
6575 |
+
msgid "Type here to search item"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
+
#: inc/admin/views/course/modal-choose-items.php:83
|
6579 |
+
#: inc/admin/views/quiz/modal-choose-items.php:70
|
6580 |
+
msgid "No item found."
|
6581 |
msgstr ""
|
6582 |
|
6583 |
+
#: inc/admin/views/course/modal-choose-items.php:101
|
6584 |
+
#: inc/admin/views/quiz/modal-choose-items.php:89
|
6585 |
+
msgid "Adding"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: inc/admin/views/course/section-item.php:36
|
6589 |
+
msgid "Remove from course"
|
|
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: inc/admin/views/course/section-item.php:40
|
6593 |
+
#: inc/admin/views/quiz/question-actions.php:50
|
6594 |
+
msgid "Move to trash"
|
6595 |
msgstr ""
|
6596 |
|
6597 |
+
#: inc/admin/views/course/curriculum.php:15
|
6598 |
+
msgid "Curriculum"
|
|
|
|
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: inc/admin/views/addons/html-plugins-more.php:17
|
6602 |
+
#: inc/admin/views/addons/html-themes.php:16
|
6603 |
+
#, php-format
|
6604 |
+
msgid "Last checked %s. <a href=\"%s\">Check again</a>"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
+
#: inc/admin/views/addons/html-plugins-more.php:28
|
6608 |
+
msgid "There is no available add-ons."
|
|
|
|
|
6609 |
msgstr ""
|
6610 |
|
6611 |
+
#: inc/admin/views/addons/html-plugins-more.php:36
|
6612 |
+
msgid "Free add-ons"
|
|
|
6613 |
msgstr ""
|
6614 |
|
6615 |
+
#: inc/admin/views/addons/html-plugins-more.php:41
|
6616 |
+
msgid "Premium add-ons"
|
|
|
6617 |
msgstr ""
|
6618 |
|
6619 |
+
#: inc/admin/views/addons/html-themes.php:25
|
6620 |
+
msgid "No related themes."
|
6621 |
msgstr ""
|
6622 |
|
6623 |
+
#: inc/admin/views/addons/html-themes.php:35
|
6624 |
+
msgid "Education Support"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
+
#: inc/admin/views/addons/html-themes.php:39
|
6628 |
+
msgid "Other"
|
6629 |
msgstr ""
|
6630 |
|
6631 |
+
#: inc/admin/views/addons/html-loop-plugin.php:38
|
6632 |
+
#, php-format
|
6633 |
+
msgid "<cite>By %s</cite>"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: inc/admin/views/addons/html-loop-plugin.php:44
|
6637 |
+
msgid "Version: "
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: inc/admin/views/addons/html-loop-theme.php:30
|
6641 |
+
msgid "$"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: inc/admin/views/addons/html-loop-theme.php:33
|
6645 |
+
msgid " sales"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: inc/admin/views/addons/html-plugins-installed.php:18
|
6649 |
+
msgid "There is no add-on installed."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: inc/admin/views/addons/html-plugins-installed.php:25
|
6653 |
+
msgid "Installed add-ons"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: inc/admin/views/setup/notice-setup.php:2
|
6657 |
+
msgid "<strong>LearnPress has just successfully installed.</strong>"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: inc/admin/views/setup/notice-setup.php:6
|
6661 |
+
msgid "Skip"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: inc/admin/views/setup/setup-paypal.php:29
|
6665 |
+
msgid "Your Paypal email in live mode."
|
|
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: inc/admin/views/setup/setup-paypal.php:39
|
6669 |
+
#, php-format
|
6670 |
+
msgid ""
|
6671 |
+
"For testing purpose with Paypal sandbox mode. Create an account <a "
|
6672 |
+
"href=\"%s\">here</a>!"
|
6673 |
msgstr ""
|
6674 |
|
6675 |
+
#: inc/admin/views/setup/setup-paypal.php:44
|
6676 |
+
msgid "Paypal Sandbox Email"
|
|
|
|
|
6677 |
msgstr ""
|
6678 |
|
6679 |
+
#: inc/admin/views/setup/setup-paypal.php:49
|
6680 |
+
msgid "Your Paypal email in sandbox mode."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
+
#: inc/admin/views/setup/setup-stripe.php:15
|
6684 |
+
msgid "Live secret key"
|
6685 |
msgstr ""
|
6686 |
|
6687 |
+
#: inc/admin/views/setup/setup-stripe.php:19
|
6688 |
+
msgid "Live publish key"
|
6689 |
msgstr ""
|
6690 |
|
6691 |
+
#: inc/admin/views/setup/setup-stripe.php:24
|
6692 |
+
msgid "Test mode"
|
6693 |
msgstr ""
|
6694 |
|
6695 |
+
#: inc/admin/views/setup/setup-stripe.php:28
|
6696 |
+
msgid "Test secret key"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
+
#: inc/admin/views/setup/setup-stripe.php:32
|
6700 |
+
msgid "Test publish key"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
+
#: inc/admin/views/setup/content.php:47
|
6704 |
+
msgid "Skip to prev step"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
+
#: inc/admin/views/setup/content.php:60
|
6708 |
+
msgid "Skip to next step"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
+
#: inc/admin/views/setup/content.php:67
|
6712 |
+
#: inc/admin/views/setup/steps/finish.php:29
|
6713 |
+
msgid "Back to Dashboard"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: inc/admin/views/setup/header.php:17
|
6717 |
+
msgid "LearnPress › Setup Wizard"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: inc/admin/views/setup/footer.php:15
|
6721 |
+
#, php-format
|
6722 |
+
msgid "LearnPress %s. Designed by @ThimPress."
|
6723 |
msgstr ""
|
6724 |
|
6725 |
+
#: inc/admin/views/quiz/editor.php:31
|
6726 |
+
#: inc/admin/views/tools/course/html-course.php:31
|
6727 |
+
#: inc/admin/views/tools/course/html-user.php:31
|
6728 |
+
msgid "Actions"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
+
#: inc/admin/views/quiz/editor.php:47
|
6732 |
+
msgid "Create a new question"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
+
#: inc/admin/views/quiz/editor.php:54
|
6736 |
+
msgid "Add as New..."
|
6737 |
msgstr ""
|
6738 |
|
6739 |
+
#: inc/admin/views/quiz/editor.php:64
|
6740 |
+
msgid "Select"
|
6741 |
msgstr ""
|
6742 |
|
6743 |
+
#: inc/admin/views/quiz/editor.php:78
|
6744 |
+
msgid "Something went wrong! Please reload to continue editing quiz questions."
|
6745 |
msgstr ""
|
6746 |
|
6747 |
+
#: inc/admin/views/quiz/modal-choose-items.php:65
|
6748 |
+
msgid "Type here to search question"
|
6749 |
msgstr ""
|
6750 |
|
6751 |
+
#: inc/admin/views/quiz/question-answer.php:19
|
6752 |
+
#: inc/admin/views/question/answer.php:18
|
6753 |
+
msgid "Answer Text"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: inc/admin/views/quiz/question-answer.php:20
|
6757 |
+
#: inc/admin/views/question/answer.php:19
|
6758 |
+
msgid "Correct?"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
+
#: inc/admin/views/quiz/question-answer.php:34
|
6762 |
+
#: inc/admin/views/question/answer.php:35
|
6763 |
+
msgid "Add option"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: inc/admin/views/quiz/question-actions.php:46
|
6767 |
+
msgid "Remove from quiz"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: inc/admin/views/updates/html-updating-message.php:14
|
6771 |
+
msgid ""
|
6772 |
+
"<strong>LearnPress update</strong> – We are running updater to upgrade your "
|
6773 |
+
"database to the latest version."
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: inc/admin/views/updates/html-upgrade-message-3.0.0.php:14
|
6777 |
+
#, php-format
|
6778 |
+
msgid "Welcome to LearnPress %s"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
+
#: inc/admin/views/updates/html-upgrade-message-3.0.0.php:15
|
6782 |
+
msgid ""
|
6783 |
+
"This is a <strong>BIG UPDATE</strong> and it allows you to do so much more!"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
+
#: inc/admin/views/updates/html-upgrade-message-3.0.0.php:20
|
6787 |
+
msgid "Check what's new"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: inc/admin/views/updates/html-upgrade-message-3.0.0.php:22
|
6791 |
+
msgid "Get support now"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
+
#: inc/admin/views/updates/html-upgrade-message-3.0.0.php:24
|
6795 |
+
msgid "Got it!"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: inc/admin/views/updates/html-update-message.php:12
|
6799 |
+
msgid ""
|
6800 |
+
"<strong>LearnPress update</strong> – We need to update your database to the "
|
6801 |
+
"latest version."
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: inc/admin/views/updates/update-screen.php:17
|
6805 |
+
msgid "LearnPress › Update Database"
|
|
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: inc/admin/views/updates/update-screen.php:36
|
6809 |
+
msgid "LearnPress Update Database"
|
|
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: inc/admin/views/updates/update-screen.php:38
|
6813 |
+
msgid "Before updating please ensure your site data is already backed up!"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: inc/admin/views/updates/update-screen.php:43
|
6817 |
+
msgid "Run Updater"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: inc/admin/views/updates/html-updated-latest-message.php:16
|
6821 |
+
msgid "LearnPress has just updated to latest version."
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: inc/admin/views/question/actions.php:13
|
6825 |
+
msgid "Question Answers"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: inc/admin/views/meta-boxes/tabs.php:93
|
6829 |
+
msgid "Initializing..."
|
6830 |
msgstr ""
|
6831 |
|
6832 |
#: inc/widgets/course-filters/tmpl/default.php:83
|
6833 |
msgid "Filter"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: templates/profile/tabs/settings/basic-information.php:49
|
6837 |
+
msgid "Biographical Info"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: templates/profile/tabs/settings/basic-information.php:53
|
6841 |
+
msgid ""
|
6842 |
+
"Share a little biographical information to fill out your profile. This may "
|
6843 |
+
"be shown publicly."
|
|
|
|
|
6844 |
msgstr ""
|
6845 |
|
6846 |
+
#: templates/profile/tabs/settings/basic-information.php:57
|
6847 |
+
msgid "First Name"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: templates/profile/tabs/settings/basic-information.php:65
|
6851 |
+
msgid "Last Name"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: templates/profile/tabs/settings/basic-information.php:73
|
6855 |
+
msgid "Nickname"
|
|
|
|
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: templates/profile/tabs/settings/basic-information.php:81
|
6859 |
+
msgid "Display name publicly as"
|
|
|
|
|
6860 |
msgstr ""
|
6861 |
|
6862 |
+
#: templates/profile/tabs/settings/basic-information.php:111
|
6863 |
+
#: templates/profile/tabs/settings/change-password.php:87
|
6864 |
+
#: templates/profile/tabs/settings/avatar.php:76
|
6865 |
+
#: templates/profile/tabs/settings/publicity.php:88
|
6866 |
+
msgid "Save changes"
|
6867 |
+
msgstr ""
|
6868 |
+
|
6869 |
+
#: templates/profile/tabs/settings/change-password.php:43
|
6870 |
+
msgid "Old password"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
+
#: templates/profile/tabs/settings/change-password.php:49
|
6874 |
+
msgid "New password"
|
|
|
|
|
6875 |
msgstr ""
|
6876 |
|
6877 |
+
#: templates/profile/tabs/settings/change-password.php:55
|
6878 |
+
msgid "Confirmation password"
|
|
|
|
|
6879 |
msgstr ""
|
6880 |
|
6881 |
+
#: templates/profile/tabs/settings/change-password.php:59
|
6882 |
+
msgid "New password does not match!"
|
|
|
|
|
6883 |
msgstr ""
|
6884 |
|
6885 |
+
#: templates/profile/tabs/settings/avatar.php:58
|
6886 |
+
msgid "Upload"
|
|
|
|
|
6887 |
msgstr ""
|
6888 |
|
6889 |
+
#: templates/profile/tabs/settings/avatar.php:60
|
6890 |
+
#: inc/admin/views/tools/database/html-remove-outdated-data.php:23
|
6891 |
+
#: inc/admin/views/tools/database/html-remove-database.php:23
|
6892 |
+
msgid "Remove"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: templates/profile/tabs/settings/publicity.php:50
|
6896 |
+
msgid "My courses"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
+
#: templates/profile/tabs/settings/publicity.php:54
|
6900 |
+
msgid "Public your profile courses"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
+
#: templates/profile/tabs/settings/publicity.php:61
|
6904 |
+
msgid "My quizzes"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
+
#: templates/profile/tabs/settings/publicity.php:65
|
6908 |
+
msgid "Public your profile quizzes"
|
|
|
6909 |
msgstr ""
|
6910 |
|
6911 |
+
#: templates/profile/tabs/courses/owned.php:37
|
6912 |
+
#: templates/profile/tabs/courses/purchased.php:82
|
6913 |
+
msgid "No courses!"
|
6914 |
msgstr ""
|
6915 |
|
6916 |
+
#: templates/profile/tabs/courses/purchased.php:24
|
6917 |
+
msgid "Purchased Courses"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
+
#: templates/profile/tabs/orders/order-message.php:19
|
6921 |
+
#, php-format
|
6922 |
+
msgid "This order is paid for %s"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
+
#: templates/profile/tabs/orders/order-message.php:25
|
6926 |
+
#, php-format
|
6927 |
+
msgid "This order is paid by %s"
|
6928 |
msgstr ""
|
6929 |
|
6930 |
+
#: templates/profile/tabs/orders/list.php:21
|
6931 |
+
msgid "No orders!"
|
|
|
6932 |
msgstr ""
|
6933 |
|
6934 |
+
#: templates/profile/tabs/orders/list.php:26
|
6935 |
+
msgid "My Orders"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
+
#: templates/profile/tabs/orders/list.php:36
|
6939 |
+
msgid "Action"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
+
#: templates/profile/tabs/orders/recover-order.php:20
|
6943 |
+
msgid "If you have a valid order key you can recover it here."
|
|
|
|
|
6944 |
msgstr ""
|
6945 |
|
6946 |
+
#: inc/admin/views/settings/emails/become-a-teacher-request.php:29
|
6947 |
+
msgid "Send notification when a user signs up to be a teacher"
|
|
|
6948 |
msgstr ""
|
6949 |
|
6950 |
+
#: inc/admin/views/settings/emails/become-a-teacher-request.php:37
|
6951 |
+
msgid "Email subject"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
+
#: inc/admin/views/settings/emails/become-a-teacher-request.php:41
|
6955 |
+
msgid "Message"
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: inc/admin/views/settings/emails/email-template.php:13
|
6959 |
+
#: inc/admin/views/settings/emails/_email-template.php:11
|
6960 |
+
msgid "HTML template"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: inc/admin/views/settings/emails/email-template.php:14
|
6964 |
+
#: inc/admin/views/settings/emails/_email-template.php:12
|
6965 |
+
msgid "Plain text template"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: inc/admin/views/settings/emails/email-template.php:87
|
6969 |
+
#: inc/admin/views/settings/emails/_email-template.php:78
|
6970 |
+
#, php-format
|
6971 |
+
msgid ""
|
6972 |
+
"To override and edit this email template copy <code>%s</code> to your theme "
|
6973 |
+
"folder: <code>%s</code>."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
+
#: inc/admin/views/settings/emails/_email-template.php:36
|
6977 |
+
#, php-format
|
6978 |
msgid ""
|
6979 |
+
"This template has been overridden by your theme and can be found in: <code>"
|
6980 |
+
"%s</code>. Please open the file in an editor program to edit"
|
6981 |
msgstr ""
|
6982 |
|
6983 |
+
#: inc/admin/views/settings/emails/_email-template.php:63
|
6984 |
+
#, php-format
|
6985 |
+
msgid ""
|
6986 |
+
"This template has been overridden by your theme and can be found in: <code>"
|
6987 |
+
"%s</code>."
|
6988 |
msgstr ""
|
6989 |
|
6990 |
+
#: inc/admin/views/settings/emails/_email-template.php:68
|
6991 |
+
msgid "Delete template file"
|
6992 |
msgstr ""
|
6993 |
|
6994 |
+
#: inc/admin/views/settings/emails/_email-template.php:83
|
6995 |
+
msgid "Copy file to theme"
|
|
|
|
|
6996 |
msgstr ""
|
6997 |
|
6998 |
+
#: inc/admin/views/settings/emails/_email-template.php:89
|
6999 |
+
msgid "File not found."
|
|
|
|
|
7000 |
msgstr ""
|
7001 |
|
7002 |
+
#: inc/admin/views/settings/emails/general.php:15
|
7003 |
+
msgid "Email Options"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: inc/admin/views/settings/emails/general.php:23
|
7007 |
+
msgid "From Name"
|
7008 |
msgstr ""
|
7009 |
|
7010 |
+
#: inc/admin/views/settings/emails/general.php:29
|
7011 |
+
msgid "From Email"
|
|
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: inc/admin/views/settings/emails/general.php:36
|
7015 |
+
msgid "Email Template"
|
|
|
7016 |
msgstr ""
|
7017 |
|
7018 |
+
#: inc/admin/views/settings/emails/general.php:50
|
7019 |
+
msgid "The texts display in the bottom of email"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: inc/admin/views/tools/database/html-remove-outdated-data.php:12
|
7023 |
+
msgid "Remove outdated Data"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: inc/admin/views/tools/database/html-remove-outdated-data.php:13
|
7027 |
+
msgid ""
|
7028 |
+
"Remove all courses, lessons, quizzes and questions from version older than 1."
|
7029 |
+
"0."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
+
#: inc/admin/views/tools/database/html-remove-outdated-data.php:16
|
7033 |
+
msgid ""
|
7034 |
+
"Be careful before using this action! Only use this action in case all "
|
7035 |
+
"outdated data has been upgraded."
|
7036 |
msgstr ""
|
7037 |
|
7038 |
+
#: inc/admin/views/tools/database/html-remove-outdated-data.php:20
|
7039 |
+
#: inc/admin/views/tools/database/html-remove-database.php:20
|
7040 |
+
msgid "Check this box and click this button again to confirm."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:16
|
7044 |
+
msgid "Install Sample Data"
|
7045 |
msgstr ""
|
7046 |
|
7047 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:17
|
7048 |
+
msgid ""
|
7049 |
+
"Create a <strong>Sample course</strong> with lessons and quizzes. The "
|
7050 |
+
"content will be filled with <strong>Lorem</strong> text."
|
7051 |
msgstr ""
|
7052 |
|
7053 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:19
|
7054 |
+
msgid "Options"
|
|
|
7055 |
msgstr ""
|
7056 |
|
7057 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:23
|
7058 |
+
msgid "Course name"
|
7059 |
msgstr ""
|
7060 |
|
7061 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:28
|
7062 |
+
msgid "Random number of sections in range"
|
7063 |
msgstr ""
|
7064 |
|
7065 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:35
|
7066 |
+
msgid "Random number of items in range (each section)"
|
7067 |
msgstr ""
|
7068 |
|
7069 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:42
|
7070 |
+
msgid "Random number of questions in range (each quiz)"
|
7071 |
msgstr ""
|
7072 |
|
7073 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:49
|
7074 |
+
msgid "Random number of answers in range (each question)"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:60
|
7078 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:63
|
7079 |
+
msgid "Install"
|
7080 |
msgstr ""
|
7081 |
|
7082 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:61
|
7083 |
+
msgid "Installing..."
|
|
|
|
|
7084 |
msgstr ""
|
7085 |
|
7086 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:65
|
7087 |
+
msgid "Show options"
|
7088 |
msgstr ""
|
7089 |
|
7090 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:67
|
7091 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:71
|
7092 |
+
msgid "Delete sample course"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
+
#: inc/admin/views/tools/database/html-install-sample-data.php:68
|
7096 |
+
msgid "Deleting..."
|
7097 |
msgstr ""
|
7098 |
|
7099 |
+
#: inc/admin/views/tools/database/html-repair-database.php:12
|
7100 |
+
msgid "Repair Database"
|
|
|
7101 |
msgstr ""
|
7102 |
|
7103 |
+
#: inc/admin/views/tools/database/html-repair-database.php:13
|
7104 |
+
msgid "Remove unwanted data and re-calculate relationship."
|
7105 |
+
msgstr ""
|
7106 |
+
|
7107 |
+
#: inc/admin/views/tools/database/html-repair-database.php:24
|
7108 |
+
msgid "Re-count orders in each course"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
+
#: inc/admin/views/tools/database/html-repair-database.php:30
|
7112 |
+
msgid "Re-count orders for each user"
|
|
|
7113 |
msgstr ""
|
7114 |
|
7115 |
+
#: inc/admin/views/tools/database/html-repair-database.php:36
|
7116 |
+
msgid "Re-count courses for each user"
|
|
|
7117 |
msgstr ""
|
7118 |
|
7119 |
+
#: inc/admin/views/tools/database/html-repair-database.php:42
|
7120 |
+
msgid "Re-map final quiz for each course"
|
|
|
7121 |
msgstr ""
|
7122 |
|
7123 |
+
#: inc/admin/views/tools/database/html-repair-database.php:48
|
7124 |
+
msgid "Re-calculate course result for users"
|
|
|
7125 |
msgstr ""
|
7126 |
|
7127 |
+
#: inc/admin/views/tools/database/html-repair-database.php:54
|
7128 |
+
msgid "Re-calculate completed items for each users"
|
|
|
7129 |
msgstr ""
|
7130 |
|
7131 |
+
#: inc/admin/views/tools/database/html-repair-database.php:59
|
7132 |
+
msgid "Repair now"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
+
#: inc/admin/views/tools/database/html-repair-database.php:62
|
7136 |
+
msgid "Check All"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: inc/admin/views/tools/database/html-upgrade-database.php:12
|
7140 |
+
msgid "Upgrade Database"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: inc/admin/views/tools/database/html-upgrade-database.php:13
|
7144 |
+
msgid ""
|
7145 |
+
"Force upgrade database to latest version. Please be careful before taking "
|
7146 |
+
"this action."
|
7147 |
msgstr ""
|
7148 |
|
7149 |
+
#: inc/admin/views/tools/database/html-remove-database.php:12
|
7150 |
+
msgid "Remove current Data"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
+
#: inc/admin/views/tools/database/html-remove-database.php:13
|
7154 |
+
msgid "Remove all courses, lessons, quizzes and questions."
|
|
|
7155 |
msgstr ""
|
7156 |
|
7157 |
+
#: inc/admin/views/tools/database/html-remove-database.php:16
|
7158 |
+
msgid "Be careful before using this action!"
|
|
|
7159 |
msgstr ""
|
7160 |
|
7161 |
+
#: inc/admin/views/tools/course/html-course.php:12
|
7162 |
+
msgid "Reset course progress"
|
|
|
7163 |
msgstr ""
|
7164 |
|
7165 |
+
#: inc/admin/views/tools/course/html-course.php:14
|
7166 |
+
msgid ""
|
7167 |
+
"This action will reset progress of a course for all users have enrolled."
|
7168 |
msgstr ""
|
7169 |
|
7170 |
+
#: inc/admin/views/tools/course/html-course.php:15
|
7171 |
+
msgid "Search results only show course have user data."
|
7172 |
msgstr ""
|
7173 |
|
7174 |
+
#: inc/admin/views/tools/course/html-course.php:19
|
7175 |
+
msgid "Search course by name"
|
7176 |
msgstr ""
|
7177 |
|
7178 |
+
#: inc/admin/views/tools/course/html-course.php:52
|
7179 |
+
msgid "Please enter at least 3 characters to searching courses."
|
7180 |
msgstr ""
|
7181 |
|
7182 |
+
#: inc/admin/views/tools/course/html-course.php:54
|
7183 |
+
msgid "Searching course..."
|
|
|
7184 |
msgstr ""
|
7185 |
|
7186 |
+
#: inc/admin/views/tools/course/html-course.php:62
|
7187 |
+
#: inc/admin/views/tools/course/html-user.php:70
|
7188 |
+
msgid ""
|
7189 |
+
"Are you sure to reset course progress of all users enrolled this course?"
|
7190 |
msgstr ""
|
7191 |
|
7192 |
+
#: inc/admin/views/tools/course/html-user.php:12
|
7193 |
+
msgid "Reset user progress"
|
|
|
7194 |
msgstr ""
|
7195 |
|
7196 |
+
#: inc/admin/views/tools/course/html-user.php:14
|
7197 |
+
msgid ""
|
7198 |
+
"This action will reset progress of all courses that an user has enrolled."
|
7199 |
msgstr ""
|
7200 |
|
7201 |
+
#: inc/admin/views/tools/course/html-user.php:15
|
7202 |
+
msgid "Search results only show users have course data."
|
|
|
7203 |
msgstr ""
|
7204 |
|
7205 |
+
#: inc/admin/views/tools/course/html-user.php:19
|
7206 |
+
msgid "Search user by login name or email"
|
7207 |
msgstr ""
|
7208 |
|
7209 |
+
#: inc/admin/views/tools/course/html-user.php:60
|
7210 |
+
msgid "Please enter at least 3 characters to searching users."
|
7211 |
msgstr ""
|
7212 |
|
7213 |
+
#: inc/admin/views/tools/course/html-user.php:61
|
7214 |
+
msgid "No user found."
|
|
|
|
|
|
|
7215 |
msgstr ""
|
7216 |
|
7217 |
+
#: inc/admin/views/tools/course/html-user.php:62
|
7218 |
+
msgid "Searching user..."
|
|
|
7219 |
msgstr ""
|
7220 |
|
7221 |
+
#: inc/admin/views/tools/course/html-user-item.php:12
|
7222 |
+
msgid "Reset item progress for an user"
|
|
|
7223 |
msgstr ""
|
7224 |
|
7225 |
+
#: inc/admin/views/tools/course/html-user-item.php:14
|
7226 |
+
msgid "This action will reset progress of specific lesson or quiz."
|
7227 |
msgstr ""
|
7228 |
|
7229 |
+
#: inc/admin/views/tools/course/html-user-item.php:18
|
7230 |
+
msgid "User ID or Email"
|
7231 |
msgstr ""
|
7232 |
|
7233 |
+
#: inc/admin/views/tools/course/html-user-item.php:19
|
7234 |
+
msgid "Item ID (ID of quiz or lesson)"
|
|
|
7235 |
msgstr ""
|
7236 |
|
7237 |
+
#: inc/admin/views/tools/course/html-user-item.php:35
|
7238 |
+
msgid "Are you sure to reset progress of this item?"
|
|
|
|
|
7239 |
msgstr ""
|
7240 |
|
7241 |
+
#: inc/admin/views/setup/steps/finish.php:14
|
7242 |
+
msgid "Congrats! You are almost done with your settings."
|
7243 |
msgstr ""
|
7244 |
|
7245 |
+
#: inc/admin/views/setup/steps/finish.php:16
|
7246 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:2
|
7247 |
+
msgid "What's next?"
|
|
|
7248 |
msgstr ""
|
7249 |
|
7250 |
+
#: inc/admin/views/setup/steps/finish.php:22
|
7251 |
+
msgid "Install sample course"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: inc/admin/views/setup/steps/finish.php:25
|
7255 |
+
msgid "Create new course"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
+
#: inc/admin/views/setup/steps/finish.php:27
|
7259 |
+
msgid "Visit your site"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
+
#: inc/admin/views/setup/steps/emails.php:12
|
7263 |
+
msgid "Emails system"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
+
#: inc/admin/views/setup/steps/emails.php:14
|
7267 |
+
msgid "Emails are sent to users or teachers for each particular action."
|
7268 |
msgstr ""
|
7269 |
|
7270 |
+
#: inc/admin/views/setup/steps/emails.php:15
|
7271 |
+
msgid "You can enable/disable each email in LearnPress settings later."
|
7272 |
msgstr ""
|
7273 |
|
7274 |
+
#: inc/admin/views/setup/steps/emails.php:16
|
7275 |
+
msgid "But in right now, you can enable all emails to see how emails work."
|
7276 |
msgstr ""
|
7277 |
|
7278 |
+
#: inc/admin/views/setup/steps/emails.php:17
|
7279 |
+
msgid "You can skip to next step if you don’t want to."
|
|
|
7280 |
msgstr ""
|
7281 |
|
7282 |
+
#: inc/admin/views/setup/steps/emails.php:22
|
7283 |
+
msgid "Enable emails"
|
7284 |
msgstr ""
|
7285 |
|
7286 |
+
#: inc/admin/views/setup/steps/pages.php:16
|
7287 |
+
msgid ""
|
7288 |
+
"The pages will display content of LP's necessary pages, such as: Courses, "
|
7289 |
+
"Checkout, Profile"
|
7290 |
msgstr ""
|
7291 |
|
7292 |
+
#: inc/admin/views/setup/steps/pages.php:17
|
7293 |
#, php-format
|
7294 |
+
msgid ""
|
7295 |
+
"If you are not sure, click <a href=\"%s\" id=\"create-pages\">here</a> to "
|
7296 |
+
"create pages automatically."
|
7297 |
msgstr ""
|
7298 |
|
7299 |
+
#: inc/admin/views/setup/steps/pages.php:23
|
7300 |
+
msgid "Page will display all courses inside."
|
7301 |
msgstr ""
|
7302 |
|
7303 |
+
#: inc/admin/views/setup/steps/pages.php:32
|
7304 |
+
msgid "Page will display content of user profile."
|
|
|
7305 |
msgstr ""
|
7306 |
|
7307 |
+
#: inc/admin/views/setup/steps/pages.php:41
|
7308 |
+
msgid "Page will display content of form for processing checkout."
|
|
|
|
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: inc/admin/views/setup/steps/pages.php:50
|
7312 |
+
msgid "Page will display the form for submitting request to become a teacher."
|
|
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: inc/admin/views/setup/steps/welcome.php:12
|
7316 |
+
msgid "Welcome to LearnPress"
|
|
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: inc/admin/views/setup/steps/welcome.php:14
|
7320 |
+
msgid "Thanks for choosing LearnPress to sell your courses online!"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: inc/admin/views/setup/steps/welcome.php:16
|
7324 |
+
msgid ""
|
7325 |
+
"Setup Wizard helps you config some basic information before publishing your "
|
7326 |
+
"site."
|
7327 |
msgstr ""
|
7328 |
|
7329 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:1
|
7330 |
+
msgid "Update Database"
|
|
|
7331 |
msgstr ""
|
7332 |
|
7333 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:4
|
7334 |
+
msgid "Update custom post type"
|
|
|
7335 |
msgstr ""
|
7336 |
|
7337 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:7
|
7338 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:10
|
7339 |
+
msgid "Update post meta"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:14
|
7343 |
+
msgid "Updating! Please do not close this page until the work is done"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: inc/admin/views/updates/0.9/step-repair-database.php:18
|
7347 |
+
msgid "Rollback"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:1
|
7351 |
+
msgid "Upgrade completed successfully!"
|
7352 |
msgstr ""
|
7353 |
|
7354 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:5
|
7355 |
+
msgid "Manage courses"
|
|
|
7356 |
msgstr ""
|
7357 |
|
7358 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:8
|
7359 |
+
msgid "Create a new course"
|
7360 |
msgstr ""
|
7361 |
|
7362 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:11
|
7363 |
+
msgid "Setting up your LearnPress"
|
7364 |
msgstr ""
|
7365 |
|
7366 |
+
#: inc/admin/views/updates/0.9/step-upgraded.php:14
|
7367 |
+
msgid "Manage add-ons"
|
7368 |
msgstr ""
|
7369 |
|
7370 |
+
#: inc/admin/views/updates/0.9/update-wizard.php:6
|
7371 |
+
#: inc/admin/views/updates/0.9/update-wizard.php:19
|
7372 |
+
#, php-format
|
7373 |
+
msgid "LearnPress update version %s"
|
7374 |
msgstr ""
|
7375 |
|
7376 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:1
|
7377 |
+
msgid "Welcome to LearnPress!"
|
|
|
7378 |
msgstr ""
|
7379 |
|
7380 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:2
|
7381 |
+
msgid "Thank you for choosing LearnPress to sell your courses online!"
|
|
|
7382 |
msgstr ""
|
7383 |
|
7384 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:3
|
7385 |
+
#, php-format
|
7386 |
+
msgid ""
|
7387 |
+
"In version <strong>%s</strong> of LearnPress we have a big update and need "
|
7388 |
+
"to upgrade your database to ensure system works properly."
|
7389 |
msgstr ""
|
7390 |
|
7391 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:4
|
7392 |
+
msgid ""
|
7393 |
+
"We are very careful in upgrading the database but be sure to backup your "
|
7394 |
+
"database before upgrading to avoid possible risks."
|
7395 |
msgstr ""
|
7396 |
|
7397 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:5
|
7398 |
+
msgid "Click <strong>Yes, upgrade!</strong> button to start."
|
|
|
|
|
|
|
7399 |
msgstr ""
|
7400 |
|
7401 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:7
|
7402 |
+
msgid "No, back to Admin"
|
7403 |
msgstr ""
|
7404 |
|
7405 |
+
#: inc/admin/views/updates/0.9/step-welcome.php:8
|
7406 |
+
msgid "Yes, upgrade!"
|
|
|
|
|
7407 |
msgstr ""
|
7408 |
|
7409 |
+
#: inc/admin/views/dashboard/plugin-status/html-results.php:17
|
7410 |
+
msgid "Downloaded"
|
7411 |
msgstr ""
|
7412 |
|
7413 |
+
#: inc/admin/views/dashboard/plugin-status/html-results.php:18
|
7414 |
+
msgid "Active Installed"
|
7415 |
msgstr ""
|
7416 |
|
7417 |
+
#: inc/admin/views/dashboard/plugin-status/html-results.php:32
|
7418 |
+
msgid "Updated"
|
7419 |
msgstr ""
|
7420 |
|
7421 |
+
#: inc/admin/views/dashboard/plugin-status/html-results.php:33
|
7422 |
+
msgid "Current Version"
|
7423 |
msgstr ""
|
7424 |
|
7425 |
+
#: inc/admin/views/dashboard/plugin-status/html-no-data.php:4
|
7426 |
+
msgid "No results found"
|
7427 |
msgstr ""
|
7428 |
|
7429 |
+
#: inc/admin/views/meta-boxes/order/actions.php:19
|
7430 |
+
msgid "Choose an action"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: inc/admin/views/meta-boxes/order/actions.php:20
|
7434 |
+
msgid "Trigger action of current order status"
|
7435 |
msgstr ""
|
7436 |
|
7437 |
+
#: inc/admin/views/meta-boxes/order/details.php:25
|
7438 |
+
#, php-format
|
7439 |
+
msgid "Order %s"
|
7440 |
msgstr ""
|
7441 |
|
7442 |
+
#: inc/admin/views/meta-boxes/order/details.php:72
|
7443 |
+
msgid "Customers"
|
7444 |
msgstr ""
|
7445 |
|
7446 |
+
#: inc/admin/views/meta-boxes/order/details.php:79
|
7447 |
+
#: inc/admin/views/meta-boxes/order/details.php:100
|
7448 |
+
#: inc/admin/views/meta-boxes/order/details.php:210
|
7449 |
+
msgid "Add multi users"
|
7450 |
msgstr ""
|
7451 |
|
7452 |
+
#: inc/admin/views/meta-boxes/order/details.php:82
|
7453 |
+
#: inc/admin/views/meta-boxes/order/details.php:195
|
7454 |
+
#: inc/admin/views/meta-boxes/order/details.php:204
|
7455 |
+
#: inc/admin/views/meta-boxes/order/child-order.php:21
|
7456 |
+
msgid "Customer"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
+
#: inc/admin/views/meta-boxes/order/details.php:93
|
7460 |
+
#: inc/admin/views/meta-boxes/order/details.php:200
|
7461 |
+
msgid "Change"
|
7462 |
msgstr ""
|
7463 |
|
7464 |
+
#: inc/admin/views/meta-boxes/order/details.php:98
|
7465 |
+
msgid "- Or -"
|
7466 |
msgstr ""
|
7467 |
|
7468 |
+
#: inc/admin/views/meta-boxes/order/details.php:105
|
|
|
7469 |
msgid ""
|
7470 |
+
"In order to change the order user, please change the order status to "
|
7471 |
+
"'Pending'."
|
7472 |
msgstr ""
|
7473 |
|
7474 |
+
#: inc/admin/views/meta-boxes/order/details.php:120
|
7475 |
+
msgid "Order Items"
|
7476 |
msgstr ""
|
7477 |
|
7478 |
+
#: inc/admin/views/meta-boxes/order/details.php:126
|
7479 |
+
msgid "Cost"
|
7480 |
msgstr ""
|
7481 |
|
7482 |
+
#: inc/admin/views/meta-boxes/order/details.php:128
|
7483 |
+
msgid "Amount"
|
7484 |
msgstr ""
|
7485 |
|
7486 |
+
#: inc/admin/views/meta-boxes/order/details.php:138
|
7487 |
+
msgid "No order items"
|
|
|
7488 |
msgstr ""
|
7489 |
|
7490 |
+
#: inc/admin/views/meta-boxes/order/details.php:144
|
7491 |
+
msgid "Sub Total"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: inc/admin/views/meta-boxes/order/details.php:174
|
7495 |
+
msgid "Add Item"
|
|
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: inc/admin/views/meta-boxes/order/details.php:177
|
7499 |
+
msgid ""
|
7500 |
+
"In order to change the order item, please change the order status to "
|
7501 |
+
"'Pending'."
|
7502 |
msgstr ""
|
7503 |
|
7504 |
+
#: inc/admin/views/meta-boxes/order/details.php:180
|
7505 |
+
msgid "Calculate Total"
|
|
|
7506 |
msgstr ""
|
7507 |
|
7508 |
+
#: inc/admin/views/meta-boxes/order/details.php:188
|
7509 |
+
msgid "Customer Note"
|
|
|
7510 |
msgstr ""
|
7511 |
|
7512 |
+
#: inc/admin/views/meta-boxes/order/details.php:236
|
7513 |
+
msgid "Type here to search the course"
|
|
|
7514 |
msgstr ""
|
7515 |
|
7516 |
+
#: inc/admin/views/meta-boxes/order/details.php:239
|
7517 |
+
msgid "No results"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:25
|
7521 |
+
msgid "Your course is pending for reviewing"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:27
|
7525 |
+
msgid ""
|
7526 |
+
"Your course will not be submitted for reviewing until you check 'Submit for "
|
7527 |
+
"Review'"
|
7528 |
msgstr ""
|
7529 |
|
7530 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:31
|
7531 |
+
msgid "Submit for Review"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:34
|
7535 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:42
|
7536 |
+
msgid "Message to Reviewer"
|
7537 |
msgstr ""
|
7538 |
|
7539 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:48
|
7540 |
+
msgid "This course is pending for reviewing"
|
|
|
7541 |
msgstr ""
|
7542 |
|
7543 |
+
#: inc/admin/views/meta-boxes/course/review-log.php:51
|
7544 |
+
msgid "Message to Instructor"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:7
|
7548 |
+
#, php-format
|
7549 |
+
msgid "%d review"
|
7550 |
+
msgid_plural "%d reviews"
|
7551 |
+
msgstr[0] ""
|
7552 |
+
msgstr[1] ""
|
7553 |
|
7554 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:9
|
7555 |
+
msgid "This course has not got any reviews yet"
|
|
|
7556 |
msgstr ""
|
7557 |
|
7558 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:25
|
7559 |
+
msgid "Rejected"
|
|
|
7560 |
msgstr ""
|
7561 |
|
7562 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:25
|
7563 |
+
msgid "Submit for review"
|
7564 |
msgstr ""
|
7565 |
|
7566 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:40
|
7567 |
+
msgid "View less"
|
7568 |
msgstr ""
|
7569 |
|
7570 |
+
#: inc/admin/views/meta-boxes/course/review-logs.php:42
|
7571 |
+
msgid "View all"
|
7572 |
msgstr ""
|
7573 |
|
7574 |
+
#. Description of the plugin
|
7575 |
+
msgid ""
|
7576 |
+
"LearnPress is a WordPress complete solution for creating a Learning "
|
7577 |
+
"Management System (LMS). It can help you to create courses, lessons and "
|
7578 |
+
"quizzes."
|
7579 |
msgstr ""
|
7580 |
|
7581 |
+
#. URI of the plugin
|
7582 |
+
msgid "http://thimpress.com/learnpress"
|
|
|
|
|
7583 |
msgstr ""
|
7584 |
|
7585 |
+
#. Author of the plugin
|
7586 |
+
msgid "ThimPress"
|
|
|
|
|
|
|
7587 |
msgstr ""
|
7588 |
|
7589 |
+
#. Author URI of the plugin
|
7590 |
+
msgid "http://thimpress.com"
|
|
|
|
|
|
|
7591 |
msgstr ""
|
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.
|
8 |
Author URI: http://thimpress.com
|
9 |
Requires at least: 3.8
|
10 |
Tested up to: 5.0.2
|
4 |
Plugin URI: http://thimpress.com/learnpress
|
5 |
Description: LearnPress is a WordPress complete solution for creating a Learning Management System (LMS). It can help you to create courses, lessons and quizzes.
|
6 |
Author: ThimPress
|
7 |
+
Version: 3.2.5
|
8 |
Author URI: http://thimpress.com
|
9 |
Requires at least: 3.8
|
10 |
Tested up to: 5.0.2
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: WordPress LMS, LMS, eLearning, e-Learning, Learning Management System, LMS WordPress, Course, Courses, Quiz, Quizzes, Training, Guru, Sell Courses
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.0.2
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -199,6 +199,15 @@ https://www.transifex.com/projects/p/learnpress/
|
|
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.
|
4 |
Tags: WordPress LMS, LMS, eLearning, e-Learning, Learning Management System, LMS WordPress, Course, Courses, Quiz, Quizzes, Training, Guru, Sell Courses
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.0.2
|
7 |
+
Stable tag: 3.2.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
199 |
8. Add-ons of LearnPress.
|
200 |
|
201 |
== Changelog ==
|
202 |
+
= 3.2.5 =
|
203 |
+
~ Fixed button for creating LP pages does not work properly.
|
204 |
+
~ Fixed warning when getting course items does not exists.
|
205 |
+
~ Added button to close warning for outdated templates.
|
206 |
+
~ Fixed search order not working.
|
207 |
+
~ Fixed get course items in incorrect order.
|
208 |
+
~ Fixed can't start quiz when the course is not required enroll.
|
209 |
+
~ Fixed the amount number of enrolled users isn't updated correctly.
|
210 |
+
|
211 |
= 3.2.4 =
|
212 |
~ Fixed cannot enroll course.
|
213 |
~ Fixed prev question button not working correct.
|