mario-core 2.9.41-beta → 2.9.42-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.
- package/dist/containers/Login/constant/type.d.ts +5 -0
- package/dist/containers/Login/views/ModelSelectRole.d.ts +4 -0
- package/dist/index.css +1 -34
- package/dist/index.d.ts +2 -4
- package/dist/index.js +76 -2145
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +77 -2132
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/TheLayout.d.ts +0 -1
- package/dist/redux/commons/action.d.ts +0 -2
- package/dist/types/Payload.d.ts +1 -0
- package/dist/utils/amplitude.d.ts +1 -0
- package/package.json +1 -3
- package/dist/components/Loading/LoadLanguage.d.ts +0 -3
- package/dist/lang/de.d.ts +0 -4
- package/dist/lang/en.d.ts +0 -4
- package/dist/utils/getTranslations.d.ts +0 -2
- package/dist/utils/translations.d.ts +0 -3
package/dist/index.modern.js
CHANGED
|
@@ -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,7 +15,6 @@ 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';
|
|
@@ -32,1937 +28,6 @@ import 'react-notifications-component/dist/theme.css';
|
|
|
32
28
|
import { AiOutlineEye } from 'react-icons/ai';
|
|
33
29
|
import moment from 'moment';
|
|
34
30
|
|
|
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
|
-
|
|
1966
31
|
// A type of promise-like that resolves synchronously and supports only one observer
|
|
1967
32
|
|
|
1968
33
|
const _iteratorSymbol = /*#__PURE__*/ typeof Symbol !== "undefined" ? (Symbol.iterator || (Symbol.iterator = Symbol("Symbol.iterator"))) : "@@iterator";
|
|
@@ -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-
|
|
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"
|
|
@@ -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,95 +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")), React.createElement(DropdownItem, {
|
|
3841
|
-
className: styles["dropdown-change"] + " px-0 py-0 pb-2",
|
|
3842
|
-
onClick: function onClick() {
|
|
3843
|
-
return changeLanguageApp("us");
|
|
3844
|
-
}
|
|
3845
|
-
}, React.createElement("div", {
|
|
3846
|
-
className: styles["dropdown-item-language"] + " " + styles["item-logout"] + " " + (language == "us" ? styles['dropdown-item-language-active'] : "") + " d-flex align-items-center w-100"
|
|
3847
|
-
}, React.createElement("span", {
|
|
3848
|
-
className: "mr-2 d-flex hover-opacity"
|
|
3849
|
-
}, React.createElement("img", {
|
|
3850
|
-
style: {
|
|
3851
|
-
width: "30px"
|
|
3852
|
-
},
|
|
3853
|
-
src: "/images/usa.png"
|
|
3854
|
-
})), "United States of America"))));
|
|
3855
|
-
};
|
|
3856
|
-
|
|
3857
1831
|
var TheHeader = function TheHeader() {
|
|
3858
1832
|
var isDistrict = window.location.host.includes("-district");
|
|
3859
1833
|
return React.createElement(CHeader, {
|
|
@@ -3867,7 +1841,7 @@ var TheHeader = function TheHeader() {
|
|
|
3867
1841
|
className: styles["header-logo"]
|
|
3868
1842
|
})), React.createElement(CHeaderNav, {
|
|
3869
1843
|
className: "pr-3"
|
|
3870
|
-
}, React.createElement(
|
|
1844
|
+
}, React.createElement("a", {
|
|
3871
1845
|
className: "mr-3",
|
|
3872
1846
|
style: {
|
|
3873
1847
|
color: '#000'
|
|
@@ -3994,13 +1968,6 @@ var TheLayout = function TheLayout(_ref) {
|
|
|
3994
1968
|
var user = useSelector(function (state) {
|
|
3995
1969
|
return state.common.user;
|
|
3996
1970
|
});
|
|
3997
|
-
var language = useSelector(function (state) {
|
|
3998
|
-
return state.common.language;
|
|
3999
|
-
});
|
|
4000
|
-
|
|
4001
|
-
var _useTranslation = useTranslation(),
|
|
4002
|
-
t = _useTranslation.t;
|
|
4003
|
-
|
|
4004
1971
|
var location = useLocation();
|
|
4005
1972
|
var isNotification = location.pathname.includes("notifications");
|
|
4006
1973
|
var isDistrict = window.location.host.includes("-district");
|
|
@@ -4010,18 +1977,14 @@ var TheLayout = function TheLayout(_ref) {
|
|
|
4010
1977
|
}).filter(function (route) {
|
|
4011
1978
|
return !!route.isDistrict === isDistrict;
|
|
4012
1979
|
});
|
|
4013
|
-
}, [user
|
|
1980
|
+
}, [user]);
|
|
4014
1981
|
var authNavigations = useMemo(function () {
|
|
4015
|
-
return navigation.
|
|
4016
|
-
return _extends({}, item, {
|
|
4017
|
-
name: t(item.name)
|
|
4018
|
-
});
|
|
4019
|
-
}).filter(function (nav) {
|
|
1982
|
+
return navigation.filter(function (nav) {
|
|
4020
1983
|
return canAccess(user === null || user === void 0 ? void 0 : user.roles, nav.roles);
|
|
4021
1984
|
}).filter(function (nav) {
|
|
4022
1985
|
return !!nav.isDistrict === isDistrict;
|
|
4023
1986
|
});
|
|
4024
|
-
}, [user
|
|
1987
|
+
}, [user]);
|
|
4025
1988
|
useEffect(function () {
|
|
4026
1989
|
checkAuthentication();
|
|
4027
1990
|
}, []);
|
|
@@ -4217,10 +2180,10 @@ var get$1 = function get(filter) {
|
|
|
4217
2180
|
var getById = function getById(id) {
|
|
4218
2181
|
return api.get(EMAIL_TEMPLATE_URL + "/" + id);
|
|
4219
2182
|
};
|
|
4220
|
-
var create
|
|
2183
|
+
var create = function create(data) {
|
|
4221
2184
|
return api.post(EMAIL_TEMPLATE_URL, data);
|
|
4222
2185
|
};
|
|
4223
|
-
var update
|
|
2186
|
+
var update = function update(data) {
|
|
4224
2187
|
return api.put(EMAIL_TEMPLATE_URL + "/" + data.id, data);
|
|
4225
2188
|
};
|
|
4226
2189
|
var remove = function remove(id) {
|
|
@@ -4721,7 +2684,7 @@ var config = {
|
|
|
4721
2684
|
paste_data_images: true
|
|
4722
2685
|
};
|
|
4723
2686
|
|
|
4724
|
-
var email
|
|
2687
|
+
var email = _extends({}, config, {
|
|
4725
2688
|
images_upload_handler: function images_upload_handler(blobInfo, success) {
|
|
4726
2689
|
try {
|
|
4727
2690
|
var imageFile = new FormData();
|
|
@@ -4741,7 +2704,7 @@ var email$2 = _extends({}, config, {
|
|
|
4741
2704
|
}
|
|
4742
2705
|
});
|
|
4743
2706
|
|
|
4744
|
-
var question
|
|
2707
|
+
var question = _extends({}, config, {
|
|
4745
2708
|
images_upload_handler: function images_upload_handler(blobInfo, success) {
|
|
4746
2709
|
try {
|
|
4747
2710
|
var imageFile = new FormData();
|
|
@@ -4829,8 +2792,8 @@ var tutorial = _extends({}, config, {
|
|
|
4829
2792
|
});
|
|
4830
2793
|
|
|
4831
2794
|
var editorConfig = {
|
|
4832
|
-
email: email
|
|
4833
|
-
question: question
|
|
2795
|
+
email: email,
|
|
2796
|
+
question: question,
|
|
4834
2797
|
answer: answer,
|
|
4835
2798
|
tutorial: tutorial
|
|
4836
2799
|
};
|
|
@@ -4941,7 +2904,7 @@ var useEmailTemplateDetail = function useEmailTemplateDetail(id) {
|
|
|
4941
2904
|
|
|
4942
2905
|
var _temp10 = _catch(function () {
|
|
4943
2906
|
function _temp6() {
|
|
4944
|
-
var next = !!id ? update
|
|
2907
|
+
var next = !!id ? update : create;
|
|
4945
2908
|
return Promise.resolve(next(data)).then(function () {
|
|
4946
2909
|
dispatch(setAlert({
|
|
4947
2910
|
type: "success",
|
|
@@ -5453,10 +3416,10 @@ var get$3 = function get(filter) {
|
|
|
5453
3416
|
var getById$1 = function getById(id) {
|
|
5454
3417
|
return api.get(FAQ_URL + "/" + id);
|
|
5455
3418
|
};
|
|
5456
|
-
var create$
|
|
3419
|
+
var create$1 = function create(data) {
|
|
5457
3420
|
return api.post(FAQ_URL, data);
|
|
5458
3421
|
};
|
|
5459
|
-
var update$
|
|
3422
|
+
var update$1 = function update(data) {
|
|
5460
3423
|
return api.put(FAQ_URL + "/" + data.id, data);
|
|
5461
3424
|
};
|
|
5462
3425
|
var remove$1 = function remove(id) {
|
|
@@ -5648,7 +3611,7 @@ var useFaqDetail = function useFaqDetail() {
|
|
|
5648
3611
|
dispatch(setLoading(true));
|
|
5649
3612
|
|
|
5650
3613
|
var _temp8 = _catch(function () {
|
|
5651
|
-
var next = !!id ? update$
|
|
3614
|
+
var next = !!id ? update$1 : create$1;
|
|
5652
3615
|
return Promise.resolve(next(values)).then(function () {
|
|
5653
3616
|
dispatch(setAlert({
|
|
5654
3617
|
type: "success",
|
|
@@ -5823,10 +3786,10 @@ var get$4 = function get(filter) {
|
|
|
5823
3786
|
var getById$2 = function getById(id) {
|
|
5824
3787
|
return api.get(SKILL_URL + "/" + id);
|
|
5825
3788
|
};
|
|
5826
|
-
var create$
|
|
3789
|
+
var create$2 = function create(data) {
|
|
5827
3790
|
return api.post(SKILL_URL, data);
|
|
5828
3791
|
};
|
|
5829
|
-
var update$
|
|
3792
|
+
var update$2 = function update(data) {
|
|
5830
3793
|
return api.put(SKILL_URL + "/" + data.id, data);
|
|
5831
3794
|
};
|
|
5832
3795
|
var remove$2 = function remove(id) {
|
|
@@ -5891,10 +3854,6 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
|
|
|
5891
3854
|
setEditedTrue = props.setEditedTrue,
|
|
5892
3855
|
setEditedFalse = props.setEditedFalse,
|
|
5893
3856
|
isDisabled = props.isDisabled;
|
|
5894
|
-
|
|
5895
|
-
var _useTranslation = useTranslation(),
|
|
5896
|
-
t = _useTranslation.t;
|
|
5897
|
-
|
|
5898
3857
|
return React.createElement(Formik, {
|
|
5899
3858
|
initialValues: skillDetail,
|
|
5900
3859
|
enableReinitialize: true,
|
|
@@ -5928,10 +3887,10 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
|
|
|
5928
3887
|
md: 12,
|
|
5929
3888
|
className: "mb-2"
|
|
5930
3889
|
}, React.createElement(RequiredLabel$1, {
|
|
5931
|
-
text:
|
|
3890
|
+
text: "Name"
|
|
5932
3891
|
}), React.createElement(Input, {
|
|
5933
3892
|
name: "name",
|
|
5934
|
-
placeholder:
|
|
3893
|
+
placeholder: "Name",
|
|
5935
3894
|
value: values.name,
|
|
5936
3895
|
onChange: function onChange(e) {
|
|
5937
3896
|
handleChange(e);
|
|
@@ -5943,11 +3902,11 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
|
|
|
5943
3902
|
})), React.createElement(Col, {
|
|
5944
3903
|
md: 12,
|
|
5945
3904
|
className: "mb-2"
|
|
5946
|
-
}, React.createElement(Label, null,
|
|
3905
|
+
}, React.createElement(Label, null, "Description"), React.createElement(Input, {
|
|
5947
3906
|
type: "textarea",
|
|
5948
3907
|
rows: 5,
|
|
5949
3908
|
name: "description",
|
|
5950
|
-
placeholder:
|
|
3909
|
+
placeholder: "Description",
|
|
5951
3910
|
value: values.description,
|
|
5952
3911
|
onChange: function onChange(e) {
|
|
5953
3912
|
handleChange(e);
|
|
@@ -5957,7 +3916,7 @@ var SkillDetailModal = function SkillDetailModal(props, ref) {
|
|
|
5957
3916
|
})), React.createElement(Col, {
|
|
5958
3917
|
md: 12,
|
|
5959
3918
|
className: "mb-2"
|
|
5960
|
-
}, React.createElement(Label, null,
|
|
3919
|
+
}, React.createElement(Label, null, "Parent category"), React.createElement(SkillSelector, {
|
|
5961
3920
|
isDisabled: isDisabled,
|
|
5962
3921
|
onChange: function onChange(e) {
|
|
5963
3922
|
formikProps.setFieldValue("parentSkillId", e.value);
|
|
@@ -6170,7 +4129,7 @@ var useSkillDetail = function useSkillDetail() {
|
|
|
6170
4129
|
dispatch(setLoading(true));
|
|
6171
4130
|
|
|
6172
4131
|
var _temp8 = _catch(function () {
|
|
6173
|
-
var next = !!id ? update$
|
|
4132
|
+
var next = !!id ? update$2 : create$2;
|
|
6174
4133
|
return Promise.resolve(next(values)).then(function () {
|
|
6175
4134
|
dispatch(setAlert({
|
|
6176
4135
|
type: "success",
|
|
@@ -6210,9 +4169,6 @@ var useSkillDetail = function useSkillDetail() {
|
|
|
6210
4169
|
var SkillList = function SkillList() {
|
|
6211
4170
|
var modal = useRef();
|
|
6212
4171
|
|
|
6213
|
-
var _useTranslation = useTranslation(),
|
|
6214
|
-
t = _useTranslation.t;
|
|
6215
|
-
|
|
6216
4172
|
var _useSkillList = useSkillList(),
|
|
6217
4173
|
skillList = _useSkillList.skillList,
|
|
6218
4174
|
totalItems = _useSkillList.totalItems,
|
|
@@ -6257,8 +4213,8 @@ var SkillList = function SkillList() {
|
|
|
6257
4213
|
className: "fadeIn animated"
|
|
6258
4214
|
}, React.createElement(SkillDetailModal$1, {
|
|
6259
4215
|
ref: modal,
|
|
6260
|
-
header: !!id ?
|
|
6261
|
-
confirmText: !!id ?
|
|
4216
|
+
header: !!id ? "Edit skill" : "Create skill",
|
|
4217
|
+
confirmText: !!id ? "Update" : "Create",
|
|
6262
4218
|
onCancel: onCancel,
|
|
6263
4219
|
onConfirm: onConfirm,
|
|
6264
4220
|
skillDetail: skillDetail,
|
|
@@ -6274,14 +4230,14 @@ var SkillList = function SkillList() {
|
|
|
6274
4230
|
}, React.createElement(Col, {
|
|
6275
4231
|
md: 4
|
|
6276
4232
|
}, React.createElement(AddButton, {
|
|
6277
|
-
text:
|
|
4233
|
+
text: "Create skill",
|
|
6278
4234
|
onClick: function onClick() {
|
|
6279
4235
|
return openModal();
|
|
6280
4236
|
}
|
|
6281
4237
|
})), React.createElement(Col, {
|
|
6282
4238
|
md: 4,
|
|
6283
4239
|
className: "d-flex align-items-center justify-content-end"
|
|
6284
|
-
},
|
|
4240
|
+
}, "Total of skills: ", totalItems)), React.createElement(Row, {
|
|
6285
4241
|
className: "mb-2"
|
|
6286
4242
|
}, React.createElement(Col, {
|
|
6287
4243
|
md: 8
|
|
@@ -6293,11 +4249,11 @@ var SkillList = function SkillList() {
|
|
|
6293
4249
|
size: "sm"
|
|
6294
4250
|
}, React.createElement("thead", null, React.createElement("tr", null, React.createElement("th", {
|
|
6295
4251
|
className: "align-top"
|
|
6296
|
-
},
|
|
4252
|
+
}, "Name"), React.createElement("th", {
|
|
6297
4253
|
className: "align-top"
|
|
6298
|
-
},
|
|
4254
|
+
}, "Description"), React.createElement("th", {
|
|
6299
4255
|
className: "text-center"
|
|
6300
|
-
},
|
|
4256
|
+
}, "Action"))), React.createElement("tbody", null, skillList.map(function (record) {
|
|
6301
4257
|
return React.createElement("tr", {
|
|
6302
4258
|
key: record.id
|
|
6303
4259
|
}, React.createElement("td", {
|
|
@@ -6319,7 +4275,7 @@ var SkillList = function SkillList() {
|
|
|
6319
4275
|
}
|
|
6320
4276
|
})));
|
|
6321
4277
|
}))) : React.createElement(EmptyDataAlert, {
|
|
6322
|
-
label:
|
|
4278
|
+
label: "skill"
|
|
6323
4279
|
})), React.createElement(Col, {
|
|
6324
4280
|
md: 8,
|
|
6325
4281
|
className: "text-right"
|
|
@@ -6353,10 +4309,10 @@ var get$5 = function get(filter) {
|
|
|
6353
4309
|
var getById$3 = function getById(id) {
|
|
6354
4310
|
return api.get(USER_URL$1 + "/" + id);
|
|
6355
4311
|
};
|
|
6356
|
-
var create$
|
|
4312
|
+
var create$3 = function create(data) {
|
|
6357
4313
|
return api.post("" + USER_URL$1, data);
|
|
6358
4314
|
};
|
|
6359
|
-
var update$
|
|
4315
|
+
var update$3 = function update(data) {
|
|
6360
4316
|
return api.put(USER_URL$1 + "/" + data.id, data);
|
|
6361
4317
|
};
|
|
6362
4318
|
var remove$3 = function remove(id) {
|
|
@@ -6574,19 +4530,16 @@ var UserList = function UserList() {
|
|
|
6574
4530
|
changeFilters = _useUserList.changeFilters,
|
|
6575
4531
|
reDirectDetailPage = _useUserList.reDirectDetailPage;
|
|
6576
4532
|
|
|
6577
|
-
var _useTranslation = useTranslation(),
|
|
6578
|
-
t = _useTranslation.t;
|
|
6579
|
-
|
|
6580
4533
|
return React.createElement("div", {
|
|
6581
4534
|
className: "fadeIn animated"
|
|
6582
4535
|
}, React.createElement("h5", {
|
|
6583
4536
|
className: "mb-2"
|
|
6584
|
-
},
|
|
4537
|
+
}, header$2), React.createElement(Row, {
|
|
6585
4538
|
className: "my-2"
|
|
6586
4539
|
}, React.createElement(Col, {
|
|
6587
4540
|
md: 8
|
|
6588
4541
|
}, React.createElement(SearchBoxContainer, {
|
|
6589
|
-
text:
|
|
4542
|
+
text: "Create user",
|
|
6590
4543
|
onClick: function onClick() {
|
|
6591
4544
|
return reDirectDetailPage();
|
|
6592
4545
|
},
|
|
@@ -6596,11 +4549,11 @@ var UserList = function UserList() {
|
|
|
6596
4549
|
searchString: searchString
|
|
6597
4550
|
});
|
|
6598
4551
|
},
|
|
6599
|
-
placeholder:
|
|
4552
|
+
placeholder: "Type something to search by user name"
|
|
6600
4553
|
})), React.createElement(Col, {
|
|
6601
4554
|
md: 4,
|
|
6602
4555
|
className: "d-flex justify-content-end align-items-center"
|
|
6603
|
-
},
|
|
4556
|
+
}, "Total of users: ", totalItems)), React.createElement(Row, {
|
|
6604
4557
|
className: "mb-2"
|
|
6605
4558
|
}, React.createElement(Col, {
|
|
6606
4559
|
md: 12
|
|
@@ -6612,17 +4565,17 @@ var UserList = function UserList() {
|
|
|
6612
4565
|
size: "sm"
|
|
6613
4566
|
}, React.createElement("thead", null, React.createElement("tr", null, React.createElement("th", {
|
|
6614
4567
|
className: "align-top"
|
|
6615
|
-
},
|
|
4568
|
+
}, "Name"), React.createElement("th", {
|
|
6616
4569
|
className: "align-top"
|
|
6617
|
-
},
|
|
4570
|
+
}, "Email"), React.createElement("th", {
|
|
6618
4571
|
className: "align-top"
|
|
6619
|
-
},
|
|
4572
|
+
}, "Age"), React.createElement("th", {
|
|
6620
4573
|
className: "align-top"
|
|
6621
|
-
},
|
|
4574
|
+
}, "Role"), React.createElement("th", {
|
|
6622
4575
|
className: "align-top"
|
|
6623
|
-
},
|
|
4576
|
+
}, "Active status"), React.createElement("th", {
|
|
6624
4577
|
className: "text-center"
|
|
6625
|
-
},
|
|
4578
|
+
}, "Action"))), React.createElement("tbody", null, userList.map(function (record) {
|
|
6626
4579
|
return React.createElement("tr", {
|
|
6627
4580
|
key: record.id
|
|
6628
4581
|
}, React.createElement("td", {
|
|
@@ -6640,7 +4593,7 @@ var UserList = function UserList() {
|
|
|
6640
4593
|
className: "align-middle"
|
|
6641
4594
|
}, !!record.roles && record.roles.join(", ")), React.createElement("td", {
|
|
6642
4595
|
className: "align-middle"
|
|
6643
|
-
}, record.isActive ?
|
|
4596
|
+
}, record.isActive ? "Active" : "Inactive"), React.createElement("td", {
|
|
6644
4597
|
className: "text-center align-middle"
|
|
6645
4598
|
}, React.createElement(DeleteButtonIcon, {
|
|
6646
4599
|
onClick: function onClick() {
|
|
@@ -6648,7 +4601,7 @@ var UserList = function UserList() {
|
|
|
6648
4601
|
}
|
|
6649
4602
|
})));
|
|
6650
4603
|
})))) : React.createElement(EmptyDataAlert, {
|
|
6651
|
-
label:
|
|
4604
|
+
label: "user"
|
|
6652
4605
|
})), React.createElement(Col, {
|
|
6653
4606
|
md: 12
|
|
6654
4607
|
}, React.createElement(CustomPagination, {
|
|
@@ -6843,7 +4796,7 @@ var useUserDetail = function useUserDetail(id) {
|
|
|
6843
4796
|
|
|
6844
4797
|
var _temp10 = _catch(function () {
|
|
6845
4798
|
function _temp6() {
|
|
6846
|
-
var next = !!id ? update$
|
|
4799
|
+
var next = !!id ? update$3 : create$3;
|
|
6847
4800
|
!id && delete data.id;
|
|
6848
4801
|
return Promise.resolve(next(data)).then(function (result) {
|
|
6849
4802
|
if (!!result) {
|
|
@@ -6980,9 +4933,9 @@ var changePasswordSchema = object({
|
|
|
6980
4933
|
confirmedNewPassword: string().required("Confirm password is required")
|
|
6981
4934
|
});
|
|
6982
4935
|
|
|
6983
|
-
var CREATE_USER = "
|
|
6984
|
-
var EDIT_USER_HEADER = "
|
|
6985
|
-
var CHANGE_PASSWORD$1 = "
|
|
4936
|
+
var CREATE_USER = "Create user";
|
|
4937
|
+
var EDIT_USER_HEADER = "Edit user";
|
|
4938
|
+
var CHANGE_PASSWORD$1 = "Change password";
|
|
6986
4939
|
|
|
6987
4940
|
var UserDetail = function UserDetail() {
|
|
6988
4941
|
var _useParams = useParams(),
|
|
@@ -6992,9 +4945,6 @@ var UserDetail = function UserDetail() {
|
|
|
6992
4945
|
return state.common.user;
|
|
6993
4946
|
});
|
|
6994
4947
|
|
|
6995
|
-
var _useTranslation = useTranslation(),
|
|
6996
|
-
t = _useTranslation.t;
|
|
6997
|
-
|
|
6998
4948
|
var _useUserDetail = useUserDetail(id),
|
|
6999
4949
|
userDetail = _useUserDetail.userDetail,
|
|
7000
4950
|
backToList = _useUserDetail.backToList,
|
|
@@ -7012,8 +4962,8 @@ var UserDetail = function UserDetail() {
|
|
|
7012
4962
|
newPassword: "",
|
|
7013
4963
|
confirmedNewPassword: ""
|
|
7014
4964
|
};
|
|
7015
|
-
var header = !!id ?
|
|
7016
|
-
var confirmText = !!id ?
|
|
4965
|
+
var header = !!id ? EDIT_USER_HEADER : CREATE_USER;
|
|
4966
|
+
var confirmText = !!id ? "Update" : "Create";
|
|
7017
4967
|
|
|
7018
4968
|
var getFile = function getFile() {
|
|
7019
4969
|
var url = window.location.origin + "/api/ExportDataUser/" + id;
|
|
@@ -7082,7 +5032,7 @@ var UserDetail = function UserDetail() {
|
|
|
7082
5032
|
}, React.createElement(Row, null, React.createElement(Col, {
|
|
7083
5033
|
md: 6
|
|
7084
5034
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7085
|
-
text:
|
|
5035
|
+
text: "First name"
|
|
7086
5036
|
}), React.createElement(Input, {
|
|
7087
5037
|
name: "firstName",
|
|
7088
5038
|
value: values.firstName,
|
|
@@ -7091,13 +5041,13 @@ var UserDetail = function UserDetail() {
|
|
|
7091
5041
|
setEditedTrue();
|
|
7092
5042
|
},
|
|
7093
5043
|
onBlur: handleBlur("subject"),
|
|
7094
|
-
placeholder:
|
|
5044
|
+
placeholder: "First name"
|
|
7095
5045
|
}), touched.firstName && errors.firstName && React.createElement(ErrorHandler, {
|
|
7096
5046
|
text: errors.firstName
|
|
7097
5047
|
}))), React.createElement(Col, {
|
|
7098
5048
|
md: 6
|
|
7099
5049
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7100
|
-
text:
|
|
5050
|
+
text: "Date of birth"
|
|
7101
5051
|
}), React.createElement("div", null, React.createElement(DatePicker, {
|
|
7102
5052
|
value: values.dateOfBirth,
|
|
7103
5053
|
todayButton: "Today",
|
|
@@ -7110,20 +5060,20 @@ var UserDetail = function UserDetail() {
|
|
|
7110
5060
|
formProps.setFieldValue("dateOfBirth", format(e, DATE_FORMAT));
|
|
7111
5061
|
setEditedTrue();
|
|
7112
5062
|
},
|
|
7113
|
-
placeholderText:
|
|
5063
|
+
placeholderText: "Date of birth",
|
|
7114
5064
|
customInput: React.createElement(Input, {
|
|
7115
5065
|
type: "text",
|
|
7116
5066
|
style: {
|
|
7117
5067
|
width: "maxContent"
|
|
7118
5068
|
},
|
|
7119
|
-
placeholder:
|
|
5069
|
+
placeholder: "Date of birth"
|
|
7120
5070
|
})
|
|
7121
5071
|
})), touched.dateOfBirth && errors.dateOfBirth && React.createElement(ErrorHandler, {
|
|
7122
5072
|
text: errors.dateOfBirth
|
|
7123
5073
|
})))), React.createElement(Row, null, React.createElement(Col, {
|
|
7124
5074
|
md: 6
|
|
7125
5075
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7126
|
-
text:
|
|
5076
|
+
text: "Last name"
|
|
7127
5077
|
}), React.createElement(Input, {
|
|
7128
5078
|
name: "lastName",
|
|
7129
5079
|
value: values.lastName,
|
|
@@ -7132,13 +5082,13 @@ var UserDetail = function UserDetail() {
|
|
|
7132
5082
|
setEditedTrue();
|
|
7133
5083
|
},
|
|
7134
5084
|
onBlur: handleBlur("lastName"),
|
|
7135
|
-
placeholder:
|
|
5085
|
+
placeholder: "Last name"
|
|
7136
5086
|
}), touched.lastName && errors.lastName && React.createElement(ErrorHandler, {
|
|
7137
5087
|
text: errors.lastName
|
|
7138
5088
|
}))), React.createElement(Col, {
|
|
7139
5089
|
md: 6
|
|
7140
5090
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7141
|
-
text:
|
|
5091
|
+
text: "Roles"
|
|
7142
5092
|
}), React.createElement(Row, null, React.createElement(Col, {
|
|
7143
5093
|
md: 12,
|
|
7144
5094
|
className: "d-flex flex-wrap align-items-center"
|
|
@@ -7162,7 +5112,7 @@ var UserDetail = function UserDetail() {
|
|
|
7162
5112
|
})))), React.createElement(Row, null, React.createElement(Col, {
|
|
7163
5113
|
md: 6
|
|
7164
5114
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7165
|
-
text:
|
|
5115
|
+
text: "Email"
|
|
7166
5116
|
}), React.createElement(Input, {
|
|
7167
5117
|
name: "email",
|
|
7168
5118
|
value: values.email,
|
|
@@ -7171,20 +5121,20 @@ var UserDetail = function UserDetail() {
|
|
|
7171
5121
|
setEditedTrue();
|
|
7172
5122
|
},
|
|
7173
5123
|
onBlur: handleBlur("email"),
|
|
7174
|
-
placeholder:
|
|
5124
|
+
placeholder: "Email"
|
|
7175
5125
|
}), touched.email && errors.email && React.createElement(ErrorHandler, {
|
|
7176
5126
|
text: errors.email
|
|
7177
5127
|
}))), React.createElement(Col, {
|
|
7178
5128
|
md: 6
|
|
7179
5129
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7180
|
-
text:
|
|
5130
|
+
text: "Status"
|
|
7181
5131
|
}), React.createElement(Row, null, React.createElement(Col, {
|
|
7182
5132
|
md: 3
|
|
7183
5133
|
}, React.createElement(CustomInput, {
|
|
7184
5134
|
id: "role-checkbox-active",
|
|
7185
5135
|
type: "radio",
|
|
7186
5136
|
name: "active",
|
|
7187
|
-
label:
|
|
5137
|
+
label: "Active",
|
|
7188
5138
|
checked: !!values && !!values.isActive,
|
|
7189
5139
|
onChange: function onChange() {
|
|
7190
5140
|
setFieldValue("isActive", true);
|
|
@@ -7196,7 +5146,7 @@ var UserDetail = function UserDetail() {
|
|
|
7196
5146
|
id: "role-checkbox-inActive",
|
|
7197
5147
|
type: "radio",
|
|
7198
5148
|
name: "active",
|
|
7199
|
-
label:
|
|
5149
|
+
label: "Inactive",
|
|
7200
5150
|
checked: !!values && !values.isActive,
|
|
7201
5151
|
onChange: function onChange() {
|
|
7202
5152
|
return setFieldValue("isActive", false);
|
|
@@ -7210,13 +5160,13 @@ var UserDetail = function UserDetail() {
|
|
|
7210
5160
|
onClick: function onClick() {
|
|
7211
5161
|
onResetPw(values.email || "");
|
|
7212
5162
|
}
|
|
7213
|
-
},
|
|
5163
|
+
}, "Send forgot password link"), React.createElement(Button, {
|
|
7214
5164
|
color: "success",
|
|
7215
5165
|
onClick: function onClick() {
|
|
7216
5166
|
getFile();
|
|
7217
5167
|
},
|
|
7218
5168
|
className: "ml-4"
|
|
7219
|
-
},
|
|
5169
|
+
}, "Download user data")))), React.createElement(Col, {
|
|
7220
5170
|
md: 4
|
|
7221
5171
|
}, React.createElement(Row, null, React.createElement(Col, {
|
|
7222
5172
|
md: 8
|
|
@@ -7237,7 +5187,7 @@ var UserDetail = function UserDetail() {
|
|
|
7237
5187
|
}
|
|
7238
5188
|
}))))), user.id === id ? React.createElement("div", null, React.createElement("h5", {
|
|
7239
5189
|
className: "mt-3"
|
|
7240
|
-
},
|
|
5190
|
+
}, CHANGE_PASSWORD$1), React.createElement(Formik, {
|
|
7241
5191
|
initialValues: initialValueForm,
|
|
7242
5192
|
enableReinitialize: true,
|
|
7243
5193
|
validationSchema: changePasswordSchema,
|
|
@@ -7255,7 +5205,7 @@ var UserDetail = function UserDetail() {
|
|
|
7255
5205
|
}, React.createElement(Col, {
|
|
7256
5206
|
md: 7
|
|
7257
5207
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7258
|
-
text:
|
|
5208
|
+
text: "Current password"
|
|
7259
5209
|
}), React.createElement(Input, {
|
|
7260
5210
|
name: "oldPassword",
|
|
7261
5211
|
type: "password",
|
|
@@ -7265,13 +5215,13 @@ var UserDetail = function UserDetail() {
|
|
|
7265
5215
|
setEditedTrue();
|
|
7266
5216
|
},
|
|
7267
5217
|
onBlur: handleBlur("subject"),
|
|
7268
|
-
placeholder:
|
|
5218
|
+
placeholder: "Current password"
|
|
7269
5219
|
}), touched.oldPassword && errors.oldPassword && React.createElement(ErrorHandler, {
|
|
7270
5220
|
text: errors.oldPassword
|
|
7271
5221
|
}))), React.createElement(Col, {
|
|
7272
5222
|
md: 7
|
|
7273
5223
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7274
|
-
text:
|
|
5224
|
+
text: "New password"
|
|
7275
5225
|
}), React.createElement(Input, {
|
|
7276
5226
|
name: "newPassword",
|
|
7277
5227
|
type: "password",
|
|
@@ -7281,13 +5231,13 @@ var UserDetail = function UserDetail() {
|
|
|
7281
5231
|
setEditedTrue();
|
|
7282
5232
|
},
|
|
7283
5233
|
onBlur: handleBlur("subject"),
|
|
7284
|
-
placeholder:
|
|
5234
|
+
placeholder: "New password"
|
|
7285
5235
|
}), touched.newPassword && errors.newPassword && React.createElement(ErrorHandler, {
|
|
7286
5236
|
text: errors.newPassword
|
|
7287
5237
|
}))), React.createElement(Col, {
|
|
7288
5238
|
md: 7
|
|
7289
5239
|
}, React.createElement(FormGroup, null, React.createElement(RequiredLabel$1, {
|
|
7290
|
-
text:
|
|
5240
|
+
text: "Confirm password"
|
|
7291
5241
|
}), React.createElement(Input, {
|
|
7292
5242
|
name: "confirmedNewPassword",
|
|
7293
5243
|
type: "password",
|
|
@@ -7297,7 +5247,7 @@ var UserDetail = function UserDetail() {
|
|
|
7297
5247
|
setEditedTrue();
|
|
7298
5248
|
},
|
|
7299
5249
|
onBlur: handleBlur("subject"),
|
|
7300
|
-
placeholder:
|
|
5250
|
+
placeholder: "Confirm password"
|
|
7301
5251
|
}), touched.confirmedNewPassword && errors.confirmedNewPassword && React.createElement(ErrorHandler, {
|
|
7302
5252
|
text: errors.confirmedNewPassword
|
|
7303
5253
|
}))), React.createElement(Col, {
|
|
@@ -7309,7 +5259,7 @@ var UserDetail = function UserDetail() {
|
|
|
7309
5259
|
onClick: function onClick() {
|
|
7310
5260
|
return handleSubmit();
|
|
7311
5261
|
}
|
|
7312
|
-
},
|
|
5262
|
+
}, "Save")));
|
|
7313
5263
|
})) : null, React.createElement(DetailActionButtons, {
|
|
7314
5264
|
confirmText: confirmText,
|
|
7315
5265
|
onConfirm: handleSubmit,
|
|
@@ -9184,9 +7134,7 @@ var initialState = {
|
|
|
9184
7134
|
menuBar: true,
|
|
9185
7135
|
defaultFontSize: 16,
|
|
9186
7136
|
isEnableIEP: true,
|
|
9187
|
-
isEnableSurvey: false,
|
|
9188
7137
|
isConversationOneToOne: false,
|
|
9189
|
-
language: "en",
|
|
9190
7138
|
amplitude: {
|
|
9191
7139
|
user_id: "",
|
|
9192
7140
|
status: "",
|
|
@@ -9229,12 +7177,8 @@ var commonReducer = createReducer(initialState, function (builder) {
|
|
|
9229
7177
|
state.menuBar = action.payload;
|
|
9230
7178
|
}).addCase(setEnableIEP, function (state, action) {
|
|
9231
7179
|
state.isEnableIEP = action.payload;
|
|
9232
|
-
}).addCase(setEnableSurvey, function (state, action) {
|
|
9233
|
-
state.isEnableSurvey = action.payload;
|
|
9234
7180
|
}).addCase(setConversationOneToOne, function (state, action) {
|
|
9235
7181
|
state.isConversationOneToOne = action.payload;
|
|
9236
|
-
}).addCase(setLanguage, function (state, action) {
|
|
9237
|
-
state.language = action.payload;
|
|
9238
7182
|
}).addCase(showFontSize, function (state, action) {
|
|
9239
7183
|
state.defaultFontSize = action.payload;
|
|
9240
7184
|
}).addCase(initAmplitude, function (state, action) {
|
|
@@ -9253,7 +7197,8 @@ var commonReducer = createReducer(initialState, function (builder) {
|
|
|
9253
7197
|
duration_since: (_action$payload10 = action.payload) !== null && _action$payload10 !== void 0 && _action$payload10.duration_since ? action.payload.duration_since : 0,
|
|
9254
7198
|
last_page: (_action$payload11 = action.payload) !== null && _action$payload11 !== void 0 && _action$payload11.last_page ? action.payload.last_page : "",
|
|
9255
7199
|
event: action.payload.event,
|
|
9256
|
-
domain: !!hostName ? hostName : ""
|
|
7200
|
+
domain: !!hostName ? hostName : "",
|
|
7201
|
+
answer: action.payload.answer ? action.payload.answer : ""
|
|
9257
7202
|
};
|
|
9258
7203
|
state.amplitude = eventProperties;
|
|
9259
7204
|
});
|
|
@@ -10168,5 +8113,5 @@ var generateRandomString = (function () {
|
|
|
10168
8113
|
|
|
10169
8114
|
var amplitudeClient = amplitude.getInstance();
|
|
10170
8115
|
|
|
10171
|
-
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,
|
|
8116
|
+
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 };
|
|
10172
8117
|
//# sourceMappingURL=index.modern.js.map
|