Plugin Directory

Changeset 2985066


Ignore:
Timestamp:
10/27/2023 04:14:44 PM (2 years ago)
Author:
maurolopes
Message:

Update to version 2.4.1 from GitHub

Location:
easy-dash-for-learndash
Files:
4 added
32 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easy-dash-for-learndash/tags/2.4.1/assets/js/tred-admin.js

    r2969363 r2985066  
    2727const tredCsvLabels = tred_js_object.tredCsvLabels;
    2828const tredProActivated = tred_js_object.tredProActivated;
     29
     30if (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}
    2935
    3036function TredGetTimeText(timeInSec) {
  • easy-dash-for-learndash/tags/2.4.1/includes/callbacks-actions.php

    r2969363 r2985066  
    674674        $a['id'] = $stats['id'];
    675675        $a['email'] = $stats['email'];
     676        $a['first_name'] = $stats['first_name'];
     677        $a['last_name'] = $stats['last_name'];
    676678        $a['status'] = $stats['status'];
    677679        $a['completed'] = $stats['completed'];
     
    691693    $table['keys_labels'] = [
    692694        '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'),
    693697        'email' => esc_html__('Email', 'learndash-easy-dash'),
    694698        'status' => esc_html__('Status', 'learndash-easy-dash'),
     
    921925            $a['id'] = $user['id'];
    922926            $a['name'] = $user['display_name'];
     927            $a['firstname'] = $user['first_name'];
     928            $a['lastname'] = $user['last_name'];
    923929            $a['email'] = $user['email'];
    924930            $a['courses'] = 0;
     
    942948            'id' => esc_html__('ID', 'learndash-easy-dash'),
    943949            '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'),
    944952            'email' => esc_html__('Email', 'learndash-easy-dash'),
    945953            'courses' => esc_html__('Courses', 'learndash-easy-dash'),
  • easy-dash-for-learndash/tags/2.4.1/includes/class-tred-filtered-ld-group.php

    r2969363 r2985066  
    4040                    $user_id = $user_object->ID;
    4141                    $user_email = $user_object->user_email;
     42                    $user_firstname = $user_object->user_firstname;
     43                    $user_lastname = $user_object->user_lastname;
    4244                    // $user_progress = learndash_get_user_group_progress($this->id, $user_id);
    4345                    $group_users[] = [
     
    4547                        'email' => $user_email,
    4648                        'display_name' => $user_display_name,
     49                        'first_name' => $user_firstname,
     50                        'last_name' => $user_lastname,
    4751                        // 'progress' => $user_progress,
    4852                    ];
  • easy-dash-for-learndash/tags/2.4.1/includes/class-tred-filtered-ld-item.php

    r2969363 r2985066  
    212212            //get wp user meta value
    213213            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);
    215215                //get user email by id
    216216                $user = get_user_by('id', $user_id);
     
    218218                    'id' => intval($user_id),
    219219                    'email' => $user->user_email,
    220                     'status' => $p['status'],
     220                    'first_name' => $user->user_firstname,
     221                    'last_name' => $user->user_lastname,
     222                    'status' => $p['status'] ?? '',
    221223                    //TODO: see learndash_course_status function and find a way to get the translated status
    222224                    'completed' => intval($p['completed']),
  • easy-dash-for-learndash/tags/2.4.1/includes/functions.php

    r2969363 r2985066  
    522522
    523523    } //end if
     524
    524525    //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)
    525531    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;
    527540    });
     541
    528542    $output['items_completed']['items'] = $items['completed'];
    529543  } //end foreach
  • easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-en_US.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: English (United States)\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr ""
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr ""
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr ""
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-es_ES.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: Spanish (Spain)\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr ""
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr ""
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr ""
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-fr_FR.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: French (France)\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr ""
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr ""
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr ""
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash-pt_BR.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: Português do Brasil\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr "Group"
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr "grupo"
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr "Total de alunos em grupos: %s"
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/tags/2.4.1/languages/learndash-easy-dash.pot

    r2969363 r2985066  
    44"Project-Id-Version: Easy Dash for LearnDash\n"
    55"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"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    129129msgstr ""
    130130
    131 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     131#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    132132msgid "Associated Courses"
    133133msgstr ""
     
    179179msgstr ""
    180180
    181 #: includes/callbacks-actions.php:1051
     181#: includes/callbacks-actions.php:1058
    182182msgid "Completed"
    183183msgstr ""
    184184
    185 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     185#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    186186msgid "Completed Courses"
    187187msgstr ""
    188188
    189 #: includes/callbacks-actions.php:696
     189#: includes/callbacks-actions.php:699
    190190msgid "Completed Steps"
    191191msgstr ""
     
    197197#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    198198#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    199 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    200 #: includes/callbacks-actions.php:947
     199#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     200#: includes/callbacks-actions.php:954
    201201msgid "Completions"
    202202msgstr ""
     
    218218msgstr ""
    219219
    220 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     220#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    221221msgid "Course"
    222222msgstr ""
    223223
    224 #: includes/functions.php:1312 includes/translations.php:150
     224#: includes/functions.php:1326 includes/translations.php:150
    225225msgid "course"
    226226msgstr ""
     
    242242msgstr ""
    243243
    244 #: includes/callbacks-actions.php:946
     244#: includes/callbacks-actions.php:953
    245245msgid "Courses"
    246246msgstr ""
    247247
    248 #: includes/class-tred-filtered-ld-group.php:60
     248#: includes/class-tred-filtered-ld-group.php:64
    249249msgid "Courses is not an array..."
    250250msgstr ""
     
    265265msgstr ""
    266266
    267 #: includes/callbacks-actions.php:698
     267#: includes/callbacks-actions.php:701
    268268msgid "Days Spent"
    269269msgstr ""
     
    325325msgstr ""
    326326
    327 #: includes/functions.php:1296
     327#: includes/functions.php:1310
    328328msgid "Easy Dash for LearnDash - Filter Center"
    329329msgstr ""
     
    343343msgstr ""
    344344
    345 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    346 #: includes/callbacks-actions.php:945
     345#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     346#: includes/callbacks-actions.php:952
    347347msgid "Email"
    348348msgstr ""
    349349
    350350#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    351 #: includes/callbacks-actions.php:620
     351#: includes/callbacks-actions.php:619
    352352msgid "Enrolls"
    353353msgstr ""
     
    381381msgstr ""
    382382
    383 #: includes/functions.php:1345 includes/translations.php:12
     383#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     384msgid "First Name"
     385msgstr ""
     386
     387#: includes/functions.php:1359 includes/translations.php:12
    384388msgid "go"
    385389msgstr ""
    386390
    387 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     391#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    388392msgid "Group"
    389393msgstr ""
    390394
    391 #: includes/functions.php:1319 includes/translations.php:154
     395#: includes/functions.php:1333 includes/translations.php:154
    392396msgid "group"
    393397msgstr ""
    394398
    395 #: includes/class-tred-filtered-ld-group.php:160
     399#: includes/class-tred-filtered-ld-group.php:106
    396400msgid "Group admins is not an array..."
    397401msgstr ""
     
    418422msgstr ""
    419423
    420 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    421 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     424#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     425#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    422426msgid "Hours Spent"
    423427msgstr ""
     
    431435msgstr ""
    432436
    433 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    434 #: includes/callbacks-actions.php:943
     437#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     438#: includes/callbacks-actions.php:948
    435439msgid "ID"
    436440msgstr ""
     
    480484msgstr ""
    481485
    482 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     486#: includes/callbacks-actions.php:1060 includes/translations.php:34
    483487msgid "Last"
     488msgstr ""
     489
     490#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     491msgid "Last Name"
    484492msgstr ""
    485493
     
    510518msgstr ""
    511519
    512 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    513 #: includes/callbacks-actions.php:911
     520#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     521#: includes/callbacks-actions.php:914
    514522msgid "Mode"
    515523msgstr ""
     
    519527msgstr ""
    520528
    521 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     529#: includes/functions.php:1208 includes/callbacks-actions.php:949
    522530msgid "Name"
    523531msgstr ""
     
    559567msgstr ""
    560568
    561 #: includes/functions.php:1191
     569#: includes/functions.php:1205
    562570msgid "Number"
    563571msgstr ""
     
    593601msgstr ""
    594602
    595 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     603#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    596604msgid "Percentage"
    597605msgstr ""
     
    633641msgstr ""
    634642
    635 #: includes/class-tred-filtered-ld-group.php:145
     643#: includes/class-tred-filtered-ld-group.php:91
    636644msgid "Quizzes is not an array..."
    637645msgstr ""
     
    658666#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    659667#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    660 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    661 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    662 #: includes/callbacks-actions.php:1248
     668#: 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
    663671msgid "Security check"
    664672msgstr ""
    665673
    666 #: includes/functions.php:1309 includes/functions.php:1331
    667 #: includes/functions.php:1339 includes/translations.php:11
     674#: includes/functions.php:1323 includes/functions.php:1345
     675#: includes/functions.php:1353 includes/translations.php:11
    668676msgid "select"
    669677msgstr ""
     
    720728
    721729#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    722 #: includes/callbacks-actions.php:629
     730#: includes/callbacks-actions.php:628
    723731msgid "Starts"
    724732msgstr ""
     
    730738msgstr ""
    731739
    732 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     740#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    733741msgid "Status"
    734742msgstr ""
     
    738746msgstr ""
    739747
    740 #: includes/callbacks-actions.php:1265
     748#: includes/callbacks-actions.php:1272
    741749msgid "Student"
    742750msgstr ""
     
    748756#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    749757#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    750 #: includes/callbacks-actions.php:912
     758#: includes/callbacks-actions.php:915
    751759msgid "Students"
    752760msgstr ""
     
    847855msgstr ""
    848856
    849 #: includes/callbacks-actions.php:776
     857#: includes/callbacks-actions.php:779
    850858msgid "Times"
    851859msgstr ""
     
    855863msgstr ""
    856864
    857 #: includes/callbacks-actions.php:910
     865#: includes/callbacks-actions.php:913
    858866msgid "Title"
    859867msgstr ""
     
    869877msgstr ""
    870878
    871 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     879#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    872880msgid "Total Members"
    873881msgstr ""
    874882
    875 #: includes/callbacks-actions.php:1050
     883#: includes/callbacks-actions.php:1057
    876884msgid "Total Steps"
    877885msgstr ""
     
    882890msgstr ""
    883891
    884 #: includes/functions.php:1197
     892#: includes/functions.php:1211
    885893msgid "Type"
    886894msgstr ""
     
    895903msgstr ""
    896904
    897 #: includes/functions.php:1315 includes/translations.php:155
     905#: includes/functions.php:1329 includes/translations.php:155
    898906msgid "user"
    899907msgstr ""
     
    907915msgstr ""
    908916
    909 #: includes/callbacks-actions.php:793
     917#: includes/callbacks-actions.php:796
    910918msgid "Users"
    911919msgstr ""
  • easy-dash-for-learndash/tags/2.4.1/learndash-easy-dash.php

    r2969363 r2985066  
    66 * Author: Luis Rock
    77 * Author URI: https://wptrat.com/
    8  * Version: 2.4.0
     8 * Version: 2.4.1
    99 * Text Domain: learndash-easy-dash
    1010 * Domain Path: /languages
     
    2020    exit;
    2121
    22 define("TRED_VERSION", "2.4.0");
     22define("TRED_VERSION", "2.4.1");
    2323
    2424// Check if LearnDash is active. If not, deactivate...
     
    148148{
    149149
    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);
    152152    wp_register_script('datatables_js', plugins_url('assets/DataTables/datatables.min.js', __FILE__), ['jquery'], '', true);
    153153    wp_register_style('datatables_css', plugins_url('assets/DataTables/datatables.min.css', __FILE__));
     
    189189add_action('wp_loaded', 'tred_register_all_scripts_and_styles');
    190190
    191 
    192191//Scripts end styles
    193192function tred_enqueue_admin_script($hook)
     
    201200    wp_enqueue_style('tred_admin_css');
    202201    wp_enqueue_style('fontawsome');
     202    wp_enqueue_script('tred_chartjs');
    203203    wp_enqueue_script('tred_admin_js');
    204     wp_enqueue_script('chartjs');
    205204    wp_enqueue_script('notify_js');
    206205    wp_enqueue_style('datatables_css');
  • easy-dash-for-learndash/tags/2.4.1/readme.txt

    r2969363 r2985066  
    33Tags: learndash, education, elearning, lms, learning
    44Requires at least: 5.0
    5 Tested up to: 6.3
     5Tested up to: 6.4
    66Requires PHP: 7.4
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8181
    8282== 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
    8388= 2.4.0 =
    8489* New: Filter groups and get users and courses stats
  • easy-dash-for-learndash/trunk/assets/js/tred-admin.js

    r2969363 r2985066  
    2727const tredCsvLabels = tred_js_object.tredCsvLabels;
    2828const tredProActivated = tred_js_object.tredProActivated;
     29
     30if (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}
    2935
    3036function TredGetTimeText(timeInSec) {
  • easy-dash-for-learndash/trunk/includes/callbacks-actions.php

    r2969363 r2985066  
    674674        $a['id'] = $stats['id'];
    675675        $a['email'] = $stats['email'];
     676        $a['first_name'] = $stats['first_name'];
     677        $a['last_name'] = $stats['last_name'];
    676678        $a['status'] = $stats['status'];
    677679        $a['completed'] = $stats['completed'];
     
    691693    $table['keys_labels'] = [
    692694        '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'),
    693697        'email' => esc_html__('Email', 'learndash-easy-dash'),
    694698        'status' => esc_html__('Status', 'learndash-easy-dash'),
     
    921925            $a['id'] = $user['id'];
    922926            $a['name'] = $user['display_name'];
     927            $a['firstname'] = $user['first_name'];
     928            $a['lastname'] = $user['last_name'];
    923929            $a['email'] = $user['email'];
    924930            $a['courses'] = 0;
     
    942948            'id' => esc_html__('ID', 'learndash-easy-dash'),
    943949            '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'),
    944952            'email' => esc_html__('Email', 'learndash-easy-dash'),
    945953            'courses' => esc_html__('Courses', 'learndash-easy-dash'),
  • easy-dash-for-learndash/trunk/includes/class-tred-filtered-ld-group.php

    r2969363 r2985066  
    4040                    $user_id = $user_object->ID;
    4141                    $user_email = $user_object->user_email;
     42                    $user_firstname = $user_object->user_firstname;
     43                    $user_lastname = $user_object->user_lastname;
    4244                    // $user_progress = learndash_get_user_group_progress($this->id, $user_id);
    4345                    $group_users[] = [
     
    4547                        'email' => $user_email,
    4648                        'display_name' => $user_display_name,
     49                        'first_name' => $user_firstname,
     50                        'last_name' => $user_lastname,
    4751                        // 'progress' => $user_progress,
    4852                    ];
  • easy-dash-for-learndash/trunk/includes/class-tred-filtered-ld-item.php

    r2969363 r2985066  
    212212            //get wp user meta value
    213213            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);
    215215                //get user email by id
    216216                $user = get_user_by('id', $user_id);
     
    218218                    'id' => intval($user_id),
    219219                    'email' => $user->user_email,
    220                     'status' => $p['status'],
     220                    'first_name' => $user->user_firstname,
     221                    'last_name' => $user->user_lastname,
     222                    'status' => $p['status'] ?? '',
    221223                    //TODO: see learndash_course_status function and find a way to get the translated status
    222224                    'completed' => intval($p['completed']),
  • easy-dash-for-learndash/trunk/includes/functions.php

    r2969363 r2985066  
    522522
    523523    } //end if
     524
    524525    //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)
    525531    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;
    527540    });
     541
    528542    $output['items_completed']['items'] = $items['completed'];
    529543  } //end foreach
  • easy-dash-for-learndash/trunk/languages/learndash-easy-dash-en_US.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: English (United States)\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr ""
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr ""
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr ""
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/trunk/languages/learndash-easy-dash-es_ES.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: Spanish (Spain)\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr ""
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr ""
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr ""
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/trunk/languages/learndash-easy-dash-fr_FR.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: French (France)\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr ""
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr ""
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr ""
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/trunk/languages/learndash-easy-dash-pt_BR.po

    r2969363 r2985066  
    44"Report-Msgid-Bugs-To: \n"
    55"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"
    77"Last-Translator: \n"
    88"Language-Team: Português do Brasil\n"
     
    128128msgstr ""
    129129
    130 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     130#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    131131msgid "Associated Courses"
    132132msgstr ""
     
    178178msgstr ""
    179179
    180 #: includes/callbacks-actions.php:1051
     180#: includes/callbacks-actions.php:1058
    181181msgid "Completed"
    182182msgstr ""
    183183
    184 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     184#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    185185msgid "Completed Courses"
    186186msgstr ""
    187187
    188 #: includes/callbacks-actions.php:696
     188#: includes/callbacks-actions.php:699
    189189msgid "Completed Steps"
    190190msgstr ""
     
    196196#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    197197#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    198 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    199 #: includes/callbacks-actions.php:947
     198#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     199#: includes/callbacks-actions.php:954
    200200msgid "Completions"
    201201msgstr ""
     
    217217msgstr ""
    218218
    219 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     219#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    220220msgid "Course"
    221221msgstr ""
    222222
    223 #: includes/functions.php:1312 includes/translations.php:150
     223#: includes/functions.php:1326 includes/translations.php:150
    224224msgid "course"
    225225msgstr ""
     
    241241msgstr ""
    242242
    243 #: includes/callbacks-actions.php:946
     243#: includes/callbacks-actions.php:953
    244244msgid "Courses"
    245245msgstr ""
    246246
    247 #: includes/class-tred-filtered-ld-group.php:60
     247#: includes/class-tred-filtered-ld-group.php:64
    248248msgid "Courses is not an array..."
    249249msgstr ""
     
    264264msgstr ""
    265265
    266 #: includes/callbacks-actions.php:698
     266#: includes/callbacks-actions.php:701
    267267msgid "Days Spent"
    268268msgstr ""
     
    324324msgstr ""
    325325
    326 #: includes/functions.php:1296
     326#: includes/functions.php:1310
    327327msgid "Easy Dash for LearnDash - Filter Center"
    328328msgstr ""
     
    342342msgstr ""
    343343
    344 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    345 #: includes/callbacks-actions.php:945
     344#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     345#: includes/callbacks-actions.php:952
    346346msgid "Email"
    347347msgstr ""
    348348
    349349#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    350 #: includes/callbacks-actions.php:620
     350#: includes/callbacks-actions.php:619
    351351msgid "Enrolls"
    352352msgstr ""
     
    380380msgstr ""
    381381
    382 #: includes/functions.php:1345 includes/translations.php:12
     382#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     383msgid "First Name"
     384msgstr ""
     385
     386#: includes/functions.php:1359 includes/translations.php:12
    383387msgid "go"
    384388msgstr ""
    385389
    386 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     390#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    387391msgid "Group"
    388392msgstr "Group"
    389393
    390 #: includes/functions.php:1319 includes/translations.php:154
     394#: includes/functions.php:1333 includes/translations.php:154
    391395msgid "group"
    392396msgstr "grupo"
    393397
    394 #: includes/class-tred-filtered-ld-group.php:160
     398#: includes/class-tred-filtered-ld-group.php:106
    395399msgid "Group admins is not an array..."
    396400msgstr ""
     
    417421msgstr ""
    418422
    419 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    420 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     423#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     424#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    421425msgid "Hours Spent"
    422426msgstr ""
     
    430434msgstr ""
    431435
    432 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    433 #: includes/callbacks-actions.php:943
     436#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     437#: includes/callbacks-actions.php:948
    434438msgid "ID"
    435439msgstr ""
     
    479483msgstr ""
    480484
    481 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     485#: includes/callbacks-actions.php:1060 includes/translations.php:34
    482486msgid "Last"
     487msgstr ""
     488
     489#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     490msgid "Last Name"
    483491msgstr ""
    484492
     
    509517msgstr ""
    510518
    511 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    512 #: includes/callbacks-actions.php:911
     519#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     520#: includes/callbacks-actions.php:914
    513521msgid "Mode"
    514522msgstr ""
     
    518526msgstr ""
    519527
    520 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     528#: includes/functions.php:1208 includes/callbacks-actions.php:949
    521529msgid "Name"
    522530msgstr ""
     
    558566msgstr ""
    559567
    560 #: includes/functions.php:1191
     568#: includes/functions.php:1205
    561569msgid "Number"
    562570msgstr ""
     
    592600msgstr ""
    593601
    594 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     602#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    595603msgid "Percentage"
    596604msgstr ""
     
    632640msgstr ""
    633641
    634 #: includes/class-tred-filtered-ld-group.php:145
     642#: includes/class-tred-filtered-ld-group.php:91
    635643msgid "Quizzes is not an array..."
    636644msgstr ""
     
    657665#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    658666#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    659 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    660 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    661 #: includes/callbacks-actions.php:1248
     667#: 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
    662670msgid "Security check"
    663671msgstr ""
    664672
    665 #: includes/functions.php:1309 includes/functions.php:1331
    666 #: includes/functions.php:1339 includes/translations.php:11
     673#: includes/functions.php:1323 includes/functions.php:1345
     674#: includes/functions.php:1353 includes/translations.php:11
    667675msgid "select"
    668676msgstr ""
     
    719727
    720728#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    721 #: includes/callbacks-actions.php:629
     729#: includes/callbacks-actions.php:628
    722730msgid "Starts"
    723731msgstr ""
     
    729737msgstr ""
    730738
    731 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     739#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    732740msgid "Status"
    733741msgstr ""
     
    737745msgstr ""
    738746
    739 #: includes/callbacks-actions.php:1265
     747#: includes/callbacks-actions.php:1272
    740748msgid "Student"
    741749msgstr ""
     
    747755#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    748756#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    749 #: includes/callbacks-actions.php:912
     757#: includes/callbacks-actions.php:915
    750758msgid "Students"
    751759msgstr ""
     
    846854msgstr ""
    847855
    848 #: includes/callbacks-actions.php:776
     856#: includes/callbacks-actions.php:779
    849857msgid "Times"
    850858msgstr ""
     
    854862msgstr ""
    855863
    856 #: includes/callbacks-actions.php:910
     864#: includes/callbacks-actions.php:913
    857865msgid "Title"
    858866msgstr ""
     
    868876msgstr ""
    869877
    870 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     878#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    871879msgid "Total Members"
    872880msgstr ""
    873881
    874 #: includes/callbacks-actions.php:1050
     882#: includes/callbacks-actions.php:1057
    875883msgid "Total Steps"
    876884msgstr ""
     
    881889msgstr "Total de alunos em grupos: %s"
    882890
    883 #: includes/functions.php:1197
     891#: includes/functions.php:1211
    884892msgid "Type"
    885893msgstr ""
     
    894902msgstr ""
    895903
    896 #: includes/functions.php:1315 includes/translations.php:155
     904#: includes/functions.php:1329 includes/translations.php:155
    897905msgid "user"
    898906msgstr ""
     
    906914msgstr ""
    907915
    908 #: includes/callbacks-actions.php:793
     916#: includes/callbacks-actions.php:796
    909917msgid "Users"
    910918msgstr ""
  • easy-dash-for-learndash/trunk/languages/learndash-easy-dash.pot

    r2969363 r2985066  
    44"Project-Id-Version: Easy Dash for LearnDash\n"
    55"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"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    129129msgstr ""
    130130
    131 #: includes/callbacks-actions.php:1097 includes/callbacks-actions.php:1142
     131#: includes/callbacks-actions.php:1104 includes/callbacks-actions.php:1149
    132132msgid "Associated Courses"
    133133msgstr ""
     
    179179msgstr ""
    180180
    181 #: includes/callbacks-actions.php:1051
     181#: includes/callbacks-actions.php:1058
    182182msgid "Completed"
    183183msgstr ""
    184184
    185 #: includes/callbacks-actions.php:1098 includes/callbacks-actions.php:1143
     185#: includes/callbacks-actions.php:1105 includes/callbacks-actions.php:1150
    186186msgid "Completed Courses"
    187187msgstr ""
    188188
    189 #: includes/callbacks-actions.php:696
     189#: includes/callbacks-actions.php:699
    190190msgid "Completed Steps"
    191191msgstr ""
     
    197197#: includes/callbacks-actions.php:99 includes/callbacks-actions.php:358
    198198#: includes/callbacks-actions.php:393 includes/callbacks-actions.php:423
    199 #: includes/callbacks-actions.php:638 includes/callbacks-actions.php:913
    200 #: includes/callbacks-actions.php:947
     199#: includes/callbacks-actions.php:637 includes/callbacks-actions.php:916
     200#: includes/callbacks-actions.php:954
    201201msgid "Completions"
    202202msgstr ""
     
    218218msgstr ""
    219219
    220 #: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1048
     220#: includes/callbacks-actions.php:484 includes/callbacks-actions.php:1055
    221221msgid "Course"
    222222msgstr ""
    223223
    224 #: includes/functions.php:1312 includes/translations.php:150
     224#: includes/functions.php:1326 includes/translations.php:150
    225225msgid "course"
    226226msgstr ""
     
    242242msgstr ""
    243243
    244 #: includes/callbacks-actions.php:946
     244#: includes/callbacks-actions.php:953
    245245msgid "Courses"
    246246msgstr ""
    247247
    248 #: includes/class-tred-filtered-ld-group.php:60
     248#: includes/class-tred-filtered-ld-group.php:64
    249249msgid "Courses is not an array..."
    250250msgstr ""
     
    265265msgstr ""
    266266
    267 #: includes/callbacks-actions.php:698
     267#: includes/callbacks-actions.php:701
    268268msgid "Days Spent"
    269269msgstr ""
     
    325325msgstr ""
    326326
    327 #: includes/functions.php:1296
     327#: includes/functions.php:1310
    328328msgid "Easy Dash for LearnDash - Filter Center"
    329329msgstr ""
     
    343343msgstr ""
    344344
    345 #: includes/callbacks-actions.php:419 includes/callbacks-actions.php:694
    346 #: includes/callbacks-actions.php:945
     345#: includes/callbacks-actions.php:419 includes/callbacks-actions.php:697
     346#: includes/callbacks-actions.php:952
    347347msgid "Email"
    348348msgstr ""
    349349
    350350#: includes/callbacks-actions.php:379 includes/callbacks-actions.php:421
    351 #: includes/callbacks-actions.php:620
     351#: includes/callbacks-actions.php:619
    352352msgid "Enrolls"
    353353msgstr ""
     
    381381msgstr ""
    382382
    383 #: includes/functions.php:1345 includes/translations.php:12
     383#: includes/callbacks-actions.php:695 includes/callbacks-actions.php:950
     384msgid "First Name"
     385msgstr ""
     386
     387#: includes/functions.php:1359 includes/translations.php:12
    384388msgid "go"
    385389msgstr ""
    386390
    387 #: includes/callbacks-actions.php:1095 includes/callbacks-actions.php:1140
     391#: includes/callbacks-actions.php:1102 includes/callbacks-actions.php:1147
    388392msgid "Group"
    389393msgstr ""
    390394
    391 #: includes/functions.php:1319 includes/translations.php:154
     395#: includes/functions.php:1333 includes/translations.php:154
    392396msgid "group"
    393397msgstr ""
    394398
    395 #: includes/class-tred-filtered-ld-group.php:160
     399#: includes/class-tred-filtered-ld-group.php:106
    396400msgid "Group admins is not an array..."
    397401msgstr ""
     
    418422msgstr ""
    419423
    420 #: includes/callbacks-actions.php:699 includes/callbacks-actions.php:1054
    421 #: includes/callbacks-actions.php:1099 includes/callbacks-actions.php:1144
     424#: includes/callbacks-actions.php:702 includes/callbacks-actions.php:1061
     425#: includes/callbacks-actions.php:1106 includes/callbacks-actions.php:1151
    422426msgid "Hours Spent"
    423427msgstr ""
     
    431435msgstr ""
    432436
    433 #: includes/callbacks-actions.php:693 includes/callbacks-actions.php:909
    434 #: includes/callbacks-actions.php:943
     437#: includes/callbacks-actions.php:694 includes/callbacks-actions.php:912
     438#: includes/callbacks-actions.php:948
    435439msgid "ID"
    436440msgstr ""
     
    480484msgstr ""
    481485
    482 #: includes/callbacks-actions.php:1053 includes/translations.php:34
     486#: includes/callbacks-actions.php:1060 includes/translations.php:34
    483487msgid "Last"
     488msgstr ""
     489
     490#: includes/callbacks-actions.php:696 includes/callbacks-actions.php:951
     491msgid "Last Name"
    484492msgstr ""
    485493
     
    510518msgstr ""
    511519
    512 #: includes/callbacks-actions.php:485 includes/callbacks-actions.php:754
    513 #: includes/callbacks-actions.php:911
     520#: includes/callbacks-actions.php:485 includes/callbacks-actions.php:757
     521#: includes/callbacks-actions.php:914
    514522msgid "Mode"
    515523msgstr ""
     
    519527msgstr ""
    520528
    521 #: includes/functions.php:1194 includes/callbacks-actions.php:944
     529#: includes/functions.php:1208 includes/callbacks-actions.php:949
    522530msgid "Name"
    523531msgstr ""
     
    559567msgstr ""
    560568
    561 #: includes/functions.php:1191
     569#: includes/functions.php:1205
    562570msgid "Number"
    563571msgstr ""
     
    593601msgstr ""
    594602
    595 #: includes/callbacks-actions.php:697 includes/callbacks-actions.php:1052
     603#: includes/callbacks-actions.php:700 includes/callbacks-actions.php:1059
    596604msgid "Percentage"
    597605msgstr ""
     
    633641msgstr ""
    634642
    635 #: includes/class-tred-filtered-ld-group.php:145
     643#: includes/class-tred-filtered-ld-group.php:91
    636644msgid "Quizzes is not an array..."
    637645msgstr ""
     
    658666#: includes/callbacks-actions.php:223 includes/callbacks-actions.php:308
    659667#: includes/callbacks-actions.php:445 includes/callbacks-actions.php:514
    660 #: includes/callbacks-actions.php:712 includes/callbacks-actions.php:962
    661 #: includes/callbacks-actions.php:1168 includes/callbacks-actions.php:1216
    662 #: includes/callbacks-actions.php:1248
     668#: 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
    663671msgid "Security check"
    664672msgstr ""
    665673
    666 #: includes/functions.php:1309 includes/functions.php:1331
    667 #: includes/functions.php:1339 includes/translations.php:11
     674#: includes/functions.php:1323 includes/functions.php:1345
     675#: includes/functions.php:1353 includes/translations.php:11
    668676msgid "select"
    669677msgstr ""
     
    720728
    721729#: includes/callbacks-actions.php:386 includes/callbacks-actions.php:422
    722 #: includes/callbacks-actions.php:629
     730#: includes/callbacks-actions.php:628
    723731msgid "Starts"
    724732msgstr ""
     
    730738msgstr ""
    731739
    732 #: includes/callbacks-actions.php:695 includes/callbacks-actions.php:1049
     740#: includes/callbacks-actions.php:698 includes/callbacks-actions.php:1056
    733741msgid "Status"
    734742msgstr ""
     
    738746msgstr ""
    739747
    740 #: includes/callbacks-actions.php:1265
     748#: includes/callbacks-actions.php:1272
    741749msgid "Student"
    742750msgstr ""
     
    748756#: includes/callbacks-actions.php:93 includes/callbacks-actions.php:201
    749757#: includes/callbacks-actions.php:260 includes/callbacks-actions.php:488
    750 #: includes/callbacks-actions.php:912
     758#: includes/callbacks-actions.php:915
    751759msgid "Students"
    752760msgstr ""
     
    847855msgstr ""
    848856
    849 #: includes/callbacks-actions.php:776
     857#: includes/callbacks-actions.php:779
    850858msgid "Times"
    851859msgstr ""
     
    855863msgstr ""
    856864
    857 #: includes/callbacks-actions.php:910
     865#: includes/callbacks-actions.php:913
    858866msgid "Title"
    859867msgstr ""
     
    869877msgstr ""
    870878
    871 #: includes/callbacks-actions.php:1096 includes/callbacks-actions.php:1141
     879#: includes/callbacks-actions.php:1103 includes/callbacks-actions.php:1148
    872880msgid "Total Members"
    873881msgstr ""
    874882
    875 #: includes/callbacks-actions.php:1050
     883#: includes/callbacks-actions.php:1057
    876884msgid "Total Steps"
    877885msgstr ""
     
    882890msgstr ""
    883891
    884 #: includes/functions.php:1197
     892#: includes/functions.php:1211
    885893msgid "Type"
    886894msgstr ""
     
    895903msgstr ""
    896904
    897 #: includes/functions.php:1315 includes/translations.php:155
     905#: includes/functions.php:1329 includes/translations.php:155
    898906msgid "user"
    899907msgstr ""
     
    907915msgstr ""
    908916
    909 #: includes/callbacks-actions.php:793
     917#: includes/callbacks-actions.php:796
    910918msgid "Users"
    911919msgstr ""
  • easy-dash-for-learndash/trunk/learndash-easy-dash.php

    r2969363 r2985066  
    66 * Author: Luis Rock
    77 * Author URI: https://wptrat.com/
    8  * Version: 2.4.0
     8 * Version: 2.4.1
    99 * Text Domain: learndash-easy-dash
    1010 * Domain Path: /languages
     
    2020    exit;
    2121
    22 define("TRED_VERSION", "2.4.0");
     22define("TRED_VERSION", "2.4.1");
    2323
    2424// Check if LearnDash is active. If not, deactivate...
     
    148148{
    149149
    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);
    152152    wp_register_script('datatables_js', plugins_url('assets/DataTables/datatables.min.js', __FILE__), ['jquery'], '', true);
    153153    wp_register_style('datatables_css', plugins_url('assets/DataTables/datatables.min.css', __FILE__));
     
    189189add_action('wp_loaded', 'tred_register_all_scripts_and_styles');
    190190
    191 
    192191//Scripts end styles
    193192function tred_enqueue_admin_script($hook)
     
    201200    wp_enqueue_style('tred_admin_css');
    202201    wp_enqueue_style('fontawsome');
     202    wp_enqueue_script('tred_chartjs');
    203203    wp_enqueue_script('tred_admin_js');
    204     wp_enqueue_script('chartjs');
    205204    wp_enqueue_script('notify_js');
    206205    wp_enqueue_style('datatables_css');
  • easy-dash-for-learndash/trunk/readme.txt

    r2969363 r2985066  
    33Tags: learndash, education, elearning, lms, learning
    44Requires at least: 5.0
    5 Tested up to: 6.3
     5Tested up to: 6.4
    66Requires PHP: 7.4
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8181
    8282== 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
    8388= 2.4.0 =
    8489* New: Filter groups and get users and courses stats
Note: See TracChangeset for help on using the changeset viewer.