mario-core 2.9.46-beta → 2.9.47-admin

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.
@@ -1,7 +1,4 @@
1
1
  import 'bootstrap/dist/css/bootstrap.min.css';
2
- import i18n from 'i18next';
3
- import { initReactI18next, useTranslation } from 'react-i18next';
4
- export { I18nextProvider, useTranslation } from 'react-i18next';
5
2
  import React, { useState, useCallback, useEffect, forwardRef, useRef, Suspense, useMemo, memo, Fragment, useImperativeHandle } from 'react';
6
3
  import { Input, Modal, ModalHeader, ModalBody, ModalFooter, Button, Row, Col, Form, FormGroup, Label, Dropdown, DropdownToggle, DropdownMenu, NavLink, DropdownItem, Alert, Pagination, PaginationItem, PaginationLink, Table, CustomInput, Nav, NavItem, TabContent, TabPane, Card, CardImg, CardBody, CardTitle, CardHeader, CardText } from 'reactstrap';
7
4
  import { useHistory, Link, useLocation, Switch, Route, Prompt, useParams } from 'react-router-dom';
@@ -18,11 +15,11 @@ import { CSidebar, CSidebarBrand, CSidebarNav, CCreateElement, CSidebarNavDivide
18
15
  import { CgMenuRight } from 'react-icons/cg';
19
16
  import { RiLogoutBoxRLine } from 'react-icons/ri';
20
17
  import Pusher from 'pusher-js/with-encryption';
21
- import { BsChevronDown } from 'react-icons/bs';
22
18
  import { FaPlus, FaTrashAlt, FaRegEdit, FaArrowLeft, FaDownload, FaTrash, FaEdit, FaFolderPlus, FaFileUpload } from 'react-icons/fa';
23
19
  import { format } from 'date-fns';
24
20
  import { Editor } from '@tinymce/tinymce-react';
25
21
  import differenceInCalendarYears from 'date-fns/differenceInCalendarYears';
22
+ import moment from 'moment';
26
23
  import DatePicker from 'react-datepicker';
27
24
  import toDate from 'date-fns/toDate';
28
25
  import { MdAttachFile } from 'react-icons/md';
@@ -30,1938 +27,6 @@ import Creatable from 'react-select/creatable';
30
27
  import ReactNotification$1 from 'react-notifications-component';
31
28
  import 'react-notifications-component/dist/theme.css';
32
29
  import { AiOutlineEye } from 'react-icons/ai';
33
- import moment from 'moment';
34
-
35
- var dashboard = "Dashboard";
36
- var user = "User";
37
- var question_bank = "Question bank";
38
- var email_template = "Email template";
39
- var custom_alert = "Custom alert";
40
- var set_up = "Set up";
41
- var media_gallery = "Media Gallery";
42
- var district_school_list = "District school list";
43
- var export_to_pdf = "Export to PDF";
44
- var the_data_is_taken_from_the_home_screen = "The data is taken from the home screen";
45
- var make_sure_everything_is_set_correctly_before_exporting = "Make sure everything is set correctly before exporting.";
46
- var cancel = "Cancel";
47
- var hey = "Hey";
48
- var readiness_to_learn = "Readiness to Learn";
49
- var high_impact_learning_strategies = "High Impact Learning Strategies";
50
- var reflection = "Reflection";
51
- var conferences = "Conferences";
52
- var safety = "Safety";
53
- var student_by_age = "Student by Age";
54
- var students_by_designation = "Students by Designation";
55
- var calendar = "Calendar";
56
- var gender = "Gender";
57
- var grade = "Grade";
58
- var current_grade = "Current Grade";
59
- var student_name = "Student name";
60
- var teacher_name = "Teacher name";
61
- var start_date = "Start Date";
62
- var end_date = "End Date";
63
- var tooltip_content_readiness_to_learn_chart = "The represenation of individual student responses to their own feelings of Energy, Focus, Happiness, Safety, and Stress at the time administered. Note that scores are set on a 1-100 scale with the exception of Stress which optimum stress is set at '0' to get a sense of High Stress vs Low Stress.";
64
- var tooltip_content_high_impact_chart = "Both the composite of individual students reporting their perceived use of John Hattie's High Impact Learning Strategies measured against the actual application with a teacher in total.";
65
- var tooltip_content_1_to_1_chart = "The composite results of the survey completed by individual students assessing their own perception of performance in the 6 key areas followed by 3 specific areas of well being over time.";
66
- var tooltip_content_class_reflection_chart = "The result of surveys sent to any individual (external or internal) that connects with the student to assist in measuring the individual student's: Productivity, Happiness, Energy, Focus, and Stress over time.";
67
- var tooltip_content_conference_chart = "The composite representation of individual aggregate scores located at the bottom of individual Conferences conducted between Teachers and Students over time. Note that scores of 'Not Applicable' do not get measured.";
68
- var tooltip_content_safety_chart = "The visual represenation of all the responses from the question asking students to rate their perceived level of safety for themselves at your school over time.";
69
- var tooltip_content_student_by_age_chart = "The specific representation of students by gender and grade level at your school.";
70
- var tooltip_content_students_by_designation = "The composite representation of students by individual grades in your school with specific designations.";
71
- var total_1_to_1 = "Total 1-to-1";
72
- var total_1_to_1_time = "Total 1-to-1 Time";
73
- var total_conferences = "Total Conferences";
74
- var total_conferences_time = "Total Conferences Time";
75
- var total_class_reflection_check_ins = "Total Class Reflection Check-ins";
76
- var create_user = "Create user";
77
- var edit_user = "Edit user";
78
- var change_password = "Change password";
79
- var type_something_to_search_by_user_name = "Type something to search by user name";
80
- var total_of_users = "Total of users";
81
- var name = "Name";
82
- var email = "Email";
83
- var age = "Age";
84
- var role = "Role";
85
- var active_status = "Active status";
86
- var action = "Action";
87
- var Active = "Active";
88
- var inactive = "Inactive";
89
- var create = "Create";
90
- var update = "Update";
91
- var first_name = "First name";
92
- var date_of_birth = "Date of birth";
93
- var roles = "Roles";
94
- var status = "Status";
95
- var send_forgot_password_link = "Send forgot password link";
96
- var download_user_data = "Download user data";
97
- var current_password = "Current password";
98
- var new_password = "New password";
99
- var confirm_password = "Confirm password";
100
- var save = "Save";
101
- var type_something_to_search_question = "Type something to Search question";
102
- var total_of_questions = "Total of questions";
103
- var create_question = "Create question";
104
- var edit_question = "Edit question";
105
- var question_type = "Question Type";
106
- var category = "Category";
107
- var is_default_question_for_one_to_one = "Is default question for one-to-one";
108
- var default_question_for_students_or_teachers = "Default question for students or teachers";
109
- var is_default_question_general_class = "Is default question general class";
110
- var default_question_general_for_students_or_teachers = "Default question general for students or teachers";
111
- var before_session = "Before session";
112
- var edit_custom_alert = "Edit custom alert";
113
- var create_custom_alert = "Create custom alert";
114
- var total_of_custom_alert = "Total of custom alert";
115
- var number_of_sessions = "Number of sessions";
116
- var number_of_students = "Number of students";
117
- var begin_date = "Begin date";
118
- var duration_days = "Duration (days)";
119
- var students = "Students";
120
- var create_skill = "Create skill";
121
- var edit_skill = "Edit skill";
122
- var total_of_skills = "Total of skills";
123
- var description = "Description";
124
- var skill = "skill";
125
- var parent_category = "Parent category";
126
- var edit_subject = "Edit subject";
127
- var create_subject = "Create subject";
128
- var total_of_subjects = "Total of subjects";
129
- var color = "Color";
130
- var create_learning_support_category = "Create learning support category";
131
- var edit_learning_support_category = "Edit learning support category";
132
- var create_category = "Create category";
133
- var total_of_learning_support_categories = "Total of learning support categories";
134
- var default_color = "Default Color";
135
- var edit_strategy = "Edit strategy";
136
- var create_strategy = "Create strategy";
137
- var create_learning_strategy = "Create learning strategy";
138
- var total_of_strategies = "Total of strategies";
139
- var strategy_name = "Strategy name";
140
- var question = "Question";
141
- var detail = "Detail";
142
- var strategy = "strategy";
143
- var best_fit = "Best fit";
144
- var create_goal_example = "Create goal example";
145
- var edit_goal_example = "Edit goal example";
146
- var total_of_goal_examples = "Total of goal examples";
147
- var short_term_target_examples = "Short term target examples";
148
- var goal_example = "goal example";
149
- var edit_badge = "Edit badge";
150
- var create_badge = "Create badge";
151
- var total_of_badges = "Total of badges";
152
- var icon = "Icon";
153
- var badge = "badge";
154
- var badge_image = "Badge image";
155
- var edit_semester = "Edit semester";
156
- var create_semester = "Create semester";
157
- var update_school_break_month = "Update school break month";
158
- var total_of_semesters = "Total of semesters";
159
- var semester = "semester";
160
- var breaking_month = "Breaking month";
161
- var change_breaking_month = "Change breaking month";
162
- var school_year_break_month = "School year break month";
163
- var edit_blank_day = "Edit blank day";
164
- var create_blank_day = "Create blank day";
165
- var total_of_blank_days = "Total of blank days";
166
- var start_time = "Start time";
167
- var end_time = "End time";
168
- var school_blank_day = "school blank day";
169
- var edit_point = "Edit point";
170
- var create_new_point = "Create new point";
171
- var total_of_point = "Total of point";
172
- var label = "Label";
173
- var value = "Value";
174
- var break_point = "Break point";
175
- var update_break_point = "Update break point";
176
- var maximum_number_of_admins = "Maximum number of admins";
177
- var maximum_number_of_assistants = "Maximum number of assistants";
178
- var maximum_number_of_students = "Maximum number of students";
179
- var maximum_number_of_teachers = "Maximum number of teachers";
180
- var request_to_this_plan = "Request to this plan";
181
- var type_something_to_search_reflection_result = "Type something to search reflection result";
182
- var user_deleted = "User deleted";
183
- var export_user_data = "Export user data";
184
- var alert_delete_user = "All data of this user will be permanently deleted from the system. Please export before continuing";
185
- var delete_user = "Delete user";
186
- var alert_delete_teacher = "A teacher must be selected before deleting this teacher. We will transfer the entire class and students to this teacher before deleting all of this teacher's data.";
187
- var list_students = "List Students";
188
- var student_email = "Student Email";
189
- var current_teacher_name = "Current Teacher Name";
190
- var current_teacher_email = "Current Teacher Email";
191
- var change_save = "Change Save";
192
- var select_teacher_change = "Select teacher change";
193
- var current_assistant_name = "Current Assistant Name";
194
- var current_assistant_email = "Current Assistant Email";
195
- var remove_assistant = "Remove Assistant";
196
- var switch_assistant = "Switch Assistant";
197
- var select_assistant_change = "Select Assistant change";
198
- var welcome_email_resend = "Welcome Email Re-send";
199
- var send_for_selected_users = "Send for selected users";
200
- var user_name = "User Name";
201
- var user_email = "User Email";
202
- var level = "Level";
203
- var use_for = "Use for";
204
- var teacher_training = "Teacher training";
205
- var student_training = "Student training";
206
- var create_destination = "Create Destination";
207
- var total_of_designation = "Total of Designation";
208
- var destinations = "Destinations";
209
- var edit_destination = "Edit Destination";
210
- var confirm = "Confirm";
211
- var hello = "Hello";
212
- var todays_1_1 = "Today’s 1-1";
213
- var todays_Conferences = "Today’s Conferences";
214
- var next_meeting = "Next Meeting";
215
- var next_conference = "Next Conference";
216
- var todays_schedule = "Today’s Schedule";
217
- var action_points = "Action Points";
218
- var upcoming = "Upcoming";
219
- var see_all_action_points = "See all action points";
220
- var add = "Add";
221
- var edit_action_point = "Edit Action Point";
222
- var add_action_point = "Add Action Point";
223
- var title = "Title";
224
- var type_title = "Type title";
225
- var subject = "Subject";
226
- var select_date = "Select date";
227
- var date = "Date";
228
- var select_time = "Select time";
229
- var time = "Time";
230
- var notification = "Notification";
231
- var no_notification = "No notification";
232
- var day = "Day";
233
- var week = "Week";
234
- var mark_as_done = "Mark as done";
235
- var my_students = "My Students";
236
- var download_template = "Download Template";
237
- var import_csv = "Import CSV";
238
- var add_new = "Add New";
239
- var show_only_work_as_assistant = "Show only work as assistant";
240
- var last_1_to_1 = "Last 1-TO-1";
241
- var last_conference = "Last conference";
242
- var total_time = "Total time";
243
- var assistant_name = "Assistant Name";
244
- var work_as_assistant = "Work as assistant";
245
- var assign_assistant = "Assign Assistant";
246
- var view = "View";
247
- var history = "History";
248
- var custom_recurrence = "Custom recurrence";
249
- var repeat_every = "Repeat every";
250
- var repeat_on = "Repeat on";
251
- var never = "Never";
252
- var on = "On";
253
- var after = "After";
254
- var pick_a_date = "Pick a date";
255
- var apply = "Apply";
256
- var new_1_to_1 = "New 1-to-1";
257
- var do_you_want_to_talk_with_teacher = "Do you want to talk with teacher";
258
- var start_now = "Start now";
259
- var book_for_later = "Book for later";
260
- var select_category = "Select category";
261
- var search_question_category = "Search question category";
262
- var no_question = "No question";
263
- var select_question = "Select question";
264
- var select_student = "Select student";
265
- var select_date_time = "Select Date & Time";
266
- var book_1_to_1 = "Book 1-to-1";
267
- var schedule = "Schedule";
268
- var sessions_are_booked_as_10_minute_slots = "Sessions are booked as 10 minute slots";
269
- var does_not_reoccur = "Does not reoccur";
270
- var time_must_be_between_8_am_and_6_pm = "Time must be between 8 AM and 6 PM";
271
- var from = "From";
272
- var to = "To";
273
- var show_only_favorites = "Show only favorites";
274
- var duration = "Duration";
275
- var favorite = "Favorite";
276
- var open = "Open";
277
- var no_data = "No Data";
278
- var schedule_detail = "Schedule Detail";
279
- var are_you_sure_you_want_to_cancel_this_schedule = "Are you sure you want to Cancel this schedule?";
280
- var completed_1_to_1 = "Completed 1-to-1";
281
- var done = "Done";
282
- var what_do_you_want_to_talk_about = "What do you want to talk about?";
283
- var session_type = "Session Type";
284
- var what_is_this_session_type = "What is this session type?";
285
- var how_are_you_feeling_about_each_area_right_now = "How are you feeling about each area right now?";
286
- var sleep_nutrition_exercise_physical_health_and_mental_health = "Sleep, nutrition, exercise, physical health, and mental health";
287
- var goals_activities_habits_and_strategies = "Goals, activities, habits, and strategies";
288
- var overall_how_are_you_feeling_today = "Overall, how are you feeling today?";
289
- var what_is_your_level_of_pride_in_yourself_today = "What is your level of pride in yourself today?";
290
- var how_are_you_feeling_today = "How are you feeling today?";
291
- var how_much_did_you_learn_from_this_session = "How much did you learn from this session?";
292
- var what_is_the_most_important_thing_you_learned_from_this_session = "What is the most important thing you learned from this session?";
293
- var your_next_meeting = "Your next meeting";
294
- var today_at = "Today at";
295
- var choose_if_you_want_to_do_it_now_or_if_you_would_like_to_book_for_later = "Choose if you want to do it now or if you would like to book for later";
296
- var edit = "Edit";
297
- var phone_number = "Phone number";
298
- var second_phone_number = "Second phone number";
299
- var health_note = "Health Note";
300
- var address = "Address";
301
- var mtss = "MTSS";
302
- var note = "Note";
303
- var no_schedule = "No Schedule";
304
- var my_notes = "My Notes";
305
- var private_note = "Private Note";
306
- var goal_process = "Goal Process";
307
- var view_all_goals = "View all goals";
308
- var completed = "Completed";
309
- var student_information = "Student Information";
310
- var top_learning_strategies = "Top Learning Strategies";
311
- var perceived_usage = "Perceived Usage";
312
- var total_number_of_times_seleted = "Total Number of Times Seleted";
313
- var energy = "Energy";
314
- var focus = "Focus";
315
- var happiness = "Happiness";
316
- var stress = "Stress";
317
- var one_to_one = "One To One";
318
- var class_reflection = "Class Reflection";
319
- var conference = "Conference";
320
- var learning_progress = "Learning Progress";
321
- var cant_export_now_please_try_again = "Can't export now. Please try again.";
322
- var view_data = "View data";
323
- var learning_strategies = "Learning Strategies";
324
- var strategies = "Strategies";
325
- var number_of_used = "Number of used";
326
- var next = "Next";
327
- var my_conferences = "My Conferencess";
328
- var select_a_student_and_launch_a_new_conference_or_book_one_for_later = "Select a student and launch a new conference or book one for later.";
329
- var you_have_no_student = "You have no student";
330
- var this_is_a_required_field = "This is a required field";
331
- var please_select_question_category = "Please select question category";
332
- var book_conferences = "Book conferences";
333
- var final_score = "Final score";
334
- var new_conference = "New Conference";
335
- var search_student = "Search student";
336
- var meeting_schedule = "Meeting schedule";
337
- var class_schedule = "Class schedule";
338
- var more_questions = "More Questions";
339
- var conference_rubric = "Conference rubric";
340
- var unlock = "Unlock";
341
- var before_clicking_submit = "Before clicking submit";
342
- var your_session_was = "Your session was";
343
- var mins = "mins";
344
- var min = "min";
345
- var submit = "Submit";
346
- var are_you_sure_to_complete = "There are several questions you have not answered yet. Are you sure to complete?";
347
- var be_sure_to_check_completed_all = "Be sure to check with your teacher that you have completed all that is required";
348
- var teacher_choice = "Teacher choice";
349
- var student_choice = "Student choice";
350
- var agreement = "Agreement";
351
- var personal_learning_plan = "Personal Learning Plan";
352
- var personal_interests = "Personal Interests";
353
- var allow_student_to_edit = "Allow student to edit";
354
- var strengths_and_challenges = "Strengths and Challenges";
355
- var significant_strengths = "Significant Strengths";
356
- var strengths = "Strengths";
357
- var challenges = "Challenges";
358
- var significant_challenges = "Significant Challenges";
359
- var how_my_teachers_can_help_me_learn = "How my teachers can help me learn";
360
- var about_my_learning = "About My Learning";
361
- var accommodations = "Accommodations";
362
- var goals = "Goals";
363
- var activity_circles = "Activity Circles";
364
- var friend_circles = "Friend Circles";
365
- var are_you_ready_to_learn = "Are you ready to learn?";
366
- var class_schedules = "Class Schedules";
367
- var add_class_schedule = "Add Class Schedule";
368
- var class_date = "Class Date";
369
- var class_name = "Class Name";
370
- var day_period = "Day/Period";
371
- var teacher_email = "Teacher Email";
372
- var note_type_class = "Note Type & Class";
373
- var my_note = "My Note";
374
- var add_new_note = "Add New Note";
375
- var all_category = "All Category";
376
- var personalized = "Personalized";
377
- var show_only_favorite = "Show only favorite";
378
- var search = "Search";
379
- var note_title = "Note title";
380
- var student = "Student";
381
- var note_detail = "Note Detail";
382
- var mark_as_favorite = "Mark as favorite";
383
- var type_a_note = "Type a note";
384
- var please_select_student = "Please select student";
385
- var settings = "Settings";
386
- var save_changes = "Save changes";
387
- var activity_notifications = "Activity Notifications";
388
- var schedule_notifications = "Schedule Notifications";
389
- var preschedule_notifications = "Preschedule Notifications";
390
- var yes = "Yes";
391
- var no = "No";
392
- var email_notification = "Email Notification";
393
- var send_me_email_notification = "Send me email notification";
394
- var dont_send_me_email_notification = "Don’t send me email notification";
395
- var type = "Type";
396
- var teacher_request = "Teacher Request";
397
- var student_request = "Student Request";
398
- var overview = "Overview";
399
- var plp = "PLP";
400
- var my_student_1_to_1 = "My Student 1-to-1";
401
- var my_student_conference = "My Student Conference";
402
- var received_date = "Received Date";
403
- var class_impact_score = "Class Impact Score";
404
- var impact_score = "Impact Score";
405
- var iep = "IEP";
406
- var creator = "Creator";
407
- var last_modify = "Last Modify";
408
- var Modify = "Modify";
409
- var student_reflections = "Student Reflections";
410
- var external_reflection = "External Reflection";
411
- var external_class_reflection = "External Class Reflection";
412
- var reflections = "Reflections";
413
- var class_reflections = "Class Reflections";
414
- var add_reflection = "Add Reflection";
415
- var add_class_reflection = "Add Class Reflection";
416
- var class_type = "Class Type";
417
- var teacher_image = "Teacher Image";
418
- var send_to_teacher = "Send to Teacher";
419
- var send_now = "Send Now";
420
- var missed = "Missed";
421
- var pending = "Pending";
422
- var sent_date = "Sent Date";
423
- var go_to_the_student_plp = "Go to the student's PLP";
424
- var new_iep = "New IEP";
425
- var edit_iep = "Edit IEP";
426
- var type_of_iep = "Type of IEP";
427
- var source_of_eligibility_forinitial = "Source of Eligibility (forinitial)";
428
- var annual_goals = "Annual Goals";
429
- var enter_a_date_range = "Enter a date range";
430
- var add_objectives = "Add Objectives";
431
- var add_goals = "Add Goals";
432
- var day_month_year = "day/month/year";
433
- var special_education = "Special Education";
434
- var special_education_content = "The IEP must contain a statement of the special education and related services and supplementary aids and services to be provided to the child, or on behalf of the child. This section focuses on the first element: a statement of the special education that will be provided for the child.";
435
- var objectives_and_reporting_progress = "Objectives and Reporting Progress";
436
- var objectives_and_reporting_progress_content = "Each child's IEP must also contain a description of how his or her progress toward meeting the annual goals will be measured and when it will be reported to parents.";
437
- var annual_goals_content = "Once a child's needs are identified, the IEP team works to develop appropriate goals to address those needs. Annual goals describe what the child is expected to do or learn within a 12-month period.";
438
- var related_services = "Related Services";
439
- var related_services_content = "To help a child with a disability benefit from special education, he or she may also need extra help in one area or another, such as speaking or moving. This additional help is called related services. Find out all about these critical services here.";
440
- var supplementary_aids_and_services = "Supplementary Aids and Services";
441
- var supplementary_aids_and_services_content = "Supplementary aids and services are intended to improve children’s access to learning and their participation across the spectrum of academic, extracurricular, and nonacademic activities and settings. The IEP team must determine what supplementary aids and services a child will need and specify them in the IEP.";
442
- var program_modifications_for_school_personnel = "Program Modifications for School Personnel";
443
- var program_modifications_for_school_personnel_content = "Also part of the IEP is identifying the program modifications or supports for school personnel that will be provided";
444
- var extent_of_nonparticipation = "Extent of Nonparticipation";
445
- var extent_of_nonparticipation_content = "The IEP must also include an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in other school settings and activities.";
446
- var accommodations_in_assessment = "Accommodations in Assessment";
447
- var accommodations_in_assessment_content = "IDEA requires that students with disabilities take part in state or districtwide assessments. The IEP team must decide if the student needs accommodations in testing or another type of assessment entirely. In this component of the IEP, the team documents how the student will participate.";
448
- var service_delivery = "Service Delivery";
449
- var service_delivery_content = "When will the child begin to receive services? Where? How often? How long will a “session” last? Pesky details, but important to include in the IEP!";
450
- var transition_planning = "Transition Planning";
451
- var transition_planning_content = "Beginning no later than a student’s 16th birthday (and younger, if appropriate), the IEP must contain transition-related plans designed to help the student prepare for life after secondary school.";
452
- var present_levels = "Present Levels";
453
- var present_levels_content = "How is the child currently doing in school? How does the disability affect his or her performance in class? This type of information is captured in the “present levels” statement in the IEP.";
454
- var signatures = "Signatures";
455
- var iep_old_version_and_diagnostic_docs = "IEP old version and diagnostic docs";
456
- var upload_file = "Upload File";
457
- var add_interest = "Add Interest";
458
- var upload_image = "Upload Image";
459
- var supported_image_types = "Supported image types: PNG, JPEG, WEBPbbb";
460
- var edit_interest = "Edit Interest";
461
- var select_personal_interest_or_enter_personal_interest_here = "Select personal interest or enter personal interest here";
462
- var add_note = "Add note";
463
- var select_best_fit = "Select Best Fit";
464
- var best_fits = "Best fits";
465
- var select_strategies = "Select Strategies";
466
- var selected_learning_strategies = "Selected Learning Strategies";
467
- var do_you_want_to_delete_this_strengths_and_challenges = "Do you want to delete this strengths and challenges";
468
- var add_new_item = "Add New Item";
469
- var edit_item = "Edit Item";
470
- var select_teaching_strategies = "Select Teaching Strategies";
471
- var selected_teaching_strategies = "Selected Teaching Strategies";
472
- var add_title = "Add title";
473
- var my_learning = "My Learning";
474
- var do_you_want_to_delete_this_about_my_learning = "Do you want to delete this about my learning";
475
- var edit_my_learning = "Edit My Learning";
476
- var add_my_learning = "Add My Learning";
477
- var select_about_learning_or_enter_about_learning_here = "Select about learning or enter about learning here";
478
- var accommodation = "Accommodation";
479
- var all_categories = "All categories";
480
- var do_you_want_to_delete_this_accommodation = "Do you want to delete this accommodation";
481
- var edit_accommodation = "Edit Accommodation";
482
- var add_accommodation = "Add Accommodation";
483
- var all = "All";
484
- var all_status = "All status";
485
- var goal_type = "Goal Type";
486
- var add_new_goal = "Add New Goal";
487
- var goal_detail = "Goal Detail";
488
- var select_status = "Select status";
489
- var goal_baseline = "Goal Baseline";
490
- var objective = "Objective";
491
- var goal_details = "Goal Details";
492
- var goals_type = "Goals Type";
493
- var edit_goal_detail = "Edit Goal Detail";
494
- var uploaded_files = "Uploaded Files";
495
- var optional = "Optional";
496
- var edit_baseline = "Edit Baseline";
497
- var edit_friend = "Edit friend";
498
- var add_friend = "Add friend";
499
- var search_friend = "Search friend";
500
- var friend_type = "Friend type";
501
- var edit_activity = "Edit activity";
502
- var add_activity = "Add activity";
503
- var search_activity = "Search activity";
504
- var activity = "Activity";
505
- var activity_type = "Activity type";
506
- var select_or_type_an_activity = "Select or type an activity";
507
- var lang_us = {
508
- dashboard: dashboard,
509
- user: user,
510
- question_bank: question_bank,
511
- email_template: email_template,
512
- custom_alert: custom_alert,
513
- set_up: set_up,
514
- media_gallery: media_gallery,
515
- district_school_list: district_school_list,
516
- export_to_pdf: export_to_pdf,
517
- the_data_is_taken_from_the_home_screen: the_data_is_taken_from_the_home_screen,
518
- make_sure_everything_is_set_correctly_before_exporting: make_sure_everything_is_set_correctly_before_exporting,
519
- cancel: cancel,
520
- hey: hey,
521
- readiness_to_learn: readiness_to_learn,
522
- high_impact_learning_strategies: high_impact_learning_strategies,
523
- "1_to_1": "1 To 1",
524
- reflection: reflection,
525
- conferences: conferences,
526
- safety: safety,
527
- student_by_age: student_by_age,
528
- students_by_designation: students_by_designation,
529
- calendar: calendar,
530
- gender: gender,
531
- grade: grade,
532
- current_grade: current_grade,
533
- student_name: student_name,
534
- teacher_name: teacher_name,
535
- start_date: start_date,
536
- end_date: end_date,
537
- tooltip_content_readiness_to_learn_chart: tooltip_content_readiness_to_learn_chart,
538
- tooltip_content_high_impact_chart: tooltip_content_high_impact_chart,
539
- tooltip_content_1_to_1_chart: tooltip_content_1_to_1_chart,
540
- tooltip_content_class_reflection_chart: tooltip_content_class_reflection_chart,
541
- tooltip_content_conference_chart: tooltip_content_conference_chart,
542
- tooltip_content_safety_chart: tooltip_content_safety_chart,
543
- tooltip_content_student_by_age_chart: tooltip_content_student_by_age_chart,
544
- tooltip_content_students_by_designation: tooltip_content_students_by_designation,
545
- total_1_to_1: total_1_to_1,
546
- total_1_to_1_time: total_1_to_1_time,
547
- total_conferences: total_conferences,
548
- total_conferences_time: total_conferences_time,
549
- total_class_reflection_check_ins: total_class_reflection_check_ins,
550
- create_user: create_user,
551
- edit_user: edit_user,
552
- change_password: change_password,
553
- type_something_to_search_by_user_name: type_something_to_search_by_user_name,
554
- total_of_users: total_of_users,
555
- name: name,
556
- email: email,
557
- age: age,
558
- role: role,
559
- active_status: active_status,
560
- action: action,
561
- Active: Active,
562
- inactive: inactive,
563
- create: create,
564
- update: update,
565
- first_name: first_name,
566
- date_of_birth: date_of_birth,
567
- "Last name": "Last name",
568
- roles: roles,
569
- status: status,
570
- send_forgot_password_link: send_forgot_password_link,
571
- download_user_data: download_user_data,
572
- current_password: current_password,
573
- new_password: new_password,
574
- confirm_password: confirm_password,
575
- save: save,
576
- type_something_to_search_question: type_something_to_search_question,
577
- total_of_questions: total_of_questions,
578
- create_question: create_question,
579
- edit_question: edit_question,
580
- question_type: question_type,
581
- category: category,
582
- "Question text": "Question text",
583
- is_default_question_for_one_to_one: is_default_question_for_one_to_one,
584
- default_question_for_students_or_teachers: default_question_for_students_or_teachers,
585
- is_default_question_general_class: is_default_question_general_class,
586
- default_question_general_for_students_or_teachers: default_question_general_for_students_or_teachers,
587
- before_session: before_session,
588
- edit_custom_alert: edit_custom_alert,
589
- create_custom_alert: create_custom_alert,
590
- total_of_custom_alert: total_of_custom_alert,
591
- number_of_sessions: number_of_sessions,
592
- number_of_students: number_of_students,
593
- begin_date: begin_date,
594
- duration_days: duration_days,
595
- students: students,
596
- create_skill: create_skill,
597
- edit_skill: edit_skill,
598
- total_of_skills: total_of_skills,
599
- description: description,
600
- skill: skill,
601
- parent_category: parent_category,
602
- edit_subject: edit_subject,
603
- create_subject: create_subject,
604
- total_of_subjects: total_of_subjects,
605
- color: color,
606
- create_learning_support_category: create_learning_support_category,
607
- edit_learning_support_category: edit_learning_support_category,
608
- create_category: create_category,
609
- total_of_learning_support_categories: total_of_learning_support_categories,
610
- default_color: default_color,
611
- edit_strategy: edit_strategy,
612
- create_strategy: create_strategy,
613
- create_learning_strategy: create_learning_strategy,
614
- total_of_strategies: total_of_strategies,
615
- strategy_name: strategy_name,
616
- question: question,
617
- detail: detail,
618
- strategy: strategy,
619
- best_fit: best_fit,
620
- create_goal_example: create_goal_example,
621
- edit_goal_example: edit_goal_example,
622
- total_of_goal_examples: total_of_goal_examples,
623
- short_term_target_examples: short_term_target_examples,
624
- goal_example: goal_example,
625
- edit_badge: edit_badge,
626
- create_badge: create_badge,
627
- total_of_badges: total_of_badges,
628
- icon: icon,
629
- badge: badge,
630
- badge_image: badge_image,
631
- edit_semester: edit_semester,
632
- create_semester: create_semester,
633
- update_school_break_month: update_school_break_month,
634
- total_of_semesters: total_of_semesters,
635
- semester: semester,
636
- breaking_month: breaking_month,
637
- change_breaking_month: change_breaking_month,
638
- school_year_break_month: school_year_break_month,
639
- edit_blank_day: edit_blank_day,
640
- create_blank_day: create_blank_day,
641
- total_of_blank_days: total_of_blank_days,
642
- start_time: start_time,
643
- end_time: end_time,
644
- school_blank_day: school_blank_day,
645
- edit_point: edit_point,
646
- create_new_point: create_new_point,
647
- total_of_point: total_of_point,
648
- label: label,
649
- value: value,
650
- break_point: break_point,
651
- update_break_point: update_break_point,
652
- maximum_number_of_admins: maximum_number_of_admins,
653
- maximum_number_of_assistants: maximum_number_of_assistants,
654
- maximum_number_of_students: maximum_number_of_students,
655
- maximum_number_of_teachers: maximum_number_of_teachers,
656
- request_to_this_plan: request_to_this_plan,
657
- type_something_to_search_reflection_result: type_something_to_search_reflection_result,
658
- user_deleted: user_deleted,
659
- export_user_data: export_user_data,
660
- alert_delete_user: alert_delete_user,
661
- delete_user: delete_user,
662
- alert_delete_teacher: alert_delete_teacher,
663
- list_students: list_students,
664
- student_email: student_email,
665
- current_teacher_name: current_teacher_name,
666
- current_teacher_email: current_teacher_email,
667
- change_save: change_save,
668
- select_teacher_change: select_teacher_change,
669
- current_assistant_name: current_assistant_name,
670
- current_assistant_email: current_assistant_email,
671
- remove_assistant: remove_assistant,
672
- switch_assistant: switch_assistant,
673
- select_assistant_change: select_assistant_change,
674
- welcome_email_resend: welcome_email_resend,
675
- send_for_selected_users: send_for_selected_users,
676
- user_name: user_name,
677
- user_email: user_email,
678
- level: level,
679
- use_for: use_for,
680
- teacher_training: teacher_training,
681
- student_training: student_training,
682
- create_destination: create_destination,
683
- total_of_designation: total_of_designation,
684
- destinations: destinations,
685
- edit_destination: edit_destination,
686
- confirm: confirm,
687
- hello: hello,
688
- todays_1_1: todays_1_1,
689
- todays_Conferences: todays_Conferences,
690
- next_meeting: next_meeting,
691
- next_conference: next_conference,
692
- todays_schedule: todays_schedule,
693
- action_points: action_points,
694
- upcoming: upcoming,
695
- see_all_action_points: see_all_action_points,
696
- add: add,
697
- edit_action_point: edit_action_point,
698
- add_action_point: add_action_point,
699
- title: title,
700
- type_title: type_title,
701
- subject: subject,
702
- "class": "Class",
703
- select_date: select_date,
704
- date: date,
705
- select_time: select_time,
706
- time: time,
707
- notification: notification,
708
- no_notification: no_notification,
709
- day: day,
710
- week: week,
711
- mark_as_done: mark_as_done,
712
- "delete": "Delete",
713
- my_students: my_students,
714
- download_template: download_template,
715
- import_csv: import_csv,
716
- add_new: add_new,
717
- show_only_work_as_assistant: show_only_work_as_assistant,
718
- last_1_to_1: last_1_to_1,
719
- last_conference: last_conference,
720
- total_time: total_time,
721
- assistant_name: assistant_name,
722
- work_as_assistant: work_as_assistant,
723
- assign_assistant: assign_assistant,
724
- view: view,
725
- history: history,
726
- custom_recurrence: custom_recurrence,
727
- repeat_every: repeat_every,
728
- repeat_on: repeat_on,
729
- never: never,
730
- on: on,
731
- after: after,
732
- pick_a_date: pick_a_date,
733
- apply: apply,
734
- new_1_to_1: new_1_to_1,
735
- do_you_want_to_talk_with_teacher: do_you_want_to_talk_with_teacher,
736
- start_now: start_now,
737
- book_for_later: book_for_later,
738
- select_category: select_category,
739
- search_question_category: search_question_category,
740
- no_question: no_question,
741
- select_question: select_question,
742
- select_student: select_student,
743
- select_date_time: select_date_time,
744
- book_1_to_1: book_1_to_1,
745
- schedule: schedule,
746
- sessions_are_booked_as_10_minute_slots: sessions_are_booked_as_10_minute_slots,
747
- does_not_reoccur: does_not_reoccur,
748
- time_must_be_between_8_am_and_6_pm: time_must_be_between_8_am_and_6_pm,
749
- from: from,
750
- to: to,
751
- show_only_favorites: show_only_favorites,
752
- duration: duration,
753
- favorite: favorite,
754
- open: open,
755
- no_data: no_data,
756
- schedule_detail: schedule_detail,
757
- are_you_sure_you_want_to_cancel_this_schedule: are_you_sure_you_want_to_cancel_this_schedule,
758
- completed_1_to_1: completed_1_to_1,
759
- done: done,
760
- what_do_you_want_to_talk_about: what_do_you_want_to_talk_about,
761
- session_type: session_type,
762
- what_is_this_session_type: what_is_this_session_type,
763
- how_are_you_feeling_about_each_area_right_now: how_are_you_feeling_about_each_area_right_now,
764
- sleep_nutrition_exercise_physical_health_and_mental_health: sleep_nutrition_exercise_physical_health_and_mental_health,
765
- goals_activities_habits_and_strategies: goals_activities_habits_and_strategies,
766
- overall_how_are_you_feeling_today: overall_how_are_you_feeling_today,
767
- what_is_your_level_of_pride_in_yourself_today: what_is_your_level_of_pride_in_yourself_today,
768
- how_are_you_feeling_today: how_are_you_feeling_today,
769
- how_much_did_you_learn_from_this_session: how_much_did_you_learn_from_this_session,
770
- what_is_the_most_important_thing_you_learned_from_this_session: what_is_the_most_important_thing_you_learned_from_this_session,
771
- your_next_meeting: your_next_meeting,
772
- today_at: today_at,
773
- choose_if_you_want_to_do_it_now_or_if_you_would_like_to_book_for_later: choose_if_you_want_to_do_it_now_or_if_you_would_like_to_book_for_later,
774
- edit: edit,
775
- phone_number: phone_number,
776
- second_phone_number: second_phone_number,
777
- health_note: health_note,
778
- address: address,
779
- mtss: mtss,
780
- note: note,
781
- no_schedule: no_schedule,
782
- my_notes: my_notes,
783
- private_note: private_note,
784
- goal_process: goal_process,
785
- view_all_goals: view_all_goals,
786
- completed: completed,
787
- student_information: student_information,
788
- top_learning_strategies: top_learning_strategies,
789
- perceived_usage: perceived_usage,
790
- total_number_of_times_seleted: total_number_of_times_seleted,
791
- energy: energy,
792
- focus: focus,
793
- happiness: happiness,
794
- stress: stress,
795
- one_to_one: one_to_one,
796
- class_reflection: class_reflection,
797
- conference: conference,
798
- learning_progress: learning_progress,
799
- cant_export_now_please_try_again: cant_export_now_please_try_again,
800
- view_data: view_data,
801
- learning_strategies: learning_strategies,
802
- strategies: strategies,
803
- number_of_used: number_of_used,
804
- next: next,
805
- my_conferences: my_conferences,
806
- select_a_student_and_launch_a_new_conference_or_book_one_for_later: select_a_student_and_launch_a_new_conference_or_book_one_for_later,
807
- you_have_no_student: you_have_no_student,
808
- this_is_a_required_field: this_is_a_required_field,
809
- please_select_question_category: please_select_question_category,
810
- book_conferences: book_conferences,
811
- final_score: final_score,
812
- new_conference: new_conference,
813
- search_student: search_student,
814
- "1_1_conversation": "1-1 Conversation",
815
- meeting_schedule: meeting_schedule,
816
- class_schedule: class_schedule,
817
- more_questions: more_questions,
818
- conference_rubric: conference_rubric,
819
- unlock: unlock,
820
- before_clicking_submit: before_clicking_submit,
821
- your_session_was: your_session_was,
822
- mins: mins,
823
- min: min,
824
- submit: submit,
825
- are_you_sure_to_complete: are_you_sure_to_complete,
826
- be_sure_to_check_completed_all: be_sure_to_check_completed_all,
827
- teacher_choice: teacher_choice,
828
- student_choice: student_choice,
829
- agreement: agreement,
830
- personal_learning_plan: personal_learning_plan,
831
- personal_interests: personal_interests,
832
- allow_student_to_edit: allow_student_to_edit,
833
- strengths_and_challenges: strengths_and_challenges,
834
- significant_strengths: significant_strengths,
835
- strengths: strengths,
836
- challenges: challenges,
837
- significant_challenges: significant_challenges,
838
- how_my_teachers_can_help_me_learn: how_my_teachers_can_help_me_learn,
839
- about_my_learning: about_my_learning,
840
- accommodations: accommodations,
841
- goals: goals,
842
- activity_circles: activity_circles,
843
- friend_circles: friend_circles,
844
- are_you_ready_to_learn: are_you_ready_to_learn,
845
- class_schedules: class_schedules,
846
- add_class_schedule: add_class_schedule,
847
- class_date: class_date,
848
- class_name: class_name,
849
- day_period: day_period,
850
- teacher_email: teacher_email,
851
- note_type_class: note_type_class,
852
- my_note: my_note,
853
- add_new_note: add_new_note,
854
- all_category: all_category,
855
- personalized: personalized,
856
- show_only_favorite: show_only_favorite,
857
- search: search,
858
- note_title: note_title,
859
- student: student,
860
- note_detail: note_detail,
861
- mark_as_favorite: mark_as_favorite,
862
- type_a_note: type_a_note,
863
- please_select_student: please_select_student,
864
- settings: settings,
865
- save_changes: save_changes,
866
- activity_notifications: activity_notifications,
867
- schedule_notifications: schedule_notifications,
868
- preschedule_notifications: preschedule_notifications,
869
- yes: yes,
870
- no: no,
871
- email_notification: email_notification,
872
- send_me_email_notification: send_me_email_notification,
873
- dont_send_me_email_notification: dont_send_me_email_notification,
874
- type: type,
875
- teacher_request: teacher_request,
876
- student_request: student_request,
877
- overview: overview,
878
- plp: plp,
879
- my_student_1_to_1: my_student_1_to_1,
880
- my_student_conference: my_student_conference,
881
- received_date: received_date,
882
- class_impact_score: class_impact_score,
883
- impact_score: impact_score,
884
- iep: iep,
885
- "1_to_1_conversation": "1-to-1 Conversation",
886
- creator: creator,
887
- last_modify: last_modify,
888
- Modify: Modify,
889
- student_reflections: student_reflections,
890
- external_reflection: external_reflection,
891
- external_class_reflection: external_class_reflection,
892
- reflections: reflections,
893
- class_reflections: class_reflections,
894
- add_reflection: add_reflection,
895
- add_class_reflection: add_class_reflection,
896
- class_type: class_type,
897
- teacher_image: teacher_image,
898
- send_to_teacher: send_to_teacher,
899
- send_now: send_now,
900
- missed: missed,
901
- pending: pending,
902
- sent_date: sent_date,
903
- go_to_the_student_plp: go_to_the_student_plp,
904
- new_iep: new_iep,
905
- edit_iep: edit_iep,
906
- type_of_iep: type_of_iep,
907
- source_of_eligibility_forinitial: source_of_eligibility_forinitial,
908
- annual_goals: annual_goals,
909
- enter_a_date_range: enter_a_date_range,
910
- add_objectives: add_objectives,
911
- add_goals: add_goals,
912
- day_month_year: day_month_year,
913
- special_education: special_education,
914
- special_education_content: special_education_content,
915
- objectives_and_reporting_progress: objectives_and_reporting_progress,
916
- objectives_and_reporting_progress_content: objectives_and_reporting_progress_content,
917
- annual_goals_content: annual_goals_content,
918
- related_services: related_services,
919
- related_services_content: related_services_content,
920
- supplementary_aids_and_services: supplementary_aids_and_services,
921
- supplementary_aids_and_services_content: supplementary_aids_and_services_content,
922
- program_modifications_for_school_personnel: program_modifications_for_school_personnel,
923
- program_modifications_for_school_personnel_content: program_modifications_for_school_personnel_content,
924
- extent_of_nonparticipation: extent_of_nonparticipation,
925
- extent_of_nonparticipation_content: extent_of_nonparticipation_content,
926
- accommodations_in_assessment: accommodations_in_assessment,
927
- accommodations_in_assessment_content: accommodations_in_assessment_content,
928
- service_delivery: service_delivery,
929
- service_delivery_content: service_delivery_content,
930
- transition_planning: transition_planning,
931
- transition_planning_content: transition_planning_content,
932
- present_levels: present_levels,
933
- present_levels_content: present_levels_content,
934
- signatures: signatures,
935
- iep_old_version_and_diagnostic_docs: iep_old_version_and_diagnostic_docs,
936
- upload_file: upload_file,
937
- add_interest: add_interest,
938
- upload_image: upload_image,
939
- supported_image_types: supported_image_types,
940
- edit_interest: edit_interest,
941
- select_personal_interest_or_enter_personal_interest_here: select_personal_interest_or_enter_personal_interest_here,
942
- add_note: add_note,
943
- select_best_fit: select_best_fit,
944
- best_fits: best_fits,
945
- select_strategies: select_strategies,
946
- selected_learning_strategies: selected_learning_strategies,
947
- do_you_want_to_delete_this_strengths_and_challenges: do_you_want_to_delete_this_strengths_and_challenges,
948
- add_new_item: add_new_item,
949
- edit_item: edit_item,
950
- select_teaching_strategies: select_teaching_strategies,
951
- selected_teaching_strategies: selected_teaching_strategies,
952
- add_title: add_title,
953
- my_learning: my_learning,
954
- do_you_want_to_delete_this_about_my_learning: do_you_want_to_delete_this_about_my_learning,
955
- edit_my_learning: edit_my_learning,
956
- add_my_learning: add_my_learning,
957
- select_about_learning_or_enter_about_learning_here: select_about_learning_or_enter_about_learning_here,
958
- accommodation: accommodation,
959
- all_categories: all_categories,
960
- do_you_want_to_delete_this_accommodation: do_you_want_to_delete_this_accommodation,
961
- edit_accommodation: edit_accommodation,
962
- add_accommodation: add_accommodation,
963
- all: all,
964
- all_status: all_status,
965
- goal_type: goal_type,
966
- add_new_goal: add_new_goal,
967
- goal_detail: goal_detail,
968
- select_status: select_status,
969
- goal_baseline: goal_baseline,
970
- objective: objective,
971
- goal_details: goal_details,
972
- goals_type: goals_type,
973
- edit_goal_detail: edit_goal_detail,
974
- uploaded_files: uploaded_files,
975
- optional: optional,
976
- edit_baseline: edit_baseline,
977
- edit_friend: edit_friend,
978
- add_friend: add_friend,
979
- search_friend: search_friend,
980
- friend_type: friend_type,
981
- edit_activity: edit_activity,
982
- add_activity: add_activity,
983
- search_activity: search_activity,
984
- activity: activity,
985
- activity_type: activity_type,
986
- select_or_type_an_activity: select_or_type_an_activity
987
- };
988
-
989
- var dashboard$1 = "Dashboard";
990
- var user$1 = "User";
991
- var question_bank$1 = "Question bank";
992
- var email_template$1 = "Email template";
993
- var custom_alert$1 = "Custom alert";
994
- var set_up$1 = "Set up";
995
- var media_gallery$1 = "Media Gallery";
996
- var district_school_list$1 = "District school list";
997
- var export_to_pdf$1 = "Export to PDF";
998
- var the_data_is_taken_from_the_home_screen$1 = "The data is taken from the home screen";
999
- var make_sure_everything_is_set_correctly_before_exporting$1 = "Make sure everything is set correctly before exporting.";
1000
- var cancel$1 = "Cancel";
1001
- var hey$1 = "Hey 1232342";
1002
- var readiness_to_learn$1 = "Readiness to Learn";
1003
- var high_impact_learning_strategies$1 = "High Impact Learning Strategies";
1004
- var reflection$1 = "Reflection";
1005
- var conferences$1 = "Conferences";
1006
- var safety$1 = "Safety";
1007
- var student_by_age$1 = "Student by Age";
1008
- var students_by_designation$1 = "Students by Designation";
1009
- var calendar$1 = "Calendar";
1010
- var gender$1 = "Gender";
1011
- var grade$1 = "Grade";
1012
- var current_grade$1 = "Current Grade";
1013
- var student_name$1 = "Student name";
1014
- var teacher_name$1 = "Teacher name";
1015
- var start_date$1 = "Start Date";
1016
- var end_date$1 = "End Date";
1017
- var tooltip_content_readiness_to_learn_chart$1 = "The represenation of individual student responses to their own feelings of Energy, Focus, Happiness, Safety, and Stress at the time administered. Note that scores are set on a 1-100 scale with the exception of Stress which optimum stress is set at '0' to get a sense of High Stress vs Low Stress.";
1018
- var tooltip_content_high_impact_chart$1 = "Both the composite of individual students reporting their perceived use of John Hattie's High Impact Learning Strategies measured against the actual application with a teacher in total.";
1019
- var tooltip_content_1_to_1_chart$1 = "The composite results of the survey completed by individual students assessing their own perception of performance in the 6 key areas followed by 3 specific areas of well being over time.";
1020
- var tooltip_content_class_reflection_chart$1 = "The result of surveys sent to any individual (external or internal) that connects with the student to assist in measuring the individual student's: Productivity, Happiness, Energy, Focus, and Stress over time.";
1021
- var tooltip_content_conference_chart$1 = "The composite representation of individual aggregate scores located at the bottom of individual Conferences conducted between Teachers and Students over time. Note that scores of 'Not Applicable' do not get measured.";
1022
- var tooltip_content_safety_chart$1 = "The visual represenation of all the responses from the question asking students to rate their perceived level of safety for themselves at your school over time.";
1023
- var tooltip_content_student_by_age_chart$1 = "The specific representation of students by gender and grade level at your school.";
1024
- var tooltip_content_students_by_designation$1 = "The composite representation of students by individual grades in your school with specific designations.";
1025
- var total_1_to_1$1 = "Total 1-to-1";
1026
- var total_1_to_1_time$1 = "Total 1-to-1 Time";
1027
- var total_conferences$1 = "Total Conferences";
1028
- var total_conferences_time$1 = "Total Conferences Time";
1029
- var total_class_reflection_check_ins$1 = "Total Class Reflection Check-ins";
1030
- var create_user$1 = "Create user";
1031
- var edit_user$1 = "Edit user";
1032
- var change_password$1 = "Change password";
1033
- var type_something_to_search_by_user_name$1 = "Type something to search by user name";
1034
- var total_of_users$1 = "Total of users";
1035
- var name$1 = "Name";
1036
- var email$1 = "Email";
1037
- var age$1 = "Age";
1038
- var role$1 = "Role";
1039
- var active_status$1 = "Active status";
1040
- var action$1 = "Action";
1041
- var active = "Active";
1042
- var inactive$1 = "Inactive";
1043
- var create$1 = "Create";
1044
- var update$1 = "Update";
1045
- var first_name$1 = "First name";
1046
- var date_of_birth$1 = "Date of birth";
1047
- var last_name = "Last name";
1048
- var roles$1 = "Roles";
1049
- var status$1 = "Status";
1050
- var send_forgot_password_link$1 = "Send forgot password link";
1051
- var download_user_data$1 = "Download user data";
1052
- var current_password$1 = "Current password";
1053
- var new_password$1 = "New password";
1054
- var confirm_password$1 = "Confirm password";
1055
- var save$1 = "Save";
1056
- var type_something_to_search_question$1 = "Type something to Search question";
1057
- var total_of_questions$1 = "Total of questions";
1058
- var create_question$1 = "Create question";
1059
- var edit_question$1 = "Edit question";
1060
- var question_type$1 = "Question Type";
1061
- var category$1 = "Category";
1062
- var question_text = "Question text";
1063
- var is_default_question_for_one_to_one$1 = "Is default question for one-to-one";
1064
- var default_question_for_students_or_teachers$1 = "Default question for students or teachers";
1065
- var is_default_question_general_class$1 = "Is default question general class";
1066
- var default_question_general_for_students_or_teachers$1 = "Default question general for students or teachers";
1067
- var before_session$1 = "Before session";
1068
- var edit_custom_alert$1 = "Edit custom alert";
1069
- var create_custom_alert$1 = "Create custom alert";
1070
- var total_of_custom_alert$1 = "Total of custom alert";
1071
- var number_of_sessions$1 = "Number of sessions";
1072
- var number_of_students$1 = "Number of students";
1073
- var begin_date$1 = "Begin date";
1074
- var duration_days$1 = "Duration (days)";
1075
- var students$1 = "Students";
1076
- var create_skill$1 = "Create skill";
1077
- var edit_skill$1 = "Edit skill";
1078
- var total_of_skills$1 = "Total of skills";
1079
- var description$1 = "Description";
1080
- var skill$1 = "skill";
1081
- var parent_category$1 = "Parent category";
1082
- var edit_subject$1 = "Edit subject";
1083
- var create_subject$1 = "Create subject";
1084
- var total_of_subjects$1 = "Total of subjects";
1085
- var color$1 = "Color";
1086
- var create_learning_support_category$1 = "Create learning support category";
1087
- var edit_learning_support_category$1 = "Edit learning support category";
1088
- var create_category$1 = "Create category";
1089
- var total_of_learning_support_categories$1 = "Total of learning support categories";
1090
- var default_color$1 = "Default Color";
1091
- var edit_strategy$1 = "Edit strategy";
1092
- var create_strategy$1 = "Create strategy";
1093
- var create_learning_strategy$1 = "Create learning strategy";
1094
- var total_of_strategies$1 = "Total of strategies";
1095
- var strategy_name$1 = "Strategy name";
1096
- var question$1 = "Question";
1097
- var detail$1 = "Detail";
1098
- var strategy$1 = "strategy";
1099
- var best_fit$1 = "Best fit";
1100
- var create_goal_example$1 = "Create goal example";
1101
- var edit_goal_example$1 = "Edit goal example";
1102
- var total_of_goal_examples$1 = "Total of goal examples";
1103
- var short_term_target_examples$1 = "Short term target examples";
1104
- var goal_example$1 = "goal example";
1105
- var edit_badge$1 = "Edit badge";
1106
- var create_badge$1 = "Create badge";
1107
- var total_of_badges$1 = "Total of badges";
1108
- var icon$1 = "Icon";
1109
- var badge$1 = "badge";
1110
- var badge_image$1 = "Badge image";
1111
- var edit_semester$1 = "Edit semester";
1112
- var create_semester$1 = "Create semester";
1113
- var update_school_break_month$1 = "Update school break month";
1114
- var total_of_semesters$1 = "Total of semesters";
1115
- var semester$1 = "semester";
1116
- var breaking_month$1 = "Breaking month";
1117
- var change_breaking_month$1 = "Change breaking month";
1118
- var school_year_break_month$1 = "School year break month";
1119
- var edit_blank_day$1 = "Edit blank day";
1120
- var create_blank_day$1 = "Create blank day";
1121
- var total_of_blank_days$1 = "Total of blank days";
1122
- var start_time$1 = "Start time";
1123
- var end_time$1 = "End time";
1124
- var school_blank_day$1 = "school blank day";
1125
- var edit_point$1 = "Edit point";
1126
- var create_new_point$1 = "Create new point";
1127
- var total_of_point$1 = "Total of point";
1128
- var label$1 = "Label";
1129
- var value$1 = "Value";
1130
- var break_point$1 = "Break point";
1131
- var update_break_point$1 = "Update break point";
1132
- var maximum_number_of_admins$1 = "Maximum number of admins";
1133
- var maximum_number_of_assistants$1 = "Maximum number of assistants";
1134
- var maximum_number_of_students$1 = "Maximum number of students";
1135
- var maximum_number_of_teachers$1 = "Maximum number of teachers";
1136
- var request_to_this_plan$1 = "Request to this plan";
1137
- var type_something_to_search_reflection_result$1 = "Type something to search reflection result";
1138
- var user_deleted$1 = "User deleted";
1139
- var export_user_data$1 = "Export user data";
1140
- var alert_delete_user$1 = "All data of this user will be permanently deleted from the system. Please export before continuing";
1141
- var delete_user$1 = "Delete user";
1142
- var alert_delete_teacher$1 = "A teacher must be selected before deleting this teacher. We will transfer the entire class and students to this teacher before deleting all of this teacher's data.";
1143
- var list_students$1 = "List Students";
1144
- var student_email$1 = "Student Email";
1145
- var current_teacher_name$1 = "Current Teacher Name";
1146
- var current_teacher_email$1 = "Current Teacher Email";
1147
- var change_save$1 = "Change Save";
1148
- var select_teacher_change$1 = "Select teacher change";
1149
- var current_assistant_name$1 = "Current Assistant Name";
1150
- var current_assistant_email$1 = "Current Assistant Email";
1151
- var remove_assistant$1 = "Remove Assistant";
1152
- var switch_assistant$1 = "Switch Assistant";
1153
- var select_assistant_change$1 = "Select Assistant change";
1154
- var welcome_email_resend$1 = "Welcome Email Re-send";
1155
- var send_for_selected_users$1 = "Send for selected users";
1156
- var user_name$1 = "User Name";
1157
- var user_email$1 = "User Email";
1158
- var level$1 = "Level";
1159
- var use_for$1 = "Use for";
1160
- var teacher_training$1 = "Teacher training";
1161
- var student_training$1 = "Student training";
1162
- var create_destination$1 = "Create Destination";
1163
- var total_of_designation$1 = "Total of Designation";
1164
- var destinations$1 = "Destinations";
1165
- var edit_destination$1 = "Edit Destination";
1166
- var confirm$1 = "Confirm";
1167
- var hello$1 = "Hello";
1168
- var todays_1_1$1 = "Today’s 1-1";
1169
- var todays_Conferences$1 = "Today’s Conferences";
1170
- var next_meeting$1 = "Next Meeting";
1171
- var next_conference$1 = "Next Conference";
1172
- var todays_schedule$1 = "Today’s Schedule";
1173
- var action_points$1 = "Action Points";
1174
- var upcoming$1 = "Upcoming";
1175
- var see_all_action_points$1 = "See all action points";
1176
- var add$1 = "Add";
1177
- var edit_action_point$1 = "Edit Action Point";
1178
- var add_action_point$1 = "Add Action Point";
1179
- var title$1 = "Title";
1180
- var type_title$1 = "Type title";
1181
- var subject$1 = "Subject";
1182
- var select_date$1 = "Select date";
1183
- var date$1 = "Date";
1184
- var select_time$1 = "Select time";
1185
- var time$1 = "Time";
1186
- var notification$1 = "Notification";
1187
- var no_notification$1 = "No notification";
1188
- var day$1 = "Day";
1189
- var week$1 = "Week";
1190
- var mark_as_done$1 = "Mark as done";
1191
- var my_students$1 = "My Students";
1192
- var download_template$1 = "Download Template";
1193
- var import_csv$1 = "Import CSV";
1194
- var add_new$1 = "Add New";
1195
- var show_only_work_as_assistant$1 = "Show only work as assistant";
1196
- var last_1_to_1$1 = "Last 1-TO-1";
1197
- var last_conference$1 = "Last conference";
1198
- var total_time$1 = "Total time";
1199
- var assistant_name$1 = "Assistant Name";
1200
- var work_as_assistant$1 = "Work as assistant";
1201
- var assign_assistant$1 = "Assign Assistant";
1202
- var view$1 = "View";
1203
- var history$1 = "History";
1204
- var custom_recurrence$1 = "Custom recurrence";
1205
- var repeat_every$1 = "Repeat every";
1206
- var repeat_on$1 = "Repeat on";
1207
- var never$1 = "Never";
1208
- var on$1 = "On";
1209
- var after$1 = "After";
1210
- var pick_a_date$1 = "Pick a date";
1211
- var apply$1 = "Apply";
1212
- var new_1_to_1$1 = "New 1-to-1";
1213
- var do_you_want_to_talk_with_teacher$1 = "Do you want to talk with teacher";
1214
- var start_now$1 = "Start now";
1215
- var book_for_later$1 = "Book for later";
1216
- var select_category$1 = "Select category";
1217
- var search_question_category$1 = "Search question category";
1218
- var no_question$1 = "No question";
1219
- var select_question$1 = "Select question";
1220
- var select_student$1 = "Select student";
1221
- var select_date_time$1 = "Select Date & Time";
1222
- var book_1_to_1$1 = "Book 1-to-1";
1223
- var schedule$1 = "Schedule";
1224
- var sessions_are_booked_as_10_minute_slots$1 = "Sessions are booked as 10 minute slots";
1225
- var does_not_reoccur$1 = "Does not reoccur";
1226
- var time_must_be_between_8_am_and_6_pm$1 = "Time must be between 8 AM and 6 PM";
1227
- var from$1 = "From";
1228
- var to$1 = "To";
1229
- var show_only_favorites$1 = "Show only favorites";
1230
- var duration$1 = "Duration";
1231
- var favorite$1 = "Favorite";
1232
- var open$1 = "Open";
1233
- var no_data$1 = "No Data";
1234
- var schedule_detail$1 = "Schedule Detail";
1235
- var are_you_sure_you_want_to_cancel_this_schedule$1 = "Are you sure you want to Cancel this schedule?";
1236
- var completed_1_to_1$1 = "Completed 1-to-1";
1237
- var done$1 = "Done";
1238
- var what_do_you_want_to_talk_about$1 = "What do you want to talk about?";
1239
- var session_type$1 = "Session Type";
1240
- var what_is_this_session_type$1 = "What is this session type?";
1241
- var how_are_you_feeling_about_each_area_right_now$1 = "How are you feeling about each area right now?";
1242
- var sleep_nutrition_exercise_physical_health_and_mental_health$1 = "Sleep, nutrition, exercise, physical health, and mental health";
1243
- var goals_activities_habits_and_strategies$1 = "Goals, activities, habits, and strategies";
1244
- var overall_how_are_you_feeling_today$1 = "Overall, how are you feeling today?";
1245
- var what_is_your_level_of_pride_in_yourself_today$1 = "What is your level of pride in yourself today?";
1246
- var how_are_you_feeling_today$1 = "How are you feeling today?";
1247
- var how_much_did_you_learn_from_this_session$1 = "How much did you learn from this session?";
1248
- var what_is_the_most_important_thing_you_learned_from_this_session$1 = "What is the most important thing you learned from this session?";
1249
- var your_next_meeting$1 = "Your next meeting";
1250
- var today_at$1 = "Today at";
1251
- var choose_if_you_want_to_do_it_now_or_if_you_would_like_to_book_for_later$1 = "Choose if you want to do it now or if you would like to book for later";
1252
- var edit$1 = "Edit";
1253
- var phone_number$1 = "Phone number";
1254
- var second_phone_number$1 = "Second phone number";
1255
- var health_note$1 = "Health Note";
1256
- var address$1 = "Address";
1257
- var mtss$1 = "MTSS";
1258
- var note$1 = "Note";
1259
- var no_schedule$1 = "No Schedule";
1260
- var my_notes$1 = "My Notes";
1261
- var private_note$1 = "Private Note";
1262
- var goal_process$1 = "Goal Process";
1263
- var view_all_goals$1 = "View all goals";
1264
- var completed$1 = "Completed";
1265
- var student_information$1 = "Student Information";
1266
- var top_learning_strategies$1 = "Top Learning Strategies";
1267
- var perceived_usage$1 = "Perceived Usage";
1268
- var total_number_of_times_seleted$1 = "Total Number of Times Seleted";
1269
- var energy$1 = "Energy";
1270
- var focus$1 = "Focus";
1271
- var happiness$1 = "Happiness";
1272
- var stress$1 = "Stress";
1273
- var one_to_one$1 = "One To One";
1274
- var class_reflection$1 = "Class Reflection";
1275
- var conference$1 = "Conference";
1276
- var learning_progress$1 = "Learning Progress";
1277
- var cant_export_now_please_try_again$1 = "Can't export now. Please try again.";
1278
- var view_data$1 = "View data";
1279
- var learning_strategies$1 = "Learning Strategies";
1280
- var strategies$1 = "Strategies";
1281
- var number_of_used$1 = "Number of used";
1282
- var next$1 = "Next";
1283
- var my_conferences$1 = "My Conferencess";
1284
- var select_a_student_and_launch_a_new_conference_or_book_one_for_later$1 = "Select a student and launch a new conference or book one for later.";
1285
- var you_have_no_student$1 = "You have no student";
1286
- var this_is_a_required_field$1 = "This is a required field";
1287
- var please_select_question_category$1 = "Please select question category";
1288
- var book_conferences$1 = "Book conferences";
1289
- var final_score$1 = "Final score";
1290
- var new_conference$1 = "New Conference";
1291
- var search_student$1 = "Search student";
1292
- var meeting_schedule$1 = "Meeting schedule";
1293
- var class_schedule$1 = "Class schedule";
1294
- var more_questions$1 = "More Questions";
1295
- var conference_rubric$1 = "Conference rubric";
1296
- var unlock$1 = "Unlock";
1297
- var before_clicking_submit$1 = "Before clicking submit";
1298
- var your_session_was$1 = "Your session was";
1299
- var mins$1 = "mins";
1300
- var min$1 = "min";
1301
- var submit$1 = "Submit";
1302
- var are_you_sure_to_complete$1 = "There are several questions you have not answered yet. Are you sure to complete?";
1303
- var be_sure_to_check_completed_all$1 = "Be sure to check with your teacher that you have completed all that is required";
1304
- var teacher_choice$1 = "Teacher choice";
1305
- var student_choice$1 = "Student choice";
1306
- var agreement$1 = "Agreement";
1307
- var personal_learning_plan$1 = "Personal Learning Plan";
1308
- var personal_interests$1 = "Personal Interests";
1309
- var allow_student_to_edit$1 = "Allow student to edit";
1310
- var strengths_and_challenges$1 = "Strengths and Challenges";
1311
- var significant_strengths$1 = "Significant Strengths";
1312
- var strengths$1 = "Strengths";
1313
- var challenges$1 = "Challenges";
1314
- var significant_challenges$1 = "Significant Challenges";
1315
- var how_my_teachers_can_help_me_learn$1 = "How my teachers can help me learn";
1316
- var about_my_learning$1 = "About My Learning";
1317
- var accommodations$1 = "Accommodations";
1318
- var goals$1 = "Goals";
1319
- var activity_circles$1 = "Activity Circles";
1320
- var friend_circles$1 = "Friend Circles";
1321
- var are_you_ready_to_learn$1 = "Are you ready to learn?";
1322
- var class_schedules$1 = "Class Schedules";
1323
- var add_class_schedule$1 = "Add Class Schedule";
1324
- var class_date$1 = "Class Date";
1325
- var class_name$1 = "Class Name";
1326
- var day_period$1 = "Day/Period";
1327
- var teacher_email$1 = "Teacher Email";
1328
- var note_type_class$1 = "Note Type & Class";
1329
- var my_note$1 = "My Note";
1330
- var add_new_note$1 = "Add New Note";
1331
- var all_category$1 = "All Category";
1332
- var personalized$1 = "Personalized";
1333
- var show_only_favorite$1 = "Show only favorite";
1334
- var search$1 = "Search";
1335
- var note_title$1 = "Note title";
1336
- var student$1 = "Student";
1337
- var note_detail$1 = "Note Detail";
1338
- var mark_as_favorite$1 = "Mark as favorite";
1339
- var type_a_note$1 = "Type a note";
1340
- var please_select_student$1 = "Please select student";
1341
- var settings$1 = "Settings";
1342
- var save_changes$1 = "Save changes";
1343
- var activity_notifications$1 = "Activity Notifications";
1344
- var schedule_notifications$1 = "Schedule Notifications";
1345
- var preschedule_notifications$1 = "Preschedule Notifications";
1346
- var yes$1 = "Yes";
1347
- var no$1 = "No";
1348
- var email_notification$1 = "Email Notification";
1349
- var send_me_email_notification$1 = "Send me email notification";
1350
- var dont_send_me_email_notification$1 = "Don’t send me email notification";
1351
- var type$1 = "Type";
1352
- var teacher_request$1 = "Teacher Request";
1353
- var student_request$1 = "Student Request";
1354
- var overview$1 = "Overview";
1355
- var plp$1 = "PLP";
1356
- var my_student_1_to_1$1 = "My Student 1-to-1";
1357
- var my_student_conference$1 = "My Student Conference";
1358
- var received_date$1 = "Received Date";
1359
- var class_impact_score$1 = "Class Impact Score";
1360
- var impact_score$1 = "Impact Score";
1361
- var iep$1 = "IEP";
1362
- var creator$1 = "Creator";
1363
- var last_modify$1 = "Last Modify";
1364
- var modify = "Modify";
1365
- var student_reflections$1 = "Student Reflections";
1366
- var external_reflection$1 = "External Reflection";
1367
- var external_class_reflection$1 = "External Class Reflection";
1368
- var reflections$1 = "Reflections";
1369
- var class_reflections$1 = "Class Reflections";
1370
- var add_reflection$1 = "Add Reflection";
1371
- var add_class_reflection$1 = "Add Class Reflection";
1372
- var class_type$1 = "Class Type";
1373
- var teacher_image$1 = "Teacher Image";
1374
- var send_to_teacher$1 = "Send to Teacher";
1375
- var send_now$1 = "Send Now";
1376
- var missed$1 = "Missed";
1377
- var pending$1 = "Pending";
1378
- var sent_date$1 = "Sent Date";
1379
- var go_to_the_student_plp$1 = "Go to the student's PLP";
1380
- var new_iep$1 = "New IEP";
1381
- var edit_iep$1 = "Edit IEP";
1382
- var type_of_iep$1 = "Type of IEP";
1383
- var source_of_eligibility_forinitial$1 = "Source of Eligibility (forinitial)";
1384
- var annual_goals$1 = "Annual Goals";
1385
- var enter_a_date_range$1 = "Enter a date range";
1386
- var add_objectives$1 = "Add Objectives";
1387
- var add_goals$1 = "Add Goals";
1388
- var day_month_year$1 = "day/month/year";
1389
- var special_education$1 = "Special Education";
1390
- var special_education_content$1 = "The IEP must contain a statement of the special education and related services and supplementary aids and services to be provided to the child, or on behalf of the child. This section focuses on the first element: a statement of the special education that will be provided for the child.";
1391
- var objectives_and_reporting_progress$1 = "Objectives and Reporting Progress";
1392
- var objectives_and_reporting_progress_content$1 = "Each child's IEP must also contain a description of how his or her progress toward meeting the annual goals will be measured and when it will be reported to parents.";
1393
- var annual_goals_content$1 = "Once a child's needs are identified, the IEP team works to develop appropriate goals to address those needs. Annual goals describe what the child is expected to do or learn within a 12-month period.";
1394
- var related_services$1 = "Related Services";
1395
- var related_services_content$1 = "To help a child with a disability benefit from special education, he or she may also need extra help in one area or another, such as speaking or moving. This additional help is called related services. Find out all about these critical services here.";
1396
- var supplementary_aids_and_services$1 = "Supplementary Aids and Services";
1397
- var supplementary_aids_and_services_content$1 = "Supplementary aids and services are intended to improve children’s access to learning and their participation across the spectrum of academic, extracurricular, and nonacademic activities and settings. The IEP team must determine what supplementary aids and services a child will need and specify them in the IEP.";
1398
- var program_modifications_for_school_personnel$1 = "Program Modifications for School Personnel";
1399
- var program_modifications_for_school_personnel_content$1 = "Also part of the IEP is identifying the program modifications or supports for school personnel that will be provided";
1400
- var extent_of_nonparticipation$1 = "Extent of Nonparticipation";
1401
- var extent_of_nonparticipation_content$1 = "The IEP must also include an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in other school settings and activities.";
1402
- var accommodations_in_assessment$1 = "Accommodations in Assessment";
1403
- var accommodations_in_assessment_content$1 = "IDEA requires that students with disabilities take part in state or districtwide assessments. The IEP team must decide if the student needs accommodations in testing or another type of assessment entirely. In this component of the IEP, the team documents how the student will participate.";
1404
- var service_delivery$1 = "Service Delivery";
1405
- var service_delivery_content$1 = "When will the child begin to receive services? Where? How often? How long will a “session” last? Pesky details, but important to include in the IEP!";
1406
- var transition_planning$1 = "Transition Planning";
1407
- var transition_planning_content$1 = "Beginning no later than a student’s 16th birthday (and younger, if appropriate), the IEP must contain transition-related plans designed to help the student prepare for life after secondary school.";
1408
- var present_levels$1 = "Present Levels";
1409
- var present_levels_content$1 = "How is the child currently doing in school? How does the disability affect his or her performance in class? This type of information is captured in the “present levels” statement in the IEP.";
1410
- var signatures$1 = "Signatures";
1411
- var iep_old_version_and_diagnostic_docs$1 = "IEP old version and diagnostic docs";
1412
- var upload_file$1 = "Upload File";
1413
- var add_interest$1 = "Add Interest";
1414
- var upload_image$1 = "Upload Image";
1415
- var supported_image_types$1 = "Supported image types: PNG, JPEG, WEBPbbb";
1416
- var edit_interest$1 = "Edit Interest";
1417
- var select_personal_interest_or_enter_personal_interest_here$1 = "Select personal interest or enter personal interest here";
1418
- var add_note$1 = "Add note";
1419
- var select_best_fit$1 = "Select Best Fit";
1420
- var best_fits$1 = "Best fits";
1421
- var select_strategies$1 = "Select Strategies";
1422
- var selected_learning_strategies$1 = "Selected Learning Strategies";
1423
- var do_you_want_to_delete_this_strengths_and_challenges$1 = "Do you want to delete this strengths and challenges";
1424
- var add_new_item$1 = "Add New Item";
1425
- var edit_item$1 = "Edit Item";
1426
- var select_teaching_strategies$1 = "Select Teaching Strategies";
1427
- var selected_teaching_strategies$1 = "Selected Teaching Strategies";
1428
- var add_title$1 = "Add title";
1429
- var my_learning$1 = "My Learning";
1430
- var do_you_want_to_delete_this_about_my_learning$1 = "Do you want to delete this about my learning";
1431
- var edit_my_learning$1 = "Edit My Learning";
1432
- var add_my_learning$1 = "Add My Learning";
1433
- var select_about_learning_or_enter_about_learning_here$1 = "Select about learning or enter about learning here";
1434
- var accommodation$1 = "Accommodation";
1435
- var all_categories$1 = "All categories";
1436
- var do_you_want_to_delete_this_accommodation$1 = "Do you want to delete this accommodation";
1437
- var edit_accommodation$1 = "Edit Accommodation";
1438
- var add_accommodation$1 = "add_accommodation";
1439
- var all$1 = "All";
1440
- var all_status$1 = "All status";
1441
- var goal_type$1 = "Goal Type";
1442
- var add_new_goal$1 = "Add New Goal";
1443
- var goal_detail$1 = "Goal Detail";
1444
- var select_status$1 = "Select status";
1445
- var goal_baseline$1 = "Goal Baseline";
1446
- var objective$1 = "Objective";
1447
- var goal_details$1 = "Goal Details";
1448
- var goals_type$1 = "Goals Type";
1449
- var edit_goal_detail$1 = "Edit Goal Detail";
1450
- var uploaded_files$1 = "Uploaded Files";
1451
- var optional$1 = "Optional";
1452
- var edit_baseline$1 = "Edit Baseline";
1453
- var edit_friend$1 = "Edit friend";
1454
- var add_friend$1 = "Add friend";
1455
- var search_friend$1 = "Search friend";
1456
- var friend_type$1 = "Friend type";
1457
- var edit_activity$1 = "Edit activity";
1458
- var add_activity$1 = "Add activity";
1459
- var search_activity$1 = "Search activity";
1460
- var activity$1 = "Activity";
1461
- var activity_type$1 = "Activity type";
1462
- var select_or_type_an_activity$1 = "Select or type an activity";
1463
- var lang_uk = {
1464
- dashboard: dashboard$1,
1465
- user: user$1,
1466
- question_bank: question_bank$1,
1467
- email_template: email_template$1,
1468
- custom_alert: custom_alert$1,
1469
- set_up: set_up$1,
1470
- media_gallery: media_gallery$1,
1471
- district_school_list: district_school_list$1,
1472
- export_to_pdf: export_to_pdf$1,
1473
- the_data_is_taken_from_the_home_screen: the_data_is_taken_from_the_home_screen$1,
1474
- make_sure_everything_is_set_correctly_before_exporting: make_sure_everything_is_set_correctly_before_exporting$1,
1475
- cancel: cancel$1,
1476
- hey: hey$1,
1477
- readiness_to_learn: readiness_to_learn$1,
1478
- high_impact_learning_strategies: high_impact_learning_strategies$1,
1479
- "1_to_1": "1 to 1",
1480
- reflection: reflection$1,
1481
- conferences: conferences$1,
1482
- safety: safety$1,
1483
- student_by_age: student_by_age$1,
1484
- students_by_designation: students_by_designation$1,
1485
- calendar: calendar$1,
1486
- gender: gender$1,
1487
- grade: grade$1,
1488
- current_grade: current_grade$1,
1489
- student_name: student_name$1,
1490
- teacher_name: teacher_name$1,
1491
- start_date: start_date$1,
1492
- end_date: end_date$1,
1493
- tooltip_content_readiness_to_learn_chart: tooltip_content_readiness_to_learn_chart$1,
1494
- tooltip_content_high_impact_chart: tooltip_content_high_impact_chart$1,
1495
- tooltip_content_1_to_1_chart: tooltip_content_1_to_1_chart$1,
1496
- tooltip_content_class_reflection_chart: tooltip_content_class_reflection_chart$1,
1497
- tooltip_content_conference_chart: tooltip_content_conference_chart$1,
1498
- tooltip_content_safety_chart: tooltip_content_safety_chart$1,
1499
- tooltip_content_student_by_age_chart: tooltip_content_student_by_age_chart$1,
1500
- tooltip_content_students_by_designation: tooltip_content_students_by_designation$1,
1501
- total_1_to_1: total_1_to_1$1,
1502
- total_1_to_1_time: total_1_to_1_time$1,
1503
- total_conferences: total_conferences$1,
1504
- total_conferences_time: total_conferences_time$1,
1505
- total_class_reflection_check_ins: total_class_reflection_check_ins$1,
1506
- create_user: create_user$1,
1507
- edit_user: edit_user$1,
1508
- change_password: change_password$1,
1509
- type_something_to_search_by_user_name: type_something_to_search_by_user_name$1,
1510
- total_of_users: total_of_users$1,
1511
- name: name$1,
1512
- email: email$1,
1513
- age: age$1,
1514
- role: role$1,
1515
- active_status: active_status$1,
1516
- action: action$1,
1517
- active: active,
1518
- inactive: inactive$1,
1519
- create: create$1,
1520
- update: update$1,
1521
- first_name: first_name$1,
1522
- date_of_birth: date_of_birth$1,
1523
- last_name: last_name,
1524
- roles: roles$1,
1525
- status: status$1,
1526
- send_forgot_password_link: send_forgot_password_link$1,
1527
- download_user_data: download_user_data$1,
1528
- current_password: current_password$1,
1529
- new_password: new_password$1,
1530
- confirm_password: confirm_password$1,
1531
- save: save$1,
1532
- type_something_to_search_question: type_something_to_search_question$1,
1533
- total_of_questions: total_of_questions$1,
1534
- create_question: create_question$1,
1535
- edit_question: edit_question$1,
1536
- question_type: question_type$1,
1537
- category: category$1,
1538
- question_text: question_text,
1539
- is_default_question_for_one_to_one: is_default_question_for_one_to_one$1,
1540
- default_question_for_students_or_teachers: default_question_for_students_or_teachers$1,
1541
- is_default_question_general_class: is_default_question_general_class$1,
1542
- default_question_general_for_students_or_teachers: default_question_general_for_students_or_teachers$1,
1543
- before_session: before_session$1,
1544
- edit_custom_alert: edit_custom_alert$1,
1545
- create_custom_alert: create_custom_alert$1,
1546
- total_of_custom_alert: total_of_custom_alert$1,
1547
- number_of_sessions: number_of_sessions$1,
1548
- number_of_students: number_of_students$1,
1549
- begin_date: begin_date$1,
1550
- duration_days: duration_days$1,
1551
- students: students$1,
1552
- create_skill: create_skill$1,
1553
- edit_skill: edit_skill$1,
1554
- total_of_skills: total_of_skills$1,
1555
- description: description$1,
1556
- skill: skill$1,
1557
- parent_category: parent_category$1,
1558
- edit_subject: edit_subject$1,
1559
- create_subject: create_subject$1,
1560
- total_of_subjects: total_of_subjects$1,
1561
- color: color$1,
1562
- create_learning_support_category: create_learning_support_category$1,
1563
- edit_learning_support_category: edit_learning_support_category$1,
1564
- create_category: create_category$1,
1565
- total_of_learning_support_categories: total_of_learning_support_categories$1,
1566
- default_color: default_color$1,
1567
- edit_strategy: edit_strategy$1,
1568
- create_strategy: create_strategy$1,
1569
- create_learning_strategy: create_learning_strategy$1,
1570
- total_of_strategies: total_of_strategies$1,
1571
- strategy_name: strategy_name$1,
1572
- question: question$1,
1573
- detail: detail$1,
1574
- strategy: strategy$1,
1575
- best_fit: best_fit$1,
1576
- create_goal_example: create_goal_example$1,
1577
- edit_goal_example: edit_goal_example$1,
1578
- total_of_goal_examples: total_of_goal_examples$1,
1579
- short_term_target_examples: short_term_target_examples$1,
1580
- goal_example: goal_example$1,
1581
- edit_badge: edit_badge$1,
1582
- create_badge: create_badge$1,
1583
- total_of_badges: total_of_badges$1,
1584
- icon: icon$1,
1585
- badge: badge$1,
1586
- badge_image: badge_image$1,
1587
- edit_semester: edit_semester$1,
1588
- create_semester: create_semester$1,
1589
- update_school_break_month: update_school_break_month$1,
1590
- total_of_semesters: total_of_semesters$1,
1591
- semester: semester$1,
1592
- breaking_month: breaking_month$1,
1593
- change_breaking_month: change_breaking_month$1,
1594
- school_year_break_month: school_year_break_month$1,
1595
- edit_blank_day: edit_blank_day$1,
1596
- create_blank_day: create_blank_day$1,
1597
- total_of_blank_days: total_of_blank_days$1,
1598
- start_time: start_time$1,
1599
- end_time: end_time$1,
1600
- school_blank_day: school_blank_day$1,
1601
- edit_point: edit_point$1,
1602
- create_new_point: create_new_point$1,
1603
- total_of_point: total_of_point$1,
1604
- label: label$1,
1605
- value: value$1,
1606
- break_point: break_point$1,
1607
- update_break_point: update_break_point$1,
1608
- maximum_number_of_admins: maximum_number_of_admins$1,
1609
- maximum_number_of_assistants: maximum_number_of_assistants$1,
1610
- maximum_number_of_students: maximum_number_of_students$1,
1611
- maximum_number_of_teachers: maximum_number_of_teachers$1,
1612
- request_to_this_plan: request_to_this_plan$1,
1613
- type_something_to_search_reflection_result: type_something_to_search_reflection_result$1,
1614
- user_deleted: user_deleted$1,
1615
- export_user_data: export_user_data$1,
1616
- alert_delete_user: alert_delete_user$1,
1617
- delete_user: delete_user$1,
1618
- alert_delete_teacher: alert_delete_teacher$1,
1619
- list_students: list_students$1,
1620
- student_email: student_email$1,
1621
- current_teacher_name: current_teacher_name$1,
1622
- current_teacher_email: current_teacher_email$1,
1623
- change_save: change_save$1,
1624
- select_teacher_change: select_teacher_change$1,
1625
- current_assistant_name: current_assistant_name$1,
1626
- current_assistant_email: current_assistant_email$1,
1627
- remove_assistant: remove_assistant$1,
1628
- switch_assistant: switch_assistant$1,
1629
- select_assistant_change: select_assistant_change$1,
1630
- welcome_email_resend: welcome_email_resend$1,
1631
- send_for_selected_users: send_for_selected_users$1,
1632
- user_name: user_name$1,
1633
- user_email: user_email$1,
1634
- level: level$1,
1635
- use_for: use_for$1,
1636
- teacher_training: teacher_training$1,
1637
- student_training: student_training$1,
1638
- create_destination: create_destination$1,
1639
- total_of_designation: total_of_designation$1,
1640
- destinations: destinations$1,
1641
- edit_destination: edit_destination$1,
1642
- confirm: confirm$1,
1643
- hello: hello$1,
1644
- todays_1_1: todays_1_1$1,
1645
- todays_Conferences: todays_Conferences$1,
1646
- next_meeting: next_meeting$1,
1647
- next_conference: next_conference$1,
1648
- todays_schedule: todays_schedule$1,
1649
- action_points: action_points$1,
1650
- upcoming: upcoming$1,
1651
- see_all_action_points: see_all_action_points$1,
1652
- add: add$1,
1653
- edit_action_point: edit_action_point$1,
1654
- add_action_point: add_action_point$1,
1655
- title: title$1,
1656
- type_title: type_title$1,
1657
- subject: subject$1,
1658
- "class": "Class",
1659
- select_date: select_date$1,
1660
- date: date$1,
1661
- select_time: select_time$1,
1662
- time: time$1,
1663
- notification: notification$1,
1664
- no_notification: no_notification$1,
1665
- day: day$1,
1666
- week: week$1,
1667
- mark_as_done: mark_as_done$1,
1668
- "delete": "Delete",
1669
- my_students: my_students$1,
1670
- download_template: download_template$1,
1671
- import_csv: import_csv$1,
1672
- add_new: add_new$1,
1673
- show_only_work_as_assistant: show_only_work_as_assistant$1,
1674
- last_1_to_1: last_1_to_1$1,
1675
- last_conference: last_conference$1,
1676
- total_time: total_time$1,
1677
- assistant_name: assistant_name$1,
1678
- work_as_assistant: work_as_assistant$1,
1679
- assign_assistant: assign_assistant$1,
1680
- view: view$1,
1681
- history: history$1,
1682
- custom_recurrence: custom_recurrence$1,
1683
- repeat_every: repeat_every$1,
1684
- repeat_on: repeat_on$1,
1685
- never: never$1,
1686
- on: on$1,
1687
- after: after$1,
1688
- pick_a_date: pick_a_date$1,
1689
- apply: apply$1,
1690
- new_1_to_1: new_1_to_1$1,
1691
- do_you_want_to_talk_with_teacher: do_you_want_to_talk_with_teacher$1,
1692
- start_now: start_now$1,
1693
- book_for_later: book_for_later$1,
1694
- select_category: select_category$1,
1695
- search_question_category: search_question_category$1,
1696
- no_question: no_question$1,
1697
- select_question: select_question$1,
1698
- select_student: select_student$1,
1699
- select_date_time: select_date_time$1,
1700
- book_1_to_1: book_1_to_1$1,
1701
- schedule: schedule$1,
1702
- sessions_are_booked_as_10_minute_slots: sessions_are_booked_as_10_minute_slots$1,
1703
- does_not_reoccur: does_not_reoccur$1,
1704
- time_must_be_between_8_am_and_6_pm: time_must_be_between_8_am_and_6_pm$1,
1705
- from: from$1,
1706
- to: to$1,
1707
- show_only_favorites: show_only_favorites$1,
1708
- duration: duration$1,
1709
- favorite: favorite$1,
1710
- open: open$1,
1711
- no_data: no_data$1,
1712
- schedule_detail: schedule_detail$1,
1713
- are_you_sure_you_want_to_cancel_this_schedule: are_you_sure_you_want_to_cancel_this_schedule$1,
1714
- completed_1_to_1: completed_1_to_1$1,
1715
- done: done$1,
1716
- what_do_you_want_to_talk_about: what_do_you_want_to_talk_about$1,
1717
- session_type: session_type$1,
1718
- what_is_this_session_type: what_is_this_session_type$1,
1719
- how_are_you_feeling_about_each_area_right_now: how_are_you_feeling_about_each_area_right_now$1,
1720
- sleep_nutrition_exercise_physical_health_and_mental_health: sleep_nutrition_exercise_physical_health_and_mental_health$1,
1721
- goals_activities_habits_and_strategies: goals_activities_habits_and_strategies$1,
1722
- overall_how_are_you_feeling_today: overall_how_are_you_feeling_today$1,
1723
- what_is_your_level_of_pride_in_yourself_today: what_is_your_level_of_pride_in_yourself_today$1,
1724
- how_are_you_feeling_today: how_are_you_feeling_today$1,
1725
- how_much_did_you_learn_from_this_session: how_much_did_you_learn_from_this_session$1,
1726
- what_is_the_most_important_thing_you_learned_from_this_session: what_is_the_most_important_thing_you_learned_from_this_session$1,
1727
- your_next_meeting: your_next_meeting$1,
1728
- today_at: today_at$1,
1729
- choose_if_you_want_to_do_it_now_or_if_you_would_like_to_book_for_later: choose_if_you_want_to_do_it_now_or_if_you_would_like_to_book_for_later$1,
1730
- edit: edit$1,
1731
- phone_number: phone_number$1,
1732
- second_phone_number: second_phone_number$1,
1733
- health_note: health_note$1,
1734
- address: address$1,
1735
- mtss: mtss$1,
1736
- note: note$1,
1737
- no_schedule: no_schedule$1,
1738
- my_notes: my_notes$1,
1739
- private_note: private_note$1,
1740
- goal_process: goal_process$1,
1741
- view_all_goals: view_all_goals$1,
1742
- completed: completed$1,
1743
- student_information: student_information$1,
1744
- top_learning_strategies: top_learning_strategies$1,
1745
- perceived_usage: perceived_usage$1,
1746
- total_number_of_times_seleted: total_number_of_times_seleted$1,
1747
- energy: energy$1,
1748
- focus: focus$1,
1749
- happiness: happiness$1,
1750
- stress: stress$1,
1751
- one_to_one: one_to_one$1,
1752
- class_reflection: class_reflection$1,
1753
- conference: conference$1,
1754
- learning_progress: learning_progress$1,
1755
- cant_export_now_please_try_again: cant_export_now_please_try_again$1,
1756
- view_data: view_data$1,
1757
- learning_strategies: learning_strategies$1,
1758
- strategies: strategies$1,
1759
- number_of_used: number_of_used$1,
1760
- next: next$1,
1761
- my_conferences: my_conferences$1,
1762
- select_a_student_and_launch_a_new_conference_or_book_one_for_later: select_a_student_and_launch_a_new_conference_or_book_one_for_later$1,
1763
- you_have_no_student: you_have_no_student$1,
1764
- this_is_a_required_field: this_is_a_required_field$1,
1765
- please_select_question_category: please_select_question_category$1,
1766
- book_conferences: book_conferences$1,
1767
- final_score: final_score$1,
1768
- new_conference: new_conference$1,
1769
- search_student: search_student$1,
1770
- "1_1_conversation": "1-1 Conversation",
1771
- meeting_schedule: meeting_schedule$1,
1772
- class_schedule: class_schedule$1,
1773
- more_questions: more_questions$1,
1774
- conference_rubric: conference_rubric$1,
1775
- unlock: unlock$1,
1776
- before_clicking_submit: before_clicking_submit$1,
1777
- your_session_was: your_session_was$1,
1778
- mins: mins$1,
1779
- min: min$1,
1780
- submit: submit$1,
1781
- are_you_sure_to_complete: are_you_sure_to_complete$1,
1782
- be_sure_to_check_completed_all: be_sure_to_check_completed_all$1,
1783
- teacher_choice: teacher_choice$1,
1784
- student_choice: student_choice$1,
1785
- agreement: agreement$1,
1786
- personal_learning_plan: personal_learning_plan$1,
1787
- personal_interests: personal_interests$1,
1788
- allow_student_to_edit: allow_student_to_edit$1,
1789
- strengths_and_challenges: strengths_and_challenges$1,
1790
- significant_strengths: significant_strengths$1,
1791
- strengths: strengths$1,
1792
- challenges: challenges$1,
1793
- significant_challenges: significant_challenges$1,
1794
- how_my_teachers_can_help_me_learn: how_my_teachers_can_help_me_learn$1,
1795
- about_my_learning: about_my_learning$1,
1796
- accommodations: accommodations$1,
1797
- goals: goals$1,
1798
- activity_circles: activity_circles$1,
1799
- friend_circles: friend_circles$1,
1800
- are_you_ready_to_learn: are_you_ready_to_learn$1,
1801
- class_schedules: class_schedules$1,
1802
- add_class_schedule: add_class_schedule$1,
1803
- class_date: class_date$1,
1804
- class_name: class_name$1,
1805
- day_period: day_period$1,
1806
- teacher_email: teacher_email$1,
1807
- note_type_class: note_type_class$1,
1808
- my_note: my_note$1,
1809
- add_new_note: add_new_note$1,
1810
- all_category: all_category$1,
1811
- personalized: personalized$1,
1812
- show_only_favorite: show_only_favorite$1,
1813
- search: search$1,
1814
- note_title: note_title$1,
1815
- student: student$1,
1816
- note_detail: note_detail$1,
1817
- mark_as_favorite: mark_as_favorite$1,
1818
- type_a_note: type_a_note$1,
1819
- please_select_student: please_select_student$1,
1820
- settings: settings$1,
1821
- save_changes: save_changes$1,
1822
- activity_notifications: activity_notifications$1,
1823
- schedule_notifications: schedule_notifications$1,
1824
- preschedule_notifications: preschedule_notifications$1,
1825
- yes: yes$1,
1826
- no: no$1,
1827
- email_notification: email_notification$1,
1828
- send_me_email_notification: send_me_email_notification$1,
1829
- dont_send_me_email_notification: dont_send_me_email_notification$1,
1830
- type: type$1,
1831
- teacher_request: teacher_request$1,
1832
- student_request: student_request$1,
1833
- overview: overview$1,
1834
- plp: plp$1,
1835
- my_student_1_to_1: my_student_1_to_1$1,
1836
- my_student_conference: my_student_conference$1,
1837
- received_date: received_date$1,
1838
- class_impact_score: class_impact_score$1,
1839
- impact_score: impact_score$1,
1840
- iep: iep$1,
1841
- "1_to_1_conversation": "1-to-1 Conversation",
1842
- creator: creator$1,
1843
- last_modify: last_modify$1,
1844
- modify: modify,
1845
- student_reflections: student_reflections$1,
1846
- external_reflection: external_reflection$1,
1847
- external_class_reflection: external_class_reflection$1,
1848
- reflections: reflections$1,
1849
- class_reflections: class_reflections$1,
1850
- add_reflection: add_reflection$1,
1851
- add_class_reflection: add_class_reflection$1,
1852
- class_type: class_type$1,
1853
- teacher_image: teacher_image$1,
1854
- send_to_teacher: send_to_teacher$1,
1855
- send_now: send_now$1,
1856
- missed: missed$1,
1857
- pending: pending$1,
1858
- sent_date: sent_date$1,
1859
- go_to_the_student_plp: go_to_the_student_plp$1,
1860
- new_iep: new_iep$1,
1861
- edit_iep: edit_iep$1,
1862
- type_of_iep: type_of_iep$1,
1863
- source_of_eligibility_forinitial: source_of_eligibility_forinitial$1,
1864
- annual_goals: annual_goals$1,
1865
- enter_a_date_range: enter_a_date_range$1,
1866
- add_objectives: add_objectives$1,
1867
- add_goals: add_goals$1,
1868
- day_month_year: day_month_year$1,
1869
- special_education: special_education$1,
1870
- special_education_content: special_education_content$1,
1871
- objectives_and_reporting_progress: objectives_and_reporting_progress$1,
1872
- objectives_and_reporting_progress_content: objectives_and_reporting_progress_content$1,
1873
- annual_goals_content: annual_goals_content$1,
1874
- related_services: related_services$1,
1875
- related_services_content: related_services_content$1,
1876
- supplementary_aids_and_services: supplementary_aids_and_services$1,
1877
- supplementary_aids_and_services_content: supplementary_aids_and_services_content$1,
1878
- program_modifications_for_school_personnel: program_modifications_for_school_personnel$1,
1879
- program_modifications_for_school_personnel_content: program_modifications_for_school_personnel_content$1,
1880
- extent_of_nonparticipation: extent_of_nonparticipation$1,
1881
- extent_of_nonparticipation_content: extent_of_nonparticipation_content$1,
1882
- accommodations_in_assessment: accommodations_in_assessment$1,
1883
- accommodations_in_assessment_content: accommodations_in_assessment_content$1,
1884
- service_delivery: service_delivery$1,
1885
- service_delivery_content: service_delivery_content$1,
1886
- transition_planning: transition_planning$1,
1887
- transition_planning_content: transition_planning_content$1,
1888
- present_levels: present_levels$1,
1889
- present_levels_content: present_levels_content$1,
1890
- signatures: signatures$1,
1891
- iep_old_version_and_diagnostic_docs: iep_old_version_and_diagnostic_docs$1,
1892
- upload_file: upload_file$1,
1893
- add_interest: add_interest$1,
1894
- upload_image: upload_image$1,
1895
- supported_image_types: supported_image_types$1,
1896
- edit_interest: edit_interest$1,
1897
- select_personal_interest_or_enter_personal_interest_here: select_personal_interest_or_enter_personal_interest_here$1,
1898
- add_note: add_note$1,
1899
- select_best_fit: select_best_fit$1,
1900
- best_fits: best_fits$1,
1901
- select_strategies: select_strategies$1,
1902
- selected_learning_strategies: selected_learning_strategies$1,
1903
- do_you_want_to_delete_this_strengths_and_challenges: do_you_want_to_delete_this_strengths_and_challenges$1,
1904
- add_new_item: add_new_item$1,
1905
- edit_item: edit_item$1,
1906
- select_teaching_strategies: select_teaching_strategies$1,
1907
- selected_teaching_strategies: selected_teaching_strategies$1,
1908
- add_title: add_title$1,
1909
- my_learning: my_learning$1,
1910
- do_you_want_to_delete_this_about_my_learning: do_you_want_to_delete_this_about_my_learning$1,
1911
- edit_my_learning: edit_my_learning$1,
1912
- add_my_learning: add_my_learning$1,
1913
- select_about_learning_or_enter_about_learning_here: select_about_learning_or_enter_about_learning_here$1,
1914
- accommodation: accommodation$1,
1915
- all_categories: all_categories$1,
1916
- do_you_want_to_delete_this_accommodation: do_you_want_to_delete_this_accommodation$1,
1917
- edit_accommodation: edit_accommodation$1,
1918
- add_accommodation: add_accommodation$1,
1919
- all: all$1,
1920
- all_status: all_status$1,
1921
- goal_type: goal_type$1,
1922
- add_new_goal: add_new_goal$1,
1923
- goal_detail: goal_detail$1,
1924
- select_status: select_status$1,
1925
- goal_baseline: goal_baseline$1,
1926
- objective: objective$1,
1927
- goal_details: goal_details$1,
1928
- goals_type: goals_type$1,
1929
- edit_goal_detail: edit_goal_detail$1,
1930
- uploaded_files: uploaded_files$1,
1931
- optional: optional$1,
1932
- edit_baseline: edit_baseline$1,
1933
- edit_friend: edit_friend$1,
1934
- add_friend: add_friend$1,
1935
- search_friend: search_friend$1,
1936
- friend_type: friend_type$1,
1937
- edit_activity: edit_activity$1,
1938
- add_activity: add_activity$1,
1939
- search_activity: search_activity$1,
1940
- activity: activity$1,
1941
- activity_type: activity_type$1,
1942
- select_or_type_an_activity: select_or_type_an_activity$1
1943
- };
1944
-
1945
- var DEFAULT_LANGUAGE = localStorage.getItem("language") !== null ? localStorage.getItem("language") : "uk";
1946
- console.log({
1947
- lang: localStorage.getItem("language")
1948
- });
1949
- i18n.use(initReactI18next).init({
1950
- resources: {
1951
- us: {
1952
- translation: lang_us
1953
- },
1954
- uk: {
1955
- translation: lang_uk
1956
- }
1957
- },
1958
- lng: DEFAULT_LANGUAGE,
1959
- fallbackLng: DEFAULT_LANGUAGE,
1960
- keySeparator: false,
1961
- interpolation: {
1962
- escapeValue: false
1963
- }
1964
- });
1965
30
 
1966
31
  // A type of promise-like that resolves synchronously and supports only one observer
1967
32
 
@@ -1982,7 +47,7 @@ function _catch(body, recover) {
1982
47
  return result;
1983
48
  }
1984
49
 
1985
- var styles = {"btn-login-google":"_2HqmH","notification-count":"_2sew7","text-introduction":"_3OgWF","btn-trans-border":"_r9cAh","contact":"_NszFe","learn-more":"_MDjzH","title-quote":"_1Swkw","descriptions-quote":"_gi8vj","descriptions-icon":"_3SOdX","box-login":"_38Lo1","block-verification":"_1OzGy","block-login":"_wWIyO","title-login":"_3nuns","title-forgot-password":"_21qb6","btn-close":"_NhW9l","btn-login":"_3IL10","return-to-login":"_Ce3Kg","recover-account":"_2t6d9","link-to-login":"_3bDsd","remember":"_11FZt","term-and-conditions":"_3LXoI","descriptions-forgot-pass":"_PMcjT","content-icon":"_2rZY6","title-icon":"_y9lM2","nav-home":"_1TT1q","box-introduction":"_32V6L","icon":"_20YJX","form-user-name":"_39BJD","checkbox-remember":"_2K9b2","block-reset-password":"_23Sua","block-forgot-pass":"_3CWP6","page-not-login":"_3Wmco","content-quote":"_13Rk0","home-page":"_o6HKW","red-background":"_jOY7o","login":"_F-hjL","img-box":"_2v-L_","img-login":"_3ncTL","img-login-rectangle":"_2kOvJ","c-main":"_39l0X","container-fluid":"_1BMwK","input-file-label":"_1XNpH","delete-avatar-button":"_1z5h9","header-logo":"_Gewcf","box-sidebar":"_2vcmv","sidebar-logo":"_1hXpy","sidebar-nav-links":"_3vb3s","c-active":"_36jSM","sidebar-nav-links-hover":"_DNrus","box-sidebar-header":"_3NEZj","box-logout":"_1wUDG","sidebar-btn-minimized":"_1S7Px","sidebar-logout":"_2P85D","nav-mobile":"_1qjbW","filter-media-file":"_1I62C","div":"_3cLcM","dropdown-menu":"_1krbH","header-avatar":"_RQaHE","dropdown-menu-flag":"_XK8oS","dropdown-content":"_3ys4W","dropdown-change":"_ToOW_","item-address":"_3sQlR","item-logout":"_3bqSM","title-address":"_1jgSI","img-avatar":"_35Ttz","item-contact":"_1wc7o","logout":"_1_9tV","content-text":"_3S4f2","dropdown-content-language":"_3ajui","dropdown-item-language":"_3Y_y4","dropdown-item-language-active":"_CzNMi","hide-in-mobile":"_1INnO","hide-in-desktop":"_2LIqK","control-input":"_2Zz97","custom-control":"_3-yp5"};
50
+ var styles = {"btn-login-google":"_2HqmH","notification-count":"_2sew7","text-introduction":"_3OgWF","btn-trans-border":"_r9cAh","contact":"_NszFe","learn-more":"_MDjzH","title-quote":"_1Swkw","descriptions-quote":"_gi8vj","descriptions-icon":"_3SOdX","box-login":"_38Lo1","block-verification":"_1OzGy","block-login":"_wWIyO","title-login":"_3nuns","title-forgot-password":"_21qb6","btn-close":"_NhW9l","btn-login":"_3IL10","return-to-login":"_Ce3Kg","recover-account":"_2t6d9","link-to-login":"_3bDsd","remember":"_11FZt","term-and-conditions":"_3LXoI","descriptions-forgot-pass":"_PMcjT","content-icon":"_2rZY6","title-icon":"_y9lM2","nav-home":"_1TT1q","box-introduction":"_32V6L","icon":"_20YJX","form-user-name":"_39BJD","checkbox-remember":"_2K9b2","block-reset-password":"_23Sua","block-forgot-pass":"_3CWP6","page-not-login":"_3Wmco","content-quote":"_13Rk0","home-page":"_o6HKW","red-background":"_jOY7o","login":"_F-hjL","img-box":"_2v-L_","img-login":"_3ncTL","img-login-rectangle":"_2kOvJ","c-main":"_39l0X","container-fluid":"_1BMwK","input-file-label":"_1XNpH","delete-avatar-button":"_1z5h9","header-logo":"_Gewcf","box-sidebar":"_2vcmv","sidebar-logo":"_1hXpy","sidebar-nav-links":"_3vb3s","c-active":"_36jSM","sidebar-nav-links-hover":"_DNrus","box-sidebar-header":"_3NEZj","box-logout":"_1wUDG","sidebar-btn-minimized":"_1S7Px","sidebar-logout":"_2P85D","nav-mobile":"_1qjbW","filter-media-file":"_1I62C","div":"_3cLcM","dropdown-menu":"_1krbH","header-avatar":"_RQaHE","dropdown-content":"_3ys4W","dropdown-change":"_ToOW_","item-address":"_3sQlR","item-logout":"_3bqSM","title-address":"_1jgSI","img-avatar":"_35Ttz","item-contact":"_1wc7o","logout":"_1_9tV","content-text":"_3S4f2","hide-in-mobile":"_1INnO","hide-in-desktop":"_2LIqK","control-input":"_2Zz97","custom-control":"_3-yp5"};
1986
51
 
1987
52
  var style = {
1988
53
  fontSize: "0.85rem"
@@ -2040,7 +105,7 @@ var PasswordInput = function PasswordInput(_ref) {
2040
105
 
2041
106
  var TINY_MCE_API_KEY = "adpshj9swgsscf83gw4gs2f74nx0vicpd5ydka20iqjd7l8r";
2042
107
  var GOOGLE_RECAPTCHA_KEY = "6LfNtLUaAAAAAL24lbBV11jS-gBtt1mhtxb4NXs0";
2043
- var INIT_AMPLITUDE_KEY = "c617d0950cfdcae12953907273a1920f";
108
+ var INIT_AMPLITUDE_KEY = "860fa99c52ae79d98e904b4c862ddaac";
2044
109
  var ACCESS_TOKEN = "ACCESS_TOKEN";
2045
110
  var DEFAULT_PAGE_SIZE_VALUES = [{
2046
111
  label: "10",
@@ -2180,9 +245,7 @@ var reset = createAction("common/reset");
2180
245
  var showMenuBar = createAction("common/showMenuBar");
2181
246
  var showFontSize = createAction("common/showFontSize");
2182
247
  var setEnableIEP = createAction("common/setEnableIEP");
2183
- var setEnableSurvey = createAction("common/setEnableSurvey");
2184
248
  var setConversationOneToOne = createAction("common/setConversationOneToOne");
2185
- var setLanguage = createAction("common/setLanguage");
2186
249
  var setCurrentStudentId = createAction("common/setCurrentStudentId");
2187
250
  var setCurrentStudentUserId = createAction("common/setCurrentStudentUserId");
2188
251
  var setCurrentStudentName = createAction("common/setCurrentStudentName");
@@ -3765,81 +1828,6 @@ var TheHeaderDropdown = function TheHeaderDropdown() {
3765
1828
  })), "LOGOUT"))));
3766
1829
  };
3767
1830
 
3768
- var TheLanguageDropdown = function TheLanguageDropdown() {
3769
- var defaultLanguage = localStorage.getItem("language") !== null ? localStorage.getItem("language") : "uk";
3770
- var dispatch = useDispatch();
3771
-
3772
- var _useTranslation = useTranslation(),
3773
- i18n = _useTranslation.i18n;
3774
-
3775
- var _useState = useState(false),
3776
- dropdownOpen = _useState[0],
3777
- setDropdownOpen = _useState[1];
3778
-
3779
- var _useState2 = useState(defaultLanguage),
3780
- language = _useState2[0],
3781
- setItemLanguage = _useState2[1];
3782
-
3783
- var toggle = function toggle() {
3784
- return setDropdownOpen(function (prevState) {
3785
- return !prevState;
3786
- });
3787
- };
3788
-
3789
- var changeLanguageApp = function changeLanguageApp(lang) {
3790
- i18n.changeLanguage(lang);
3791
- localStorage.setItem("language", lang);
3792
- setItemLanguage(lang);
3793
- dispatch(setLanguage(lang));
3794
- };
3795
-
3796
- var displayCurrentLang = {
3797
- uk: React.createElement(React.Fragment, null, React.createElement("img", {
3798
- className: "mr-2 " + styles['dropdown-menu-flag'],
3799
- src: "/images/united-kingdom.png"
3800
- }), " English, UK"),
3801
- us: React.createElement(React.Fragment, null, React.createElement("img", {
3802
- className: "mr-2 " + styles['dropdown-menu-flag'],
3803
- src: "/images/usa.png"
3804
- }), " English, US")
3805
- };
3806
- return React.createElement(Dropdown, {
3807
- isOpen: dropdownOpen,
3808
- toggle: toggle,
3809
- className: "" + styles["dropdown-menu"]
3810
- }, React.createElement(DropdownToggle, {
3811
- className: styles["header-avatar"] + " d-flex align-items-center"
3812
- }, React.createElement("span", {
3813
- style: {
3814
- color: "#000",
3815
- textTransform: "capitalize",
3816
- display: 'flex',
3817
- alignItems: 'center'
3818
- }
3819
- }, displayCurrentLang[language || "uk"], React.createElement(BsChevronDown, {
3820
- className: "ml-2",
3821
- style: {
3822
- fontSize: '10px'
3823
- }
3824
- }))), React.createElement(DropdownMenu, {
3825
- className: styles["dropdown-content-language"]
3826
- }, React.createElement(DropdownItem, {
3827
- className: styles["dropdown-change"] + " px-0 py-0 pt-2",
3828
- onClick: function onClick() {
3829
- return changeLanguageApp("uk");
3830
- }
3831
- }, React.createElement("div", {
3832
- className: styles["dropdown-item-language"] + " " + styles["item-logout"] + " " + (language == "uk" ? styles['dropdown-item-language-active'] : "") + " d-flex align-items-center w-100"
3833
- }, React.createElement("span", {
3834
- className: "mr-2 d-flex hover-opacity"
3835
- }, React.createElement("img", {
3836
- style: {
3837
- width: "30px"
3838
- },
3839
- src: "/images/united-kingdom.png"
3840
- })), "United Kingdom"))));
3841
- };
3842
-
3843
1831
  var TheHeader = function TheHeader() {
3844
1832
  var isDistrict = window.location.host.includes("-district");
3845
1833
  return React.createElement(CHeader, {
@@ -3853,7 +1841,7 @@ var TheHeader = function TheHeader() {
3853
1841
  className: styles["header-logo"]
3854
1842
  })), React.createElement(CHeaderNav, {
3855
1843
  className: "pr-3"
3856
- }, React.createElement(TheLanguageDropdown, null), React.createElement("a", {
1844
+ }, React.createElement("a", {
3857
1845
  className: "mr-3",
3858
1846
  style: {
3859
1847
  color: '#000'
@@ -3980,13 +1968,6 @@ var TheLayout = function TheLayout(_ref) {
3980
1968
  var user = useSelector(function (state) {
3981
1969
  return state.common.user;
3982
1970
  });
3983
- var language = useSelector(function (state) {
3984
- return state.common.language;
3985
- });
3986
-
3987
- var _useTranslation = useTranslation(),
3988
- t = _useTranslation.t;
3989
-
3990
1971
  var location = useLocation();
3991
1972
  var isNotification = location.pathname.includes("notifications");
3992
1973
  var isDistrict = window.location.host.includes("-district");
@@ -3996,18 +1977,14 @@ var TheLayout = function TheLayout(_ref) {
3996
1977
  }).filter(function (route) {
3997
1978
  return !!route.isDistrict === isDistrict;
3998
1979
  });
3999
- }, [user, language]);
1980
+ }, [user]);
4000
1981
  var authNavigations = useMemo(function () {
4001
- return navigation.map(function (item) {
4002
- return _extends({}, item, {
4003
- name: t(item.name)
4004
- });
4005
- }).filter(function (nav) {
1982
+ return navigation.filter(function (nav) {
4006
1983
  return canAccess(user === null || user === void 0 ? void 0 : user.roles, nav.roles);
4007
1984
  }).filter(function (nav) {
4008
1985
  return !!nav.isDistrict === isDistrict;
4009
1986
  });
4010
- }, [user, language]);
1987
+ }, [user]);
4011
1988
  useEffect(function () {
4012
1989
  checkAuthentication();
4013
1990
  }, []);
@@ -4203,10 +2180,10 @@ var get$1 = function get(filter) {
4203
2180
  var getById = function getById(id) {
4204
2181
  return api.get(EMAIL_TEMPLATE_URL + "/" + id);
4205
2182
  };
4206
- var create$2 = function create(data) {
2183
+ var create = function create(data) {
4207
2184
  return api.post(EMAIL_TEMPLATE_URL, data);
4208
2185
  };
4209
- var update$2 = function update(data) {
2186
+ var update = function update(data) {
4210
2187
  return api.put(EMAIL_TEMPLATE_URL + "/" + data.id, data);
4211
2188
  };
4212
2189
  var remove = function remove(id) {
@@ -4529,6 +2506,9 @@ var defaultparams = [{
4529
2506
  }, {
4530
2507
  label: "$MESSAGE$",
4531
2508
  meaning: "Message"
2509
+ }, {
2510
+ label: "$DOMAIN$",
2511
+ meaning: "Domain"
4532
2512
  }];
4533
2513
 
4534
2514
  var MailSubject = function MailSubject(_ref) {
@@ -4707,7 +2687,7 @@ var config = {
4707
2687
  paste_data_images: true
4708
2688
  };
4709
2689
 
4710
- var email$2 = _extends({}, config, {
2690
+ var email = _extends({}, config, {
4711
2691
  images_upload_handler: function images_upload_handler(blobInfo, success) {
4712
2692
  try {
4713
2693
  var imageFile = new FormData();
@@ -4727,7 +2707,7 @@ var email$2 = _extends({}, config, {
4727
2707
  }
4728
2708
  });
4729
2709
 
4730
- var question$2 = _extends({}, config, {
2710
+ var question = _extends({}, config, {
4731
2711
  images_upload_handler: function images_upload_handler(blobInfo, success) {
4732
2712
  try {
4733
2713
  var imageFile = new FormData();
@@ -4815,8 +2795,8 @@ var tutorial = _extends({}, config, {
4815
2795
  });
4816
2796
 
4817
2797
  var editorConfig = {
4818
- email: email$2,
4819
- question: question$2,
2798
+ email: email,
2799
+ question: question,
4820
2800
  answer: answer,
4821
2801
  tutorial: tutorial
4822
2802
  };
@@ -4927,7 +2907,7 @@ var useEmailTemplateDetail = function useEmailTemplateDetail(id) {
4927
2907
 
4928
2908
  var _temp10 = _catch(function () {
4929
2909
  function _temp6() {
4930
- var next = !!id ? update$2 : create$2;
2910
+ var next = !!id ? update : create;
4931
2911
  return Promise.resolve(next(data)).then(function () {
4932
2912
  dispatch(setAlert({
4933
2913
  type: "success",
@@ -5439,10 +3419,10 @@ var get$3 = function get(filter) {
5439
3419
  var getById$1 = function getById(id) {
5440
3420
  return api.get(FAQ_URL + "/" + id);
5441
3421
  };
5442
- var create$3 = function create(data) {
3422
+ var create$1 = function create(data) {
5443
3423
  return api.post(FAQ_URL, data);
5444
3424
  };
5445
- var update$3 = function update(data) {
3425
+ var update$1 = function update(data) {
5446
3426
  return api.put(FAQ_URL + "/" + data.id, data);
5447
3427
  };
5448
3428
  var remove$1 = function remove(id) {
@@ -5634,7 +3614,7 @@ var useFaqDetail = function useFaqDetail() {
5634
3614
  dispatch(setLoading(true));
5635
3615
 
5636
3616
  var _temp8 = _catch(function () {
5637
- var next = !!id ? update$3 : create$3;
3617
+ var next = !!id ? update$1 : create$1;
5638
3618
  return Promise.resolve(next(values)).then(function () {
5639
3619
  dispatch(setAlert({
5640
3620
  type: "success",
@@ -5809,10 +3789,10 @@ var get$4 = function get(filter) {
5809
3789
  var getById$2 = function getById(id) {
5810
3790
  return api.get(SKILL_URL + "/" + id);
5811
3791
  };
5812
- var create$4 = function create(data) {
3792
+ var create$2 = function create(data) {
5813
3793
  return api.post(SKILL_URL, data);
5814
3794
  };
5815
- var update$4 = function update(data) {
3795
+ var update$2 = function update(data) {
5816
3796
  return api.put(SKILL_URL + "/" + data.id, data);
5817
3797
  };
5818
3798
  var remove$2 = function remove(id) {
@@ -5877,10 +3857,6 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
5877
3857
  setEditedTrue = props.setEditedTrue,
5878
3858
  setEditedFalse = props.setEditedFalse,
5879
3859
  isDisabled = props.isDisabled;
5880
-
5881
- var _useTranslation = useTranslation(),
5882
- t = _useTranslation.t;
5883
-
5884
3860
  return React.createElement(Formik, {
5885
3861
  initialValues: skillDetail,
5886
3862
  enableReinitialize: true,
@@ -5914,10 +3890,10 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
5914
3890
  md: 12,
5915
3891
  className: "mb-2"
5916
3892
  }, React.createElement(RequiredLabel$1, {
5917
- text: t("name")
3893
+ text: "Name"
5918
3894
  }), React.createElement(Input, {
5919
3895
  name: "name",
5920
- placeholder: t("name"),
3896
+ placeholder: "Name",
5921
3897
  value: values.name,
5922
3898
  onChange: function onChange(e) {
5923
3899
  handleChange(e);
@@ -5929,11 +3905,11 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
5929
3905
  })), React.createElement(Col, {
5930
3906
  md: 12,
5931
3907
  className: "mb-2"
5932
- }, React.createElement(Label, null, t("description")), React.createElement(Input, {
3908
+ }, React.createElement(Label, null, "Description"), React.createElement(Input, {
5933
3909
  type: "textarea",
5934
3910
  rows: 5,
5935
3911
  name: "description",
5936
- placeholder: t("description"),
3912
+ placeholder: "Description",
5937
3913
  value: values.description,
5938
3914
  onChange: function onChange(e) {
5939
3915
  handleChange(e);
@@ -5943,7 +3919,7 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
5943
3919
  })), React.createElement(Col, {
5944
3920
  md: 12,
5945
3921
  className: "mb-2"
5946
- }, React.createElement(Label, null, t("parent_category")), React.createElement(SkillSelector, {
3922
+ }, React.createElement(Label, null, "Parent category"), React.createElement(SkillSelector, {
5947
3923
  isDisabled: isDisabled,
5948
3924
  onChange: function onChange(e) {
5949
3925
  formikProps.setFieldValue("parentSkillId", e.value);
@@ -6156,7 +4132,7 @@ var useSkillDetail = function useSkillDetail() {
6156
4132
  dispatch(setLoading(true));
6157
4133
 
6158
4134
  var _temp8 = _catch(function () {
6159
- var next = !!id ? update$4 : create$4;
4135
+ var next = !!id ? update$2 : create$2;
6160
4136
  return Promise.resolve(next(values)).then(function () {
6161
4137
  dispatch(setAlert({
6162
4138
  type: "success",
@@ -6196,9 +4172,6 @@ var useSkillDetail = function useSkillDetail() {
6196
4172
  var SkillList = function SkillList() {
6197
4173
  var modal = useRef();
6198
4174
 
6199
- var _useTranslation = useTranslation(),
6200
- t = _useTranslation.t;
6201
-
6202
4175
  var _useSkillList = useSkillList(),
6203
4176
  skillList = _useSkillList.skillList,
6204
4177
  totalItems = _useSkillList.totalItems,
@@ -6243,8 +4216,8 @@ var SkillList = function SkillList() {
6243
4216
  className: "fadeIn animated"
6244
4217
  }, React.createElement(SkillDetailModal$1, {
6245
4218
  ref: modal,
6246
- header: !!id ? t("edit_skill") : t("create_skill"),
6247
- confirmText: !!id ? t("update") : t("create"),
4219
+ header: !!id ? "Edit skill" : "Create skill",
4220
+ confirmText: !!id ? "Update" : "Create",
6248
4221
  onCancel: onCancel,
6249
4222
  onConfirm: onConfirm,
6250
4223
  skillDetail: skillDetail,
@@ -6260,14 +4233,14 @@ var SkillList = function SkillList() {
6260
4233
  }, React.createElement(Col, {
6261
4234
  md: 4
6262
4235
  }, React.createElement(AddButton, {
6263
- text: t("create_skill"),
4236
+ text: "Create skill",
6264
4237
  onClick: function onClick() {
6265
4238
  return openModal();
6266
4239
  }
6267
4240
  })), React.createElement(Col, {
6268
4241
  md: 4,
6269
4242
  className: "d-flex align-items-center justify-content-end"
6270
- }, t("total_of_skills"), ": ", totalItems)), React.createElement(Row, {
4243
+ }, "Total of skills: ", totalItems)), React.createElement(Row, {
6271
4244
  className: "mb-2"
6272
4245
  }, React.createElement(Col, {
6273
4246
  md: 8
@@ -6279,11 +4252,11 @@ var SkillList = function SkillList() {
6279
4252
  size: "sm"
6280
4253
  }, React.createElement("thead", null, React.createElement("tr", null, React.createElement("th", {
6281
4254
  className: "align-top"
6282
- }, t('name')), React.createElement("th", {
4255
+ }, "Name"), React.createElement("th", {
6283
4256
  className: "align-top"
6284
- }, t('description')), React.createElement("th", {
4257
+ }, "Description"), React.createElement("th", {
6285
4258
  className: "text-center"
6286
- }, t('action')))), React.createElement("tbody", null, skillList.map(function (record) {
4259
+ }, "Action"))), React.createElement("tbody", null, skillList.map(function (record) {
6287
4260
  return React.createElement("tr", {
6288
4261
  key: record.id
6289
4262
  }, React.createElement("td", {
@@ -6305,7 +4278,7 @@ var SkillList = function SkillList() {
6305
4278
  }
6306
4279
  })));
6307
4280
  }))) : React.createElement(EmptyDataAlert, {
6308
- label: t("skill")
4281
+ label: "skill"
6309
4282
  })), React.createElement(Col, {
6310
4283
  md: 8,
6311
4284
  className: "text-right"
@@ -6339,10 +4312,10 @@ var get$5 = function get(filter) {
6339
4312
  var getById$3 = function getById(id) {
6340
4313
  return api.get(USER_URL$1 + "/" + id);
6341
4314
  };
6342
- var create$5 = function create(data) {
4315
+ var create$3 = function create(data) {
6343
4316
  return api.post("" + USER_URL$1, data);
6344
4317
  };
6345
- var update$5 = function update(data) {
4318
+ var update$3 = function update(data) {
6346
4319
  return api.put(USER_URL$1 + "/" + data.id, data);
6347
4320
  };
6348
4321
  var remove$3 = function remove(id) {
@@ -6548,6 +4521,16 @@ SearchBoxContainer.defaultProps = {
6548
4521
  placeholder: "Type something to search"
6549
4522
  };
6550
4523
 
4524
+ var utcToLocalTime = (function (time, FORMAT) {
4525
+ if (time === DATE_MIN_VALUE) return "";
4526
+
4527
+ try {
4528
+ return moment.utc(time).local().format(FORMAT || "yyyy-MM-DD");
4529
+ } catch (_unused) {
4530
+ return "";
4531
+ }
4532
+ });
4533
+
6551
4534
  var header$2 = "User";
6552
4535
 
6553
4536
  var UserList = function UserList() {
@@ -6560,19 +4543,16 @@ var UserList = function UserList() {
6560
4543
  changeFilters = _useUserList.changeFilters,
6561
4544
  reDirectDetailPage = _useUserList.reDirectDetailPage;
6562
4545
 
6563
- var _useTranslation = useTranslation(),
6564
- t = _useTranslation.t;
6565
-
6566
4546
  return React.createElement("div", {
6567
4547
  className: "fadeIn animated"
6568
4548
  }, React.createElement("h5", {
6569
4549
  className: "mb-2"
6570
- }, t("" + header$2)), React.createElement(Row, {
4550
+ }, header$2), React.createElement(Row, {
6571
4551
  className: "my-2"
6572
4552
  }, React.createElement(Col, {
6573
4553
  md: 8
6574
4554
  }, React.createElement(SearchBoxContainer, {
6575
- text: t("create_user"),
4555
+ text: "Create user",
6576
4556
  onClick: function onClick() {
6577
4557
  return reDirectDetailPage();
6578
4558
  },
@@ -6582,11 +4562,11 @@ var UserList = function UserList() {
6582
4562
  searchString: searchString
6583
4563
  });
6584
4564
  },
6585
- placeholder: t("type_something_to_search_by_user_name")
4565
+ placeholder: "Type something to search by user name"
6586
4566
  })), React.createElement(Col, {
6587
4567
  md: 4,
6588
4568
  className: "d-flex justify-content-end align-items-center"
6589
- }, t("total_of_users"), " : ", totalItems)), React.createElement(Row, {
4569
+ }, "Total of users: ", totalItems)), React.createElement(Row, {
6590
4570
  className: "mb-2"
6591
4571
  }, React.createElement(Col, {
6592
4572
  md: 12
@@ -6598,17 +4578,19 @@ var UserList = function UserList() {
6598
4578
  size: "sm"
6599
4579
  }, React.createElement("thead", null, React.createElement("tr", null, React.createElement("th", {
6600
4580
  className: "align-top"
6601
- }, t("name")), React.createElement("th", {
4581
+ }, "Name"), React.createElement("th", {
6602
4582
  className: "align-top"
6603
- }, t("email")), React.createElement("th", {
4583
+ }, "Email"), React.createElement("th", {
6604
4584
  className: "align-top"
6605
- }, t("age")), React.createElement("th", {
4585
+ }, "Age"), React.createElement("th", {
6606
4586
  className: "align-top"
6607
- }, t("role")), React.createElement("th", {
4587
+ }, "Role"), React.createElement("th", {
6608
4588
  className: "align-top"
6609
- }, t("active_status")), React.createElement("th", {
4589
+ }, "Active status"), React.createElement("th", {
4590
+ className: "align-top"
4591
+ }, "Created time"), React.createElement("th", {
6610
4592
  className: "text-center"
6611
- }, t("action")))), React.createElement("tbody", null, userList.map(function (record) {
4593
+ }, "Action"))), React.createElement("tbody", null, userList.map(function (record) {
6612
4594
  return React.createElement("tr", {
6613
4595
  key: record.id
6614
4596
  }, React.createElement("td", {
@@ -6626,7 +4608,9 @@ var UserList = function UserList() {
6626
4608
  className: "align-middle"
6627
4609
  }, !!record.roles && record.roles.join(", ")), React.createElement("td", {
6628
4610
  className: "align-middle"
6629
- }, record.isActive ? t("active") : t("inactive")), React.createElement("td", {
4611
+ }, record.isActive ? "Active" : "Inactive"), React.createElement("td", {
4612
+ className: "align-middle"
4613
+ }, utcToLocalTime(record === null || record === void 0 ? void 0 : record.createTime, "yyyy-MM-DD HH:mm")), React.createElement("td", {
6630
4614
  className: "text-center align-middle"
6631
4615
  }, React.createElement(DeleteButtonIcon, {
6632
4616
  onClick: function onClick() {
@@ -6634,7 +4618,7 @@ var UserList = function UserList() {
6634
4618
  }
6635
4619
  })));
6636
4620
  })))) : React.createElement(EmptyDataAlert, {
6637
- label: t("user")
4621
+ label: "user"
6638
4622
  })), React.createElement(Col, {
6639
4623
  md: 12
6640
4624
  }, React.createElement(CustomPagination, {
@@ -6829,7 +4813,7 @@ var useUserDetail = function useUserDetail(id) {
6829
4813
 
6830
4814
  var _temp10 = _catch(function () {
6831
4815
  function _temp6() {
6832
- var next = !!id ? update$5 : create$5;
4816
+ var next = !!id ? update$3 : create$3;
6833
4817
  !id && delete data.id;
6834
4818
  return Promise.resolve(next(data)).then(function (result) {
6835
4819
  if (!!result) {
@@ -6966,9 +4950,9 @@ var changePasswordSchema = object({
6966
4950
  confirmedNewPassword: string().required("Confirm password is required")
6967
4951
  });
6968
4952
 
6969
- var CREATE_USER = "create_user";
6970
- var EDIT_USER_HEADER = "edit_user";
6971
- var CHANGE_PASSWORD$1 = "change_password";
4953
+ var CREATE_USER = "Create user";
4954
+ var EDIT_USER_HEADER = "Edit user";
4955
+ var CHANGE_PASSWORD$1 = "Change password";
6972
4956
 
6973
4957
  var UserDetail = function UserDetail() {
6974
4958
  var _useParams = useParams(),
@@ -6978,9 +4962,6 @@ var UserDetail = function UserDetail() {
6978
4962
  return state.common.user;
6979
4963
  });
6980
4964
 
6981
- var _useTranslation = useTranslation(),
6982
- t = _useTranslation.t;
6983
-
6984
4965
  var _useUserDetail = useUserDetail(id),
6985
4966
  userDetail = _useUserDetail.userDetail,
6986
4967
  backToList = _useUserDetail.backToList,
@@ -6998,8 +4979,8 @@ var UserDetail = function UserDetail() {
6998
4979
  newPassword: "",
6999
4980
  confirmedNewPassword: ""
7000
4981
  };
7001
- var header = !!id ? t("" + EDIT_USER_HEADER) : t("" + CREATE_USER);
7002
- var confirmText = !!id ? t("update") : t("create");
4982
+ var header = !!id ? EDIT_USER_HEADER : CREATE_USER;
4983
+ var confirmText = !!id ? "Update" : "Create";
7003
4984
 
7004
4985
  var getFile = function getFile() {
7005
4986
  var url = window.location.origin + "/api/ExportDataUser/" + id;
@@ -7068,7 +5049,7 @@ var UserDetail = function UserDetail() {
7068
5049
  }, React.createElement(Row, null, React.createElement(Col, {
7069
5050
  md: 6
7070
5051
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7071
- text: t("first_name")
5052
+ text: "First name"
7072
5053
  }), React.createElement(Input, {
7073
5054
  name: "firstName",
7074
5055
  value: values.firstName,
@@ -7077,13 +5058,13 @@ var UserDetail = function UserDetail() {
7077
5058
  setEditedTrue();
7078
5059
  },
7079
5060
  onBlur: handleBlur("subject"),
7080
- placeholder: t("first_name")
5061
+ placeholder: "First name"
7081
5062
  }), touched.firstName && errors.firstName && React.createElement(ErrorHandler, {
7082
5063
  text: errors.firstName
7083
5064
  }))), React.createElement(Col, {
7084
5065
  md: 6
7085
5066
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7086
- text: t("date_of_birth")
5067
+ text: "Date of birth"
7087
5068
  }), React.createElement("div", null, React.createElement(DatePicker, {
7088
5069
  value: values.dateOfBirth,
7089
5070
  todayButton: "Today",
@@ -7096,20 +5077,20 @@ var UserDetail = function UserDetail() {
7096
5077
  formProps.setFieldValue("dateOfBirth", format(e, DATE_FORMAT));
7097
5078
  setEditedTrue();
7098
5079
  },
7099
- placeholderText: t("date_of_birth"),
5080
+ placeholderText: "Date of birth",
7100
5081
  customInput: React.createElement(Input, {
7101
5082
  type: "text",
7102
5083
  style: {
7103
5084
  width: "maxContent"
7104
5085
  },
7105
- placeholder: t("date_of_birth")
5086
+ placeholder: "Date of birth"
7106
5087
  })
7107
5088
  })), touched.dateOfBirth && errors.dateOfBirth && React.createElement(ErrorHandler, {
7108
5089
  text: errors.dateOfBirth
7109
5090
  })))), React.createElement(Row, null, React.createElement(Col, {
7110
5091
  md: 6
7111
5092
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7112
- text: t("last_name")
5093
+ text: "Last name"
7113
5094
  }), React.createElement(Input, {
7114
5095
  name: "lastName",
7115
5096
  value: values.lastName,
@@ -7118,13 +5099,13 @@ var UserDetail = function UserDetail() {
7118
5099
  setEditedTrue();
7119
5100
  },
7120
5101
  onBlur: handleBlur("lastName"),
7121
- placeholder: t("last_name")
5102
+ placeholder: "Last name"
7122
5103
  }), touched.lastName && errors.lastName && React.createElement(ErrorHandler, {
7123
5104
  text: errors.lastName
7124
5105
  }))), React.createElement(Col, {
7125
5106
  md: 6
7126
5107
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7127
- text: t("roles")
5108
+ text: "Roles"
7128
5109
  }), React.createElement(Row, null, React.createElement(Col, {
7129
5110
  md: 12,
7130
5111
  className: "d-flex flex-wrap align-items-center"
@@ -7148,7 +5129,7 @@ var UserDetail = function UserDetail() {
7148
5129
  })))), React.createElement(Row, null, React.createElement(Col, {
7149
5130
  md: 6
7150
5131
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7151
- text: t("email")
5132
+ text: "Email"
7152
5133
  }), React.createElement(Input, {
7153
5134
  name: "email",
7154
5135
  value: values.email,
@@ -7157,20 +5138,20 @@ var UserDetail = function UserDetail() {
7157
5138
  setEditedTrue();
7158
5139
  },
7159
5140
  onBlur: handleBlur("email"),
7160
- placeholder: t("email")
5141
+ placeholder: "Email"
7161
5142
  }), touched.email && errors.email && React.createElement(ErrorHandler, {
7162
5143
  text: errors.email
7163
5144
  }))), React.createElement(Col, {
7164
5145
  md: 6
7165
5146
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7166
- text: t("status")
5147
+ text: "Status"
7167
5148
  }), React.createElement(Row, null, React.createElement(Col, {
7168
5149
  md: 3
7169
5150
  }, React.createElement(CustomInput, {
7170
5151
  id: "role-checkbox-active",
7171
5152
  type: "radio",
7172
5153
  name: "active",
7173
- label: t("active"),
5154
+ label: "Active",
7174
5155
  checked: !!values && !!values.isActive,
7175
5156
  onChange: function onChange() {
7176
5157
  setFieldValue("isActive", true);
@@ -7182,7 +5163,7 @@ var UserDetail = function UserDetail() {
7182
5163
  id: "role-checkbox-inActive",
7183
5164
  type: "radio",
7184
5165
  name: "active",
7185
- label: t("inactive"),
5166
+ label: "Inactive",
7186
5167
  checked: !!values && !values.isActive,
7187
5168
  onChange: function onChange() {
7188
5169
  return setFieldValue("isActive", false);
@@ -7196,13 +5177,13 @@ var UserDetail = function UserDetail() {
7196
5177
  onClick: function onClick() {
7197
5178
  onResetPw(values.email || "");
7198
5179
  }
7199
- }, t('send_forgot_password_link')), React.createElement(Button, {
5180
+ }, "Send forgot password link"), React.createElement(Button, {
7200
5181
  color: "success",
7201
5182
  onClick: function onClick() {
7202
5183
  getFile();
7203
5184
  },
7204
5185
  className: "ml-4"
7205
- }, t('download_user_data'))))), React.createElement(Col, {
5186
+ }, "Download user data")))), React.createElement(Col, {
7206
5187
  md: 4
7207
5188
  }, React.createElement(Row, null, React.createElement(Col, {
7208
5189
  md: 8
@@ -7223,7 +5204,7 @@ var UserDetail = function UserDetail() {
7223
5204
  }
7224
5205
  }))))), user.id === id ? React.createElement("div", null, React.createElement("h5", {
7225
5206
  className: "mt-3"
7226
- }, t("" + CHANGE_PASSWORD$1)), React.createElement(Formik, {
5207
+ }, CHANGE_PASSWORD$1), React.createElement(Formik, {
7227
5208
  initialValues: initialValueForm,
7228
5209
  enableReinitialize: true,
7229
5210
  validationSchema: changePasswordSchema,
@@ -7241,7 +5222,7 @@ var UserDetail = function UserDetail() {
7241
5222
  }, React.createElement(Col, {
7242
5223
  md: 7
7243
5224
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7244
- text: t("current_password")
5225
+ text: "Current password"
7245
5226
  }), React.createElement(Input, {
7246
5227
  name: "oldPassword",
7247
5228
  type: "password",
@@ -7251,13 +5232,13 @@ var UserDetail = function UserDetail() {
7251
5232
  setEditedTrue();
7252
5233
  },
7253
5234
  onBlur: handleBlur("subject"),
7254
- placeholder: t("current_password")
5235
+ placeholder: "Current password"
7255
5236
  }), touched.oldPassword && errors.oldPassword && React.createElement(ErrorHandler, {
7256
5237
  text: errors.oldPassword
7257
5238
  }))), React.createElement(Col, {
7258
5239
  md: 7
7259
5240
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7260
- text: t("new_password")
5241
+ text: "New password"
7261
5242
  }), React.createElement(Input, {
7262
5243
  name: "newPassword",
7263
5244
  type: "password",
@@ -7267,13 +5248,13 @@ var UserDetail = function UserDetail() {
7267
5248
  setEditedTrue();
7268
5249
  },
7269
5250
  onBlur: handleBlur("subject"),
7270
- placeholder: t("new_password")
5251
+ placeholder: "New password"
7271
5252
  }), touched.newPassword && errors.newPassword && React.createElement(ErrorHandler, {
7272
5253
  text: errors.newPassword
7273
5254
  }))), React.createElement(Col, {
7274
5255
  md: 7
7275
5256
  }, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
7276
- text: t("confirm_password")
5257
+ text: "Confirm password"
7277
5258
  }), React.createElement(Input, {
7278
5259
  name: "confirmedNewPassword",
7279
5260
  type: "password",
@@ -7283,7 +5264,7 @@ var UserDetail = function UserDetail() {
7283
5264
  setEditedTrue();
7284
5265
  },
7285
5266
  onBlur: handleBlur("subject"),
7286
- placeholder: t("confirm_password")
5267
+ placeholder: "Confirm password"
7287
5268
  }), touched.confirmedNewPassword && errors.confirmedNewPassword && React.createElement(ErrorHandler, {
7288
5269
  text: errors.confirmedNewPassword
7289
5270
  }))), React.createElement(Col, {
@@ -7295,7 +5276,7 @@ var UserDetail = function UserDetail() {
7295
5276
  onClick: function onClick() {
7296
5277
  return handleSubmit();
7297
5278
  }
7298
- }, t("save"))));
5279
+ }, "Save")));
7299
5280
  })) : null, React.createElement(DetailActionButtons, {
7300
5281
  confirmText: confirmText,
7301
5282
  onConfirm: handleSubmit,
@@ -7661,16 +5642,6 @@ var NotificationStatusSelector = function NotificationStatusSelector(_ref) {
7661
5642
 
7662
5643
  var NotificationStatusSelector$1 = memo(NotificationStatusSelector);
7663
5644
 
7664
- var utcToLocalTime = (function (time, FORMAT) {
7665
- if (time === DATE_MIN_VALUE) return "";
7666
-
7667
- try {
7668
- return moment.utc(time).local().format(FORMAT || "yyyy-MM-DD");
7669
- } catch (_unused) {
7670
- return "";
7671
- }
7672
- });
7673
-
7674
5645
  var defaultFilters = {
7675
5646
  currentPage: 1,
7676
5647
  pageSize: 30,
@@ -9170,9 +7141,7 @@ var initialState = {
9170
7141
  menuBar: true,
9171
7142
  defaultFontSize: 16,
9172
7143
  isEnableIEP: true,
9173
- isEnableSurvey: false,
9174
7144
  isConversationOneToOne: false,
9175
- language: "en",
9176
7145
  amplitude: {
9177
7146
  user_id: "",
9178
7147
  status: "",
@@ -9215,12 +7184,8 @@ var commonReducer = createReducer(initialState, function (builder) {
9215
7184
  state.menuBar = action.payload;
9216
7185
  }).addCase(setEnableIEP, function (state, action) {
9217
7186
  state.isEnableIEP = action.payload;
9218
- }).addCase(setEnableSurvey, function (state, action) {
9219
- state.isEnableSurvey = action.payload;
9220
7187
  }).addCase(setConversationOneToOne, function (state, action) {
9221
7188
  state.isConversationOneToOne = action.payload;
9222
- }).addCase(setLanguage, function (state, action) {
9223
- state.language = action.payload;
9224
7189
  }).addCase(showFontSize, function (state, action) {
9225
7190
  state.defaultFontSize = action.payload;
9226
7191
  }).addCase(initAmplitude, function (state, action) {
@@ -10155,5 +8120,5 @@ var generateRandomString = (function () {
10155
8120
 
10156
8121
  var amplitudeClient = amplitude.getInstance();
10157
8122
 
10158
- export { ACCESS_TOKEN, ANSWER_EDITOR_HEIGHT, AcademicClassSelector, AddButton, BASE_URL, CHAT_CHANNEL, CommonAlert, CommonHeader, CommonModal$1 as CommonModal, CreatableSelector, CustomPagination, CustomSelector, CustomTabs as CustomTab, DATE_FORMAT, DATE_RESULT, DEFAULT_FILTER, Dashboard, DeleteButtonIcon, DetailActionButtons, EMOTIONS, EditButtonIcon, EmailTemplateDetail, EmailTemplateList, EmptyDataAlert, ErrorHandler, FULL_DATE_RESULT, FaqList, InputFile as FileInput, GOOGLE_RECAPTCHA_KEY, GalleryList, INIT_AMPLITUDE_KEY, Images, LICENSE_AGGRID, LinkEditButton, Loading, Login, MediaList, NOTIFICATION_CHANNEL, NotFound, NotificationList, NotificationModal, QUESTION_TYPES, QUESTION_TYPES_OPTIONS, QuestionCategorySelector, QuestionTypeSelector, QuitPrompt, ReactNotification, RequiredLabel$1 as RequiredLabel, SchoolList, ScrollToTop, SearchBox$1 as SearchBox, SearchBoxContainer, SkillList, StarRatingSelector, SuggestionCategorySelector, TAB_COLORS, TINY_MCE_API_KEY, TheContent$1 as TheContent, TheLayout, ToggleButton, UploadFileButton, UserDetail, UserList, addTab, amplitudeClient, answerQuestion, answerQuestionDataPlayer, api, apiUpload, canAccess as canAccessRoute, changeNote, changeTags, clearTab, closeTab, debounce, editTab, editorConfig, firstCheckToken, generateRandomString, getFileUrl, getInfo, getTextFromHTML, i18n, initAmplitude, isInViewport, reset, setAlert, setAssessmentList, setAssignmentList, setAssistantList, setBadgeList, setBandScoreList, setCertificateList, setClassList, setConferenceRubricList, setConversationOneToOne, setCurrentStudentId, setCurrentStudentName, setCurrentStudentUserId, setCustomAlertList, setDataPlayer, setEditItemQuesion, setEnableIEP, setEnableSurvey, setFeedbackList, setFilterWidget, setGoalExampleList, setImproveMyClass, setLanguage, setLearningSupportCategoryList, setLoading, setMailCategory, setModal, setMoveItemQuestion, setMyStudent, setQuestionByCategory, setQuestionCateList, setQuestionList, setReflectionList, setReflectionResultList, setResetQuestionList, setSchoolBlankDayList, setSelectQuestion, setSemesterList, setSessionPlayer, setSessionTemplateGeneralClassList, setSessionTemplateList, setStartTime, setStrategyList, setStudentIdSelectedByTeacher, setStudentList, setSubjectList, setSuggestionList, setTurnOffPassWhenChangeMode, setTutorialScreenList, setUser, setUserList, showFontSize, showMenuBar, store, systemCertificateUpload, systemStudentBadge, uploadFile, useFilters, useGalleryList, utcToLocalTime };
8123
+ export { ACCESS_TOKEN, ANSWER_EDITOR_HEIGHT, AcademicClassSelector, AddButton, BASE_URL, CHAT_CHANNEL, CommonAlert, CommonHeader, CommonModal$1 as CommonModal, CreatableSelector, CustomPagination, CustomSelector, CustomTabs as CustomTab, DATE_FORMAT, DATE_RESULT, DEFAULT_FILTER, Dashboard, DeleteButtonIcon, DetailActionButtons, EMOTIONS, EditButtonIcon, EmailTemplateDetail, EmailTemplateList, EmptyDataAlert, ErrorHandler, FULL_DATE_RESULT, FaqList, InputFile as FileInput, GOOGLE_RECAPTCHA_KEY, GalleryList, INIT_AMPLITUDE_KEY, Images, LICENSE_AGGRID, LinkEditButton, Loading, Login, MediaList, NOTIFICATION_CHANNEL, NotFound, NotificationList, NotificationModal, QUESTION_TYPES, QUESTION_TYPES_OPTIONS, QuestionCategorySelector, QuestionTypeSelector, QuitPrompt, ReactNotification, RequiredLabel$1 as RequiredLabel, SchoolList, ScrollToTop, SearchBox$1 as SearchBox, SearchBoxContainer, SkillList, StarRatingSelector, SuggestionCategorySelector, TAB_COLORS, TINY_MCE_API_KEY, TheContent$1 as TheContent, TheLayout, ToggleButton, UploadFileButton, UserDetail, UserList, addTab, amplitudeClient, answerQuestion, answerQuestionDataPlayer, api, apiUpload, canAccess as canAccessRoute, changeNote, changeTags, clearTab, closeTab, debounce, editTab, editorConfig, firstCheckToken, generateRandomString, getFileUrl, getInfo, getTextFromHTML, initAmplitude, isInViewport, reset, setAlert, setAssessmentList, setAssignmentList, setAssistantList, setBadgeList, setBandScoreList, setCertificateList, setClassList, setConferenceRubricList, setConversationOneToOne, setCurrentStudentId, setCurrentStudentName, setCurrentStudentUserId, setCustomAlertList, setDataPlayer, setEditItemQuesion, setEnableIEP, setFeedbackList, setFilterWidget, setGoalExampleList, setImproveMyClass, setLearningSupportCategoryList, setLoading, setMailCategory, setModal, setMoveItemQuestion, setMyStudent, setQuestionByCategory, setQuestionCateList, setQuestionList, setReflectionList, setReflectionResultList, setResetQuestionList, setSchoolBlankDayList, setSelectQuestion, setSemesterList, setSessionPlayer, setSessionTemplateGeneralClassList, setSessionTemplateList, setStartTime, setStrategyList, setStudentIdSelectedByTeacher, setStudentList, setSubjectList, setSuggestionList, setTurnOffPassWhenChangeMode, setTutorialScreenList, setUser, setUserList, showFontSize, showMenuBar, store, systemCertificateUpload, systemStudentBadge, uploadFile, useFilters, useGalleryList, utcToLocalTime };
10159
8124
  //# sourceMappingURL=index.modern.js.map