Changeset 2985066
- Timestamp:
- 10/27/2023 04:14:44 PM (2 years ago)
- Location:
- easy-dash-for-learndash
- Files:
-
- 4 added
- 32 edited
- 1 copied
-
tags/2.4.1 (copied) (copied from easy-dash-for-learndash/trunk)
-
tags/2.4.1/assets/js/tred-admin.js (modified) (1 diff)
-
tags/2.4.1/includes/callbacks-actions.php (modified) (4 diffs)
-
tags/2.4.1/includes/class-tred-filtered-ld-group.php (modified) (2 diffs)
-
tags/2.4.1/includes/class-tred-filtered-ld-item.php (modified) (2 diffs)
-
tags/2.4.1/includes/functions.php (modified) (1 diff)
-
tags/2.4.1/languages/learndash-easy-dash-en_US.mo (modified) (previous)
-
tags/2.4.1/languages/learndash-easy-dash-en_US.po (modified) (29 diffs)
-
tags/2.4.1/languages/learndash-easy-dash-es_ES.mo (modified) (previous)
-
tags/2.4.1/languages/learndash-easy-dash-es_ES.po (modified) (29 diffs)
-
tags/2.4.1/languages/learndash-easy-dash-fr_FR.mo (modified) (previous)
-
tags/2.4.1/languages/learndash-easy-dash-fr_FR.po (modified) (29 diffs)
-
tags/2.4.1/languages/learndash-easy-dash-it_IT.mo (added)
-
tags/2.4.1/languages/learndash-easy-dash-it_IT.po (added)
-
tags/2.4.1/languages/learndash-easy-dash-pt_BR.mo (modified) (previous)
-
tags/2.4.1/languages/learndash-easy-dash-pt_BR.po (modified) (29 diffs)
-
tags/2.4.1/languages/learndash-easy-dash.pot (modified) (29 diffs)
-
tags/2.4.1/learndash-easy-dash.php (modified) (5 diffs)
-
tags/2.4.1/readme.txt (modified) (2 diffs)
-
trunk/assets/js/tred-admin.js (modified) (1 diff)
-
trunk/includes/callbacks-actions.php (modified) (4 diffs)
-
trunk/includes/class-tred-filtered-ld-group.php (modified) (2 diffs)
-
trunk/includes/class-tred-filtered-ld-item.php (modified) (2 diffs)
-
trunk/includes/functions.php (modified) (1 diff)
-
trunk/languages/learndash-easy-dash-en_US.mo (modified) (previous)
-
trunk/languages/learndash-easy-dash-en_US.po (modified) (29 diffs)
-
trunk/languages/learndash-easy-dash-es_ES.mo (modified) (previous)
-
trunk/languages/learndash-easy-dash-es_ES.po (modified) (29 diffs)
-
trunk/languages/learndash-easy-dash-fr_FR.mo (modified) (previous)
-
trunk/languages/learndash-easy-dash-fr_FR.po (modified) (29 diffs)
-
trunk/languages/learndash-easy-dash-it_IT.mo (added)
-
trunk/languages/learndash-easy-dash-it_IT.po (added)
-
trunk/languages/learndash-easy-dash-pt_BR.mo (modified) (previous)
-
trunk/languages/learndash-easy-dash-pt_BR.po (modified) (29 diffs)
-
trunk/languages/learndash-easy-dash.pot (modified) (29 diffs)
-
trunk/learndash-easy-dash.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-dash-for-learndash/tags/2.4.1/assets/js/tred-admin.js
r2969363 r2985066 27 27 const tredCsvLabels = tred_js_object.tredCsvLabels; 28 28 const tredProActivated = tred_js_object.tredProActivated; 29 30 if (typeof Chart !== "undefined" && Chart.version !== "3.4.1") { 31 console.warn( 32 "Another version of Chart.js detected. This might cause conflicts with the Easy Dash for LearnDash plugin." 33 ); 34 } 29 35 30 36 function TredGetTimeText(timeInSec) { -
easy-dash-for-learndash/tags/2.4.1/includes/callbacks-actions.php
r2969363 r2985066 674 674 $a['id'] = $stats['id']; 675 675 $a['email'] = $stats['email']; 676 $a['first_name'] = $stats['first_name']; 677 $a['last_name'] = $stats['last_name']; 676 678 $a['status'] = $stats['status']; 677 679 $a['completed'] = $stats['completed']; … … 691 693 $table['keys_labels'] = [ 692 694 'id' => esc_html__('ID', 'learndash-easy-dash'), 695 'first_name' => esc_html__('First Name', 'learndash-easy-dash'), 696 'last_name' => esc_html__('Last Name', 'learndash-easy-dash'), 693 697 'email' => esc_html__('Email', 'learndash-easy-dash'), 694 698 'status' => esc_html__('Status', 'learndash-easy-dash'), … … 921 925 $a['id'] = $user['id']; 922 926 $a['name'] = $user['display_name']; 927 $a['firstname'] = $user['first_name']; 928 $a['lastname'] = $user['last_name']; 923 929 $a['email'] = $user['email']; 924 930 $a['courses'] = 0; … … 942 948 'id' => esc_html__('ID', 'learndash-easy-dash'), 943 949 'name' => esc_html__('Name', 'learndash-easy-dash'), 950 'firstname' => esc_html__('First Name', 'learndash-easy-dash'), 951 'lastname' => esc_html__('Last Name', 'learndash-easy-dash'), 944 952 'email' => esc_html__('Email', 'learndash-easy-dash'), 945 953 'courses' => esc_html__('Courses', 'learndash-easy-dash'), -
easy-dash-for-learndash/tags/2.4.1/includes/class-tred-filtered-ld-group.php
r2969363 r2985066 40 40 $user_id = $user_object->ID; 41 41 $user_email = $user_object->user_email; 42 $user_firstname = $user_object->user_firstname; 43 $user_lastname = $user_object->user_lastname; 42 44 // $user_progress = learndash_get_user_group_progress($this->id, $user_id); 43 45 $group_users[] = [ … … 45 47 'email' => $user_email, 46 48 'display_name' => $user_display_name, 49 'first_name' => $user_firstname, 50 'last_name' => $user_lastname, 47 51 // 'progress' => $user_progress, 48 52 ]; -
easy-dash-for-learndash/tags/2.4.1/includes/class-tred-filtered-ld-item.php
r2969363 r2985066 212 212 //get wp user meta value 213 213 foreach ($students_array as $user_id) { 214 $p = learndash_user_get_course_progress($user_id, $this->id);214 $p = (array) learndash_user_get_course_progress($user_id, $this->id); 215 215 //get user email by id 216 216 $user = get_user_by('id', $user_id); … … 218 218 'id' => intval($user_id), 219 219 'email' => $user->user_email, 220 'status' => $p['status'], 220 'first_name' => $user->user_firstname, 221 'last_name' => $user->user_lastname, 222 'status' => $p['status'] ?? '', 221 223 //TODO: see learndash_course_status function and find a way to get the translated status 222 224 'completed' => intval($p['completed']), -
easy-dash-for-learndash/tags/2.4.1/includes/functions.php
r2969363 r2985066 522 522 523 523 } //end if 524 524 525 //order array by subarray value 526 // uasort($items['completed'], function ($a, $b) { 527 // return $a['times'] < $b['times']; 528 // }); 529 530 //3.4.1 (above is deprecated) 525 531 uasort($items['completed'], function ($a, $b) { 526 return $a['times'] < $b['times']; 532 // You should compare $a['times'] and $b['times'] here and return -1, 0, or 1. 533 if ($a['times'] == $b['times']) { 534 return 0; // They are equal 535 } 536 // If you want an ascending sort order, use the line below: 537 // return ($a['times'] < $b['times']) ? -1 : 1; 538 // For descending sort order (as it seems you are trying to compare from greatest to least): 539 return ($a['times'] < $b['times']) ? 1 : -1; 527 540 }); 541 528 542 $output['items_completed']['items'] = $items['completed']; 529 543 } //end foreach -
easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-en_US.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:53+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: English (United States)\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-es_ES.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:52+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Spanish (Spain)\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-fr_FR.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:53+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: French (France)\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-pt_BR.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:52+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Português do Brasil\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "Group" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "grupo" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "Total de alunos em grupos: %s" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash.pot
r2969363 r2985066 4 4 "Project-Id-Version: Easy Dash for LearnDash\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2023- 09-20 14:40+0000\n"6 "POT-Creation-Date: 2023-10-27 15:52+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 129 129 msgstr "" 130 130 131 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142131 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 132 132 msgid "Associated Courses" 133 133 msgstr "" … … 179 179 msgstr "" 180 180 181 #: includes/callbacks-actions.php:105 1181 #: includes/callbacks-actions.php:1058 182 182 msgid "Completed" 183 183 msgstr "" 184 184 185 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143185 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 186 186 msgid "Completed Courses" 187 187 msgstr "" 188 188 189 #: includes/callbacks-actions.php:69 6189 #: includes/callbacks-actions.php:699 190 190 msgid "Completed Steps" 191 191 msgstr "" … … 197 197 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 198 198 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 199 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913200 #: includes/callbacks-actions.php:9 47199 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 200 #: includes/callbacks-actions.php:954 201 201 msgid "Completions" 202 202 msgstr "" … … 218 218 msgstr "" 219 219 220 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48220 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 221 221 msgid "Course" 222 222 msgstr "" 223 223 224 #: includes/functions.php:13 12includes/translations.php:150224 #: includes/functions.php:1326 includes/translations.php:150 225 225 msgid "course" 226 226 msgstr "" … … 242 242 msgstr "" 243 243 244 #: includes/callbacks-actions.php:9 46244 #: includes/callbacks-actions.php:953 245 245 msgid "Courses" 246 246 msgstr "" 247 247 248 #: includes/class-tred-filtered-ld-group.php:6 0248 #: includes/class-tred-filtered-ld-group.php:64 249 249 msgid "Courses is not an array..." 250 250 msgstr "" … … 265 265 msgstr "" 266 266 267 #: includes/callbacks-actions.php: 698267 #: includes/callbacks-actions.php:701 268 268 msgid "Days Spent" 269 269 msgstr "" … … 325 325 msgstr "" 326 326 327 #: includes/functions.php:1 296327 #: includes/functions.php:1310 328 328 msgid "Easy Dash for LearnDash - Filter Center" 329 329 msgstr "" … … 343 343 msgstr "" 344 344 345 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4346 #: includes/callbacks-actions.php:9 45345 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 346 #: includes/callbacks-actions.php:952 347 347 msgid "Email" 348 348 msgstr "" 349 349 350 350 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 351 #: includes/callbacks-actions.php:6 20351 #: includes/callbacks-actions.php:619 352 352 msgid "Enrolls" 353 353 msgstr "" … … 381 381 msgstr "" 382 382 383 #: includes/functions.php:1345 includes/translations.php:12 383 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 384 msgid "First Name" 385 msgstr "" 386 387 #: includes/functions.php:1359 includes/translations.php:12 384 388 msgid "go" 385 389 msgstr "" 386 390 387 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140391 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 388 392 msgid "Group" 389 393 msgstr "" 390 394 391 #: includes/functions.php:13 19includes/translations.php:154395 #: includes/functions.php:1333 includes/translations.php:154 392 396 msgid "group" 393 397 msgstr "" 394 398 395 #: includes/class-tred-filtered-ld-group.php:1 60399 #: includes/class-tred-filtered-ld-group.php:106 396 400 msgid "Group admins is not an array..." 397 401 msgstr "" … … 418 422 msgstr "" 419 423 420 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054421 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144424 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 425 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 422 426 msgid "Hours Spent" 423 427 msgstr "" … … 431 435 msgstr "" 432 436 433 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909434 #: includes/callbacks-actions.php:94 3437 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 438 #: includes/callbacks-actions.php:948 435 439 msgid "ID" 436 440 msgstr "" … … 480 484 msgstr "" 481 485 482 #: includes/callbacks-actions.php:10 53includes/translations.php:34486 #: includes/callbacks-actions.php:1060 includes/translations.php:34 483 487 msgid "Last" 488 msgstr "" 489 490 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 491 msgid "Last Name" 484 492 msgstr "" 485 493 … … 510 518 msgstr "" 511 519 512 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4513 #: includes/callbacks-actions.php:91 1520 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 521 #: includes/callbacks-actions.php:914 514 522 msgid "Mode" 515 523 msgstr "" … … 519 527 msgstr "" 520 528 521 #: includes/functions.php:1 194 includes/callbacks-actions.php:944529 #: includes/functions.php:1208 includes/callbacks-actions.php:949 522 530 msgid "Name" 523 531 msgstr "" … … 559 567 msgstr "" 560 568 561 #: includes/functions.php:1 191569 #: includes/functions.php:1205 562 570 msgid "Number" 563 571 msgstr "" … … 593 601 msgstr "" 594 602 595 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052603 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 596 604 msgid "Percentage" 597 605 msgstr "" … … 633 641 msgstr "" 634 642 635 #: includes/class-tred-filtered-ld-group.php: 145643 #: includes/class-tred-filtered-ld-group.php:91 636 644 msgid "Quizzes is not an array..." 637 645 msgstr "" … … 658 666 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 659 667 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 660 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962661 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216662 #: includes/callbacks-actions.php:12 48668 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 669 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 670 #: includes/callbacks-actions.php:1255 663 671 msgid "Security check" 664 672 msgstr "" 665 673 666 #: includes/functions.php:13 09 includes/functions.php:1331667 #: includes/functions.php:13 39includes/translations.php:11674 #: includes/functions.php:1323 includes/functions.php:1345 675 #: includes/functions.php:1353 includes/translations.php:11 668 676 msgid "select" 669 677 msgstr "" … … 720 728 721 729 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 722 #: includes/callbacks-actions.php:62 9730 #: includes/callbacks-actions.php:628 723 731 msgid "Starts" 724 732 msgstr "" … … 730 738 msgstr "" 731 739 732 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049740 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 733 741 msgid "Status" 734 742 msgstr "" … … 738 746 msgstr "" 739 747 740 #: includes/callbacks-actions.php:12 65748 #: includes/callbacks-actions.php:1272 741 749 msgid "Student" 742 750 msgstr "" … … 748 756 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 749 757 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 750 #: includes/callbacks-actions.php:91 2758 #: includes/callbacks-actions.php:915 751 759 msgid "Students" 752 760 msgstr "" … … 847 855 msgstr "" 848 856 849 #: includes/callbacks-actions.php:77 6857 #: includes/callbacks-actions.php:779 850 858 msgid "Times" 851 859 msgstr "" … … 855 863 msgstr "" 856 864 857 #: includes/callbacks-actions.php:91 0865 #: includes/callbacks-actions.php:913 858 866 msgid "Title" 859 867 msgstr "" … … 869 877 msgstr "" 870 878 871 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141879 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 872 880 msgid "Total Members" 873 881 msgstr "" 874 882 875 #: includes/callbacks-actions.php:105 0883 #: includes/callbacks-actions.php:1057 876 884 msgid "Total Steps" 877 885 msgstr "" … … 882 890 msgstr "" 883 891 884 #: includes/functions.php:1 197892 #: includes/functions.php:1211 885 893 msgid "Type" 886 894 msgstr "" … … 895 903 msgstr "" 896 904 897 #: includes/functions.php:13 15includes/translations.php:155905 #: includes/functions.php:1329 includes/translations.php:155 898 906 msgid "user" 899 907 msgstr "" … … 907 915 msgstr "" 908 916 909 #: includes/callbacks-actions.php:79 3917 #: includes/callbacks-actions.php:796 910 918 msgid "Users" 911 919 msgstr "" -
easy-dash-for-learndash/tags/2.4.1/learndash-easy-dash.php
r2969363 r2985066 6 6 * Author: Luis Rock 7 7 * Author URI: https://wptrat.com/ 8 * Version: 2.4. 08 * Version: 2.4.1 9 9 * Text Domain: learndash-easy-dash 10 10 * Domain Path: /languages … … 20 20 exit; 21 21 22 define("TRED_VERSION", "2.4. 0");22 define("TRED_VERSION", "2.4.1"); 23 23 24 24 // Check if LearnDash is active. If not, deactivate... … … 148 148 { 149 149 150 wp_register_script('tred_ admin_js', plugins_url('assets/js/tred-admin.js', __FILE__), ['chartjs', 'jquery'], '1.0.0', true);151 wp_register_script(' chartjs', plugins_url('assets/js/Chart.js', __FILE__), [], '3.4.1', false);150 wp_register_script('tred_chartjs', plugins_url('assets/js/Chart.js', __FILE__), [], '3.4.1', false); 151 wp_register_script('tred_admin_js', plugins_url('assets/js/tred-admin.js', __FILE__), ['tred_chartjs', 'jquery'], '1.0.0', true); 152 152 wp_register_script('datatables_js', plugins_url('assets/DataTables/datatables.min.js', __FILE__), ['jquery'], '', true); 153 153 wp_register_style('datatables_css', plugins_url('assets/DataTables/datatables.min.css', __FILE__)); … … 189 189 add_action('wp_loaded', 'tred_register_all_scripts_and_styles'); 190 190 191 192 191 //Scripts end styles 193 192 function tred_enqueue_admin_script($hook) … … 201 200 wp_enqueue_style('tred_admin_css'); 202 201 wp_enqueue_style('fontawsome'); 202 wp_enqueue_script('tred_chartjs'); 203 203 wp_enqueue_script('tred_admin_js'); 204 wp_enqueue_script('chartjs');205 204 wp_enqueue_script('notify_js'); 206 205 wp_enqueue_style('datatables_css'); -
easy-dash-for-learndash/tags/2.4.1/readme.txt
r2969363 r2985066 3 3 Tags: learndash, education, elearning, lms, learning 4 4 Requires at least: 5.0 5 Tested up to: 6. 35 Tested up to: 6.4 6 6 Requires PHP: 7.4 7 Stable tag: 2.4. 07 Stable tag: 2.4.1 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 81 81 82 82 == Changelog == 83 84 = 2.4.1 = 85 * New: First and Last Name columns for filtered course users and filtered group users tables (show/hide columns with PRO version) 86 * Fix: Small adjustment to prevent some js errors 87 83 88 = 2.4.0 = 84 89 * New: Filter groups and get users and courses stats -
easy-dash-for-learndash/trunk/assets/js/tred-admin.js
r2969363 r2985066 27 27 const tredCsvLabels = tred_js_object.tredCsvLabels; 28 28 const tredProActivated = tred_js_object.tredProActivated; 29 30 if (typeof Chart !== "undefined" && Chart.version !== "3.4.1") { 31 console.warn( 32 "Another version of Chart.js detected. This might cause conflicts with the Easy Dash for LearnDash plugin." 33 ); 34 } 29 35 30 36 function TredGetTimeText(timeInSec) { -
easy-dash-for-learndash/trunk/includes/callbacks-actions.php
r2969363 r2985066 674 674 $a['id'] = $stats['id']; 675 675 $a['email'] = $stats['email']; 676 $a['first_name'] = $stats['first_name']; 677 $a['last_name'] = $stats['last_name']; 676 678 $a['status'] = $stats['status']; 677 679 $a['completed'] = $stats['completed']; … … 691 693 $table['keys_labels'] = [ 692 694 'id' => esc_html__('ID', 'learndash-easy-dash'), 695 'first_name' => esc_html__('First Name', 'learndash-easy-dash'), 696 'last_name' => esc_html__('Last Name', 'learndash-easy-dash'), 693 697 'email' => esc_html__('Email', 'learndash-easy-dash'), 694 698 'status' => esc_html__('Status', 'learndash-easy-dash'), … … 921 925 $a['id'] = $user['id']; 922 926 $a['name'] = $user['display_name']; 927 $a['firstname'] = $user['first_name']; 928 $a['lastname'] = $user['last_name']; 923 929 $a['email'] = $user['email']; 924 930 $a['courses'] = 0; … … 942 948 'id' => esc_html__('ID', 'learndash-easy-dash'), 943 949 'name' => esc_html__('Name', 'learndash-easy-dash'), 950 'firstname' => esc_html__('First Name', 'learndash-easy-dash'), 951 'lastname' => esc_html__('Last Name', 'learndash-easy-dash'), 944 952 'email' => esc_html__('Email', 'learndash-easy-dash'), 945 953 'courses' => esc_html__('Courses', 'learndash-easy-dash'), -
easy-dash-for-learndash/trunk/includes/class-tred-filtered-ld-group.php
r2969363 r2985066 40 40 $user_id = $user_object->ID; 41 41 $user_email = $user_object->user_email; 42 $user_firstname = $user_object->user_firstname; 43 $user_lastname = $user_object->user_lastname; 42 44 // $user_progress = learndash_get_user_group_progress($this->id, $user_id); 43 45 $group_users[] = [ … … 45 47 'email' => $user_email, 46 48 'display_name' => $user_display_name, 49 'first_name' => $user_firstname, 50 'last_name' => $user_lastname, 47 51 // 'progress' => $user_progress, 48 52 ]; -
easy-dash-for-learndash/trunk/includes/class-tred-filtered-ld-item.php
r2969363 r2985066 212 212 //get wp user meta value 213 213 foreach ($students_array as $user_id) { 214 $p = learndash_user_get_course_progress($user_id, $this->id);214 $p = (array) learndash_user_get_course_progress($user_id, $this->id); 215 215 //get user email by id 216 216 $user = get_user_by('id', $user_id); … … 218 218 'id' => intval($user_id), 219 219 'email' => $user->user_email, 220 'status' => $p['status'], 220 'first_name' => $user->user_firstname, 221 'last_name' => $user->user_lastname, 222 'status' => $p['status'] ?? '', 221 223 //TODO: see learndash_course_status function and find a way to get the translated status 222 224 'completed' => intval($p['completed']), -
easy-dash-for-learndash/trunk/includes/functions.php
r2969363 r2985066 522 522 523 523 } //end if 524 524 525 //order array by subarray value 526 // uasort($items['completed'], function ($a, $b) { 527 // return $a['times'] < $b['times']; 528 // }); 529 530 //3.4.1 (above is deprecated) 525 531 uasort($items['completed'], function ($a, $b) { 526 return $a['times'] < $b['times']; 532 // You should compare $a['times'] and $b['times'] here and return -1, 0, or 1. 533 if ($a['times'] == $b['times']) { 534 return 0; // They are equal 535 } 536 // If you want an ascending sort order, use the line below: 537 // return ($a['times'] < $b['times']) ? -1 : 1; 538 // For descending sort order (as it seems you are trying to compare from greatest to least): 539 return ($a['times'] < $b['times']) ? 1 : -1; 527 540 }); 541 528 542 $output['items_completed']['items'] = $items['completed']; 529 543 } //end foreach -
easy-dash-for-learndash/trunk/languages/learndash-easy-dash-en_US.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:53+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: English (United States)\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/trunk/languages/learndash-easy-dash-es_ES.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:52+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Spanish (Spain)\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/trunk/languages/learndash-easy-dash-fr_FR.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:53+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: French (France)\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/trunk/languages/learndash-easy-dash-pt_BR.po
r2969363 r2985066 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2022-02-11 20:05+0000\n" 6 "PO-Revision-Date: 2023- 09-20 14:40+0000\n"6 "PO-Revision-Date: 2023-10-27 15:52+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Português do Brasil\n" … … 128 128 msgstr "" 129 129 130 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142130 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 131 131 msgid "Associated Courses" 132 132 msgstr "" … … 178 178 msgstr "" 179 179 180 #: includes/callbacks-actions.php:105 1180 #: includes/callbacks-actions.php:1058 181 181 msgid "Completed" 182 182 msgstr "" 183 183 184 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143184 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 185 185 msgid "Completed Courses" 186 186 msgstr "" 187 187 188 #: includes/callbacks-actions.php:69 6188 #: includes/callbacks-actions.php:699 189 189 msgid "Completed Steps" 190 190 msgstr "" … … 196 196 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 197 197 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 198 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913199 #: includes/callbacks-actions.php:9 47198 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 199 #: includes/callbacks-actions.php:954 200 200 msgid "Completions" 201 201 msgstr "" … … 217 217 msgstr "" 218 218 219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 220 220 msgid "Course" 221 221 msgstr "" 222 222 223 #: includes/functions.php:13 12includes/translations.php:150223 #: includes/functions.php:1326 includes/translations.php:150 224 224 msgid "course" 225 225 msgstr "" … … 241 241 msgstr "" 242 242 243 #: includes/callbacks-actions.php:9 46243 #: includes/callbacks-actions.php:953 244 244 msgid "Courses" 245 245 msgstr "" 246 246 247 #: includes/class-tred-filtered-ld-group.php:6 0247 #: includes/class-tred-filtered-ld-group.php:64 248 248 msgid "Courses is not an array..." 249 249 msgstr "" … … 264 264 msgstr "" 265 265 266 #: includes/callbacks-actions.php: 698266 #: includes/callbacks-actions.php:701 267 267 msgid "Days Spent" 268 268 msgstr "" … … 324 324 msgstr "" 325 325 326 #: includes/functions.php:1 296326 #: includes/functions.php:1310 327 327 msgid "Easy Dash for LearnDash - Filter Center" 328 328 msgstr "" … … 342 342 msgstr "" 343 343 344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4345 #: includes/callbacks-actions.php:9 45344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 345 #: includes/callbacks-actions.php:952 346 346 msgid "Email" 347 347 msgstr "" 348 348 349 349 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 350 #: includes/callbacks-actions.php:6 20350 #: includes/callbacks-actions.php:619 351 351 msgid "Enrolls" 352 352 msgstr "" … … 380 380 msgstr "" 381 381 382 #: includes/functions.php:1345 includes/translations.php:12 382 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 383 msgid "First Name" 384 msgstr "" 385 386 #: includes/functions.php:1359 includes/translations.php:12 383 387 msgid "go" 384 388 msgstr "" 385 389 386 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140390 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 387 391 msgid "Group" 388 392 msgstr "Group" 389 393 390 #: includes/functions.php:13 19includes/translations.php:154394 #: includes/functions.php:1333 includes/translations.php:154 391 395 msgid "group" 392 396 msgstr "grupo" 393 397 394 #: includes/class-tred-filtered-ld-group.php:1 60398 #: includes/class-tred-filtered-ld-group.php:106 395 399 msgid "Group admins is not an array..." 396 400 msgstr "" … … 417 421 msgstr "" 418 422 419 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054420 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144423 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 424 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 421 425 msgid "Hours Spent" 422 426 msgstr "" … … 430 434 msgstr "" 431 435 432 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909433 #: includes/callbacks-actions.php:94 3436 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 437 #: includes/callbacks-actions.php:948 434 438 msgid "ID" 435 439 msgstr "" … … 479 483 msgstr "" 480 484 481 #: includes/callbacks-actions.php:10 53includes/translations.php:34485 #: includes/callbacks-actions.php:1060 includes/translations.php:34 482 486 msgid "Last" 487 msgstr "" 488 489 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 490 msgid "Last Name" 483 491 msgstr "" 484 492 … … 509 517 msgstr "" 510 518 511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4512 #: includes/callbacks-actions.php:91 1519 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 520 #: includes/callbacks-actions.php:914 513 521 msgid "Mode" 514 522 msgstr "" … … 518 526 msgstr "" 519 527 520 #: includes/functions.php:1 194 includes/callbacks-actions.php:944528 #: includes/functions.php:1208 includes/callbacks-actions.php:949 521 529 msgid "Name" 522 530 msgstr "" … … 558 566 msgstr "" 559 567 560 #: includes/functions.php:1 191568 #: includes/functions.php:1205 561 569 msgid "Number" 562 570 msgstr "" … … 592 600 msgstr "" 593 601 594 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052602 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 595 603 msgid "Percentage" 596 604 msgstr "" … … 632 640 msgstr "" 633 641 634 #: includes/class-tred-filtered-ld-group.php: 145642 #: includes/class-tred-filtered-ld-group.php:91 635 643 msgid "Quizzes is not an array..." 636 644 msgstr "" … … 657 665 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 658 666 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 659 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962660 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216661 #: includes/callbacks-actions.php:12 48667 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 668 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 669 #: includes/callbacks-actions.php:1255 662 670 msgid "Security check" 663 671 msgstr "" 664 672 665 #: includes/functions.php:13 09 includes/functions.php:1331666 #: includes/functions.php:13 39includes/translations.php:11673 #: includes/functions.php:1323 includes/functions.php:1345 674 #: includes/functions.php:1353 includes/translations.php:11 667 675 msgid "select" 668 676 msgstr "" … … 719 727 720 728 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 721 #: includes/callbacks-actions.php:62 9729 #: includes/callbacks-actions.php:628 722 730 msgid "Starts" 723 731 msgstr "" … … 729 737 msgstr "" 730 738 731 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049739 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 732 740 msgid "Status" 733 741 msgstr "" … … 737 745 msgstr "" 738 746 739 #: includes/callbacks-actions.php:12 65747 #: includes/callbacks-actions.php:1272 740 748 msgid "Student" 741 749 msgstr "" … … 747 755 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 748 756 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 749 #: includes/callbacks-actions.php:91 2757 #: includes/callbacks-actions.php:915 750 758 msgid "Students" 751 759 msgstr "" … … 846 854 msgstr "" 847 855 848 #: includes/callbacks-actions.php:77 6856 #: includes/callbacks-actions.php:779 849 857 msgid "Times" 850 858 msgstr "" … … 854 862 msgstr "" 855 863 856 #: includes/callbacks-actions.php:91 0864 #: includes/callbacks-actions.php:913 857 865 msgid "Title" 858 866 msgstr "" … … 868 876 msgstr "" 869 877 870 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141878 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 871 879 msgid "Total Members" 872 880 msgstr "" 873 881 874 #: includes/callbacks-actions.php:105 0882 #: includes/callbacks-actions.php:1057 875 883 msgid "Total Steps" 876 884 msgstr "" … … 881 889 msgstr "Total de alunos em grupos: %s" 882 890 883 #: includes/functions.php:1 197891 #: includes/functions.php:1211 884 892 msgid "Type" 885 893 msgstr "" … … 894 902 msgstr "" 895 903 896 #: includes/functions.php:13 15includes/translations.php:155904 #: includes/functions.php:1329 includes/translations.php:155 897 905 msgid "user" 898 906 msgstr "" … … 906 914 msgstr "" 907 915 908 #: includes/callbacks-actions.php:79 3916 #: includes/callbacks-actions.php:796 909 917 msgid "Users" 910 918 msgstr "" -
easy-dash-for-learndash/trunk/languages/learndash-easy-dash.pot
r2969363 r2985066 4 4 "Project-Id-Version: Easy Dash for LearnDash\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2023- 09-20 14:40+0000\n"6 "POT-Creation-Date: 2023-10-27 15:52+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 129 129 msgstr "" 130 130 131 #: includes/callbacks-actions.php:1 097 includes/callbacks-actions.php:1142131 #: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149 132 132 msgid "Associated Courses" 133 133 msgstr "" … … 179 179 msgstr "" 180 180 181 #: includes/callbacks-actions.php:105 1181 #: includes/callbacks-actions.php:1058 182 182 msgid "Completed" 183 183 msgstr "" 184 184 185 #: includes/callbacks-actions.php:1 098 includes/callbacks-actions.php:1143185 #: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150 186 186 msgid "Completed Courses" 187 187 msgstr "" 188 188 189 #: includes/callbacks-actions.php:69 6189 #: includes/callbacks-actions.php:699 190 190 msgid "Completed Steps" 191 191 msgstr "" … … 197 197 #: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358 198 198 #: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423 199 #: includes/callbacks-actions.php:63 8 includes/callbacks-actions.php:913200 #: includes/callbacks-actions.php:9 47199 #: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916 200 #: includes/callbacks-actions.php:954 201 201 msgid "Completions" 202 202 msgstr "" … … 218 218 msgstr "" 219 219 220 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:10 48220 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055 221 221 msgid "Course" 222 222 msgstr "" 223 223 224 #: includes/functions.php:13 12includes/translations.php:150224 #: includes/functions.php:1326 includes/translations.php:150 225 225 msgid "course" 226 226 msgstr "" … … 242 242 msgstr "" 243 243 244 #: includes/callbacks-actions.php:9 46244 #: includes/callbacks-actions.php:953 245 245 msgid "Courses" 246 246 msgstr "" 247 247 248 #: includes/class-tred-filtered-ld-group.php:6 0248 #: includes/class-tred-filtered-ld-group.php:64 249 249 msgid "Courses is not an array..." 250 250 msgstr "" … … 265 265 msgstr "" 266 266 267 #: includes/callbacks-actions.php: 698267 #: includes/callbacks-actions.php:701 268 268 msgid "Days Spent" 269 269 msgstr "" … … 325 325 msgstr "" 326 326 327 #: includes/functions.php:1 296327 #: includes/functions.php:1310 328 328 msgid "Easy Dash for LearnDash - Filter Center" 329 329 msgstr "" … … 343 343 msgstr "" 344 344 345 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:69 4346 #: includes/callbacks-actions.php:9 45345 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697 346 #: includes/callbacks-actions.php:952 347 347 msgid "Email" 348 348 msgstr "" 349 349 350 350 #: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421 351 #: includes/callbacks-actions.php:6 20351 #: includes/callbacks-actions.php:619 352 352 msgid "Enrolls" 353 353 msgstr "" … … 381 381 msgstr "" 382 382 383 #: includes/functions.php:1345 includes/translations.php:12 383 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950 384 msgid "First Name" 385 msgstr "" 386 387 #: includes/functions.php:1359 includes/translations.php:12 384 388 msgid "go" 385 389 msgstr "" 386 390 387 #: includes/callbacks-actions.php:1 095 includes/callbacks-actions.php:1140391 #: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147 388 392 msgid "Group" 389 393 msgstr "" 390 394 391 #: includes/functions.php:13 19includes/translations.php:154395 #: includes/functions.php:1333 includes/translations.php:154 392 396 msgid "group" 393 397 msgstr "" 394 398 395 #: includes/class-tred-filtered-ld-group.php:1 60399 #: includes/class-tred-filtered-ld-group.php:106 396 400 msgid "Group admins is not an array..." 397 401 msgstr "" … … 418 422 msgstr "" 419 423 420 #: includes/callbacks-actions.php: 699 includes/callbacks-actions.php:1054421 #: includes/callbacks-actions.php:1 099 includes/callbacks-actions.php:1144424 #: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061 425 #: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151 422 426 msgid "Hours Spent" 423 427 msgstr "" … … 431 435 msgstr "" 432 436 433 #: includes/callbacks-actions.php:69 3 includes/callbacks-actions.php:909434 #: includes/callbacks-actions.php:94 3437 #: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912 438 #: includes/callbacks-actions.php:948 435 439 msgid "ID" 436 440 msgstr "" … … 480 484 msgstr "" 481 485 482 #: includes/callbacks-actions.php:10 53includes/translations.php:34486 #: includes/callbacks-actions.php:1060 includes/translations.php:34 483 487 msgid "Last" 488 msgstr "" 489 490 #: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951 491 msgid "Last Name" 484 492 msgstr "" 485 493 … … 510 518 msgstr "" 511 519 512 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:75 4513 #: includes/callbacks-actions.php:91 1520 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757 521 #: includes/callbacks-actions.php:914 514 522 msgid "Mode" 515 523 msgstr "" … … 519 527 msgstr "" 520 528 521 #: includes/functions.php:1 194 includes/callbacks-actions.php:944529 #: includes/functions.php:1208 includes/callbacks-actions.php:949 522 530 msgid "Name" 523 531 msgstr "" … … 559 567 msgstr "" 560 568 561 #: includes/functions.php:1 191569 #: includes/functions.php:1205 562 570 msgid "Number" 563 571 msgstr "" … … 593 601 msgstr "" 594 602 595 #: includes/callbacks-actions.php: 697 includes/callbacks-actions.php:1052603 #: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059 596 604 msgid "Percentage" 597 605 msgstr "" … … 633 641 msgstr "" 634 642 635 #: includes/class-tred-filtered-ld-group.php: 145643 #: includes/class-tred-filtered-ld-group.php:91 636 644 msgid "Quizzes is not an array..." 637 645 msgstr "" … … 658 666 #: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308 659 667 #: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514 660 #: includes/callbacks-actions.php:71 2 includes/callbacks-actions.php:962661 #: includes/callbacks-actions.php:11 68 includes/callbacks-actions.php:1216662 #: includes/callbacks-actions.php:12 48668 #: includes/callbacks-actions.php:715 includes/callbacks-actions.php:969 669 #: includes/callbacks-actions.php:1175 includes/callbacks-actions.php:1223 670 #: includes/callbacks-actions.php:1255 663 671 msgid "Security check" 664 672 msgstr "" 665 673 666 #: includes/functions.php:13 09 includes/functions.php:1331667 #: includes/functions.php:13 39includes/translations.php:11674 #: includes/functions.php:1323 includes/functions.php:1345 675 #: includes/functions.php:1353 includes/translations.php:11 668 676 msgid "select" 669 677 msgstr "" … … 720 728 721 729 #: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422 722 #: includes/callbacks-actions.php:62 9730 #: includes/callbacks-actions.php:628 723 731 msgid "Starts" 724 732 msgstr "" … … 730 738 msgstr "" 731 739 732 #: includes/callbacks-actions.php:69 5 includes/callbacks-actions.php:1049740 #: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056 733 741 msgid "Status" 734 742 msgstr "" … … 738 746 msgstr "" 739 747 740 #: includes/callbacks-actions.php:12 65748 #: includes/callbacks-actions.php:1272 741 749 msgid "Student" 742 750 msgstr "" … … 748 756 #: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201 749 757 #: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488 750 #: includes/callbacks-actions.php:91 2758 #: includes/callbacks-actions.php:915 751 759 msgid "Students" 752 760 msgstr "" … … 847 855 msgstr "" 848 856 849 #: includes/callbacks-actions.php:77 6857 #: includes/callbacks-actions.php:779 850 858 msgid "Times" 851 859 msgstr "" … … 855 863 msgstr "" 856 864 857 #: includes/callbacks-actions.php:91 0865 #: includes/callbacks-actions.php:913 858 866 msgid "Title" 859 867 msgstr "" … … 869 877 msgstr "" 870 878 871 #: includes/callbacks-actions.php:1 096 includes/callbacks-actions.php:1141879 #: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148 872 880 msgid "Total Members" 873 881 msgstr "" 874 882 875 #: includes/callbacks-actions.php:105 0883 #: includes/callbacks-actions.php:1057 876 884 msgid "Total Steps" 877 885 msgstr "" … … 882 890 msgstr "" 883 891 884 #: includes/functions.php:1 197892 #: includes/functions.php:1211 885 893 msgid "Type" 886 894 msgstr "" … … 895 903 msgstr "" 896 904 897 #: includes/functions.php:13 15includes/translations.php:155905 #: includes/functions.php:1329 includes/translations.php:155 898 906 msgid "user" 899 907 msgstr "" … … 907 915 msgstr "" 908 916 909 #: includes/callbacks-actions.php:79 3917 #: includes/callbacks-actions.php:796 910 918 msgid "Users" 911 919 msgstr "" -
easy-dash-for-learndash/trunk/learndash-easy-dash.php
r2969363 r2985066 6 6 * Author: Luis Rock 7 7 * Author URI: https://wptrat.com/ 8 * Version: 2.4. 08 * Version: 2.4.1 9 9 * Text Domain: learndash-easy-dash 10 10 * Domain Path: /languages … … 20 20 exit; 21 21 22 define("TRED_VERSION", "2.4. 0");22 define("TRED_VERSION", "2.4.1"); 23 23 24 24 // Check if LearnDash is active. If not, deactivate... … … 148 148 { 149 149 150 wp_register_script('tred_ admin_js', plugins_url('assets/js/tred-admin.js', __FILE__), ['chartjs', 'jquery'], '1.0.0', true);151 wp_register_script(' chartjs', plugins_url('assets/js/Chart.js', __FILE__), [], '3.4.1', false);150 wp_register_script('tred_chartjs', plugins_url('assets/js/Chart.js', __FILE__), [], '3.4.1', false); 151 wp_register_script('tred_admin_js', plugins_url('assets/js/tred-admin.js', __FILE__), ['tred_chartjs', 'jquery'], '1.0.0', true); 152 152 wp_register_script('datatables_js', plugins_url('assets/DataTables/datatables.min.js', __FILE__), ['jquery'], '', true); 153 153 wp_register_style('datatables_css', plugins_url('assets/DataTables/datatables.min.css', __FILE__)); … … 189 189 add_action('wp_loaded', 'tred_register_all_scripts_and_styles'); 190 190 191 192 191 //Scripts end styles 193 192 function tred_enqueue_admin_script($hook) … … 201 200 wp_enqueue_style('tred_admin_css'); 202 201 wp_enqueue_style('fontawsome'); 202 wp_enqueue_script('tred_chartjs'); 203 203 wp_enqueue_script('tred_admin_js'); 204 wp_enqueue_script('chartjs');205 204 wp_enqueue_script('notify_js'); 206 205 wp_enqueue_style('datatables_css'); -
easy-dash-for-learndash/trunk/readme.txt
r2969363 r2985066 3 3 Tags: learndash, education, elearning, lms, learning 4 4 Requires at least: 5.0 5 Tested up to: 6. 35 Tested up to: 6.4 6 6 Requires PHP: 7.4 7 Stable tag: 2.4. 07 Stable tag: 2.4.1 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 81 81 82 82 == Changelog == 83 84 = 2.4.1 = 85 * New: First and Last Name columns for filtered course users and filtered group users tables (show/hide columns with PRO version) 86 * Fix: Small adjustment to prevent some js errors 87 83 88 = 2.4.0 = 84 89 * New: Filter groups and get users and courses stats
Note: See TracChangeset
for help on using the changeset viewer.