mario-core 2.9.395-release → 2.9.397-feedback
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/containers/User/components/AssignStudentModal.d.ts +20 -0
- package/dist/containers/User/components/SwitchTeacherModal.d.ts +3 -0
- package/dist/containers/User/components/UploadCSVButton.d.ts +11 -0
- package/dist/containers/User/components/UserDeletedModal.d.ts +3 -0
- package/dist/containers/User/configs/utils.d.ts +8 -0
- package/dist/containers/User/hooks/useCSVImport.d.ts +38 -0
- package/dist/containers/User/hooks/useCSVImportTab.d.ts +44 -0
- package/dist/containers/User/hooks/useResendMail.d.ts +5 -0
- package/dist/containers/User/hooks/useUserDeletedList.d.ts +37 -0
- package/dist/containers/User/hooks/useUserDeletedModal.d.ts +14 -0
- package/dist/containers/User/views/CSVImport.d.ts +3 -0
- package/dist/containers/User/views/UserDeletedList.d.ts +3 -0
- package/dist/index.js +185 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +185 -5
- package/dist/index.modern.js.map +1 -1
- package/dist/services/csvImportService.d.ts +7 -0
- package/dist/services/csvService.d.ts +7 -0
- package/package.json +1 -1
- package/dist/services/weeklyQuestService.d.ts +0 -1
- package/dist/types/WeeklyQuest.d.ts +0 -37
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IStaffAssign, StudentAssign } from '../constants/types';
|
|
3
|
+
interface IProps {
|
|
4
|
+
openDetailModal: boolean;
|
|
5
|
+
onClose: Function;
|
|
6
|
+
selectedUser: StudentAssign;
|
|
7
|
+
staffBulkAssign: IStaffAssign;
|
|
8
|
+
teacherOptions: any[];
|
|
9
|
+
assistantOptions: any[];
|
|
10
|
+
counselorOptions: any[];
|
|
11
|
+
secondaryTeacherOptions: any[];
|
|
12
|
+
handleChangeTeacherBulk: Function;
|
|
13
|
+
handleChangeCounselorBulk: Function;
|
|
14
|
+
handleChangeStaffBulk: Function;
|
|
15
|
+
handleEditAssignForStudents: Function;
|
|
16
|
+
toggleCollapse: (index: number) => void;
|
|
17
|
+
activeIndex: number;
|
|
18
|
+
}
|
|
19
|
+
declare const AssignStudentModal: FC<IProps>;
|
|
20
|
+
export default AssignStudentModal;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
interface Props {
|
|
3
|
+
htmlFor: string;
|
|
4
|
+
isDisabled: boolean;
|
|
5
|
+
text: string;
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
onClick: Function;
|
|
8
|
+
isClassReflection?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const UploadCSVButton: FC<Props>;
|
|
11
|
+
export default UploadCSVButton;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare enum CSVType {
|
|
3
|
+
Students = "students",
|
|
4
|
+
Subjects = "subjects",
|
|
5
|
+
Grades = "grades",
|
|
6
|
+
Attendances = "attendances",
|
|
7
|
+
ClassReflection = "classReflection",
|
|
8
|
+
Others = "others",
|
|
9
|
+
AllUser = "allUser"
|
|
10
|
+
}
|
|
11
|
+
export interface Option {
|
|
12
|
+
label: string;
|
|
13
|
+
value: number;
|
|
14
|
+
}
|
|
15
|
+
declare const useCSVImport: () => {
|
|
16
|
+
isLoading: any;
|
|
17
|
+
id: string;
|
|
18
|
+
setType: import("react").Dispatch<import("react").SetStateAction<CSVType | null>>;
|
|
19
|
+
upload: (file: any) => Promise<void>;
|
|
20
|
+
initImportReflection: any;
|
|
21
|
+
setInitImportReflection: import("react").Dispatch<any>;
|
|
22
|
+
onConfirm: (values: any) => Promise<void>;
|
|
23
|
+
CSVType: typeof CSVType;
|
|
24
|
+
dataFile: any;
|
|
25
|
+
setDataFile: import("react").Dispatch<any>;
|
|
26
|
+
setArrStudent: import("react").Dispatch<any>;
|
|
27
|
+
arrStudent: any;
|
|
28
|
+
isCheckDomainIBS: boolean;
|
|
29
|
+
onChangeTeacher: (teacher: Option) => void;
|
|
30
|
+
uploadByTeacherId: (file: any) => Promise<void>;
|
|
31
|
+
setDataFileImportStudent: (dataFile: any) => void;
|
|
32
|
+
onUpLoadStudentFile: () => void;
|
|
33
|
+
defaultTeacher: number;
|
|
34
|
+
fileName: string;
|
|
35
|
+
onStudentSubmit: () => void;
|
|
36
|
+
downloadTemplateUser: () => Promise<void>;
|
|
37
|
+
};
|
|
38
|
+
export default useCSVImport;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare enum CSVType {
|
|
3
|
+
Students = "students",
|
|
4
|
+
Subjects = "subjects",
|
|
5
|
+
Grades = "grades",
|
|
6
|
+
Attendances = "attendances",
|
|
7
|
+
ClassReflection = "classReflection",
|
|
8
|
+
Others = "others",
|
|
9
|
+
AllUser = "allUser"
|
|
10
|
+
}
|
|
11
|
+
interface CSVImportButton {
|
|
12
|
+
text: string;
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
type: CSVType;
|
|
15
|
+
}
|
|
16
|
+
export interface Option {
|
|
17
|
+
label: string;
|
|
18
|
+
value: number;
|
|
19
|
+
}
|
|
20
|
+
declare const useCSVImportTab: () => {
|
|
21
|
+
isLoading: any;
|
|
22
|
+
buttons: CSVImportButton[];
|
|
23
|
+
id: string;
|
|
24
|
+
setType: import("react").Dispatch<import("react").SetStateAction<CSVType | null>>;
|
|
25
|
+
upload: (file: any) => Promise<void>;
|
|
26
|
+
initImportReflection: any;
|
|
27
|
+
setInitImportReflection: import("react").Dispatch<any>;
|
|
28
|
+
onConfirm: (values: any) => Promise<void>;
|
|
29
|
+
CSVType: typeof CSVType;
|
|
30
|
+
dataFile: any;
|
|
31
|
+
setDataFile: import("react").Dispatch<any>;
|
|
32
|
+
setArrStudent: import("react").Dispatch<any>;
|
|
33
|
+
arrStudent: any;
|
|
34
|
+
isCheckDomainIBS: boolean;
|
|
35
|
+
onChangeTeacher: (teacher: Option) => void;
|
|
36
|
+
uploadByTeacherId: (file: any) => Promise<void>;
|
|
37
|
+
setDataFileImportStudent: (dataFile: any) => void;
|
|
38
|
+
onUpLoadStudentFile: () => void;
|
|
39
|
+
defaultTeacher: number;
|
|
40
|
+
fileName: string;
|
|
41
|
+
onStudentSubmit: () => void;
|
|
42
|
+
downloadTemplateUser: () => Promise<void>;
|
|
43
|
+
};
|
|
44
|
+
export default useCSVImportTab;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare type USER_CHOICE = {
|
|
3
|
+
id: string;
|
|
4
|
+
firstName: string;
|
|
5
|
+
lastName: string;
|
|
6
|
+
email: string;
|
|
7
|
+
fullName: string;
|
|
8
|
+
roles: string[];
|
|
9
|
+
};
|
|
10
|
+
export declare const initialUserChoice: {
|
|
11
|
+
id: string;
|
|
12
|
+
firstName: string;
|
|
13
|
+
lastName: string;
|
|
14
|
+
email: string;
|
|
15
|
+
fullName: string;
|
|
16
|
+
roles: never[];
|
|
17
|
+
};
|
|
18
|
+
declare const useUserDeletedList: () => {
|
|
19
|
+
userList: USER_CHOICE[];
|
|
20
|
+
totalItems: number;
|
|
21
|
+
filters: import("../../..").Filter;
|
|
22
|
+
getData: () => Promise<void>;
|
|
23
|
+
removeData: (id: string) => void;
|
|
24
|
+
changeFilters: (updatedFilters: any) => void;
|
|
25
|
+
modal: import("react").MutableRefObject<any>;
|
|
26
|
+
openModal: () => void;
|
|
27
|
+
userChoiced: USER_CHOICE;
|
|
28
|
+
setUserChoiced: import("react").Dispatch<import("react").SetStateAction<USER_CHOICE>>;
|
|
29
|
+
options: {
|
|
30
|
+
label: string;
|
|
31
|
+
value: any;
|
|
32
|
+
}[];
|
|
33
|
+
teacherChangeId: string;
|
|
34
|
+
setTeacherChangeId: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
35
|
+
resetData: () => void;
|
|
36
|
+
};
|
|
37
|
+
export default useUserDeletedList;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { USER_CHOICE } from "./useUserDeletedList";
|
|
3
|
+
declare const useUserDeletedModal: () => {
|
|
4
|
+
userChoiced: USER_CHOICE;
|
|
5
|
+
setUserChoiced: import("react").Dispatch<import("react").SetStateAction<USER_CHOICE>>;
|
|
6
|
+
teacherList: never[];
|
|
7
|
+
options: {
|
|
8
|
+
label: string;
|
|
9
|
+
value: any;
|
|
10
|
+
}[];
|
|
11
|
+
setTeacherChangeId: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
12
|
+
teacherChangeId: string;
|
|
13
|
+
};
|
|
14
|
+
export default useUserDeletedModal;
|
package/dist/index.js
CHANGED
|
@@ -224,6 +224,7 @@ var level = "Level";
|
|
|
224
224
|
var use_for = "Use for";
|
|
225
225
|
var admin_training = "Admin training";
|
|
226
226
|
var teacher_training = "Teacher training";
|
|
227
|
+
var counselor_training = "Counselor training";
|
|
227
228
|
var created_time = "Create time";
|
|
228
229
|
var total_reflections = "Total Reflections";
|
|
229
230
|
var student_training = "Student training";
|
|
@@ -2079,9 +2080,26 @@ var what_s_on_your_mind = "What's on your mind?";
|
|
|
2079
2080
|
var these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above = "These are the last 5 comments from recent check-ins, filtered by the selected criteria above.";
|
|
2080
2081
|
var view_all_responses = "View All Responses";
|
|
2081
2082
|
var are_not_ready_to_learn = "are not ready to learn";
|
|
2083
|
+
var not_ready_to_learn = "Not ready to learn";
|
|
2082
2084
|
var students_who_are_not_ready_to_learn = "Students who are not ready to learn";
|
|
2083
2085
|
var students_average_score = "Student’s average score";
|
|
2084
2086
|
var the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins = "The data presented in this chart reflects the average from the student’s check-ins.";
|
|
2087
|
+
var number_of_students_with_at_least_one_very_low_metric = "Number of students with at least one very low metric";
|
|
2088
|
+
var this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40 = "This flags if the student is not ready to learn or has at least one success, or readiness to learn metrics under 40%";
|
|
2089
|
+
var of_students_have_concerned_metrics = "of students have concerned metrics";
|
|
2090
|
+
var have_metrics_40 = "have metrics <40%";
|
|
2091
|
+
var all_students_have_good_metrics = "All students have good metrics";
|
|
2092
|
+
var students_with_at_least_one_concerned_metric = "Students with at least One Concerned metric ({{number}})";
|
|
2093
|
+
var concerned_metrics = "Concerned metric(s)";
|
|
2094
|
+
var check_in_date = "Check-in Date";
|
|
2095
|
+
var veracross_setting = "Veracross Setting";
|
|
2096
|
+
var time_vera_cross_sync_hh = "Time Veracross Sync (HH)";
|
|
2097
|
+
var import_vera_cross = "Import Veracross";
|
|
2098
|
+
var open_field_questions = "Open Field Questions";
|
|
2099
|
+
var open_apply_setting = "Open Apply Setting";
|
|
2100
|
+
var time_open_apply_sync_hh = "Time Open Apply Sync (HH)";
|
|
2101
|
+
var import_open_apply = "Import Open Apply";
|
|
2102
|
+
var conversations = "Conversations";
|
|
2085
2103
|
var lang_us = {
|
|
2086
2104
|
dashboard: dashboard,
|
|
2087
2105
|
user: user,
|
|
@@ -2268,6 +2286,7 @@ var lang_us = {
|
|
|
2268
2286
|
use_for: use_for,
|
|
2269
2287
|
admin_training: admin_training,
|
|
2270
2288
|
teacher_training: teacher_training,
|
|
2289
|
+
counselor_training: counselor_training,
|
|
2271
2290
|
created_time: created_time,
|
|
2272
2291
|
total_reflections: total_reflections,
|
|
2273
2292
|
student_training: student_training,
|
|
@@ -4168,9 +4187,26 @@ var lang_us = {
|
|
|
4168
4187
|
these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above: these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above,
|
|
4169
4188
|
view_all_responses: view_all_responses,
|
|
4170
4189
|
are_not_ready_to_learn: are_not_ready_to_learn,
|
|
4190
|
+
not_ready_to_learn: not_ready_to_learn,
|
|
4171
4191
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn,
|
|
4172
4192
|
students_average_score: students_average_score,
|
|
4173
|
-
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins
|
|
4193
|
+
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins,
|
|
4194
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric,
|
|
4195
|
+
this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40: this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40,
|
|
4196
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics,
|
|
4197
|
+
have_metrics_40: have_metrics_40,
|
|
4198
|
+
all_students_have_good_metrics: all_students_have_good_metrics,
|
|
4199
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric,
|
|
4200
|
+
concerned_metrics: concerned_metrics,
|
|
4201
|
+
check_in_date: check_in_date,
|
|
4202
|
+
veracross_setting: veracross_setting,
|
|
4203
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh,
|
|
4204
|
+
import_vera_cross: import_vera_cross,
|
|
4205
|
+
open_field_questions: open_field_questions,
|
|
4206
|
+
open_apply_setting: open_apply_setting,
|
|
4207
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh,
|
|
4208
|
+
import_open_apply: import_open_apply,
|
|
4209
|
+
conversations: conversations
|
|
4174
4210
|
};
|
|
4175
4211
|
|
|
4176
4212
|
var dashboard$1 = "Dashboard";
|
|
@@ -4357,6 +4393,7 @@ var level$1 = "Level";
|
|
|
4357
4393
|
var use_for$1 = "Use for";
|
|
4358
4394
|
var admin_training$1 = "Admin training";
|
|
4359
4395
|
var teacher_training$1 = "Teacher training";
|
|
4396
|
+
var counselor_training$1 = "Counselor training";
|
|
4360
4397
|
var created_time$1 = "Create time";
|
|
4361
4398
|
var total_reflections$1 = "Total Reflections";
|
|
4362
4399
|
var student_training$1 = "Student training";
|
|
@@ -6212,9 +6249,26 @@ var what_s_on_your_mind$1 = "What's on your mind?";
|
|
|
6212
6249
|
var these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$1 = "These are the last 5 comments from recent check-ins, filtered by the selected criteria above.";
|
|
6213
6250
|
var view_all_responses$1 = "View All Responses";
|
|
6214
6251
|
var are_not_ready_to_learn$1 = "are not ready to learn";
|
|
6252
|
+
var not_ready_to_learn$1 = "Not ready to learn";
|
|
6215
6253
|
var students_who_are_not_ready_to_learn$1 = "Students who are not ready to learn";
|
|
6216
6254
|
var students_average_score$1 = "Student’s average score";
|
|
6217
6255
|
var the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$1 = "The data presented in this chart reflects the average from the student’s check-ins.";
|
|
6256
|
+
var number_of_students_with_at_least_one_very_low_metric$1 = "Number of students with at least one very low metric";
|
|
6257
|
+
var this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$1 = "This flags if the student is not ready to learn or has at least one success, or readiness to learn metrics under 40%";
|
|
6258
|
+
var of_students_have_concerned_metrics$1 = "of students have concerned metrics";
|
|
6259
|
+
var have_metrics_40$1 = "have metrics <40%";
|
|
6260
|
+
var all_students_have_good_metrics$1 = "All students have good metrics";
|
|
6261
|
+
var students_with_at_least_one_concerned_metric$1 = "Students with at least One Concerned metric ({{number}})";
|
|
6262
|
+
var concerned_metrics$1 = "Concerned metric(s)";
|
|
6263
|
+
var check_in_date$1 = "Check-in Date";
|
|
6264
|
+
var veracross_setting$1 = "Veracross Setting";
|
|
6265
|
+
var time_vera_cross_sync_hh$1 = "Time Veracross Sync (HH)";
|
|
6266
|
+
var import_vera_cross$1 = "Import Veracross";
|
|
6267
|
+
var open_field_questions$1 = "Open Field Questions";
|
|
6268
|
+
var open_apply_setting$1 = "Open Apply Setting";
|
|
6269
|
+
var time_open_apply_sync_hh$1 = "Time Open Apply Sync (HH)";
|
|
6270
|
+
var import_open_apply$1 = "Import Open Apply";
|
|
6271
|
+
var conversations$1 = "Conversations";
|
|
6218
6272
|
var lang_uk = {
|
|
6219
6273
|
dashboard: dashboard$1,
|
|
6220
6274
|
user: user$1,
|
|
@@ -6401,6 +6455,7 @@ var lang_uk = {
|
|
|
6401
6455
|
use_for: use_for$1,
|
|
6402
6456
|
admin_training: admin_training$1,
|
|
6403
6457
|
teacher_training: teacher_training$1,
|
|
6458
|
+
counselor_training: counselor_training$1,
|
|
6404
6459
|
created_time: created_time$1,
|
|
6405
6460
|
total_reflections: total_reflections$1,
|
|
6406
6461
|
student_training: student_training$1,
|
|
@@ -8301,9 +8356,26 @@ var lang_uk = {
|
|
|
8301
8356
|
these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above: these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$1,
|
|
8302
8357
|
view_all_responses: view_all_responses$1,
|
|
8303
8358
|
are_not_ready_to_learn: are_not_ready_to_learn$1,
|
|
8359
|
+
not_ready_to_learn: not_ready_to_learn$1,
|
|
8304
8360
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$1,
|
|
8305
8361
|
students_average_score: students_average_score$1,
|
|
8306
|
-
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$1
|
|
8362
|
+
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$1,
|
|
8363
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$1,
|
|
8364
|
+
this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40: this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$1,
|
|
8365
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$1,
|
|
8366
|
+
have_metrics_40: have_metrics_40$1,
|
|
8367
|
+
all_students_have_good_metrics: all_students_have_good_metrics$1,
|
|
8368
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$1,
|
|
8369
|
+
concerned_metrics: concerned_metrics$1,
|
|
8370
|
+
check_in_date: check_in_date$1,
|
|
8371
|
+
veracross_setting: veracross_setting$1,
|
|
8372
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$1,
|
|
8373
|
+
import_vera_cross: import_vera_cross$1,
|
|
8374
|
+
open_field_questions: open_field_questions$1,
|
|
8375
|
+
open_apply_setting: open_apply_setting$1,
|
|
8376
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$1,
|
|
8377
|
+
import_open_apply: import_open_apply$1,
|
|
8378
|
+
conversations: conversations$1
|
|
8307
8379
|
};
|
|
8308
8380
|
|
|
8309
8381
|
var dashboard$2 = "لوحة المعلومات";
|
|
@@ -8489,6 +8561,7 @@ var level$2 = "المستوى";
|
|
|
8489
8561
|
var use_for$2 = "للاستخدام من أجل";
|
|
8490
8562
|
var admin_training$2 = "تدريب المدراء";
|
|
8491
8563
|
var teacher_training$2 = "تدريب المعلمين";
|
|
8564
|
+
var counselor_training$2 = "تدريب المستشارين";
|
|
8492
8565
|
var created_time$2 = "تخصيص الوقت";
|
|
8493
8566
|
var total_reflections$2 = "إجمالي الأفكار";
|
|
8494
8567
|
var student_training$2 = "تدريب الطلبة";
|
|
@@ -10375,9 +10448,26 @@ var what_s_on_your_mind$2 = "What's on your mind?";
|
|
|
10375
10448
|
var these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$2 = "These are the last 5 comments from recent check-ins, filtered by the selected criteria above.";
|
|
10376
10449
|
var view_all_responses$2 = "View All Responses";
|
|
10377
10450
|
var are_not_ready_to_learn$2 = "are not ready to learn";
|
|
10451
|
+
var not_ready_to_learn$2 = "Not ready to learn";
|
|
10378
10452
|
var students_who_are_not_ready_to_learn$2 = "Students who are not ready to learn";
|
|
10379
10453
|
var students_average_score$2 = "Student’s average score";
|
|
10380
10454
|
var the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$2 = "The data presented in this chart reflects the average from the student’s check-ins.";
|
|
10455
|
+
var number_of_students_with_at_least_one_very_low_metric$2 = "Number of students with at least one very low metric";
|
|
10456
|
+
var this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$2 = "This flags if the student is not ready to learn or has at least one success, or readiness to learn metrics under 40%";
|
|
10457
|
+
var of_students_have_concerned_metrics$2 = "of students have concerned metrics";
|
|
10458
|
+
var have_metrics_40$2 = "have metrics <40%";
|
|
10459
|
+
var all_students_have_good_metrics$2 = "All students have good metrics";
|
|
10460
|
+
var students_with_at_least_one_concerned_metric$2 = "Students with at least One Concerned metric ({{number}})";
|
|
10461
|
+
var concerned_metrics$2 = "Concerned metric(s)";
|
|
10462
|
+
var check_in_date$2 = "Check-in Date";
|
|
10463
|
+
var veracross_setting$2 = "Veracross Setting";
|
|
10464
|
+
var time_vera_cross_sync_hh$2 = "Time Veracross Sync (HH)";
|
|
10465
|
+
var import_vera_cross$2 = "Import Veracross";
|
|
10466
|
+
var open_field_questions$2 = "Open Field Questions";
|
|
10467
|
+
var open_apply_setting$2 = "Open Apply Setting";
|
|
10468
|
+
var time_open_apply_sync_hh$2 = "Time Open Apply Sync (HH)";
|
|
10469
|
+
var import_open_apply$2 = "Import Open Apply";
|
|
10470
|
+
var conversations$2 = "Conversations";
|
|
10381
10471
|
var lang_ar = {
|
|
10382
10472
|
dashboard: dashboard$2,
|
|
10383
10473
|
user: user$2,
|
|
@@ -10563,6 +10653,7 @@ var lang_ar = {
|
|
|
10563
10653
|
use_for: use_for$2,
|
|
10564
10654
|
admin_training: admin_training$2,
|
|
10565
10655
|
teacher_training: teacher_training$2,
|
|
10656
|
+
counselor_training: counselor_training$2,
|
|
10566
10657
|
created_time: created_time$2,
|
|
10567
10658
|
total_reflections: total_reflections$2,
|
|
10568
10659
|
student_training: student_training$2,
|
|
@@ -12496,9 +12587,26 @@ var lang_ar = {
|
|
|
12496
12587
|
these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above: these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$2,
|
|
12497
12588
|
view_all_responses: view_all_responses$2,
|
|
12498
12589
|
are_not_ready_to_learn: are_not_ready_to_learn$2,
|
|
12590
|
+
not_ready_to_learn: not_ready_to_learn$2,
|
|
12499
12591
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$2,
|
|
12500
12592
|
students_average_score: students_average_score$2,
|
|
12501
|
-
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$2
|
|
12593
|
+
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$2,
|
|
12594
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$2,
|
|
12595
|
+
this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40: this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$2,
|
|
12596
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$2,
|
|
12597
|
+
have_metrics_40: have_metrics_40$2,
|
|
12598
|
+
all_students_have_good_metrics: all_students_have_good_metrics$2,
|
|
12599
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$2,
|
|
12600
|
+
concerned_metrics: concerned_metrics$2,
|
|
12601
|
+
check_in_date: check_in_date$2,
|
|
12602
|
+
veracross_setting: veracross_setting$2,
|
|
12603
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$2,
|
|
12604
|
+
import_vera_cross: import_vera_cross$2,
|
|
12605
|
+
open_field_questions: open_field_questions$2,
|
|
12606
|
+
open_apply_setting: open_apply_setting$2,
|
|
12607
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$2,
|
|
12608
|
+
import_open_apply: import_open_apply$2,
|
|
12609
|
+
conversations: conversations$2
|
|
12502
12610
|
};
|
|
12503
12611
|
|
|
12504
12612
|
var dashboard$3 = "Cuadro de mandos";
|
|
@@ -12684,6 +12792,7 @@ var level$3 = "Nivel";
|
|
|
12684
12792
|
var use_for$3 = "Utilizar para";
|
|
12685
12793
|
var admin_training$3 = "Formación de administradores";
|
|
12686
12794
|
var teacher_training$3 = "Formación de profesores";
|
|
12795
|
+
var counselor_training$3 = "Formación de consejeros";
|
|
12687
12796
|
var created_time$3 = "Crear tiempo";
|
|
12688
12797
|
var total_reflections$3 = "Total Reflexiones";
|
|
12689
12798
|
var student_training$3 = "Formación de alumnos";
|
|
@@ -14570,9 +14679,26 @@ var what_s_on_your_mind$3 = "What's on your mind?";
|
|
|
14570
14679
|
var these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$3 = "These are the last 5 comments from recent check-ins, filtered by the selected criteria above.";
|
|
14571
14680
|
var view_all_responses$3 = "View All Responses";
|
|
14572
14681
|
var are_not_ready_to_learn$3 = "are not ready to learn";
|
|
14682
|
+
var not_ready_to_learn$3 = "Not ready to learn";
|
|
14573
14683
|
var students_who_are_not_ready_to_learn$3 = "Students who are not ready to learn";
|
|
14574
14684
|
var students_average_score$3 = "Student’s average score";
|
|
14575
14685
|
var the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$3 = "The data presented in this chart reflects the average from the student’s check-ins.";
|
|
14686
|
+
var number_of_students_with_at_least_one_very_low_metric$3 = "Number of students with at least one very low metric";
|
|
14687
|
+
var this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$3 = "This flags if the student is not ready to learn or has at least one success, or readiness to learn metrics under 40%";
|
|
14688
|
+
var of_students_have_concerned_metrics$3 = "of students have concerned metrics";
|
|
14689
|
+
var have_metrics_40$3 = "have metrics <40%";
|
|
14690
|
+
var all_students_have_good_metrics$3 = "All students have good metrics";
|
|
14691
|
+
var students_with_at_least_one_concerned_metric$3 = "Students with at least One Concerned metric ({{number}})";
|
|
14692
|
+
var concerned_metrics$3 = "Concerned metric(s)";
|
|
14693
|
+
var check_in_date$3 = "Check-in Date";
|
|
14694
|
+
var veracross_setting$3 = "Veracross Setting";
|
|
14695
|
+
var time_vera_cross_sync_hh$3 = "Time Veracross Sync (HH)";
|
|
14696
|
+
var import_vera_cross$3 = "Import Veracross";
|
|
14697
|
+
var open_field_questions$3 = "Open Field Questions";
|
|
14698
|
+
var open_apply_setting$3 = "Open Apply Setting";
|
|
14699
|
+
var time_open_apply_sync_hh$3 = "Time Open Apply Sync (HH)";
|
|
14700
|
+
var import_open_apply$3 = "Import Open Apply";
|
|
14701
|
+
var conversations$3 = "Conversations";
|
|
14576
14702
|
var lang_es = {
|
|
14577
14703
|
dashboard: dashboard$3,
|
|
14578
14704
|
user: user$3,
|
|
@@ -14758,6 +14884,7 @@ var lang_es = {
|
|
|
14758
14884
|
use_for: use_for$3,
|
|
14759
14885
|
admin_training: admin_training$3,
|
|
14760
14886
|
teacher_training: teacher_training$3,
|
|
14887
|
+
counselor_training: counselor_training$3,
|
|
14761
14888
|
created_time: created_time$3,
|
|
14762
14889
|
total_reflections: total_reflections$3,
|
|
14763
14890
|
student_training: student_training$3,
|
|
@@ -16691,9 +16818,26 @@ var lang_es = {
|
|
|
16691
16818
|
these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above: these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$3,
|
|
16692
16819
|
view_all_responses: view_all_responses$3,
|
|
16693
16820
|
are_not_ready_to_learn: are_not_ready_to_learn$3,
|
|
16821
|
+
not_ready_to_learn: not_ready_to_learn$3,
|
|
16694
16822
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$3,
|
|
16695
16823
|
students_average_score: students_average_score$3,
|
|
16696
|
-
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$3
|
|
16824
|
+
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$3,
|
|
16825
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$3,
|
|
16826
|
+
this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40: this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$3,
|
|
16827
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$3,
|
|
16828
|
+
have_metrics_40: have_metrics_40$3,
|
|
16829
|
+
all_students_have_good_metrics: all_students_have_good_metrics$3,
|
|
16830
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$3,
|
|
16831
|
+
concerned_metrics: concerned_metrics$3,
|
|
16832
|
+
check_in_date: check_in_date$3,
|
|
16833
|
+
veracross_setting: veracross_setting$3,
|
|
16834
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$3,
|
|
16835
|
+
import_vera_cross: import_vera_cross$3,
|
|
16836
|
+
open_field_questions: open_field_questions$3,
|
|
16837
|
+
open_apply_setting: open_apply_setting$3,
|
|
16838
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$3,
|
|
16839
|
+
import_open_apply: import_open_apply$3,
|
|
16840
|
+
conversations: conversations$3
|
|
16697
16841
|
};
|
|
16698
16842
|
|
|
16699
16843
|
var dashboard$4 = "仪表板";
|
|
@@ -16879,6 +17023,7 @@ var level$4 = "级别";
|
|
|
16879
17023
|
var use_for$4 = "用途";
|
|
16880
17024
|
var admin_training$4 = "管理员培训";
|
|
16881
17025
|
var teacher_training$4 = "教师培训";
|
|
17026
|
+
var counselor_training$4 = "辅导员培训";
|
|
16882
17027
|
var created_time$4 = "创建时间";
|
|
16883
17028
|
var total_reflections$4 = "总反思";
|
|
16884
17029
|
var student_training$4 = "学生培训";
|
|
@@ -18765,9 +18910,26 @@ var what_s_on_your_mind$4 = "What's on your mind?";
|
|
|
18765
18910
|
var these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$4 = "These are the last 5 comments from recent check-ins, filtered by the selected criteria above.";
|
|
18766
18911
|
var view_all_responses$4 = "View All Responses";
|
|
18767
18912
|
var are_not_ready_to_learn$4 = "are not ready to learn";
|
|
18913
|
+
var not_ready_to_learn$4 = "Not ready to learn";
|
|
18768
18914
|
var students_who_are_not_ready_to_learn$4 = "Students who are not ready to learn";
|
|
18769
18915
|
var students_average_score$4 = "Student’s average score";
|
|
18770
18916
|
var the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$4 = "The data presented in this chart reflects the average from the student’s check-ins.";
|
|
18917
|
+
var number_of_students_with_at_least_one_very_low_metric$4 = "Number of students with at least one very low metric";
|
|
18918
|
+
var this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$4 = "This flags if the student is not ready to learn or has at least one success, or readiness to learn metrics under 40%";
|
|
18919
|
+
var of_students_have_concerned_metrics$4 = "of students have concerned metrics";
|
|
18920
|
+
var have_metrics_40$4 = "have metrics <40%";
|
|
18921
|
+
var all_students_have_good_metrics$4 = "All students have good metrics";
|
|
18922
|
+
var students_with_at_least_one_concerned_metric$4 = "Students with at least One Concerned metric ({{number}})";
|
|
18923
|
+
var concerned_metrics$4 = "Concerned metric(s)";
|
|
18924
|
+
var check_in_date$4 = "Check-in Date";
|
|
18925
|
+
var veracross_setting$4 = "Veracross Setting";
|
|
18926
|
+
var time_vera_cross_sync_hh$4 = "Time Veracross Sync (HH)";
|
|
18927
|
+
var import_vera_cross$4 = "Import Veracross";
|
|
18928
|
+
var open_field_questions$4 = "Open Field Questions";
|
|
18929
|
+
var open_apply_setting$4 = "Open Apply Setting";
|
|
18930
|
+
var time_open_apply_sync_hh$4 = "Time Open Apply Sync (HH)";
|
|
18931
|
+
var import_open_apply$4 = "Import Open Apply";
|
|
18932
|
+
var conversations$4 = "Conversations";
|
|
18771
18933
|
var lang_zh = {
|
|
18772
18934
|
dashboard: dashboard$4,
|
|
18773
18935
|
user: user$4,
|
|
@@ -18953,6 +19115,7 @@ var lang_zh = {
|
|
|
18953
19115
|
use_for: use_for$4,
|
|
18954
19116
|
admin_training: admin_training$4,
|
|
18955
19117
|
teacher_training: teacher_training$4,
|
|
19118
|
+
counselor_training: counselor_training$4,
|
|
18956
19119
|
created_time: created_time$4,
|
|
18957
19120
|
total_reflections: total_reflections$4,
|
|
18958
19121
|
student_training: student_training$4,
|
|
@@ -20886,9 +21049,26 @@ var lang_zh = {
|
|
|
20886
21049
|
these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above: these_are_the_last_5_comments_from_recent_check_ins_filtered_by_the_selected_criteria_above$4,
|
|
20887
21050
|
view_all_responses: view_all_responses$4,
|
|
20888
21051
|
are_not_ready_to_learn: are_not_ready_to_learn$4,
|
|
21052
|
+
not_ready_to_learn: not_ready_to_learn$4,
|
|
20889
21053
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$4,
|
|
20890
21054
|
students_average_score: students_average_score$4,
|
|
20891
|
-
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$4
|
|
21055
|
+
the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins: the_data_presented_in_this_chart_reflects_the_average_from_the_student_check_ins$4,
|
|
21056
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$4,
|
|
21057
|
+
this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40: this_flags_if_the_student_is_not_ready_to_learn_or_has_at_least_one_success_or_readiness_to_learn_metrics_under_40$4,
|
|
21058
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$4,
|
|
21059
|
+
have_metrics_40: have_metrics_40$4,
|
|
21060
|
+
all_students_have_good_metrics: all_students_have_good_metrics$4,
|
|
21061
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$4,
|
|
21062
|
+
concerned_metrics: concerned_metrics$4,
|
|
21063
|
+
check_in_date: check_in_date$4,
|
|
21064
|
+
veracross_setting: veracross_setting$4,
|
|
21065
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$4,
|
|
21066
|
+
import_vera_cross: import_vera_cross$4,
|
|
21067
|
+
open_field_questions: open_field_questions$4,
|
|
21068
|
+
open_apply_setting: open_apply_setting$4,
|
|
21069
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$4,
|
|
21070
|
+
import_open_apply: import_open_apply$4,
|
|
21071
|
+
conversations: conversations$4
|
|
20892
21072
|
};
|
|
20893
21073
|
|
|
20894
21074
|
var TINY_MCE_API_KEY = "htqausuofrnali3nh9ivmlpq6v415o0tv2qikpg39bqf4pnk";
|