Tutor LMS – eLearning and online course solution - Version 1.9.1

Version Description

  • June 04, 2021 =

New: Enable/disable auto redirection to enrolled courses on auto order completion Fix: Parameter count in plugin activated hook Fix: Zoom meeting redirecting to post list while saving Fix: Students can no longer give feedback without selecting star rating

Download this release

Release Info

Developer themeum
Plugin Icon wp plugin Tutor LMS – eLearning and online course solution
Version 1.9.1
Comparing to
See all releases

Code changes from version 1.9.0 to 1.9.1

assets/js/tutor-front.js CHANGED
@@ -170,6 +170,11 @@ jQuery(document).ready(function ($) {
170
  var course_id = $('input[name="tutor_course_id"]').val();
171
  var data = { course_id: course_id, rating: rating, review: review, action: 'tutor_place_rating' };
172
 
 
 
 
 
 
173
  if (review) {
174
  $.ajax({
175
  url: _tutorobject.ajaxurl,
170
  var course_id = $('input[name="tutor_course_id"]').val();
171
  var data = { course_id: course_id, rating: rating, review: review, action: 'tutor_place_rating' };
172
 
173
+ if(!rating || rating==0 || !review) {
174
+ alert(__('Rating and review required', 'tutor'));
175
+ return;
176
+ }
177
+
178
  if (review) {
179
  $.ajax({
180
  url: _tutorobject.ajaxurl,
classes/Options.php CHANGED
@@ -228,6 +228,12 @@ class Options {
228
  'label_title' => __('Course Content Access', 'tutor'),
229
  'desc' => __('Allow instructors and admins to view the course content without enrolling', 'tutor'),
230
  ),
 
 
 
 
 
 
231
  'course_completion_process' => array(
232
  'type' => 'radio',
233
  'label' => __('Course Completion Process', 'tutor'),
228
  'label_title' => __('Course Content Access', 'tutor'),
229
  'desc' => __('Allow instructors and admins to view the course content without enrolling', 'tutor'),
230
  ),
231
+ 'wc_automatic_order_complete_redirect_to_courses' => array(
232
+ 'type' => 'checkbox',
233
+ 'label' => __('Auto redirect to courses', 'tutor'),
234
+ 'label_title' => __('Enable', 'tutor'),
235
+ 'desc' => __('When a user\'s WooCommerce order is auto-completed, they will be redirected to enrolled courses', 'tutor'),
236
+ ),
237
  'course_completion_process' => array(
238
  'type' => 'radio',
239
  'label' => __('Course Completion Process', 'tutor'),
classes/Tutor.php CHANGED
@@ -164,7 +164,7 @@ final class Tutor{
164
  *
165
  */
166
 
167
- add_action( 'activated_plugin', array( $this, 'activated_tutor' ) );
168
  }
169
 
170
  /**
164
  *
165
  */
166
 
167
+ add_action( 'activated_plugin', array( $this, 'activated_tutor' ), 10, 2 );
168
  }
169
 
170
  /**
classes/WooCommerce.php CHANGED
@@ -508,10 +508,15 @@ class WooCommerce extends Tutor_Base {
508
  * @since 1.9.0
509
  */
510
  public function redirect_to_enrolled_courses( $order_id ) {
 
 
 
 
 
511
  //get woo order details
512
  $order = wc_get_order( $order_id );
513
  $tutor_product = false;
514
- $url = tutor_utils()->tutor_dashboard_url().'/enrolled-courses';
515
  foreach ($order->get_items() as $item) {
516
  $product_id = $item->get_product_id();
517
  //check if product associated with tutor course
508
  * @since 1.9.0
509
  */
510
  public function redirect_to_enrolled_courses( $order_id ) {
511
+ if(!tutils()->get_option( 'wc_automatic_order_complete_redirect_to_courses' )) {
512
+ // Since 1.9.1
513
+ return;
514
+ }
515
+
516
  //get woo order details
517
  $order = wc_get_order( $order_id );
518
  $tutor_product = false;
519
+ $url = tutor_utils()->tutor_dashboard_url().'enrolled-courses/';
520
  foreach ($order->get_items() as $item) {
521
  $product_id = $item->get_product_id();
522
  //check if product associated with tutor course
languages/tutor.pot CHANGED
@@ -117,11 +117,11 @@ msgstr ""
117
  msgid "Tags"
118
  msgstr ""
119
 
120
- #: classes/Admin.php:60, classes/Admin.php:60, classes/Course.php:465, classes/Options.php:562, classes/Quiz_Attempts_List.php:112, templates/student-public-profile.php:103, views/pages/students.php:8
121
  msgid "Students"
122
  msgstr ""
123
 
124
- #: classes/Admin.php:63, classes/Admin.php:63, classes/Course.php:163, classes/Course.php:242, classes/Options.php:523, views/pages/instructors.php:20
125
  msgid "Instructors"
126
  msgstr ""
127
 
@@ -293,7 +293,7 @@ msgstr ""
293
  msgid "Topic has been updated"
294
  msgstr ""
295
 
296
- #: classes/Course.php:464, classes/Options.php:423, classes/Post_types.php:172, templates/single/course/course-topics.php:38
297
  msgid "Lessons"
298
  msgstr ""
299
 
@@ -353,7 +353,7 @@ msgstr ""
353
  msgid "Maximum Students"
354
  msgstr ""
355
 
356
- #: classes/Course_Settings_Tabs.php:45, classes/Options.php:110, classes/Options.php:117, classes/Options.php:131, classes/Options.php:138, classes/Options.php:151, classes/Options.php:158, classes/Options.php:165, classes/Options.php:172, classes/Options.php:185, classes/Options.php:216, classes/Options.php:272, classes/Options.php:290, classes/Options.php:296, classes/Options.php:432, classes/Options.php:532, classes/Options.php:546, classes/Options.php:553, classes/Options.php:578, classes/Options.php:585, classes/Options.php:603, classes/Options.php:627
357
  msgid "Enable"
358
  msgstr ""
359
 
@@ -697,7 +697,7 @@ msgstr ""
697
  msgid "Tutor Native Login"
698
  msgstr ""
699
 
700
- #: classes/Options.php:124, classes/Options.php:303, classes/Options.php:310, classes/Options.php:317, classes/Options.php:324, classes/Options.php:331, classes/Options.php:338, classes/Options.php:345, classes/Options.php:352, classes/Options.php:359, classes/Options.php:366, classes/Options.php:373, classes/Options.php:380, classes/Options.php:387, classes/Options.php:394, classes/Options.php:401
701
  msgid "Disable"
702
  msgstr ""
703
 
@@ -805,7 +805,7 @@ msgstr ""
805
  msgid "Use Gutenberg editor on course description area."
806
  msgstr ""
807
 
808
- #: classes/Options.php:221, classes/Options.php:227, classes/Options.php:284, classes/Options.php:437, classes/WooCommerce.php:287
809
  msgid "Enable / Disable"
810
  msgstr ""
811
 
@@ -826,558 +826,566 @@ msgid "Allow instructors and admins to view the course content without enrolling
826
  msgstr ""
827
 
828
  #: classes/Options.php:233
 
 
 
 
 
 
 
 
829
  msgid "Course Completion Process"
830
  msgstr ""
831
 
832
- #: classes/Options.php:237
833
  msgid "Flexible"
834
  msgstr ""
835
 
836
- #: classes/Options.php:238
837
  msgid "Strict Mode"
838
  msgstr ""
839
 
840
- #: classes/Options.php:240
841
  msgid "Students can complete courses anytime in the Flexible mode. In the Strict mode, students have to complete, pass all the lessons and quizzes (if any) to mark a course as complete."
842
  msgstr ""
843
 
844
- #: classes/Options.php:245
845
  msgid "Archive"
846
  msgstr ""
847
 
848
- #: classes/Options.php:246
849
  msgid "Course Archive Settings"
850
  msgstr ""
851
 
852
- #: classes/Options.php:250
853
  msgid "Course Archive Page"
854
  msgstr ""
855
 
856
- #: classes/Options.php:253
857
  msgid "This page will be used to list all the published courses."
858
  msgstr ""
859
 
860
- #: classes/Options.php:257
861
  msgid "Column Per Row"
862
  msgstr ""
863
 
864
- #: classes/Options.php:260
865
  msgid "Define how many column you want to use to display courses."
866
  msgstr ""
867
 
868
- #: classes/Options.php:264, classes/Tutor_Setup.php:412
869
  msgid "Courses Per Page"
870
  msgstr ""
871
 
872
- #: classes/Options.php:267
873
  msgid "Define how many courses you want to show per page"
874
  msgstr ""
875
 
876
- #: classes/Options.php:271
877
  msgid "Course Filter"
878
  msgstr ""
879
 
880
- #: classes/Options.php:273
881
  msgid "Show sorting and filtering options on course archive page"
882
  msgstr ""
883
 
884
- #: classes/Options.php:277
885
  msgid "Preferred Course Filters"
886
  msgstr ""
887
 
888
- #: classes/Options.php:279
889
  msgid "Choose preferred filter options you'd like to show in course archive page."
890
  msgstr ""
891
 
892
- #: classes/Options.php:285
893
  msgid "Course Display Settings"
894
  msgstr ""
895
 
896
- #: classes/Options.php:289
897
  msgid "Display Instructor Info"
898
  msgstr ""
899
 
900
- #: classes/Options.php:291
901
  msgid "Show instructor bio on each page"
902
  msgstr ""
903
 
904
- #: classes/Options.php:295
905
  msgid "Question and Answer"
906
  msgstr ""
907
 
908
- #: classes/Options.php:298
909
  msgid "Enabling this feature will add a Q&A section on every course."
910
  msgstr ""
911
 
912
- #: classes/Options.php:302
913
  msgid "Course Author"
914
  msgstr ""
915
 
916
- #: classes/Options.php:305
917
  msgid "Disabling this feature will be removed course author name from the course page."
918
  msgstr ""
919
 
920
- #: classes/Options.php:309
921
  msgid "Course Level"
922
  msgstr ""
923
 
924
- #: classes/Options.php:312
925
  msgid "Disabling this feature will be removed course level from the course page."
926
  msgstr ""
927
 
928
- #: classes/Options.php:316
929
  msgid "Course Share"
930
  msgstr ""
931
 
932
- #: classes/Options.php:319
933
  msgid "Disabling this feature will be removed course share option from the course page."
934
  msgstr ""
935
 
936
- #: classes/Options.php:323
937
  msgid "Course Duration"
938
  msgstr ""
939
 
940
- #: classes/Options.php:326
941
  msgid "Disabling this feature will be removed course duration from the course page."
942
  msgstr ""
943
 
944
- #: classes/Options.php:330
945
  msgid "Course Total Enrolled"
946
  msgstr ""
947
 
948
- #: classes/Options.php:333
949
  msgid "Disabling this feature will be removed course total enrolled from the course page."
950
  msgstr ""
951
 
952
- #: classes/Options.php:337
953
  msgid "Course Update Date"
954
  msgstr ""
955
 
956
- #: classes/Options.php:340
957
  msgid "Disabling this feature will be removed course update date from the course page."
958
  msgstr ""
959
 
960
- #: classes/Options.php:344
961
  msgid "Course Progress Bar"
962
  msgstr ""
963
 
964
- #: classes/Options.php:347
965
  msgid "Disabling this feature will be removed completing progress bar from the course page."
966
  msgstr ""
967
 
968
- #: classes/Options.php:351
969
  msgid "Course Material"
970
  msgstr ""
971
 
972
- #: classes/Options.php:354
973
  msgid "Disabling this feature will be removed course material from the course page."
974
  msgstr ""
975
 
976
- #: classes/Options.php:358
977
  msgid "Course About"
978
  msgstr ""
979
 
980
- #: classes/Options.php:361
981
  msgid "Disabling this feature will be removed course about from the course page."
982
  msgstr ""
983
 
984
- #: classes/Options.php:365
985
  msgid "Course Description"
986
  msgstr ""
987
 
988
- #: classes/Options.php:368
989
  msgid "Disabling this feature will be removed course description from the course page."
990
  msgstr ""
991
 
992
- #: classes/Options.php:372
993
  msgid "Course Benefits"
994
  msgstr ""
995
 
996
- #: classes/Options.php:375
997
  msgid "Disabling this feature will be removed course benefits from the course page."
998
  msgstr ""
999
 
1000
- #: classes/Options.php:379
1001
  msgid "Course Requirements"
1002
  msgstr ""
1003
 
1004
- #: classes/Options.php:382
1005
  msgid "Disabling this feature will be removed course requirements from the course page."
1006
  msgstr ""
1007
 
1008
- #: classes/Options.php:386
1009
  msgid "Course Target Audience"
1010
  msgstr ""
1011
 
1012
- #: classes/Options.php:389
1013
  msgid "Disabling this feature will be removed course target audience from the course page."
1014
  msgstr ""
1015
 
1016
- #: classes/Options.php:393
1017
  msgid "Course Announcements"
1018
  msgstr ""
1019
 
1020
- #: classes/Options.php:396
1021
  msgid "Disabling this feature will be removed course announcements from the course page."
1022
  msgstr ""
1023
 
1024
- #: classes/Options.php:400
1025
  msgid "Course Review"
1026
  msgstr ""
1027
 
1028
- #: classes/Options.php:403
1029
  msgid "Disabling this feature will be removed course review system from the course page."
1030
  msgstr ""
1031
 
1032
- #: classes/Options.php:407
1033
  msgid "Preferred Video Source"
1034
  msgstr ""
1035
 
1036
- #: classes/Options.php:409
1037
  msgid "Choose video sources you'd like to support. Unchecking all will not disable video feature."
1038
  msgstr ""
1039
 
1040
- #: classes/Options.php:413
1041
  msgid "Default Video Source"
1042
  msgstr ""
1043
 
1044
- #: classes/Options.php:416
1045
  msgid "Choose video source to be selected by default."
1046
  msgstr ""
1047
 
1048
- #: classes/Options.php:426
1049
  msgid "Lesson Settings"
1050
  msgstr ""
1051
 
1052
- #: classes/Options.php:427
1053
  msgid "Lesson settings will be here"
1054
  msgstr ""
1055
 
1056
- #: classes/Options.php:431, views/modal/edit-lesson.php:12
1057
  msgid "Classic Editor"
1058
  msgstr ""
1059
 
1060
- #: classes/Options.php:433
1061
  msgid "Enable classic editor to get full support of any editor/page builder."
1062
  msgstr ""
1063
 
1064
- #: classes/Options.php:438
1065
  msgid "Automatically load next course content."
1066
  msgstr ""
1067
 
1068
- #: classes/Options.php:439
1069
  msgid "Enabling this feature will be load next course content automatically after finishing current video."
1070
  msgstr ""
1071
 
1072
- #: classes/Options.php:443
1073
  msgid "Lesson Permalink Base"
1074
  msgstr ""
1075
 
1076
- #: classes/Options.php:449
1077
  msgid "Youtube API Key"
1078
  msgstr ""
1079
 
1080
- #: classes/Options.php:458, classes/Options.php:461, classes/Quiz_Attempts_List.php:113, classes/Tutor_Setup.php:556, views/metabox/course-contents.php:169, views/metabox/course-topics.php:60, views/pages/view_attempt.php:39, templates/single/quiz/top.php:24
1081
  msgid "Quiz"
1082
  msgstr ""
1083
 
1084
- #: classes/Options.php:462
1085
  msgid "The values you set here define the default values that are used in the settings form when you create a new quiz."
1086
  msgstr ""
1087
 
1088
- #: classes/Options.php:466, classes/Tutor_Setup.php:425, views/modal/edit_quiz.php:140
1089
  msgid "Time Limit"
1090
  msgstr ""
1091
 
1092
- #: classes/Options.php:467
1093
  msgid "0 means unlimited time."
1094
  msgstr ""
1095
 
1096
- #: classes/Options.php:478, views/modal/edit_quiz.php:152
1097
  msgid "Weeks"
1098
  msgstr ""
1099
 
1100
- #: classes/Options.php:479, views/modal/edit_quiz.php:151
1101
  msgid "Days"
1102
  msgstr ""
1103
 
1104
- #: classes/Options.php:480, views/modal/edit_quiz.php:150
1105
  msgid "Hours"
1106
  msgstr ""
1107
 
1108
- #: classes/Options.php:481, views/modal/edit_quiz.php:149
1109
  msgid "Minutes"
1110
  msgstr ""
1111
 
1112
- #: classes/Options.php:482, views/modal/edit_quiz.php:148
1113
  msgid "Seconds"
1114
  msgstr ""
1115
 
1116
- #: classes/Options.php:489
1117
  msgid "When time expires"
1118
  msgstr ""
1119
 
1120
- #: classes/Options.php:493, classes/Tutor_Setup.php:432
1121
  msgid "The current quiz answers are submitted automatically."
1122
  msgstr ""
1123
 
1124
- #: classes/Options.php:494, classes/Tutor_Setup.php:433
1125
  msgid "The current quiz answers are submitted by students."
1126
  msgstr ""
1127
 
1128
- #: classes/Options.php:495, classes/Tutor_Setup.php:434
1129
  msgid "Attempts must be submitted before time expires, otherwise they will not be counted"
1130
  msgstr ""
1131
 
1132
- #: classes/Options.php:497
1133
  msgid "Choose which action to follow when the quiz time expires."
1134
  msgstr ""
1135
 
1136
- #: classes/Options.php:501
1137
  msgid "Attempts allowed"
1138
  msgstr ""
1139
 
1140
- #: classes/Options.php:503
1141
  msgid "The highest number of attempts students are allowed to take for a quiz. 0 means unlimited attempts."
1142
  msgstr ""
1143
 
1144
- #: classes/Options.php:507
1145
  msgid "Final grade calculation"
1146
  msgstr ""
1147
 
1148
- #: classes/Options.php:511, classes/Tutor_Setup.php:448
1149
  msgid "Highest Grade"
1150
  msgstr ""
1151
 
1152
- #: classes/Options.php:512, classes/Tutor_Setup.php:453
1153
  msgid "Average Grade"
1154
  msgstr ""
1155
 
1156
- #: classes/Options.php:513, classes/Tutor_Setup.php:458
1157
  msgid "First Attempt"
1158
  msgstr ""
1159
 
1160
- #: classes/Options.php:514, classes/Tutor_Setup.php:463
1161
  msgid "Last Attempt"
1162
  msgstr ""
1163
 
1164
- #: classes/Options.php:516
1165
  msgid "When multiple attempts are allowed, which method should be used to calculate a student's final grade for the quiz."
1166
  msgstr ""
1167
 
1168
- #: classes/Options.php:526
1169
  msgid "Instructor Profile Settings"
1170
  msgstr ""
1171
 
1172
- #: classes/Options.php:527, classes/Options.php:566, classes/Options.php:598
1173
  msgid "Enable Disable Option to on/off notification on various event"
1174
  msgstr ""
1175
 
1176
- #: classes/Options.php:531
1177
  msgid "Course Marketplace"
1178
  msgstr ""
1179
 
1180
- #: classes/Options.php:534
1181
  msgid "Allow multiple instructors to upload their courses."
1182
  msgstr ""
1183
 
1184
- #: classes/Options.php:538, classes/Utils.php:6320
1185
  msgid "Instructor Registration Page"
1186
  msgstr ""
1187
 
1188
- #: classes/Options.php:541
1189
  msgid "This page will be used to sign up new instructors."
1190
  msgstr ""
1191
 
1192
- #: classes/Options.php:545
1193
  msgid "Allow publishing course"
1194
  msgstr ""
1195
 
1196
- #: classes/Options.php:548
1197
  msgid "Enable instructors to publish course directly. <strong>Do not select</strong> if admins want to review courses before publishing."
1198
  msgstr ""
1199
 
1200
- #: classes/Options.php:552
1201
  msgid "Become Instructor Button"
1202
  msgstr ""
1203
 
1204
- #: classes/Options.php:555
1205
  msgid "Uncheck this option to hide the button from student dashboard."
1206
  msgstr ""
1207
 
1208
- #: classes/Options.php:565
1209
  msgid "Student Profile settings"
1210
  msgstr ""
1211
 
1212
- #: classes/Options.php:570, classes/Utils.php:6321
1213
  msgid "Student Registration Page"
1214
  msgstr ""
1215
 
1216
- #: classes/Options.php:573
1217
  msgid "Choose the page for student registration page"
1218
  msgstr ""
1219
 
1220
- #: classes/Options.php:577
1221
  msgid "Show reviews on profile"
1222
  msgstr ""
1223
 
1224
- #: classes/Options.php:580
1225
  msgid "Enabling this will show the reviews written by each student on their profile"
1226
  msgstr ""
1227
 
1228
- #: classes/Options.php:584
1229
  msgid "Show completed courses"
1230
  msgstr ""
1231
 
1232
- #: classes/Options.php:587
1233
  msgid "Completed courses will be shown on student profiles. <br/> For example, you can see this link-"
1234
  msgstr ""
1235
 
1236
- #: classes/Options.php:594, classes/Options.php:602, classes/Tutor_Setup.php:484, templates/dashboard/earning.php:123, templates/dashboard/earning/chart-body.php:17, templates/dashboard/earning/statement.php:14, templates/dashboard/earning/statements.php:135
1237
  msgid "Earning"
1238
  msgstr ""
1239
 
1240
- #: classes/Options.php:597
1241
  msgid "Earning and commission allocation"
1242
  msgstr ""
1243
 
1244
- #: classes/Options.php:605
1245
  msgid "If disabled, the Admin will receive 100% of the earning"
1246
  msgstr ""
1247
 
1248
- #: classes/Options.php:609
1249
  msgid "Admin Commission Percentage"
1250
  msgstr ""
1251
 
1252
- #: classes/Options.php:611
1253
  msgid "Define the commission of the Admin from each sale.(after deducting fees)"
1254
  msgstr ""
1255
 
1256
- #: classes/Options.php:615
1257
  msgid "Instructor Commission Percentage"
1258
  msgstr ""
1259
 
1260
- #: classes/Options.php:617
1261
  msgid "Define the commission for instructors from each sale.(after deducting fees)"
1262
  msgstr ""
1263
 
1264
- #: classes/Options.php:621
1265
  msgid "Fee Deduction"
1266
  msgstr ""
1267
 
1268
- #: classes/Options.php:622
1269
  msgid "Fees are charged from the entire sales amount. The remaining amount will be divided among admin and instructors."
1270
  msgstr ""
1271
 
1272
- #: classes/Options.php:632
1273
  msgid "Fee Name"
1274
  msgstr ""
1275
 
1276
- #: classes/Options.php:637
1277
  msgid "Fee Amount"
1278
  msgstr ""
1279
 
1280
- #: classes/Options.php:645
1281
  msgid "Select Fees Type"
1282
  msgstr ""
1283
 
1284
- #: classes/Options.php:646
1285
  msgid "Percent"
1286
  msgstr ""
1287
 
1288
- #: classes/Options.php:647
1289
  msgid "Fixed"
1290
  msgstr ""
1291
 
1292
- #: classes/Options.php:655
1293
  msgid "Show Statement Per Page"
1294
  msgstr ""
1295
 
1296
- #: classes/Options.php:657
1297
  msgid "Define the number of statements to show."
1298
  msgstr ""
1299
 
1300
- #: classes/Options.php:664, templates/dashboard/withdraw.php:43
1301
  msgid "Withdrawal"
1302
  msgstr ""
1303
 
1304
- #: classes/Options.php:667
1305
  msgid "Withdrawal Settings"
1306
  msgstr ""
1307
 
1308
- #: classes/Options.php:671
1309
  msgid "Minimum Withdraw Amount"
1310
  msgstr ""
1311
 
1312
- #: classes/Options.php:673
1313
  msgid "Instructors should earn equal or above this amount to make a withdraw request."
1314
  msgstr ""
1315
 
1316
- #: classes/Options.php:679
1317
  msgid "Withdraw Methods"
1318
  msgstr ""
1319
 
1320
- #: classes/Options.php:680
1321
  msgid "Set withdraw settings"
1322
  msgstr ""
1323
 
1324
- #: classes/Options.php:686
1325
  msgid "Style"
1326
  msgstr ""
1327
 
1328
- #: classes/Options.php:689
1329
  msgid "Color Style"
1330
  msgstr ""
1331
 
1332
- #: classes/Options.php:693
1333
  msgid "Primary Color"
1334
  msgstr ""
1335
 
1336
- #: classes/Options.php:698
1337
  msgid "Primary Hover Color"
1338
  msgstr ""
1339
 
1340
- #: classes/Options.php:703
1341
  msgid "Text color"
1342
  msgstr ""
1343
 
1344
- #: classes/Options.php:708
1345
  msgid "Light color"
1346
  msgstr ""
1347
 
1348
- #: classes/Options.php:715
1349
  msgid "Button Primary Color"
1350
  msgstr ""
1351
 
1352
- #: classes/Options.php:721
1353
  msgid "Button Danger Color"
1354
  msgstr ""
1355
 
1356
- #: classes/Options.php:726
1357
  msgid "Button Success Color"
1358
  msgstr ""
1359
 
1360
- #: classes/Options.php:731
1361
  msgid "Button Warning Color"
1362
  msgstr ""
1363
 
1364
- #: classes/Options.php:741, classes/Options.php:744
1365
  msgid "Monetization"
1366
  msgstr ""
1367
 
1368
- #: classes/Options.php:745
1369
  msgid "You can monetize your LMS website by selling courses in a various way."
1370
  msgstr ""
1371
 
1372
- #: classes/Options.php:750
1373
  msgid "Monetize Option"
1374
  msgstr ""
1375
 
1376
- #: classes/Options.php:754
1377
  msgid "Disable Monetization"
1378
  msgstr ""
1379
 
1380
- #: classes/Options.php:756
1381
  msgid "Select a monetization option to generate revenue by selling courses. Supports: WooCommerce, Easy Digital Downloads, Paid Memberships Pro"
1382
  msgstr ""
1383
 
@@ -2625,7 +2633,7 @@ msgstr ""
2625
  msgid "Enabling this will let an unregistered user purchase any course from the Course Details page. Head over to Documentation to know how to configure this setting."
2626
  msgstr ""
2627
 
2628
- #: classes/WooCommerce.php:537
2629
  msgid "Since WooCommerce is disabled, your monetized courses have been set to free. Please make sure to enable Tutor LMS monetization if you decide to re-enable WooCommerce."
2630
  msgstr ""
2631
 
@@ -5246,51 +5254,55 @@ msgstr ""
5246
  msgid "Are you sure? it can not be undone."
5247
  msgstr ""
5248
 
5249
- #: assets/js/tutor-front.js:736
5250
- msgid "Please select an option to answer"
5251
  msgstr ""
5252
 
5253
  #: assets/js/tutor-front.js:741
 
 
 
 
5254
  msgid "Please select at least one option to answer."
5255
  msgstr ""
5256
 
5257
- #: assets/js/tutor-front.js:748
5258
  msgid "The answer for this question is required"
5259
  msgstr ""
5260
 
5261
- #: assets/js/tutor-front.js:770
5262
  msgid "Please match all the items"
5263
  msgstr ""
5264
 
5265
- #: assets/js/tutor-front.js:805
5266
  msgid "Incorrect, Please try again"
5267
  msgstr ""
5268
 
5269
- #: assets/js/tutor-front.js:820
5270
  msgid "More answer for this question is required"
5271
  msgstr ""
5272
 
5273
- #: assets/js/tutor-front.js:844
5274
  msgid "Correct Answer"
5275
  msgstr ""
5276
 
5277
- #: assets/js/tutor-front.js:1151
5278
  msgid "Assignment answer can not be empty"
5279
  msgstr ""
5280
 
5281
- #: assets/js/tutor-front.js:1269
5282
  msgid "Done"
5283
  msgstr ""
5284
 
5285
- #: assets/js/tutor-front.js:1272
5286
  msgid "Failed"
5287
  msgstr ""
5288
 
5289
- #: assets/js/tutor-front.js:1272
5290
  msgid "Lesson Update Failed"
5291
  msgstr ""
5292
 
5293
- #: assets/js/tutor-front.js:1462
5294
  msgid "Assignment Update Failed"
5295
  msgstr ""
5296
 
117
  msgid "Tags"
118
  msgstr ""
119
 
120
+ #: classes/Admin.php:60, classes/Admin.php:60, classes/Course.php:465, classes/Options.php:568, classes/Quiz_Attempts_List.php:112, templates/student-public-profile.php:103, views/pages/students.php:8
121
  msgid "Students"
122
  msgstr ""
123
 
124
+ #: classes/Admin.php:63, classes/Admin.php:63, classes/Course.php:163, classes/Course.php:242, classes/Options.php:529, views/pages/instructors.php:20
125
  msgid "Instructors"
126
  msgstr ""
127
 
293
  msgid "Topic has been updated"
294
  msgstr ""
295
 
296
+ #: classes/Course.php:464, classes/Options.php:429, classes/Post_types.php:172, templates/single/course/course-topics.php:38
297
  msgid "Lessons"
298
  msgstr ""
299
 
353
  msgid "Maximum Students"
354
  msgstr ""
355
 
356
+ #: classes/Course_Settings_Tabs.php:45, classes/Options.php:110, classes/Options.php:117, classes/Options.php:131, classes/Options.php:138, classes/Options.php:151, classes/Options.php:158, classes/Options.php:165, classes/Options.php:172, classes/Options.php:185, classes/Options.php:216, classes/Options.php:234, classes/Options.php:278, classes/Options.php:296, classes/Options.php:302, classes/Options.php:438, classes/Options.php:538, classes/Options.php:552, classes/Options.php:559, classes/Options.php:584, classes/Options.php:591, classes/Options.php:609, classes/Options.php:633
357
  msgid "Enable"
358
  msgstr ""
359
 
697
  msgid "Tutor Native Login"
698
  msgstr ""
699
 
700
+ #: classes/Options.php:124, classes/Options.php:309, classes/Options.php:316, classes/Options.php:323, classes/Options.php:330, classes/Options.php:337, classes/Options.php:344, classes/Options.php:351, classes/Options.php:358, classes/Options.php:365, classes/Options.php:372, classes/Options.php:379, classes/Options.php:386, classes/Options.php:393, classes/Options.php:400, classes/Options.php:407
701
  msgid "Disable"
702
  msgstr ""
703
 
805
  msgid "Use Gutenberg editor on course description area."
806
  msgstr ""
807
 
808
+ #: classes/Options.php:221, classes/Options.php:227, classes/Options.php:290, classes/Options.php:443, classes/WooCommerce.php:287
809
  msgid "Enable / Disable"
810
  msgstr ""
811
 
826
  msgstr ""
827
 
828
  #: classes/Options.php:233
829
+ msgid "Auto redirect to courses"
830
+ msgstr ""
831
+
832
+ #: classes/Options.php:235
833
+ msgid "When a user's WooCommerce order is auto-completed, they will be redirected to enrolled courses"
834
+ msgstr ""
835
+
836
+ #: classes/Options.php:239
837
  msgid "Course Completion Process"
838
  msgstr ""
839
 
840
+ #: classes/Options.php:243
841
  msgid "Flexible"
842
  msgstr ""
843
 
844
+ #: classes/Options.php:244
845
  msgid "Strict Mode"
846
  msgstr ""
847
 
848
+ #: classes/Options.php:246
849
  msgid "Students can complete courses anytime in the Flexible mode. In the Strict mode, students have to complete, pass all the lessons and quizzes (if any) to mark a course as complete."
850
  msgstr ""
851
 
852
+ #: classes/Options.php:251
853
  msgid "Archive"
854
  msgstr ""
855
 
856
+ #: classes/Options.php:252
857
  msgid "Course Archive Settings"
858
  msgstr ""
859
 
860
+ #: classes/Options.php:256
861
  msgid "Course Archive Page"
862
  msgstr ""
863
 
864
+ #: classes/Options.php:259
865
  msgid "This page will be used to list all the published courses."
866
  msgstr ""
867
 
868
+ #: classes/Options.php:263
869
  msgid "Column Per Row"
870
  msgstr ""
871
 
872
+ #: classes/Options.php:266
873
  msgid "Define how many column you want to use to display courses."
874
  msgstr ""
875
 
876
+ #: classes/Options.php:270, classes/Tutor_Setup.php:412
877
  msgid "Courses Per Page"
878
  msgstr ""
879
 
880
+ #: classes/Options.php:273
881
  msgid "Define how many courses you want to show per page"
882
  msgstr ""
883
 
884
+ #: classes/Options.php:277
885
  msgid "Course Filter"
886
  msgstr ""
887
 
888
+ #: classes/Options.php:279
889
  msgid "Show sorting and filtering options on course archive page"
890
  msgstr ""
891
 
892
+ #: classes/Options.php:283
893
  msgid "Preferred Course Filters"
894
  msgstr ""
895
 
896
+ #: classes/Options.php:285
897
  msgid "Choose preferred filter options you'd like to show in course archive page."
898
  msgstr ""
899
 
900
+ #: classes/Options.php:291
901
  msgid "Course Display Settings"
902
  msgstr ""
903
 
904
+ #: classes/Options.php:295
905
  msgid "Display Instructor Info"
906
  msgstr ""
907
 
908
+ #: classes/Options.php:297
909
  msgid "Show instructor bio on each page"
910
  msgstr ""
911
 
912
+ #: classes/Options.php:301
913
  msgid "Question and Answer"
914
  msgstr ""
915
 
916
+ #: classes/Options.php:304
917
  msgid "Enabling this feature will add a Q&amp;A section on every course."
918
  msgstr ""
919
 
920
+ #: classes/Options.php:308
921
  msgid "Course Author"
922
  msgstr ""
923
 
924
+ #: classes/Options.php:311
925
  msgid "Disabling this feature will be removed course author name from the course page."
926
  msgstr ""
927
 
928
+ #: classes/Options.php:315
929
  msgid "Course Level"
930
  msgstr ""
931
 
932
+ #: classes/Options.php:318
933
  msgid "Disabling this feature will be removed course level from the course page."
934
  msgstr ""
935
 
936
+ #: classes/Options.php:322
937
  msgid "Course Share"
938
  msgstr ""
939
 
940
+ #: classes/Options.php:325
941
  msgid "Disabling this feature will be removed course share option from the course page."
942
  msgstr ""
943
 
944
+ #: classes/Options.php:329
945
  msgid "Course Duration"
946
  msgstr ""
947
 
948
+ #: classes/Options.php:332
949
  msgid "Disabling this feature will be removed course duration from the course page."
950
  msgstr ""
951
 
952
+ #: classes/Options.php:336
953
  msgid "Course Total Enrolled"
954
  msgstr ""
955
 
956
+ #: classes/Options.php:339
957
  msgid "Disabling this feature will be removed course total enrolled from the course page."
958
  msgstr ""
959
 
960
+ #: classes/Options.php:343
961
  msgid "Course Update Date"
962
  msgstr ""
963
 
964
+ #: classes/Options.php:346
965
  msgid "Disabling this feature will be removed course update date from the course page."
966
  msgstr ""
967
 
968
+ #: classes/Options.php:350
969
  msgid "Course Progress Bar"
970
  msgstr ""
971
 
972
+ #: classes/Options.php:353
973
  msgid "Disabling this feature will be removed completing progress bar from the course page."
974
  msgstr ""
975
 
976
+ #: classes/Options.php:357
977
  msgid "Course Material"
978
  msgstr ""
979
 
980
+ #: classes/Options.php:360
981
  msgid "Disabling this feature will be removed course material from the course page."
982
  msgstr ""
983
 
984
+ #: classes/Options.php:364
985
  msgid "Course About"
986
  msgstr ""
987
 
988
+ #: classes/Options.php:367
989
  msgid "Disabling this feature will be removed course about from the course page."
990
  msgstr ""
991
 
992
+ #: classes/Options.php:371
993
  msgid "Course Description"
994
  msgstr ""
995
 
996
+ #: classes/Options.php:374
997
  msgid "Disabling this feature will be removed course description from the course page."
998
  msgstr ""
999
 
1000
+ #: classes/Options.php:378
1001
  msgid "Course Benefits"
1002
  msgstr ""
1003
 
1004
+ #: classes/Options.php:381
1005
  msgid "Disabling this feature will be removed course benefits from the course page."
1006
  msgstr ""
1007
 
1008
+ #: classes/Options.php:385
1009
  msgid "Course Requirements"
1010
  msgstr ""
1011
 
1012
+ #: classes/Options.php:388
1013
  msgid "Disabling this feature will be removed course requirements from the course page."
1014
  msgstr ""
1015
 
1016
+ #: classes/Options.php:392
1017
  msgid "Course Target Audience"
1018
  msgstr ""
1019
 
1020
+ #: classes/Options.php:395
1021
  msgid "Disabling this feature will be removed course target audience from the course page."
1022
  msgstr ""
1023
 
1024
+ #: classes/Options.php:399
1025
  msgid "Course Announcements"
1026
  msgstr ""
1027
 
1028
+ #: classes/Options.php:402
1029
  msgid "Disabling this feature will be removed course announcements from the course page."
1030
  msgstr ""
1031
 
1032
+ #: classes/Options.php:406
1033
  msgid "Course Review"
1034
  msgstr ""
1035
 
1036
+ #: classes/Options.php:409
1037
  msgid "Disabling this feature will be removed course review system from the course page."
1038
  msgstr ""
1039
 
1040
+ #: classes/Options.php:413
1041
  msgid "Preferred Video Source"
1042
  msgstr ""
1043
 
1044
+ #: classes/Options.php:415
1045
  msgid "Choose video sources you'd like to support. Unchecking all will not disable video feature."
1046
  msgstr ""
1047
 
1048
+ #: classes/Options.php:419
1049
  msgid "Default Video Source"
1050
  msgstr ""
1051
 
1052
+ #: classes/Options.php:422
1053
  msgid "Choose video source to be selected by default."
1054
  msgstr ""
1055
 
1056
+ #: classes/Options.php:432
1057
  msgid "Lesson Settings"
1058
  msgstr ""
1059
 
1060
+ #: classes/Options.php:433
1061
  msgid "Lesson settings will be here"
1062
  msgstr ""
1063
 
1064
+ #: classes/Options.php:437, views/modal/edit-lesson.php:12
1065
  msgid "Classic Editor"
1066
  msgstr ""
1067
 
1068
+ #: classes/Options.php:439
1069
  msgid "Enable classic editor to get full support of any editor/page builder."
1070
  msgstr ""
1071
 
1072
+ #: classes/Options.php:444
1073
  msgid "Automatically load next course content."
1074
  msgstr ""
1075
 
1076
+ #: classes/Options.php:445
1077
  msgid "Enabling this feature will be load next course content automatically after finishing current video."
1078
  msgstr ""
1079
 
1080
+ #: classes/Options.php:449
1081
  msgid "Lesson Permalink Base"
1082
  msgstr ""
1083
 
1084
+ #: classes/Options.php:455
1085
  msgid "Youtube API Key"
1086
  msgstr ""
1087
 
1088
+ #: classes/Options.php:464, classes/Options.php:467, classes/Quiz_Attempts_List.php:113, classes/Tutor_Setup.php:556, views/metabox/course-contents.php:169, views/metabox/course-topics.php:60, views/pages/view_attempt.php:39, templates/single/quiz/top.php:24
1089
  msgid "Quiz"
1090
  msgstr ""
1091
 
1092
+ #: classes/Options.php:468
1093
  msgid "The values you set here define the default values that are used in the settings form when you create a new quiz."
1094
  msgstr ""
1095
 
1096
+ #: classes/Options.php:472, classes/Tutor_Setup.php:425, views/modal/edit_quiz.php:140
1097
  msgid "Time Limit"
1098
  msgstr ""
1099
 
1100
+ #: classes/Options.php:473
1101
  msgid "0 means unlimited time."
1102
  msgstr ""
1103
 
1104
+ #: classes/Options.php:484, views/modal/edit_quiz.php:152
1105
  msgid "Weeks"
1106
  msgstr ""
1107
 
1108
+ #: classes/Options.php:485, views/modal/edit_quiz.php:151
1109
  msgid "Days"
1110
  msgstr ""
1111
 
1112
+ #: classes/Options.php:486, views/modal/edit_quiz.php:150
1113
  msgid "Hours"
1114
  msgstr ""
1115
 
1116
+ #: classes/Options.php:487, views/modal/edit_quiz.php:149
1117
  msgid "Minutes"
1118
  msgstr ""
1119
 
1120
+ #: classes/Options.php:488, views/modal/edit_quiz.php:148
1121
  msgid "Seconds"
1122
  msgstr ""
1123
 
1124
+ #: classes/Options.php:495
1125
  msgid "When time expires"
1126
  msgstr ""
1127
 
1128
+ #: classes/Options.php:499, classes/Tutor_Setup.php:432
1129
  msgid "The current quiz answers are submitted automatically."
1130
  msgstr ""
1131
 
1132
+ #: classes/Options.php:500, classes/Tutor_Setup.php:433
1133
  msgid "The current quiz answers are submitted by students."
1134
  msgstr ""
1135
 
1136
+ #: classes/Options.php:501, classes/Tutor_Setup.php:434
1137
  msgid "Attempts must be submitted before time expires, otherwise they will not be counted"
1138
  msgstr ""
1139
 
1140
+ #: classes/Options.php:503
1141
  msgid "Choose which action to follow when the quiz time expires."
1142
  msgstr ""
1143
 
1144
+ #: classes/Options.php:507
1145
  msgid "Attempts allowed"
1146
  msgstr ""
1147
 
1148
+ #: classes/Options.php:509
1149
  msgid "The highest number of attempts students are allowed to take for a quiz. 0 means unlimited attempts."
1150
  msgstr ""
1151
 
1152
+ #: classes/Options.php:513
1153
  msgid "Final grade calculation"
1154
  msgstr ""
1155
 
1156
+ #: classes/Options.php:517, classes/Tutor_Setup.php:448
1157
  msgid "Highest Grade"
1158
  msgstr ""
1159
 
1160
+ #: classes/Options.php:518, classes/Tutor_Setup.php:453
1161
  msgid "Average Grade"
1162
  msgstr ""
1163
 
1164
+ #: classes/Options.php:519, classes/Tutor_Setup.php:458
1165
  msgid "First Attempt"
1166
  msgstr ""
1167
 
1168
+ #: classes/Options.php:520, classes/Tutor_Setup.php:463
1169
  msgid "Last Attempt"
1170
  msgstr ""
1171
 
1172
+ #: classes/Options.php:522
1173
  msgid "When multiple attempts are allowed, which method should be used to calculate a student's final grade for the quiz."
1174
  msgstr ""
1175
 
1176
+ #: classes/Options.php:532
1177
  msgid "Instructor Profile Settings"
1178
  msgstr ""
1179
 
1180
+ #: classes/Options.php:533, classes/Options.php:572, classes/Options.php:604
1181
  msgid "Enable Disable Option to on/off notification on various event"
1182
  msgstr ""
1183
 
1184
+ #: classes/Options.php:537
1185
  msgid "Course Marketplace"
1186
  msgstr ""
1187
 
1188
+ #: classes/Options.php:540
1189
  msgid "Allow multiple instructors to upload their courses."
1190
  msgstr ""
1191
 
1192
+ #: classes/Options.php:544, classes/Utils.php:6320
1193
  msgid "Instructor Registration Page"
1194
  msgstr ""
1195
 
1196
+ #: classes/Options.php:547
1197
  msgid "This page will be used to sign up new instructors."
1198
  msgstr ""
1199
 
1200
+ #: classes/Options.php:551
1201
  msgid "Allow publishing course"
1202
  msgstr ""
1203
 
1204
+ #: classes/Options.php:554
1205
  msgid "Enable instructors to publish course directly. <strong>Do not select</strong> if admins want to review courses before publishing."
1206
  msgstr ""
1207
 
1208
+ #: classes/Options.php:558
1209
  msgid "Become Instructor Button"
1210
  msgstr ""
1211
 
1212
+ #: classes/Options.php:561
1213
  msgid "Uncheck this option to hide the button from student dashboard."
1214
  msgstr ""
1215
 
1216
+ #: classes/Options.php:571
1217
  msgid "Student Profile settings"
1218
  msgstr ""
1219
 
1220
+ #: classes/Options.php:576, classes/Utils.php:6321
1221
  msgid "Student Registration Page"
1222
  msgstr ""
1223
 
1224
+ #: classes/Options.php:579
1225
  msgid "Choose the page for student registration page"
1226
  msgstr ""
1227
 
1228
+ #: classes/Options.php:583
1229
  msgid "Show reviews on profile"
1230
  msgstr ""
1231
 
1232
+ #: classes/Options.php:586
1233
  msgid "Enabling this will show the reviews written by each student on their profile"
1234
  msgstr ""
1235
 
1236
+ #: classes/Options.php:590
1237
  msgid "Show completed courses"
1238
  msgstr ""
1239
 
1240
+ #: classes/Options.php:593
1241
  msgid "Completed courses will be shown on student profiles. <br/> For example, you can see this link-"
1242
  msgstr ""
1243
 
1244
+ #: classes/Options.php:600, classes/Options.php:608, classes/Tutor_Setup.php:484, templates/dashboard/earning.php:123, templates/dashboard/earning/chart-body.php:17, templates/dashboard/earning/statement.php:14, templates/dashboard/earning/statements.php:135
1245
  msgid "Earning"
1246
  msgstr ""
1247
 
1248
+ #: classes/Options.php:603
1249
  msgid "Earning and commission allocation"
1250
  msgstr ""
1251
 
1252
+ #: classes/Options.php:611
1253
  msgid "If disabled, the Admin will receive 100% of the earning"
1254
  msgstr ""
1255
 
1256
+ #: classes/Options.php:615
1257
  msgid "Admin Commission Percentage"
1258
  msgstr ""
1259
 
1260
+ #: classes/Options.php:617
1261
  msgid "Define the commission of the Admin from each sale.(after deducting fees)"
1262
  msgstr ""
1263
 
1264
+ #: classes/Options.php:621
1265
  msgid "Instructor Commission Percentage"
1266
  msgstr ""
1267
 
1268
+ #: classes/Options.php:623
1269
  msgid "Define the commission for instructors from each sale.(after deducting fees)"
1270
  msgstr ""
1271
 
1272
+ #: classes/Options.php:627
1273
  msgid "Fee Deduction"
1274
  msgstr ""
1275
 
1276
+ #: classes/Options.php:628
1277
  msgid "Fees are charged from the entire sales amount. The remaining amount will be divided among admin and instructors."
1278
  msgstr ""
1279
 
1280
+ #: classes/Options.php:638
1281
  msgid "Fee Name"
1282
  msgstr ""
1283
 
1284
+ #: classes/Options.php:643
1285
  msgid "Fee Amount"
1286
  msgstr ""
1287
 
1288
+ #: classes/Options.php:651
1289
  msgid "Select Fees Type"
1290
  msgstr ""
1291
 
1292
+ #: classes/Options.php:652
1293
  msgid "Percent"
1294
  msgstr ""
1295
 
1296
+ #: classes/Options.php:653
1297
  msgid "Fixed"
1298
  msgstr ""
1299
 
1300
+ #: classes/Options.php:661
1301
  msgid "Show Statement Per Page"
1302
  msgstr ""
1303
 
1304
+ #: classes/Options.php:663
1305
  msgid "Define the number of statements to show."
1306
  msgstr ""
1307
 
1308
+ #: classes/Options.php:670, templates/dashboard/withdraw.php:43
1309
  msgid "Withdrawal"
1310
  msgstr ""
1311
 
1312
+ #: classes/Options.php:673
1313
  msgid "Withdrawal Settings"
1314
  msgstr ""
1315
 
1316
+ #: classes/Options.php:677
1317
  msgid "Minimum Withdraw Amount"
1318
  msgstr ""
1319
 
1320
+ #: classes/Options.php:679
1321
  msgid "Instructors should earn equal or above this amount to make a withdraw request."
1322
  msgstr ""
1323
 
1324
+ #: classes/Options.php:685
1325
  msgid "Withdraw Methods"
1326
  msgstr ""
1327
 
1328
+ #: classes/Options.php:686
1329
  msgid "Set withdraw settings"
1330
  msgstr ""
1331
 
1332
+ #: classes/Options.php:692
1333
  msgid "Style"
1334
  msgstr ""
1335
 
1336
+ #: classes/Options.php:695
1337
  msgid "Color Style"
1338
  msgstr ""
1339
 
1340
+ #: classes/Options.php:699
1341
  msgid "Primary Color"
1342
  msgstr ""
1343
 
1344
+ #: classes/Options.php:704
1345
  msgid "Primary Hover Color"
1346
  msgstr ""
1347
 
1348
+ #: classes/Options.php:709
1349
  msgid "Text color"
1350
  msgstr ""
1351
 
1352
+ #: classes/Options.php:714
1353
  msgid "Light color"
1354
  msgstr ""
1355
 
1356
+ #: classes/Options.php:721
1357
  msgid "Button Primary Color"
1358
  msgstr ""
1359
 
1360
+ #: classes/Options.php:727
1361
  msgid "Button Danger Color"
1362
  msgstr ""
1363
 
1364
+ #: classes/Options.php:732
1365
  msgid "Button Success Color"
1366
  msgstr ""
1367
 
1368
+ #: classes/Options.php:737
1369
  msgid "Button Warning Color"
1370
  msgstr ""
1371
 
1372
+ #: classes/Options.php:747, classes/Options.php:750
1373
  msgid "Monetization"
1374
  msgstr ""
1375
 
1376
+ #: classes/Options.php:751
1377
  msgid "You can monetize your LMS website by selling courses in a various way."
1378
  msgstr ""
1379
 
1380
+ #: classes/Options.php:756
1381
  msgid "Monetize Option"
1382
  msgstr ""
1383
 
1384
+ #: classes/Options.php:760
1385
  msgid "Disable Monetization"
1386
  msgstr ""
1387
 
1388
+ #: classes/Options.php:762
1389
  msgid "Select a monetization option to generate revenue by selling courses. Supports: WooCommerce, Easy Digital Downloads, Paid Memberships Pro"
1390
  msgstr ""
1391
 
2633
  msgid "Enabling this will let an unregistered user purchase any course from the Course Details page. Head over to Documentation to know how to configure this setting."
2634
  msgstr ""
2635
 
2636
+ #: classes/WooCommerce.php:542
2637
  msgid "Since WooCommerce is disabled, your monetized courses have been set to free. Please make sure to enable Tutor LMS monetization if you decide to re-enable WooCommerce."
2638
  msgstr ""
2639
 
5254
  msgid "Are you sure? it can not be undone."
5255
  msgstr ""
5256
 
5257
+ #: assets/js/tutor-front.js:174
5258
+ msgid "Rating and review required"
5259
  msgstr ""
5260
 
5261
  #: assets/js/tutor-front.js:741
5262
+ msgid "Please select an option to answer"
5263
+ msgstr ""
5264
+
5265
+ #: assets/js/tutor-front.js:746
5266
  msgid "Please select at least one option to answer."
5267
  msgstr ""
5268
 
5269
+ #: assets/js/tutor-front.js:753
5270
  msgid "The answer for this question is required"
5271
  msgstr ""
5272
 
5273
+ #: assets/js/tutor-front.js:775
5274
  msgid "Please match all the items"
5275
  msgstr ""
5276
 
5277
+ #: assets/js/tutor-front.js:810
5278
  msgid "Incorrect, Please try again"
5279
  msgstr ""
5280
 
5281
+ #: assets/js/tutor-front.js:825
5282
  msgid "More answer for this question is required"
5283
  msgstr ""
5284
 
5285
+ #: assets/js/tutor-front.js:849
5286
  msgid "Correct Answer"
5287
  msgstr ""
5288
 
5289
+ #: assets/js/tutor-front.js:1156
5290
  msgid "Assignment answer can not be empty"
5291
  msgstr ""
5292
 
5293
+ #: assets/js/tutor-front.js:1274
5294
  msgid "Done"
5295
  msgstr ""
5296
 
5297
+ #: assets/js/tutor-front.js:1277
5298
  msgid "Failed"
5299
  msgstr ""
5300
 
5301
+ #: assets/js/tutor-front.js:1277
5302
  msgid "Lesson Update Failed"
5303
  msgstr ""
5304
 
5305
+ #: assets/js/tutor-front.js:1467
5306
  msgid "Assignment Update Failed"
5307
  msgstr ""
5308
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: lms, course, elearning, education, learning management system
5
  Requires at least: 5.3
6
  Tested up to: 5.7.2
7
  Requires PHP: 7.0
8
- Stable tag: 1.9.0
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -241,6 +241,13 @@ Tutor enables you to use any third party plugins without facing any compatibilit
241
 
242
  == Changelog ==
243
 
 
 
 
 
 
 
 
244
  = 1.9.0 - June 02, 2021 =
245
 
246
  New: Assign different certificate templates to courses separately
5
  Requires at least: 5.3
6
  Tested up to: 5.7.2
7
  Requires PHP: 7.0
8
+ Stable tag: 1.9.1
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
241
 
242
  == Changelog ==
243
 
244
+ = 1.9.1 - June 04, 2021 =
245
+
246
+ New: Enable/disable auto redirection to enrolled courses on auto order completion
247
+ Fix: Parameter count in plugin activated hook
248
+ Fix: Zoom meeting redirecting to post list while saving
249
+ Fix: Students can no longer give feedback without selecting star rating
250
+
251
  = 1.9.0 - June 02, 2021 =
252
 
253
  New: Assign different certificate templates to courses separately
tutor.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Tutor LMS
4
  Plugin URI: https://www.themeum.com/product/tutor-lms/
5
  Description: Tutor is a complete solution for creating a Learning Management System in WordPress way. It can help you to create small to large scale online education site very conveniently. Power features like report, certificate, course preview, private file sharing make Tutor a robust plugin for any educational institutes.
6
  Author: Themeum
7
- Version: 1.9.0
8
  Author URI: https://themeum.com
9
  Requires at least: 4.5
10
  Tested up to: 5.7
@@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) )
17
  /**
18
  * Defined the tutor main file
19
  */
20
- define( 'TUTOR_VERSION', '1.9.0' );
21
  define( 'TUTOR_FILE', __FILE__ );
22
 
23
  /**
4
  Plugin URI: https://www.themeum.com/product/tutor-lms/
5
  Description: Tutor is a complete solution for creating a Learning Management System in WordPress way. It can help you to create small to large scale online education site very conveniently. Power features like report, certificate, course preview, private file sharing make Tutor a robust plugin for any educational institutes.
6
  Author: Themeum
7
+ Version: 1.9.1
8
  Author URI: https://themeum.com
9
  Requires at least: 4.5
10
  Tested up to: 5.7
17
  /**
18
  * Defined the tutor main file
19
  */
20
+ define( 'TUTOR_VERSION', '1.9.1' );
21
  define( 'TUTOR_FILE', __FILE__ );
22
 
23
  /**