mario-core 2.9.395-release → 2.9.396-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 +175 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +175 -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,25 @@ 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";
|
|
2085
2102
|
var lang_us = {
|
|
2086
2103
|
dashboard: dashboard,
|
|
2087
2104
|
user: user,
|
|
@@ -2268,6 +2285,7 @@ var lang_us = {
|
|
|
2268
2285
|
use_for: use_for,
|
|
2269
2286
|
admin_training: admin_training,
|
|
2270
2287
|
teacher_training: teacher_training,
|
|
2288
|
+
counselor_training: counselor_training,
|
|
2271
2289
|
created_time: created_time,
|
|
2272
2290
|
total_reflections: total_reflections,
|
|
2273
2291
|
student_training: student_training,
|
|
@@ -4168,9 +4186,25 @@ var lang_us = {
|
|
|
4168
4186
|
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
4187
|
view_all_responses: view_all_responses,
|
|
4170
4188
|
are_not_ready_to_learn: are_not_ready_to_learn,
|
|
4189
|
+
not_ready_to_learn: not_ready_to_learn,
|
|
4171
4190
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn,
|
|
4172
4191
|
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
|
|
4192
|
+
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
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric,
|
|
4194
|
+
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,
|
|
4195
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics,
|
|
4196
|
+
have_metrics_40: have_metrics_40,
|
|
4197
|
+
all_students_have_good_metrics: all_students_have_good_metrics,
|
|
4198
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric,
|
|
4199
|
+
concerned_metrics: concerned_metrics,
|
|
4200
|
+
check_in_date: check_in_date,
|
|
4201
|
+
veracross_setting: veracross_setting,
|
|
4202
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh,
|
|
4203
|
+
import_vera_cross: import_vera_cross,
|
|
4204
|
+
open_field_questions: open_field_questions,
|
|
4205
|
+
open_apply_setting: open_apply_setting,
|
|
4206
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh,
|
|
4207
|
+
import_open_apply: import_open_apply
|
|
4174
4208
|
};
|
|
4175
4209
|
|
|
4176
4210
|
var dashboard$1 = "Dashboard";
|
|
@@ -4357,6 +4391,7 @@ var level$1 = "Level";
|
|
|
4357
4391
|
var use_for$1 = "Use for";
|
|
4358
4392
|
var admin_training$1 = "Admin training";
|
|
4359
4393
|
var teacher_training$1 = "Teacher training";
|
|
4394
|
+
var counselor_training$1 = "Counselor training";
|
|
4360
4395
|
var created_time$1 = "Create time";
|
|
4361
4396
|
var total_reflections$1 = "Total Reflections";
|
|
4362
4397
|
var student_training$1 = "Student training";
|
|
@@ -6212,9 +6247,25 @@ var what_s_on_your_mind$1 = "What's on your mind?";
|
|
|
6212
6247
|
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
6248
|
var view_all_responses$1 = "View All Responses";
|
|
6214
6249
|
var are_not_ready_to_learn$1 = "are not ready to learn";
|
|
6250
|
+
var not_ready_to_learn$1 = "Not ready to learn";
|
|
6215
6251
|
var students_who_are_not_ready_to_learn$1 = "Students who are not ready to learn";
|
|
6216
6252
|
var students_average_score$1 = "Student’s average score";
|
|
6217
6253
|
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.";
|
|
6254
|
+
var number_of_students_with_at_least_one_very_low_metric$1 = "Number of students with at least one very low metric";
|
|
6255
|
+
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%";
|
|
6256
|
+
var of_students_have_concerned_metrics$1 = "of students have concerned metrics";
|
|
6257
|
+
var have_metrics_40$1 = "have metrics <40%";
|
|
6258
|
+
var all_students_have_good_metrics$1 = "All students have good metrics";
|
|
6259
|
+
var students_with_at_least_one_concerned_metric$1 = "Students with at least One Concerned metric ({{number}})";
|
|
6260
|
+
var concerned_metrics$1 = "Concerned metric(s)";
|
|
6261
|
+
var check_in_date$1 = "Check-in Date";
|
|
6262
|
+
var veracross_setting$1 = "Veracross Setting";
|
|
6263
|
+
var time_vera_cross_sync_hh$1 = "Time Veracross Sync (HH)";
|
|
6264
|
+
var import_vera_cross$1 = "Import Veracross";
|
|
6265
|
+
var open_field_questions$1 = "Open Field Questions";
|
|
6266
|
+
var open_apply_setting$1 = "Open Apply Setting";
|
|
6267
|
+
var time_open_apply_sync_hh$1 = "Time Open Apply Sync (HH)";
|
|
6268
|
+
var import_open_apply$1 = "Import Open Apply";
|
|
6218
6269
|
var lang_uk = {
|
|
6219
6270
|
dashboard: dashboard$1,
|
|
6220
6271
|
user: user$1,
|
|
@@ -6401,6 +6452,7 @@ var lang_uk = {
|
|
|
6401
6452
|
use_for: use_for$1,
|
|
6402
6453
|
admin_training: admin_training$1,
|
|
6403
6454
|
teacher_training: teacher_training$1,
|
|
6455
|
+
counselor_training: counselor_training$1,
|
|
6404
6456
|
created_time: created_time$1,
|
|
6405
6457
|
total_reflections: total_reflections$1,
|
|
6406
6458
|
student_training: student_training$1,
|
|
@@ -8301,9 +8353,25 @@ var lang_uk = {
|
|
|
8301
8353
|
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
8354
|
view_all_responses: view_all_responses$1,
|
|
8303
8355
|
are_not_ready_to_learn: are_not_ready_to_learn$1,
|
|
8356
|
+
not_ready_to_learn: not_ready_to_learn$1,
|
|
8304
8357
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$1,
|
|
8305
8358
|
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
|
|
8359
|
+
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,
|
|
8360
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$1,
|
|
8361
|
+
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,
|
|
8362
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$1,
|
|
8363
|
+
have_metrics_40: have_metrics_40$1,
|
|
8364
|
+
all_students_have_good_metrics: all_students_have_good_metrics$1,
|
|
8365
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$1,
|
|
8366
|
+
concerned_metrics: concerned_metrics$1,
|
|
8367
|
+
check_in_date: check_in_date$1,
|
|
8368
|
+
veracross_setting: veracross_setting$1,
|
|
8369
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$1,
|
|
8370
|
+
import_vera_cross: import_vera_cross$1,
|
|
8371
|
+
open_field_questions: open_field_questions$1,
|
|
8372
|
+
open_apply_setting: open_apply_setting$1,
|
|
8373
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$1,
|
|
8374
|
+
import_open_apply: import_open_apply$1
|
|
8307
8375
|
};
|
|
8308
8376
|
|
|
8309
8377
|
var dashboard$2 = "لوحة المعلومات";
|
|
@@ -8489,6 +8557,7 @@ var level$2 = "المستوى";
|
|
|
8489
8557
|
var use_for$2 = "للاستخدام من أجل";
|
|
8490
8558
|
var admin_training$2 = "تدريب المدراء";
|
|
8491
8559
|
var teacher_training$2 = "تدريب المعلمين";
|
|
8560
|
+
var counselor_training$2 = "تدريب المستشارين";
|
|
8492
8561
|
var created_time$2 = "تخصيص الوقت";
|
|
8493
8562
|
var total_reflections$2 = "إجمالي الأفكار";
|
|
8494
8563
|
var student_training$2 = "تدريب الطلبة";
|
|
@@ -10375,9 +10444,25 @@ var what_s_on_your_mind$2 = "What's on your mind?";
|
|
|
10375
10444
|
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
10445
|
var view_all_responses$2 = "View All Responses";
|
|
10377
10446
|
var are_not_ready_to_learn$2 = "are not ready to learn";
|
|
10447
|
+
var not_ready_to_learn$2 = "Not ready to learn";
|
|
10378
10448
|
var students_who_are_not_ready_to_learn$2 = "Students who are not ready to learn";
|
|
10379
10449
|
var students_average_score$2 = "Student’s average score";
|
|
10380
10450
|
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.";
|
|
10451
|
+
var number_of_students_with_at_least_one_very_low_metric$2 = "Number of students with at least one very low metric";
|
|
10452
|
+
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%";
|
|
10453
|
+
var of_students_have_concerned_metrics$2 = "of students have concerned metrics";
|
|
10454
|
+
var have_metrics_40$2 = "have metrics <40%";
|
|
10455
|
+
var all_students_have_good_metrics$2 = "All students have good metrics";
|
|
10456
|
+
var students_with_at_least_one_concerned_metric$2 = "Students with at least One Concerned metric ({{number}})";
|
|
10457
|
+
var concerned_metrics$2 = "Concerned metric(s)";
|
|
10458
|
+
var check_in_date$2 = "Check-in Date";
|
|
10459
|
+
var veracross_setting$2 = "Veracross Setting";
|
|
10460
|
+
var time_vera_cross_sync_hh$2 = "Time Veracross Sync (HH)";
|
|
10461
|
+
var import_vera_cross$2 = "Import Veracross";
|
|
10462
|
+
var open_field_questions$2 = "Open Field Questions";
|
|
10463
|
+
var open_apply_setting$2 = "Open Apply Setting";
|
|
10464
|
+
var time_open_apply_sync_hh$2 = "Time Open Apply Sync (HH)";
|
|
10465
|
+
var import_open_apply$2 = "Import Open Apply";
|
|
10381
10466
|
var lang_ar = {
|
|
10382
10467
|
dashboard: dashboard$2,
|
|
10383
10468
|
user: user$2,
|
|
@@ -10563,6 +10648,7 @@ var lang_ar = {
|
|
|
10563
10648
|
use_for: use_for$2,
|
|
10564
10649
|
admin_training: admin_training$2,
|
|
10565
10650
|
teacher_training: teacher_training$2,
|
|
10651
|
+
counselor_training: counselor_training$2,
|
|
10566
10652
|
created_time: created_time$2,
|
|
10567
10653
|
total_reflections: total_reflections$2,
|
|
10568
10654
|
student_training: student_training$2,
|
|
@@ -12496,9 +12582,25 @@ var lang_ar = {
|
|
|
12496
12582
|
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
12583
|
view_all_responses: view_all_responses$2,
|
|
12498
12584
|
are_not_ready_to_learn: are_not_ready_to_learn$2,
|
|
12585
|
+
not_ready_to_learn: not_ready_to_learn$2,
|
|
12499
12586
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$2,
|
|
12500
12587
|
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
|
|
12588
|
+
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,
|
|
12589
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$2,
|
|
12590
|
+
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,
|
|
12591
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$2,
|
|
12592
|
+
have_metrics_40: have_metrics_40$2,
|
|
12593
|
+
all_students_have_good_metrics: all_students_have_good_metrics$2,
|
|
12594
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$2,
|
|
12595
|
+
concerned_metrics: concerned_metrics$2,
|
|
12596
|
+
check_in_date: check_in_date$2,
|
|
12597
|
+
veracross_setting: veracross_setting$2,
|
|
12598
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$2,
|
|
12599
|
+
import_vera_cross: import_vera_cross$2,
|
|
12600
|
+
open_field_questions: open_field_questions$2,
|
|
12601
|
+
open_apply_setting: open_apply_setting$2,
|
|
12602
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$2,
|
|
12603
|
+
import_open_apply: import_open_apply$2
|
|
12502
12604
|
};
|
|
12503
12605
|
|
|
12504
12606
|
var dashboard$3 = "Cuadro de mandos";
|
|
@@ -12684,6 +12786,7 @@ var level$3 = "Nivel";
|
|
|
12684
12786
|
var use_for$3 = "Utilizar para";
|
|
12685
12787
|
var admin_training$3 = "Formación de administradores";
|
|
12686
12788
|
var teacher_training$3 = "Formación de profesores";
|
|
12789
|
+
var counselor_training$3 = "Formación de consejeros";
|
|
12687
12790
|
var created_time$3 = "Crear tiempo";
|
|
12688
12791
|
var total_reflections$3 = "Total Reflexiones";
|
|
12689
12792
|
var student_training$3 = "Formación de alumnos";
|
|
@@ -14570,9 +14673,25 @@ var what_s_on_your_mind$3 = "What's on your mind?";
|
|
|
14570
14673
|
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
14674
|
var view_all_responses$3 = "View All Responses";
|
|
14572
14675
|
var are_not_ready_to_learn$3 = "are not ready to learn";
|
|
14676
|
+
var not_ready_to_learn$3 = "Not ready to learn";
|
|
14573
14677
|
var students_who_are_not_ready_to_learn$3 = "Students who are not ready to learn";
|
|
14574
14678
|
var students_average_score$3 = "Student’s average score";
|
|
14575
14679
|
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.";
|
|
14680
|
+
var number_of_students_with_at_least_one_very_low_metric$3 = "Number of students with at least one very low metric";
|
|
14681
|
+
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%";
|
|
14682
|
+
var of_students_have_concerned_metrics$3 = "of students have concerned metrics";
|
|
14683
|
+
var have_metrics_40$3 = "have metrics <40%";
|
|
14684
|
+
var all_students_have_good_metrics$3 = "All students have good metrics";
|
|
14685
|
+
var students_with_at_least_one_concerned_metric$3 = "Students with at least One Concerned metric ({{number}})";
|
|
14686
|
+
var concerned_metrics$3 = "Concerned metric(s)";
|
|
14687
|
+
var check_in_date$3 = "Check-in Date";
|
|
14688
|
+
var veracross_setting$3 = "Veracross Setting";
|
|
14689
|
+
var time_vera_cross_sync_hh$3 = "Time Veracross Sync (HH)";
|
|
14690
|
+
var import_vera_cross$3 = "Import Veracross";
|
|
14691
|
+
var open_field_questions$3 = "Open Field Questions";
|
|
14692
|
+
var open_apply_setting$3 = "Open Apply Setting";
|
|
14693
|
+
var time_open_apply_sync_hh$3 = "Time Open Apply Sync (HH)";
|
|
14694
|
+
var import_open_apply$3 = "Import Open Apply";
|
|
14576
14695
|
var lang_es = {
|
|
14577
14696
|
dashboard: dashboard$3,
|
|
14578
14697
|
user: user$3,
|
|
@@ -14758,6 +14877,7 @@ var lang_es = {
|
|
|
14758
14877
|
use_for: use_for$3,
|
|
14759
14878
|
admin_training: admin_training$3,
|
|
14760
14879
|
teacher_training: teacher_training$3,
|
|
14880
|
+
counselor_training: counselor_training$3,
|
|
14761
14881
|
created_time: created_time$3,
|
|
14762
14882
|
total_reflections: total_reflections$3,
|
|
14763
14883
|
student_training: student_training$3,
|
|
@@ -16691,9 +16811,25 @@ var lang_es = {
|
|
|
16691
16811
|
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
16812
|
view_all_responses: view_all_responses$3,
|
|
16693
16813
|
are_not_ready_to_learn: are_not_ready_to_learn$3,
|
|
16814
|
+
not_ready_to_learn: not_ready_to_learn$3,
|
|
16694
16815
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$3,
|
|
16695
16816
|
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
|
|
16817
|
+
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,
|
|
16818
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$3,
|
|
16819
|
+
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,
|
|
16820
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$3,
|
|
16821
|
+
have_metrics_40: have_metrics_40$3,
|
|
16822
|
+
all_students_have_good_metrics: all_students_have_good_metrics$3,
|
|
16823
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$3,
|
|
16824
|
+
concerned_metrics: concerned_metrics$3,
|
|
16825
|
+
check_in_date: check_in_date$3,
|
|
16826
|
+
veracross_setting: veracross_setting$3,
|
|
16827
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$3,
|
|
16828
|
+
import_vera_cross: import_vera_cross$3,
|
|
16829
|
+
open_field_questions: open_field_questions$3,
|
|
16830
|
+
open_apply_setting: open_apply_setting$3,
|
|
16831
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$3,
|
|
16832
|
+
import_open_apply: import_open_apply$3
|
|
16697
16833
|
};
|
|
16698
16834
|
|
|
16699
16835
|
var dashboard$4 = "仪表板";
|
|
@@ -16879,6 +17015,7 @@ var level$4 = "级别";
|
|
|
16879
17015
|
var use_for$4 = "用途";
|
|
16880
17016
|
var admin_training$4 = "管理员培训";
|
|
16881
17017
|
var teacher_training$4 = "教师培训";
|
|
17018
|
+
var counselor_training$4 = "辅导员培训";
|
|
16882
17019
|
var created_time$4 = "创建时间";
|
|
16883
17020
|
var total_reflections$4 = "总反思";
|
|
16884
17021
|
var student_training$4 = "学生培训";
|
|
@@ -18765,9 +18902,25 @@ var what_s_on_your_mind$4 = "What's on your mind?";
|
|
|
18765
18902
|
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
18903
|
var view_all_responses$4 = "View All Responses";
|
|
18767
18904
|
var are_not_ready_to_learn$4 = "are not ready to learn";
|
|
18905
|
+
var not_ready_to_learn$4 = "Not ready to learn";
|
|
18768
18906
|
var students_who_are_not_ready_to_learn$4 = "Students who are not ready to learn";
|
|
18769
18907
|
var students_average_score$4 = "Student’s average score";
|
|
18770
18908
|
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.";
|
|
18909
|
+
var number_of_students_with_at_least_one_very_low_metric$4 = "Number of students with at least one very low metric";
|
|
18910
|
+
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%";
|
|
18911
|
+
var of_students_have_concerned_metrics$4 = "of students have concerned metrics";
|
|
18912
|
+
var have_metrics_40$4 = "have metrics <40%";
|
|
18913
|
+
var all_students_have_good_metrics$4 = "All students have good metrics";
|
|
18914
|
+
var students_with_at_least_one_concerned_metric$4 = "Students with at least One Concerned metric ({{number}})";
|
|
18915
|
+
var concerned_metrics$4 = "Concerned metric(s)";
|
|
18916
|
+
var check_in_date$4 = "Check-in Date";
|
|
18917
|
+
var veracross_setting$4 = "Veracross Setting";
|
|
18918
|
+
var time_vera_cross_sync_hh$4 = "Time Veracross Sync (HH)";
|
|
18919
|
+
var import_vera_cross$4 = "Import Veracross";
|
|
18920
|
+
var open_field_questions$4 = "Open Field Questions";
|
|
18921
|
+
var open_apply_setting$4 = "Open Apply Setting";
|
|
18922
|
+
var time_open_apply_sync_hh$4 = "Time Open Apply Sync (HH)";
|
|
18923
|
+
var import_open_apply$4 = "Import Open Apply";
|
|
18771
18924
|
var lang_zh = {
|
|
18772
18925
|
dashboard: dashboard$4,
|
|
18773
18926
|
user: user$4,
|
|
@@ -18953,6 +19106,7 @@ var lang_zh = {
|
|
|
18953
19106
|
use_for: use_for$4,
|
|
18954
19107
|
admin_training: admin_training$4,
|
|
18955
19108
|
teacher_training: teacher_training$4,
|
|
19109
|
+
counselor_training: counselor_training$4,
|
|
18956
19110
|
created_time: created_time$4,
|
|
18957
19111
|
total_reflections: total_reflections$4,
|
|
18958
19112
|
student_training: student_training$4,
|
|
@@ -20886,9 +21040,25 @@ var lang_zh = {
|
|
|
20886
21040
|
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
21041
|
view_all_responses: view_all_responses$4,
|
|
20888
21042
|
are_not_ready_to_learn: are_not_ready_to_learn$4,
|
|
21043
|
+
not_ready_to_learn: not_ready_to_learn$4,
|
|
20889
21044
|
students_who_are_not_ready_to_learn: students_who_are_not_ready_to_learn$4,
|
|
20890
21045
|
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
|
|
21046
|
+
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,
|
|
21047
|
+
number_of_students_with_at_least_one_very_low_metric: number_of_students_with_at_least_one_very_low_metric$4,
|
|
21048
|
+
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,
|
|
21049
|
+
of_students_have_concerned_metrics: of_students_have_concerned_metrics$4,
|
|
21050
|
+
have_metrics_40: have_metrics_40$4,
|
|
21051
|
+
all_students_have_good_metrics: all_students_have_good_metrics$4,
|
|
21052
|
+
students_with_at_least_one_concerned_metric: students_with_at_least_one_concerned_metric$4,
|
|
21053
|
+
concerned_metrics: concerned_metrics$4,
|
|
21054
|
+
check_in_date: check_in_date$4,
|
|
21055
|
+
veracross_setting: veracross_setting$4,
|
|
21056
|
+
time_vera_cross_sync_hh: time_vera_cross_sync_hh$4,
|
|
21057
|
+
import_vera_cross: import_vera_cross$4,
|
|
21058
|
+
open_field_questions: open_field_questions$4,
|
|
21059
|
+
open_apply_setting: open_apply_setting$4,
|
|
21060
|
+
time_open_apply_sync_hh: time_open_apply_sync_hh$4,
|
|
21061
|
+
import_open_apply: import_open_apply$4
|
|
20892
21062
|
};
|
|
20893
21063
|
|
|
20894
21064
|
var TINY_MCE_API_KEY = "htqausuofrnali3nh9ivmlpq6v415o0tv2qikpg39bqf4pnk";
|