en.json 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052
  1. {
  2. "lang": "com",
  3. "DepartmentManagement":"Department Management",
  4. "DepartmentTypeManagement":"Department Type Management",
  5. "Enterdepartmentname":"Enter department name",
  6. "Search":"Search",
  7. "AddDepartment":"Add Department",
  8. "DepartmentName":"Department Name",
  9. "DepartmentType":"Department Type",
  10. "Action":"Action",
  11. "ViewTeacher":"View Teacher",
  12. "Enterusername":"Enter username",
  13. "return":"Return",
  14. "AddTeacher":"Add Teacher",
  15. "Edit":"Edit",
  16. "Delete":"Delete",
  17. "Name":"Name",
  18. "Department":"Department",
  19. "TeacherAccount":"Teacher Account",
  20. "Nodata":"No data",
  21. "AddTeachers":"Add Teachers",
  22. "Searchteachername":"Search teacher's name",
  23. "SelectMembers":"Select Members",
  24. "Account":"Account ",
  25. "Cancel":"Cancel ",
  26. "Confirm":"Confirm ",
  27. "AddSuccessful":"Add Successful",
  28. "Aystrttfta":"Are you sure to remove this teacher from this department?",
  29. "Remove":"Remove",
  30. "EditDepartment":"Edit Department",
  31. "OperateSuccessful":"Operate Successful",
  32. "Aystdtd":"Are you sure you want to delete this department?",
  33. "Enterdepartmenttype":"Enter department type",
  34. "DeleteSuccessful":"Delete Successful",
  35. "Adddepartmenttype":"Add department type",
  36. "Pleaseenteryourusername":"Please enter your username",
  37. "GradeManagement":"Grade Management",
  38. "ClassManagement":"Class Management",
  39. "StudentManagement":"Student Management",
  40. "AllPeople":"All People",
  41. "AddStudents":"Add Students",
  42. "BatchAdd":"Batch Add",
  43. "XLSXMax":"XLSX. only(Max 500KB)",
  44. "EXffu":"Example XLS file for upload.",
  45. "StudentAccount":"Student ID",
  46. "Class":"Class",
  47. "StudentClass":"Student Class",
  48. "InitialPassword":"Initial Password",
  49. "Aystrtp":"Are you sure you want to reset the password?",
  50. "Reset":"Reset",
  51. "Resetsuccessful":"Reset successful",
  52. "AddStudent":"Add Student",
  53. "StudentName":"Student Name",
  54. "StudentID":"Student ID",
  55. "EnterStudentID":"Enter Student ID",
  56. "AffiliatedSchool":"Affiliated School",
  57. "SelectClass":"Select Class",
  58. "NoteTdpfnsai":"Note: The default password for new student accounts is 'Coco1234'",
  59. "EditStudent":"Edit Student",
  60. "Editsuccessful":"Update Successful",
  61. "Aystd":"Are you sure you want to delete?",
  62. "EnterClassName":"Enter Class Name",
  63. "Grade":"Grade",
  64. "NumberofStudents":"Number of Students",
  65. "ViewStudents":"View Students",
  66. "EditGrade":"Edit Grade",
  67. "EditName":"Edit Name",
  68. "None":"None",
  69. "AddClass":"Add Class",
  70. "Searchstudentname":"Search student name",
  71. "Choosemembers":"Choose members",
  72. "StudentNumber":"Student Number",
  73. "EnterStudentNumber":"Enter Student Number",
  74. "StudentPhoneNumber":"Student Phone Number",
  75. "EnterStudentPhoneNumber":"Enter Student Phone Number",
  76. "Aystrtsftc":"Are you want to remove this student from this class?",
  77. "SelectGrade":"Select Grade",
  78. "EditClass":"Edit Class",
  79. "ClassName":"Class Name",
  80. "Aystdtc":"re you want to delete this class?",
  81. "Enterclass":"Enter class",
  82. "EnterGradeName":"Enter Grade Name",
  83. "AddGrade":"Add Grade",
  84. "GradeName":"Grade Name",
  85. "NumberofClasses":"Number of Classes",
  86. "ViewClasses":"View Classes",
  87. "Classes":"Classes",
  88. "AddClasses":"Add Classes",
  89. "SelectClasses":"Select Classes",
  90. "SearchforClassName":"Search for Class Name",
  91. "Add":"Add",
  92. "Aystrtcftg":"Are you want to remove this class from this grade?",
  93. "Aystdtg":"Are you want to delete this grade?",
  94. "EnterGrade":"Enter Grade",
  95. "CocoNote":"CocoNote",
  96. "EditCoconote":"Create",
  97. "ResetNote":"Reset",
  98. "SearchNote":"Search",
  99. "All":"All",
  100. "Shared":"Shared",
  101. "MyNote":"MyNote",
  102. "Open":"Open",
  103. "Modified":"Modified",
  104. "Copy":"Copy",
  105. "Aystdi":"Are you sure you want to delete it?",
  106. "Successfullycopy":"Successfully copy",
  107. "Standardcreation":"Standard creation",
  108. "QuicklyCreate":"Quickly Create",
  109. "ssQuickCreateSuffix":"'s Quickly Create",
  110. "Back":"Back",
  111. "NoteName":"Note Name(Required)",
  112. "Cover":"Cover",
  113. "AddCoverimage":"Add Cover Image",
  114. "Psac":"Please select collaborators",
  115. "Pleaseaddgroups":"Please add the course name before setting up the group",
  116. "Pleasesetupgroups":"No groups available at the moment.Click the 'Create' button to set up groups",
  117. "Creategroups":"Create",
  118. "Deletegroups":"Delete",
  119. "GroupSettings":"Group Settings",
  120. "GroupName1":"*st Group Name",
  121. "GroupName2":"*nd Group Name",
  122. "GroupName3":"*rd Group Name",
  123. "GroupName4":"*th Group Name",
  124. "nd":"nd",
  125. "rd":"rd",
  126. "th":"th",
  127. "AddGroup":"Add",
  128. "Groupsize":"Group size",
  129. "Addgroupsinbatch":"Batch Add",
  130. "Save":"Save",
  131. "UpdateSuccessful":"Update Successful",
  132. "returnHomepage":"return",
  133. "Confirmcreation":"Confirm creation",
  134. "GroupNames":"Group Names",
  135. "Pleaseenteraname":"Please enter a name ..",
  136. "Teachernotaddedgroups":"Teacher has not added any groups yet",
  137. "emptyplaces":"Empty Seat",
  138. "Addteammembers": "Add team members",
  139. "Removeteammembers": "Remove team members",
  140. "selectteamdelete": "Please select the team member to delete",
  141. "Areyousuredeletegroup": "Are you sure to delete the existing group? After deletion, the grouped data will be cleared!",
  142. "tip": "Tip",
  143. "OpenSeatSelectionTip":"Tip: Turn on 'Open Seat Selection' to freely join and leave the group.",
  144. "OpenSeatSelection":"Open Seat Selection",
  145. "Enablegrouping":"Enable grouping",
  146. "JoinGroup":"Join Group",
  147. "Exitgroup":"Exit group",
  148. "Groupinghasbeenclosed":"Grouping has been closed",
  149. "Modifygrouping":"Modify grouping",
  150. "selectgroupenter":"Please select the group to enter",
  151. "Noname":"No Name",
  152. "enablegroupingbefor":"Please enable grouping before opening seat selection",
  153. "fillincompletely":"Please fill in the information completely!",
  154. "pleaseresetgroup":"There are already more groups than the number you set, please reset",
  155. "Settingsuccessful":"Setting successful",
  156. "Successfullystartedgrouping":"Successfully started grouping",
  157. "Successfullyclosedgrouping":"Successfully closed grouping",
  158. "Poorinternetconnection":"Poor internet connection",
  159. "Locationisfull":"Location is full, unable to join",
  160. "Exitsuccessful":"Exit successful",
  161. "confirmjointhegroup":"Are you sure to join the group? After confirmation, the collaborative build will be opened directly",
  162. "Locationlocked":"Location locked, unable to join",
  163. "Joinsuccessfully":"Join successfully",
  164. "unabletoexit":"Location locked, unable to exit",
  165. "exist":"exist",
  166. "SMARTPaste":"SMART Paste",
  167. "uploadpictures":"Upload Image",
  168. "Addmembers":"Add collaborative members",
  169. "Searchforaccount":"Search for complete name/account (excluding email suffix)",
  170. "identity":"identity",
  171. "school":"school",
  172. "SelectAll":"SelectAll",
  173. "teacher":"teacher",
  174. "student":"student",
  175. "fillincoursename":"Please fill in the course name",
  176. "wantsavecontent":"Save changes before closing?",
  177. "saveCoco":"save",
  178. "Donotsave":"Do not save",
  179. "notsave":"Do not save",
  180. "Noncannotedit":"Non administrators and creators cannot edit",
  181. "type":"type",
  182. "enterkeywordsimages":"Please enter keywords to search for images",
  183. "Teachername":"Teacher's name",
  184. "enterteachername":"Please enter the teacher's name",
  185. "TeacherNumber":"Teacher's student ID",
  186. "enterteacherID":"Please enter the teacher's student ID",
  187. "Teacherphonenumber":"Teacher's mobile phone number",
  188. "EnterTeacherPhoneNumber":"Please enter the teacher's phone number",
  189. "Teacheraccount":"Teacher account",
  190. "enterteacheraccount":"Please enter the teacher account",
  191. "selectdepartment":"Please select the teaching and research department",
  192. "teacherpassword":"Note: Add the teacher's account password as Coco1234",
  193. "confirm":"Confirm",
  194. "Modifyteacher":"Modify teacher",
  195. "enterdepartment":"Enter the department…",
  196. "makechanges":"Are you sure to make the changes?",
  197. "selectthetypeofteaching":"Please select the type of teaching and research room",
  198. "nameasother":"Cannot have the same name as other teaching and research rooms!",
  199. "Additionfailed":"Addition failed",
  200. "Modificationfailed":"Modification failed",
  201. "Deletefailed":"Delete failed",
  202. "Teachercannotempty":"Teacher's name cannot be empty",
  203. "phonenumberincorrect":"The format of the phone number is incorrect",
  204. "Emailformatincorrect":"Email format incorrect",
  205. "alreadybeenregistered":"This teacher's account has already been registered",
  206. "chooseateaching":"Please choose a teaching and research room for the teacher",
  207. "operationfailed":"operation failed",
  208. "selecttheteacher":"Please select the teacher to add to the teaching and research room",
  209. "Addedsuccessfully":"Added successfully",
  210. "initializepasswordteacher":"Are you sure to initialize the password for this teacher?",
  211. "othertypesofteaching":"Cannot have the same name as other types of teaching and research rooms!",
  212. "CreateCourse":"Create Course",
  213. "SimplifiedCourse": "Simplified Course",
  214. "Classroommode": "Lesson Plan Analysis Mode",
  215. "MultistageCourse": "Multi-stage Course",
  216. "AIMode": "AI-Assisted Mode",
  217. "MyCourse": "My Course",
  218. "CollaborativeCourse": "Collaborative Course",
  219. "OthersCourse": "Others Course",
  220. "Owner": "Owner",
  221. "PleaseEnterKeyword": "Please enter keywords",
  222. "Preview": "Preview",
  223. "AiEdit": "AI Polish",
  224. "Share": "Share",
  225. "CreationDate": "Creation Date",
  226. "ModificationDate": "Modification Date",
  227. "StageMode": "Stage mode",
  228. "TaskMode": "Task mode",
  229. "MinimalMode": "Minimal mode",
  230. "ClassMode": "Class mode",
  231. "ViewQuestions": "View Questions",
  232. "Close": "Close",
  233. "ViewCollaborativeCourse": "View collaborative courses",
  234. "ViewContent": "View Content",
  235. "reset": "Reset",
  236. "Coursescreening": "Course screening",
  237. "Pleaseselect": "Please select",
  238. "entercoursename": "Enter Course Name",
  239. "CreateTeacher": "Create Teacher",
  240. "edit": "edit",
  241. "deletebeforeuploading": "The course poster only supports uploading one. Please delete it before uploading again",
  242. "specialcolumn": "special column",
  243. "column": "column",
  244. "college": "college",
  245. "deletethiscourse": "Are you sure to delete this course?",
  246. "ZhijianCourse": "Zhijian Course",
  247. "ZhixingCourse": "Zhixing Course",
  248. "IntelligentCreationCourse": "Intelligent Creation Course",
  249. "xiaokeloading": "Xiaoke is working hard to generate it, please wait a moment..",
  250. "stop": "stop",
  251. "Fillinbasicinformation": "Fill in basic information",
  252. "Uploadcoursecontent": "Upload course content",
  253. "Uploadcompleted": "Upload completed",
  254. "wantintelligent": "Do you want to enable intelligent retrieval",
  255. "OutputLanguage": "Language",
  256. "SimplifiedChinese": "Simplified Chinese",
  257. "traditionalChinese": "traditional Chinese",
  258. "English": "English",
  259. "AddCourse": "Add Course",
  260. "Publish": "Publish",
  261. "SelectLocalImage": "Select Local Image",
  262. "RefreshResults": "Refresh Results",
  263. "UpdateCover": "Update Cover",
  264. "TaskL": "Task *",
  265. "UntitledTask": "Untitled Task",
  266. "LearningContent": "Learning Content",
  267. "AddLearningContent": "Add Learning Content",
  268. "Files": "Files",
  269. "TextImages": "Text & Images",
  270. "Links": "Links",
  271. "Code": "Code",
  272. "TaskOverview": "Task Overview",
  273. "EnterTaskName": "Enter Task Name",
  274. "EnterTaskDescription": "Enter Task Description",
  275. "Expand": "Expand",
  276. "AddTask": "Add Task",
  277. "BacktoCourse": "Back to Course",
  278. "ConfirmUpload": "Confirm & Upload",
  279. "pleasewait": "Uploading,please wait",
  280. "Filename": "Filename",
  281. "Deleteitem": "Delete this item?",
  282. "Addtext": "Add text",
  283. "TextTitle": "Text Title",
  284. "EnterTextTitle": "Enter Text Title",
  285. "AddaLink": "Add a Link",
  286. "LinkText": "Link Text",
  287. "Enterlinkdisplaytext": "Enter link display text",
  288. "URL": "URL",
  289. "EnterURL": "Enter URL",
  290. "Llinktextrequired": "Enter link display text",
  291. "copyvalidlink": "No paste target found. Please copy a valid link first.",
  292. "Assessment": "Assessment",
  293. "AddToolDescription": "Add Tool Description",
  294. "AddTool": "Add Tool",
  295. "CollapseTask": "Collapse Task",
  296. "AddDefaultTime": "Add Default Time",
  297. "changetime": "Tip: Click “+” or “-” to change the countdown time.",
  298. "applytemplates": "Templates cannot be added in Simplified Course. Please add course first, then edit to apply templates.",
  299. "AddFile": "Add File",
  300. "UploadTemplate": "Upload Template",
  301. "AddTable": "Add Table",
  302. "Groupsettings": "Group settings",
  303. "EnterInteger": "Enter Integer(2-10)",
  304. "CreateQuestionnaire": "Create Questionnaire",
  305. "EnterTitle": "Enter Title",
  306. "SingleChoice": "Single Choice",
  307. "MultipleChoice": "Multiple Choice",
  308. "Enterquestion": "Enter question",
  309. "OptionL": "OptionL *",
  310. "onequestion": "At least one question isrequired",
  311. "AddQA": "Add Q&A",
  312. "Question": "Question",
  313. "Pleaseenteryourquestion": "Please enter your question",
  314. "UploadQuestionImage": "Upload Question Image",
  315. "TipUpload": "Tip: Upload all questions as a single image",
  316. "AddOptions": "Add Options",
  317. "Tipenteroption": "Tip: Please enter option content for the above questions; options will be shared for all questions",
  318. "Enteroption": "Enter option",
  319. "Next": "Next",
  320. "Uploadquestions": "Upload questions",
  321. "Optioncannotbeempty": "Option cannot be empty.",
  322. "Duplicateoptions": "Duplicate options: Option 1 & Option 2. Please modify.",
  323. "SelectCorrectOption": "Select Correct Option",
  324. "MatchAnswerstoQuestions": "Match Answers to Questions",
  325. "SelectCorrectOptionL": "Select Correct Option",
  326. "BackL": "Back",
  327. "setcorrectanswers": "Please set correct answers.",
  328. "ZoomOut": "Zoom Out",
  329. "ZoomIn": "Zoom In",
  330. "ResetL": "Reset",
  331. "Rotateleft": "Rotate left 90°",
  332. "Rotateright": "Rotate right 90°​",
  333. "Settings": "Settings",
  334. "QuestionSetup": "Question Setup",
  335. "Entercardcontent": "Enter card content",
  336. "Entercards": "Enter cards in input box,then click to set card order",
  337. "CorrectOrder": "Correct Order",
  338. "Noorderset": "No order set",
  339. "AddQuestion": "Add Question",
  340. "completeQuestion": "Please complete Question * Setup",
  341. "PleaseEntercardcontent": "Please Enter card content.",
  342. "Clickcardtocancelsorting": "Click card to cancel sorting",
  343. "deletethisquestion": "Are you sure to delete this question?",
  344. "Successfullydelete": "Successfully delete",
  345. "AddAssessment": "Add Assessment",
  346. "EnterSelfAssessmentCriteria": "Enter Self-Assessment Criteria",
  347. "SelfAssessmentcriteria": "Self-Assessment criteria",
  348. "Enterassessmentname": "Enter assessment name",
  349. "Ratinglevel": "Rating level",
  350. "Description": "Description",
  351. "Enterdescription": "Enter description",
  352. "Pleasecompleteallassessmentfields": "Please complete all assessment fields.",
  353. "AIAgent": "AI Agent",
  354. "Timetable": "Timetable",
  355. "CreateEssayTopic": "Create Essay Topic",
  356. "EssayTitle": "Essay Title",
  357. "Enteressaytitlehere": "Enter essay title here",
  358. "EssayRequirements": "Essay Requirements",
  359. "Enteressayrequirements": "Enter essay requirements",
  360. "AssessmentSettings": "Assessment Settings",
  361. "Preset": "Preset",
  362. "completethecontent": "Please complete the content.",
  363. "assessmenttemplate": "Click to set the following content as an assessment template",
  364. "SetEnglishSpeakingInformation": "Set English Speaking Information",
  365. "Title": "Title",
  366. "Entertitle": "Enter title",
  367. "DescriptionL": "Description",
  368. "Enterquestiondescription": "Enter question description",
  369. "SetEnglishSpeakingQuestions": "Set English Speaking Questions",
  370. "SelectQuestionType": "Select Question Type",
  371. "OralReading": "Oral Reading",
  372. "WordsPhrases": "Words/Phrases",
  373. "SentencesText": "Sentences/Short Text",
  374. "Topic": "Topic",
  375. "Dialogue": "Dialogue",
  376. "CreateRole": "Create Role",
  377. "ThemeStatement": "Theme Statement",
  378. "CreateNewTheme": "Create New Theme",
  379. "AssessmentTopics": "Assessment Topics",
  380. "AssessmentOutline": "Assessment Outline",
  381. "pleaseaddtopic": "No content available, please add a topic",
  382. "Pleaseentertitle": "Please enter title",
  383. "Input": "Input",
  384. "Enterpronounce": "Enter words/phrases for students to pronounce.",
  385. "AddImage": "Add Image",
  386. "AutoGenerate": "Auto-Generate",
  387. "Check": "Check",
  388. "Enterpractice": "Enter sentences/passages for students to practice.",
  389. "studentanswer": "Please add some oral practice questions for students to answer.",
  390. "enterCharacterName": "Please enter Character Name",
  391. "RoleSetting": "Role Setting",
  392. "CharacterDialogue": "Character Dialogue",
  393. "theirroleattributes": "Please create an oral teaching assistant for the students and set their role attributes.",
  394. "CharacterName": "Character Name",
  395. "CreateCharacter": "Create Character",
  396. "CharacterDefinition": "Character Definition",
  397. "enterdefinition": "Please enter the definition of this character.",
  398. "CharacterGreeting": "Character Greeting",
  399. "entergreeting": "Please enter the greeting message for this character.",
  400. "CharacterTest": "Character Test",
  401. "enterRoleDefinition": "Please enter Role Definition",
  402. "enterCharacterGreeting": "Please enter Character Greeting",
  403. "CharacterTestL": "Character Test",
  404. "Recordingnow": "Recording now. Click the microphone again to stop the recording....",
  405. "SubjectStatement": "Subject Statement",
  406. "enteroraltopic": "Please enter the oral topic and key points that students need to practice.",
  407. "EntertitleL": "Enter title",
  408. "Enterkeypoints": "Enter key points",
  409. "rovidekey": "Please provide the key points of this topic.",
  410. "SpeechTime": "Speech Time",
  411. "ssEnterSpeechTime": "Please enter speech time",
  412. "removetool": "Are you sure to remove this tool?",
  413. "Moveup": "Move up",
  414. "Movedown": "Move down",
  415. "removetask": "Are you sure to remove this task?",
  416. "Hidetask": "Hide task",
  417. "Expandtask": "Expand task",
  418. "entercoursenameL": "Please enter course name",
  419. "Savechanges": "Save changes before closing?",
  420. "Successfullyadd": "Successfully add",
  421. "AdvancedSettings": "Advanced Settings",
  422. "CourseAccessSettings": "Course Access Settings",
  423. "SelectTeachingClass": "Please select teaching class",
  424. "CourseDescription": "Course Description",
  425. "EnterCourseDescription": "Enter Course Description",
  426. "ObjectivesManagement": "Objectives Management",
  427. "enterObjectiveManagement": "Please enter Objective Management",
  428. "DeleteL": "Delete",
  429. "AddCollaborator": "Add Collaborator",
  430. "SearchMembers": "Search Members",
  431. "ImportObjectives": "Import Objectives",
  432. "Objective": "Objective",
  433. "OwnerL": "Owner",
  434. "Operate": "Operate",
  435. "Import": "Import",
  436. "SuccessfullyImport": "Successfully Import",
  437. "ObjectiveManagementSettings": "Objective Management Settings",
  438. "Created": "Created",
  439. "Duplicate": "Duplicate",
  440. "AddObjectiveL": "Add Objective",
  441. "Searchname": "Searchname",
  442. "NameL": "Name",
  443. "EnterObjectivetitle": "Enter title..",
  444. "PrimaryObjective": "Primary Objective",
  445. "Addcontent": "Add content...",
  446. "AddDescription": "Add Description",
  447. "SecondaryObjective": "Secondary Objective",
  448. "TertiaryObjective": "Tertiary Objective",
  449. "Viewmode": "View mode",
  450. "TreeView": "Tree View",
  451. "CompassView": "Compass View",
  452. "BoardView": "Board View",
  453. "Addcategorized": "Add categorized objectives for system processing!",
  454. "Pleaseenterobjectiv": "Please enter objective.",
  455. "SelectTemplate": "Select Template",
  456. "TeacherPBLTraining": "Teacher PBL Training",
  457. "MoralEducationEvaluation": "Moral Education Evaluation",
  458. "NewStage": "New Stage",
  459. "enterStageName": "Please enter Stage Name",
  460. "deletestage": "Are you sure to delete this stage?",
  461. "3SEtemplate": "3SE template",
  462. "ChineseReading": "Teaching Chinese Reading",
  463. "EnglishReading": "Teaching English Reading",
  464. "5EXTeachingMode": "5EX Teaching Mode",
  465. "5ETeachingMode": "5E Teaching Mode",
  466. "Confirmtemplateselection": "Confirm template selection? All content will be deleted.",
  467. "Preliminaryintroduction": "Preliminary introduction of the project",
  468. "Tipformula": "Tip: If entering a mathematical formula, you need to wrap it with a $symbol. Example: $a ^ 2+b ^ 2=c ^ 2$",
  469. "Dimension": "Dimension",
  470. "EnterDimension": "Enter Dimension",
  471. "DimensionDescription": "Description",
  472. "EnterDescription": "Enter Description",
  473. "AddResourceTemplate": "Add Resource Template",
  474. "TemplateName": "Template Name",
  475. "Selectcategory": "Select a primary category",
  476. "Works": "Works",
  477. "Abilities": "Abilities",
  478. "Behaviors": "Behaviors",
  479. "AssessmentResource": "Assessment Resource",
  480. "PublicResources": "Public Resources",
  481. "PersonalResources": "Personal Resources",
  482. "OrganizationalResources": "Organizational Resources",
  483. "PrimaryClassification": "Primary Classification",
  484. "SecondaryClassification": "Secondary Classification",
  485. "Speech": "Speech",
  486. "Thesis": "Thesis",
  487. "Promotionalvideo": "Promotional video",
  488. "PromotionalposterWebsite": "Promotional poster Website",
  489. "Artifacts": "Artifacts",
  490. "Researchpaper": "Researchpaper",
  491. "website": "website",
  492. "Novel": "Novel",
  493. "Debate": "Debate",
  494. "ResearchReport": "Research Report",
  495. "ResearchPlan": "Research Plan",
  496. "Teamwork": "Team work",
  497. "DigitalLiteracy": "Digital Literacy",
  498. "Selfmanagement": "Self-management",
  499. "Creativity": "Creativity",
  500. "Communication": "Communication",
  501. "CriticalThinking": "Critical Thinking",
  502. "MetaRecognition": "Meta Recognition",
  503. "Problemsolve": "Problem solve",
  504. "LiteratureResearch": "Literature Research",
  505. "DataProcess": "Data Process",
  506. "LearningProgress": "Learning Progress",
  507. "LearningProformance": "Learning Proformance",
  508. "SearchforResources": "Search for Resources",
  509. "NoItemsFound": "No Items Found",
  510. "SwitchMode": "Switch Mode",
  511. "ssSwitchMode": "Switch Mode",
  512. "Unnamedstage": "Unnamed stage",
  513. "Stagesequence": "Stagesequence",
  514. "enterstagetitle": "Please enter the stage title",
  515. "entertaskdescription": "Please enter task description",
  516. "AIapplication": "AI application",
  517. "Intelligentapplication": "Intelligent application",
  518. "CodeEditor": "Code Editor",
  519. "instructionaldesign": "instructionaldesign",
  520. "target": "target",
  521. "resource": "resource",
  522. "Addresourcetemplate": "Add resource template",
  523. "Putawaythetarget": "Put away the target",
  524. "ExpandGoals": "Expand Goals",
  525. "choosecoursetemplate": "Please choose a suitable course template",
  526. "Teachingcourseware": "Teaching courseware",
  527. "Teachingvideos": "Teaching videos",
  528. "Teachingaudio": "Teaching audio",
  529. "worksheet": "worksheet",
  530. "Practicecontent": "Practice content",
  531. "EvaluationContent": "Evaluation Content",
  532. "Selected": "Selected",
  533. "BlankTemplate": "Blank Template",
  534. "SimpleTemplate": "Simple Template",
  535. "IntelligentPasteMode": "Intelligent Paste Mode",
  536. "success": "success",
  537. "copycollaborativeediting": "Please copy the link to invite collaborative editing",
  538. "Copylinkandshare": "Copy link and share",
  539. "Viewdocument": "View document",
  540. "documenttitle": "document title",
  541. "entertitledocument": "Please enter the title of the document ..",
  542. "DocumentIntroduction": "Document Introduction",
  543. "documentcontent": "document content",
  544. "Modifyresources": "Modify resources",
  545. "Addresources": "Add resources",
  546. "Addcoursemembers": "Add course members",
  547. "Searchmembernames": "Search for member names",
  548. "Nostudentsavailable": "No students available at the moment",
  549. "other": "other",
  550. "CreateMultipleChoiceQuestions": "Create Multiple Choice Questions",
  551. "MaterialLibrary": "Material Library",
  552. "note": "note",
  553. "Collaborativedocument": "Collaborative document",
  554. "Mathematicaldrawingboard": "Mathematical drawing board",
  555. "Gaugerating": "Gauge rating",
  556. "Addquestions": "Add questions",
  557. "enterwantanswer": "Please enter the question you want to answer",
  558. "Selectsystemfiles": "Select system files",
  559. "painting": "painting",
  560. "scienceandtechnology": "science and technology",
  561. "humanity": "humanity",
  562. "art": "art",
  563. "correctorder": "correct order",
  564. "TableContent": "Table Content",
  565. "Setrandomcode": "Set random code",
  566. "randomcode": "random code",
  567. "enterrandomcode": "Please enter the random code",
  568. "Importtarget": "Import target",
  569. "Selectsecondaryclassification": "Select secondary classification",
  570. "addtoolsentirety": "Please add the tools in their entirety",
  571. "switchtaskmode": "Are you sure to switch to task mode?",
  572. "deletealltoolsubmissions": "Switching task order will delete all tool submissions. Do you want to continue with this operation?",
  573. "underdevelopment": "The function is under development",
  574. "Successfullclipboard": "Successfully obtained clipboard:",
  575. "Pastesuccessful": "Paste successful",
  576. "Embedcode": "Embed code",
  577. "notfindthepasted": "The system did not find the pasted object. Please first copy the link that can be used for pasting.",
  578. "Failedclipboard": "Failed to retrieve clipboard:",
  579. "selectresourcesupload": "Please select the resources to upload",
  580. "Uploadfailed": "Upload failed",
  581. "Systemimage": "System image",
  582. "Networkimages": "Network images",
  583. "deleteitbeforeuploadingagain": "The course cover only supports uploading one page. Please delete it before uploading again",
  584. "selectnewfile": "The uploaded file is larger than 80 MB, please select a new file!",
  585. "Cantdownloadpictures": "Can't download pictures yet",
  586. "Switchingorder": "Switching the order of tools will delete the submitted results of this tool. Do you want to continue with this operation?",
  587. "addcoursemembers": "Please add course members",
  588. "useAI": "Please use AI to co create and generate",
  589. "selecttemplate": "Please select a template",
  590. "chooseemptytemplate": "Are you sure to choose an empty template? The course template cannot be reset when modifying the course.",
  591. "choosesimpletemplate": "Are you sure to choose a simple template? The course template cannot be reset when modifying the course.",
  592. "choosingfutureelementaryschool": "Are you sure about choosing the future elementary school curriculum design?",
  593. "addingtemplates": "Cannot add templates when adding, please add courses before modifying and adding templates",
  594. "operationirreversible": "This operation is irreversible. Do you want to continue?",
  595. "Titlecannotbeempty": "The title cannot be empty!",
  596. "filltitle": "Please fill in the title * completely.",
  597. "optioncannotempty": "Question * option cannot be empty!",
  598. "pleasemodify": "Option&and option $in question * are duplicated, please modify!",
  599. "Eachquestion": "Each question requires at least 2 options to be set.",
  600. "correctoptions": "Please complete the correct options for question *",
  601. "AItococreate": "Please use AI to co create and generate questions",
  602. "smartpastetemplate": "Are you sure to choose the smart paste template? The course template cannot be reset when modifying the course.",
  603. "stagesequencewilldelete": "Switching the stage sequence will delete all submitted results of the tools. Do you want to continue with this operation?",
  604. "enterquestion": "Please enter the question you want to ask",
  605. "Pleaseaddoptions": "Please add options",
  606. "newlyadded": "This is a newly added course",
  607. "need": "need",
  608. "restoreit": "The stage you modified has already been deleted by another teacher. Do you need to restore it?",
  609. "clearagain": "The content has been cleared, please do not clear again",
  610. "deletethistarget": "Are you sure to delete this target?",
  611. "goandaddit": "Please select a secondary category. If there is no secondary category, please go and add it!",
  612. "cannotexceed": "The word count of the card content cannot exceed 10 characters",
  613. "Cannotaddduplicate": "Cannot add duplicate card content!",
  614. "Uploadsuccessful": "Upload successful",
  615. "combinationEnglish": "Please enter a random code consisting of at least four digits or a combination of English characters",
  616. "cannotrepeated": "This random code already exists and cannot be repeated",
  617. "enterthename": "Please enter the name to be modified",
  618. "SwitchingStageSequence": "Switching Stage Sequence",
  619. "recoverywassuccessful": "recovery was successful",
  620. "coursedesign": "course design",
  621. "simplemode": "simple mode",
  622. "Taskname": "Task name",
  623. "taskdescription": "task description",
  624. "Addfile": "Add file",
  625. "Addimagesandtext": "Add images and text",
  626. "interactivevideo": "interactive video",
  627. "AIExperience": "AI Experience",
  628. "Magicboxliteracy": "Magic box literacy",
  629. "points": "24-Point",
  630. "Simulateddriving": "Simulated driving",
  631. "Route": "Route",
  632. "Deeplearning": "deep learning",
  633. "Theentirehistory": "The entire history",
  634. "EvaluationName": "Evaluation Name:",
  635. "Evaluationdescription": "Evaluation description:",
  636. "usingtarget": "Currently using target management",
  637. "fold": "fold",
  638. "expand": "expand",
  639. "deleteunit": "Are you sure to delete this unit?",
  640. "choosethistemplate": "Are you sure to choose this template?",
  641. "choemptytemplate": "Are you sure to choose an empty template?",
  642. "choosesimplemode": "Are you sure to choose the simple mode?",
  643. "choosesmartpastemode": "Are you sure to choose the smart paste mode?",
  644. "data11_5": "11.5",
  645. "enterstuname": "Enter Student Name",
  646. "enterstuacc": "Enter Student ID",
  647. "numberstu": "Number of students",
  648. "Cannotsameother": "Cannot be the same as other grade names!",
  649. "Stucannotempty": "Student name cannot be empty",
  650. "accalreadyregistered": "This student account has already been registered",
  651. "selectgradestu": "Please select a grade for the student",
  652. "selectclassadd": "Please select the class to add",
  653. "Viewreviews": "View Reviews",
  654. "Cannotsameothercla": "Class name cannot be the same as others!",
  655. "chooseclastudents": "Please select a class for the student",
  656. "removestu": "Are you sure to remove this student from the class?",
  657. "selectstuaddcla": "Please select students to add to the class",
  658. "StudentaccountAdd": "Student Account (recommended to use student ID directly)",
  659. "Uploadstusamples": "Upload Student Sample",
  660. "acccannotempty": "Student account cannot be empty",
  661. "uploadagain": "Attachment format error, please delete and re-upload!",
  662. "uploadattachment": "Please upload an attachment!",
  663. "formaterror": "Attachment format error",
  664. "Username": "Username",
  665. "studentinformation": "Student Information",
  666. "Exportsuccessful": "Export successful",
  667. "studentIDL": "Student ID",
  668. "Limitmore": "The number of students uploaded cannot exceed 70",
  669. "Studentcannotempty": "Student class cannot be empty, please re-upload",
  670. "Stuuploadagain": "Student name cannot be empty, please re-upload",
  671. "StudIDuploadagain": "Student ID cannot be empty, please re-upload",
  672. "Stuaccuploadagain": "Student account cannot be empty, please re-upload",
  673. "stuaccformatuploadagain": "Some student account formats are incorrect, please re-upload",
  674. "stunumberregistered": "Some student phone numbers are already registered",
  675. "stuaccregistered": "Some student accounts are already registered",
  676. "studuplicateIDs": "Some student IDs are duplicated",
  677. "data11_6": "11.6",
  678. "PPTmode":"Interactive Slides",
  679. "Codeupload": "Code Upload",
  680. "StageTitle": "Stage Title",
  681. "data11_7": "11.7",
  682. "data11_12": "11.12",
  683. "joinone": "Please join a group first if you haven't joined one",
  684. "TaskLOverview": "Task * Overview",
  685. "Putleacontent": "Collapse Learning Content",
  686. "Expandleacontent": "Expand Learning Content",
  687. "Menuitems":"Department",
  688. "Norecordsfound":"No records found",
  689. "TemplateLibrary":"Template Library",
  690. "PleaseEnterContent":"Please enter content",
  691. "SetTemplate":"Set Template",
  692. "Use":"Use",
  693. "CommunityTemplate":"Community Template",
  694. "MyTemplate":"My Template",
  695. "Creator":"Owner",
  696. "deletethistemplate":"Are you sure to delete this template?",
  697. "ssUploadCont":"Upload course content",
  698. "ssUploadOk":"Upload completed",
  699. "ssEnterName":"Enter course name",
  700. "ssPublish":"Publish",
  701. "ssIntell":"Enable smart search",
  702. "ssGenMode":"Generation Mode:",
  703. "ssFromZero":"Generate from scratch",
  704. "ssFromExist":"Generate from existing lesson plan",
  705. "ssDialogGen":"Dialog mode generation",
  706. "ssBrainGen":"Brainstorm mode generation",
  707. "ssGenStyle":"Generation Style:",
  708. "ssPrecise":"Precise",
  709. "ssCreative":"Creative",
  710. "ssAdd":"Add",
  711. "ssExistPlan":"Existing Lesson Plan",
  712. "ssUploadPlan":"Upload Existing Lesson Plan",
  713. "ssOneKeyGenLessonPlan":"One-Click Smart Summary Generation",
  714. "ssNoContentL":"This section is empty, add content to fill it",
  715. "ssPlanSummary":"Lesson Plan Summary",
  716. "ssRightClick":"Right-click to configure prompts",
  717. "ssExtract":"Extract Summary",
  718. "ssEnterSum":"Please enter lesson plan summary",
  719. "ssOptTip":"*You can add optimization suggestions after the task description, click \"Smart Optimization\" to automatically modify",
  720. "ssIntOpt":"Smart Optimization",
  721. "ssQuote":"Quote",
  722. "ssCourseObj":"Course Objectives",
  723. "ssExtractObj":"Extract Objectives",
  724. "ssEnterObj":"Please enter course objectives",
  725. "ssSysRef":"System Recommended References",
  726. "ssIntSearch":"Smart Search Materials",
  727. "ssRefStd":"Reference Standards",
  728. "ssUploadStd":"Upload Reference Standards",
  729. "ssSearchMat":"Search Materials",
  730. "ssSearchItem":"Search Item:",
  731. "ssSelectGrade":"Please select grade",
  732. "ssSelectSubj":"Please select subject",
  733. "ssSearchKey":"Search Keywords:",
  734. "ssEnterKey":"Please enter search keywords",
  735. "ssClickSearch":"Click to Search Materials",
  736. "ssFilterItem":"Filter Item:",
  737. "ssSelectVol":"Please select volume",
  738. "ssSelectUnit":"Please select unit",
  739. "ssUnit":"Unit *",
  740. "ssNextPage":"Next",
  741. "ssNoSearch":"No content yet, please search",
  742. "ssSelected":"Selected",
  743. "ssFileName":"File Name",
  744. "ssFileType":"File Type",
  745. "ssUploadKB":"Upload Knowledge Base",
  746. "ssNone":"None",
  747. "ssKnowBase":"Knowledge Base",
  748. "ssUploadSup":"Upload Supplementary Materials",
  749. "ssCourseOver":"Course Overview",
  750. "ssConfigWF":"Configure Workflow",
  751. "ssWorkflowTip":"You can create a workflow in the Creator Center, then copy and paste the workflow link",
  752. "ssEnterAid":"Please enter agentid",
  753. "ssAgendaQ":"Agenda and Question Guidance",
  754. "ssViewProg":"View Progress",
  755. "ssSumCourse":"Summarize and Generate Course Overview",
  756. "ssAIOpt":"AI Optimization",
  757. "ssGenOver":"Generate Overview and Objectives",
  758. "ssRegenOverAndTarget":"Regenerate Overview and Objectives",
  759. "ssRestore":"Restore",
  760. "ssStageDeletedRestore":"The stage you modified has been deleted by another teacher. Do you need to restore it?",
  761. "ssNeed":"Need",
  762. "ssGenObj":"Generate Objectives",
  763. "ssGenObj2":"Generate Objectives 2",
  764. "ssSupMat":"Supplementary Materials",
  765. "ssSupDesc":"Supplementary Description",
  766. "ssEnterSupDesc":"Please enter course supplementary description: e.g., expected course duration, number of tasks, task difficulty, task types, etc.",
  767. "ssCourseOut":"Course Outline",
  768. "ssGenOut":"Generate Outline",
  769. "ssRegenOut":"Regenerate Outline",
  770. "ssTask":"Task",
  771. "ssGenTask":"Generate Task",
  772. "ssRegenTask":"Regenerate Task",
  773. "ssAddTaskUp":"Add Task Above",
  774. "ssAddTaskDown":"Add Task Below",
  775. "ssCpoteGrp":"Concept Group",
  776. "ssGenCpote":"Generate Concept Group",
  777. "ssRegenCpote":"Regenerate Concept Group",
  778. "ssEnterCpote":"Please enter concept group",
  779. "ssQChain":"Question Chain",
  780. "ssGenQChain":"Generate Question Chain",
  781. "ssRegenQChain":"Regenerate Question Chain",
  782. "ssEnterQChain":"Please enter question chain",
  783. "ssTargetLay":"Target Layer",
  784. "ssGenTargetLay":"Generate Target Layer",
  785. "ssRegenTargetLay":"Regenerate Target Layer",
  786. "ssEnterTargetLay":"Please enter target layer",
  787. "ssTaskClus":"Task Cluster",
  788. "ssGenTaskClus":"Generate Task Cluster",
  789. "ssRegenTaskClus":"Regenerate Task Cluster",
  790. "ssEnterTaskClus":"Please enter task cluster",
  791. "ssLessonPlan":"Lesson Plan",
  792. "ssEduCase":"Educational Case",
  793. "ssRubric":"Rubric",
  794. "ssChatRecord":"Chat Record",
  795. "ssFirstVol":"Volume 1",
  796. "ssSecondVol":"Volume 2",
  797. "ssHomeworkOnly":"Homework",
  798. "ssSystemPic":"System Image.png",
  799. "ssNetworkPic":"Network Image.png",
  800. "ssUploadDocPptFiles":"Please upload .doc, .docx, .ppt, .pptx, .md, .txt, .pdf files!",
  801. "ssGenLessonPlan":"Generate Lesson Plan",
  802. "ssRegenLessonPlan":"Regenerate Lesson Plan",
  803. "ssEnterLessonPlan":"Please enter lesson plan",
  804. "ssRegenOver":"Regenerate Overview",
  805. "ssGenOverOnly":"Generate Overview",
  806. "ssExportPlan":"Export Lesson Plan",
  807. "ssAttachArea":"Attachment Area",
  808. "ssOneKeyGen":"One-Click Generate",
  809. "ssRegenAllTask":"Regenerate All Tasks",
  810. "ssGenAllTool":"Generate All Tools",
  811. "ssRegenAllTool":"Regenerate All Tools",
  812. "ssGenAllEva":"Generate All Evaluations",
  813. "ssRegenAllEva":"Regenerate All Evaluations",
  814. "ssGenTool":"Generate Tool",
  815. "ssRegenTool":"Regenerate Tool",
  816. "ssGenToolEva":"Generate Tool Evaluation",
  817. "ssRegenToolEva":"Regenerate Tool Evaluation",
  818. "ssAttachment":"Attachment",
  819. "ssBatchDown":"Batch Download",
  820. "ssModifyTemp":"Modify Template",
  821. "ssSaveTemp":"Save Template",
  822. "ssFoldRule":"Collapse Rules",
  823. "ssExpandRule":"Expand Rules",
  824. "ssFillAbility":"Fill Ability",
  825. "ssFillEvaStd":"Fill Evaluation Standard",
  826. "ssGenRule":"Generate Rules",
  827. "ssRegenRule":"Regenerate",
  828. "ssAIGenPPT":"AI Generate PPT",
  829. "ssAIGenPlan":"AI Generate Lesson Plan",
  830. "ssStopGenPlanL":"Stop Generating Lesson Plan",
  831. "ssIntSearchV":"Intelligent Video Search",
  832. "ssCodeUpload":"Code Upload",
  833. "ssAiApp":"AI Application",
  834. "ssTaskEvaSys":"Task Evaluation System",
  835. "ssOneKeyEvaRule":"One-Click Generate Evaluation Rules",
  836. "ssGenEva":"Generate Evaluation",
  837. "ssRegenEva":"Regenerate Evaluation",
  838. "ssTargetColon":"Target:",
  839. "ssAbilityColon":"Ability:",
  840. "ssEvaStdColon":"Evaluation Standard:",
  841. "ssEvaRuleColon":"Evaluation Rules:",
  842. "ssAIScore":"AI Scoring",
  843. "ssEnterEvaRule":"Please enter evaluation rules",
  844. "ssGroup":"Group *",
  845. "ssMindMap":"Mind Map",
  846. "ssGroupName":"Group * Name:",
  847. "ssTable":"Table",
  848. "ssStuGroup":"Student Grouping",
  849. "ssQuest":"Survey",
  850. "ssQA":"Q&A",
  851. "ssHomework":"Assignment Submission",
  852. "ssBatchUp":"Batch Upload",
  853. "ssSelMatch":"Matching question",
  854. "ssSort":"Ordering question",
  855. "ssTrainPlat":"Training Platform",
  856. "ssCodeEdit":"Code Editor",
  857. "ssTurtle":"Turtle Programming",
  858. "ssPersonalL":"Personal Evaluation",
  859. "ssTranslate":"Translation",
  860. "ssDigital":"Digital Drawing Board",
  861. "ssFormula":"Formula Editor",
  862. "ssEngWrite":"English Writing",
  863. "ssEngSpeak":"English Speaking",
  864. "ssTreeView":"Tree View",
  865. "ssCompass":"Compass View",
  866. "ssFoldGoal":"Fold Goals",
  867. "ssExpandGoal":"Expand Goals",
  868. "ssExpandTask":"Expand task",
  869. "ssFoldTask":"Collapse Task",
  870. "ssAddTask":"Add Task",
  871. "ssFold":"fold",
  872. "ssExpand":"expand",
  873. "ssTaskColon":"Task:",
  874. "ssAll":"All",
  875. "ssTaskNum":"Task *",
  876. "ssFileTypeC":"File Type:",
  877. "ssLink":"Link",
  878. "ssBackCourse":"Back to Course",
  879. "ssLastStep":"Back",
  880. "ssConfirmUp":"Confirm & Upload",
  881. "ssSuccess":"Success",
  882. "ssBasicData":"Basic Information",
  883. "ssCourseOpt":"Course Description Optimization",
  884. "ssTargetGet":"Target File Search",
  885. "ssGenOutBtn":"Generate Outline Button",
  886. "ssOutTaskGen":"Outline Task Generation",
  887. "ssOutDescGen":"Outline Description Generation (Regenerate Task)",
  888. "ssOutDescOpt":"Outline Description Optimization",
  889. "ssPlanDescOpt":"Lesson Plan Description Optimization",
  890. "ssGenTaskBtn":"Generate Task Button",
  891. "ssTaskDetail":"Task Details",
  892. "ssTaskDesc":"Task Description",
  893. "ssToolList":"Tool List",
  894. "ssEvaExtract":"Evaluation Extraction",
  895. "ssToolOpt":"Tool Description Optimization",
  896. "ssTaskEvaOpt":"Task Evaluation Optimization",
  897. "ssTaskDescOpt":"Task Description Optimization",
  898. "ssTip":"Notice",
  899. "ssCopyLink":"Please copy the link to invite collaborative editing",
  900. "ssCopyShare":"Copy link and share",
  901. "ssCancel":"Cancel",
  902. "ssAddDoc":"Add File",
  903. "ssDocTitle":"document title",
  904. "ssEnterDocT":"Please enter the title of the document ..",
  905. "ssDocIntro":"Document Introduction",
  906. "ssEdit":"Edit",
  907. "ssDocContent":"document content",
  908. "ssConfirm":"Confirm",
  909. "ssAddText":"Add text",
  910. "ssTextTitle":"Text Title",
  911. "ssEnterTextT":"Enter Text Title...",
  912. "ssAddLink":"Add a Link",
  913. "ssTitle":"Title",
  914. "ssEnterLinkT":"Enter a title for this link...",
  915. "ssEnterLink":"Enter URL...",
  916. "ssModifyRes":"Modify resources",
  917. "ssAddRes":"Add resources",
  918. "ssAddCourseM":"Add course members",
  919. "ssSelectMem":"Select Members",
  920. "ssSearchMem":"Search for member names",
  921. "ssNoStuAvail":"No students available at the moment",
  922. "ssSelectTeac":"Select Teaching Classes",
  923. "ssSelectClass":"Select Class",
  924. "ssNoData":"No data",
  925. "ssAddMember":"Add collaborative members",
  926. "ssOther":"other",
  927. "ssNoName":"No Name",
  928. "ssCreateQues":"Create Questionnaire",
  929. "ssEnterTitle":"Please enter title",
  930. "ssSingleCh":"Single Choice",
  931. "ssMultipleCh":"Multiple Choice",
  932. "ssEnterQues":"Enter question",
  933. "ssDelete":"Delete",
  934. "ssEnterOpt":"Enter option",
  935. "ssCreateChoice":"Create Questionnaire",
  936. "ssUploadWait":"Uploading,please wait",
  937. "ssIntGen":"Intelligent Generation",
  938. "ssSmartPaste":"SMART Paste",
  939. "ssAddTool":"Add Tool",
  940. "ssToolC":"Tool",
  941. "ssInteract":"Interactive",
  942. "ssCognitive":"Cognitive",
  943. "ssEval":"Evaluation",
  944. "ssMaterial":"Material Library",
  945. "ssEWhite":"E-Whiteboard",
  946. "ssNote":"note",
  947. "ssCollDoc":"Collaborative document",
  948. "ssMathBoard":"Mathematical drawing board",
  949. "ssGaugeRate":"Gauge rating",
  950. "ssToolDesc":"Add Tool Description",
  951. "ssAddQA":"Add Q&A",
  952. "ssQuestionT":"Question:",
  953. "ssEnterQues2":"Please enter your question",
  954. "ssAddQues":"Add questions",
  955. "ssEnterWant":"Please enter the question you want to answer",
  956. "ssUploadPic":"Upload Image",
  957. "ssSelectLocal":"Select local file",
  958. "ssSelectSys":"Select system files",
  959. "ssPainting":"painting",
  960. "ssScience":"science and technology",
  961. "ssHumanity":"humanity",
  962. "ssSearchImg":"Enter keywords to search images",
  963. "ssChangeGrp":"Refresh Results",
  964. "ssEnterKeyImg":"Please enter keywords to search for images",
  965. "ssUploadQuesImg":"Upload Question Image",
  966. "ssTipUpload":"Tip: Upload all questions as a single image.",
  967. "ssAddOpt":"Add Options",
  968. "ssTipEnterOpt":"Tip: Please enter option content for the above questions; options will be shared for all questions.",
  969. "ssSetCorrect":"Select Correct Option",
  970. "ssSelectAns":"Match Answers to Questions",
  971. "ssAddEva":"Add Assessment",
  972. "ssEnterEva":"Enter Self-Assessment Criteria:",
  973. "ssEvaCriteria":"Self-Assessment criteria:",
  974. "ssFillEvaDim":"Enter Dimension",
  975. "ssRatingLevel":"Rating level:",
  976. "ssDesc":"Description:",
  977. "ssFillDimDesc":"Enter Description",
  978. "ssSortSet":"Settings",
  979. "ssAddQues2":"Add Question",
  980. "ssQuesSet":"Question Setup",
  981. "ssEnterCard":"Enter card content",
  982. "ssCorrectOrder":"correct order",
  983. "ssAddTable":"Add Table",
  984. "ssTableContent":"Table Content",
  985. "ssUploadTemp":"Upload Template",
  986. "ssAddClass":"Add Class",
  987. "ssClassColon":"Class:",
  988. "ssSelect":"Please select",
  989. "ssSetRandom":"Set random code",
  990. "ssRandomColon":"Random code:",
  991. "ssEnterRandom":"Please enter the random code",
  992. "ssAddPreTime":"Add Default Time",
  993. "ssTipClick":"Tip: Click \"+\" or \"-\" to change the countdown time.",
  994. "ssImportTarget":"Import target",
  995. "ssAddTarget":"Add Objective",
  996. "ssTargetName":"Objective",
  997. "ssOwner":"Owner",
  998. "ssImport":"Import",
  999. "ssImportOk":"Import successful",
  1000. "ssClearAgain":"Content has been cleared, please do not clear again",
  1001. "ssGroupSet":"Group settings",
  1002. "ssSetGroupNum":"Group Names",
  1003. "ssEnterName2":"Please enter a name ..",
  1004. "ssSetGroupPer":"Group size",
  1005. "ssEnterNum":"Enter Integer(2-10)",
  1006. "ssModifyName":"Edit Name",
  1007. "ssFileNameColon":"File name:",
  1008. "ssEnterModify":"Please enter the name to be modified",
  1009. "ssCreateEssay":"Create Essay Topic",
  1010. "ssSelectTemp":"Select the Course Template",
  1011. "ssSimpleTemp":"Simple Template",
  1012. "ssChangeStage":"Switching Stage Sequence",
  1013. "ssAddResTemp":"Add Resource Template",
  1014. "ssTempName":"Template name:",
  1015. "ssSelectOne":"Select first-level category:",
  1016. "ssSelectTwo":"Select second-level category:",
  1017. "ssConfirm2":"Confirm",
  1018. "ssClose":"Close",
  1019. "ssStudyPlan":"Learning Plan",
  1020. "ssEvalSuffix":"'Evaluation",
  1021. "ssAddToolFull":"Please add the tools in their entirety",
  1022. "ssNetPoor":"Poor internet connection",
  1023. "ssSaveEdit":"Do you want to save the edited content?",
  1024. "ssSave":"Save",
  1025. "ssNotSave":"Don't save",
  1026. "ssFillComplete":"Please fill in all the content!",
  1027. "ssWaitTaskSave":"Please wait for task * to finish answering before saving",
  1028. "ssWaitTaskCont":"Please wait for task * to finish answering before continuing",
  1029. "ssFillCourseName":"Please enter a course name to continue.",
  1030. "ssFillCourseName2":"Please enter course name",
  1031. "ssClickConfirmUpload":"Click confirm upload button",
  1032. "ssGenOutTaskDesc":"Outline task * description is not yet complete, please check and try again after answering.",
  1033. "ssCpoteNotGen":"Conceptual group is not yet complete, please check and try again after answering.",
  1034. "ssQChainNotGen":"Question chain is not yet complete, please check and try again after answering.",
  1035. "ssCourseSettings":"Course Settings",
  1036. "ssApply":"Apply",
  1037. "ssPublishCourse":"Publish Course",
  1038. "ssVisibilityRange":"Visibility Range",
  1039. "ssOnlyStudentsVisible":"Only students visible",
  1040. "ssOnlyStudentsDesc":"Only visible to students in the published class, others cannot access",
  1041. "ssOrganizationVisible":"Organization visible",
  1042. "ssOrganizationDesc":"All teachers in the school can view",
  1043. "ssCourseCover":"Course Cover",
  1044. "ssHoverToSelectUpload":"Hover to select upload method",
  1045. "ssUploadFromLocal":"Upload from local",
  1046. "ssSearchFromWeb":"Search from web",
  1047. "ssGenerateFromAI":"Generate from AI",
  1048. "ssWebSearchImage":"Web Search Image",
  1049. "ssSearchKeyword":"Search Keyword",
  1050. "ssConfirmPublish":"Confirm Publish",
  1051. "ssTargetNotGen":"Target layer is not yet complete, please check and try again after answering.",
  1052. "ssTaskClusNotGen":"Task cluster is not yet complete, please check and try again after answering.",
  1053. "ssGenDescFirst":"Please generate a brief description before generating the outline",
  1054. "ssPerfectOut":"Please complete the course outline for task *",
  1055. "ssPerfectPlan":"Please complete the lesson plan for task *",
  1056. "ssPlanNotGen":"There are still lesson plan descriptions that have not been completed. Do you want to proceed to the next step?",
  1057. "ssWaitTaskUp":"Please wait for task * to finish answering before uploading",
  1058. "ssSwitchTask":"Are you sure to switch to task mode?",
  1059. "ssDeleteStage":"Are you sure to delete this stage?",
  1060. "ssDeleteTool":"Are you sure to delete this tool?",
  1061. "ssDeleteSucc":"Delete successful",
  1062. "ssDeleteQues":"Are you sure to delete this question?",
  1063. "ssDeleteQuesImg":"Are you sure to delete the image for this question?",
  1064. "ssDeleteTask":"Are you sure to delete this task?",
  1065. "ssSwitchTaskDel":"Switching task order will delete all tool submissions. Do you want to continue?",
  1066. "ssInDev":"The function is under development",
  1067. "ssPasteSucc":"Paste successful",
  1068. "ssEmbedCode":"Embed code",
  1069. "ssNoPasteObj":"The system did not find the pasted object. Please first copy the link that can be used for pasting.",
  1070. "ssUploadFail":"Upload failed",
  1071. "ssSaveAttach":"Successfully saved to attachments",
  1072. "ssSelectResUp":"Please select the resources to upload",
  1073. "ssCoverOneUp":"The course cover only supports uploading one page. Please delete it before uploading again",
  1074. "ssFileOver80MB":"The uploaded file is larger than 80 MB, please select a new file!",
  1075. "ssAddFileOver80":"The uploaded file exceeds 80MB, please reselect the file!",
  1076. "ssFileIdError":"This file contains special characters that cannot be converted to fileid, please upload again",
  1077. "ssOutGenWait":"The outline is being generated. Please wait until it is complete before using this function",
  1078. "ssGradeColon":"Grade: ",
  1079. "ssSubjColon":"Subject: ",
  1080. "ssThemeColon":"Theme: ",
  1081. "ssClickClass":"Click to select category-",
  1082. "ssDeleteItem":"Are you sure you want to delete this item?",
  1083. "ssCantDown":"Cannot download pictures yet",
  1084. "ssDelSelFile":"Are you sure to delete the selected files?",
  1085. "ssSelAttach":"Please select the attachments to download first",
  1086. "ssAttachZip":"Attachments.zip",
  1087. "ssSwitchMove":"Switching tool order will move the submission results of this tool together. Do you want to continue?",
  1088. "ssAddSucc":"Successfully added",
  1089. "ssAddOk":"Successfully added",
  1090. "ssPlsAddCM":"Please add course members",
  1091. "ssUseAI":"Please use AI to co create and generate",
  1092. "ssConfirmTemp":"Confirm template selection? All content will be deleted.",
  1093. "ssChooseEmpty":"Are you sure to choose an empty template? The course template cannot be reset when modifying the course.",
  1094. "ssChooseSimple":"Are you sure to choose a simple template? The course template cannot be reset when modifying the course.",
  1095. "ssChooseFuture":"Are you sure about choosing the future elementary school curriculum design?",
  1096. "ssLinkTitle":"Please enter link title",
  1097. "ssIrrevers":"This operation is irreversible. Do you want to continue?",
  1098. "ssTitleEmpty":"The title cannot be empty!",
  1099. "ssFillTitle":"Please fill in the title * completely.",
  1100. "ssOneQues":"At least one question is required",
  1101. "ssOptEmpty":"Question * option cannot be empty!",
  1102. "ssOptDup":"Option & and option $ in question * are duplicated, please modify!",
  1103. "ssEachQues":"Each question requires at least 2 options to be set.",
  1104. "ssCorrectOpt":"Please complete the correct options for question *",
  1105. "ssUseAIQues":"Please use AI to co create and generate questions",
  1106. "ssSmartPasteTemp":"Are you sure to choose the smart paste template? The course template cannot be reset when modifying the course.",
  1107. "ssStageSeqDel":"Switching the stage sequence will delete all submitted results of the tools. Do you want to continue with this operation?",
  1108. "ssEnterQuesL":"Please enter the question you want to ask",
  1109. "ssFillEvaInfo":"Please complete all assessment fields",
  1110. "ssUploadQues":"Please upload questions",
  1111. "ssSetAns":"Please set correct answers",
  1112. "ssOptDup2":"Option * and option $ are duplicated, please modify!",
  1113. "ssOptEmpty2":"Added options cannot be empty",
  1114. "ssNewCourse":"This is a newly added course",
  1115. "ssZhijian":"Zhijian Course",
  1116. "ssZhixing":"Zhixing Course",
  1117. "ssIntelli":"Intelligent Creation Course",
  1118. "ssColumn":"Column",
  1119. "ssDelTarget":"Are you sure to delete this target?",
  1120. "ssSelSecAdd":"Please select a secondary category, or add one if none exists!",
  1121. "ssFillCard":"Please fill in the card content!",
  1122. "ssCardOver10":"Card content cannot exceed 10 characters",
  1123. "ssNoDupCard":"Cannot add duplicate card content!",
  1124. "ssSetComplete":"Please complete question * settings.",
  1125. "ssUploadSucc":"Upload successful",
  1126. "ssInputNum1":"Please enter a number greater than 1",
  1127. "ssEnterPositiveNum":"Please enter a number greater than 0",
  1128. "ssFillInfo":"Please fill in all information!",
  1129. "ssInputCode":"Please enter at least 4 digits or English combination random code",
  1130. "ssCodeDup":"This random code already exists and cannot be duplicated",
  1131. "ssCourseColon":"Course Name: ",
  1132. "ssNetImgPng":"Network Image.png",
  1133. "ssTaskMoveAll":"Switching task order will move all tool submissions together. Do you want to continue?",
  1134. "ssStageMove":"Switching stage order will move all task submissions together. Do you want to continue?",
  1135. "ssMoveFail":"Failed to move work, network error",
  1136. "ssLevel1":"Primary Classification",
  1137. "ssLevel2":"Secondary Classification",
  1138. "ssGenAllEvaSet":"Do you want to generate evaluation settings for all tools at once? This will take some time.",
  1139. "ssExecSucc":"Execution successful",
  1140. "ssPlsUpPlan":"Please upload lesson plan",
  1141. "ssCourseBasic":"Course Basic Information",
  1142. "ssDesigner":"Designer: ",
  1143. "ssCoursePlan":"Course Lesson Plan",
  1144. "ssTaskToolEva":"Task * Tool $ Evaluation.docx",
  1145. "ssEvaTable":"| Literacy | Evaluation Standard | Evaluation Rules |",
  1146. "ssEvaDegreeZip":"Evaluation and Academic Record.zip",
  1147. "ssRecordFail":"Failed to get recording permission",
  1148. "ssPlsWorkflow":"Please enter workflow link",
  1149. "ssRegenAffect":"Regenerating will affect the generated content. Are you sure you want to regenerate?",
  1150. "ssPlsAnswer":"Please send again after answering",
  1151. "ssFileLimit30":"Currently, search files cannot exceed 30. Please reduce some.",
  1152. "ssNoPermTip":"You do not have permission to modify/view prompts",
  1153. "ssEnterTask":"Please enter task name",
  1154. "ssTaskNameC":"Task Name:",
  1155. "ssPlanColon":"Lesson Plan:",
  1156. "ssGenWaitNow":"Generating...",
  1157. "ssGenTaskPlan":"Please generate task * lesson plan first before performing this operation",
  1158. "ssPlanTaskNotGen":"Lesson plan task * description is not yet complete. Please check and try again after answering.",
  1159. "ssNotGenRegen":"Not yet complete. Do you want to regenerate directly?",
  1160. "ssConfirmRegen":"Confirm Regenerate",
  1161. "ssGenDescTarget":"Please generate a brief description before generating the target",
  1162. "ssGenAllDim":"Generate rules for all dimensions? Generate this task only / Generate all",
  1163. "ssGenAll":"Generate All",
  1164. "ssGenThisTask":"Generate This Task Only",
  1165. "ssSendSucc":"Send Successful",
  1166. "ssTooManyReq":"Oops, too many requests. The server is busy. Please wait and try again.",
  1167. "ssZero":"Zero",
  1168. "ssOne":"One",
  1169. "ssTwo":"Two",
  1170. "ssThree":"Three",
  1171. "ssFour":"Four",
  1172. "ssFive":"Five",
  1173. "ssSix":"Six",
  1174. "ssSeven":"Seven",
  1175. "ssEight":"Eight",
  1176. "ssNine":"Nine",
  1177. "ssTen":"Ten",
  1178. "ssHundred":"Hundred",
  1179. "ssThousand":"Thousand",
  1180. "ssTenThousand":"Ten Thousand",
  1181. "ssHundredMillion":"Hundred Million",
  1182. "ssJsonFormat":"Returned JSON format is incorrect",
  1183. "ssStopOutline":"Successfully stopped generating course outline",
  1184. "ssStopFileGen":"Successfully stopped intelligent search data generation",
  1185. "ssStopAIOpt":"Successfully stopped AI optimization",
  1186. "ssStopGenTarget":"Successfully stopped generating target",
  1187. "ssStopExtract":"Successfully stopped extracting summary",
  1188. "ssStopGenPlan":"Successfully stopped generating lesson plan",
  1189. "ssStopGenOut":"Successfully stopped generating outline",
  1190. "ssStopTaskOver":"Successfully stopped generating task overview",
  1191. "ssStopTaskTool":"Successfully stopped generating task tools",
  1192. "ssStopSearch":"Successfully stopped searching data",
  1193. "ssColon":": ",
  1194. "ssDocument":"Document",
  1195. "ssNetWave":"Oops, network fluctuation... Regenerating for you...",
  1196. "ssTopic":"Topic",
  1197. "ssOption":"Option",
  1198. "ssEnterOption":"Please enter option",
  1199. "ssAddEvaOpt":"Please add evaluation before optimization",
  1200. "ssPlanGenFail":"Lesson plan generation failed for this task. Do you want to regenerate? Cancel to automatically generate the next task!",
  1201. "ssEvaCompleteInfo":"Please complete the information for evaluation $ of task * before generating rules",
  1202. "ssNoStarLevel":"No star rating found.",
  1203. "ssStar0":"0 Star",
  1204. "ssStar1":"1 Star",
  1205. "ssStar2":"2 Star",
  1206. "ssStar3":"3 Star",
  1207. "ssStar4":"4 Star",
  1208. "ssStar5":"5 Star",
  1209. "ssNoMatch":"No matching content found.",
  1210. "ssEvaRuleSucc":"Rules for evaluation $ of task * generated successfully",
  1211. "ssFormatErr":"Data format error returned, Xiaoke is retrieving for you again...",
  1212. "ssRefMat":"Reference Material",
  1213. "ssSelectMat":"Please select the search materials to use",
  1214. "ssGetAllData":"All data has been retrieved",
  1215. "ssSearchWait":"Searching, please wait",
  1216. "ssNoSearchRes":"No content found",
  1217. "ssQueryFail":"Query failed",
  1218. "ssOnlyZip":"Only ZIP files are supported for upload",
  1219. "ssZipFail":"Failed to parse the ZIP file",
  1220. "ssNoPageSel":"No main page selected",
  1221. "ssEnterContentL":"Please enter content",
  1222. "ssClickInsert":"Please click the button to insert a table",
  1223. "ssTimeUp":"Time's up!!!",
  1224. "ssCategoryFilter":"Category Filter",
  1225. "ssToolName":"Tool Name",
  1226. "ssEnterToolName":"Please enter tool name",
  1227. "ssUrlSource":"URL Source",
  1228. "ssEnterUrlSource":"Please enter URL source",
  1229. "ssToolDescName":"Tool Description",
  1230. "ssEnterToolDesc":"Please enter tool description",
  1231. "ssLabel":"Label",
  1232. "ssSelectLabel":"Please select label",
  1233. "ssNoLogin":"No Login Required",
  1234. "ssScanLogin":"Scan to Login",
  1235. "ssRegLogin":"Register to Login",
  1236. "ssFree":"Free",
  1237. "ssPaid":"Paid",
  1238. "ssChinese":"Chinese",
  1239. "ssScene":"Scene",
  1240. "ssFillToolName":"Please fill in tool name",
  1241. "ssFillUrlSource":"Please fill in URL source",
  1242. "ssFillToolDesc":"Please fill in tool description",
  1243. "ssView":"View",
  1244. "ssType":"Type",
  1245. "ssVideoSet":"Interactive Video Settings",
  1246. "ssAddVideo":"Add Video",
  1247. "ssReset":"Reset",
  1248. "ssUploadVideo":"Please upload video",
  1249. "ssVideoName":"Video Name",
  1250. "ssInterSet":"Interaction Settings",
  1251. "ssAddHiding":"Add hiding",
  1252. "ssTriggerTime":"Trigger Time:",
  1253. "ssVideoSec":"Which second of video",
  1254. "ssToolSet":"Tool Settings:",
  1255. "ssIsSet":"Set",
  1256. "ssInsertTool":"Insert Tool",
  1257. "ssVideoPlayFail":"This video cannot be played, please try again later",
  1258. "ssEnterVideoName":"Please enter video name",
  1259. "ssAddOneInteract":"Please add at least one interaction",
  1260. "ssSameTriggerTime":"Cannot set the same trigger time",
  1261. "ssSetToolInteract":"Please set tool for interaction",
  1262. "ssTimeExceedDur":"Set time cannot exceed video duration",
  1263. "ssConfirmDelete":"Are you sure to delete?",
  1264. "ssConfirmReset":"Are you sure to reset?",
  1265. "ssEssayTitle":"Essay Title",
  1266. "ssFillEssayTitle":"Please fill in essay title",
  1267. "ssEssayRequire":"Essay Requirements",
  1268. "ssFillEssayReq":"Please fill in essay requirements",
  1269. "ssPreset":"Preset",
  1270. "ssSetEvalTemp":"Click to set the following content as evaluation template",
  1271. "ssSetName":"Set Name",
  1272. "ssEnterNameOnly":"Please enter name",
  1273. "ssSetNamePls":"Please set name!",
  1274. "ssAddOneEval":"Please add at least one evaluation!",
  1275. "ssDeleteSuccess":"Delete successful",
  1276. "ssConfirmDelTemp":"Are you sure to delete this template?",
  1277. "ssEvalResource":"Evaluation Resource",
  1278. "ssPublicResource":"Public Resource",
  1279. "ssPersonalResource":"Personal Resource",
  1280. "ssOrgResource":"Organization Resource",
  1281. "ssSearchResource":"Search Resource",
  1282. "ssSecondLevel":"Second Level",
  1283. "ssRename":"Rename",
  1284. "ssSetCategory":"Set Category",
  1285. "ssShare":"Share",
  1286. "ssNoContent":"No Content",
  1287. "ssEvalDimension":"Evaluation Dimension:",
  1288. "ssDimensionDesc":"Dimension Description:",
  1289. "ssUse":"Use",
  1290. "ssTemplateName":"Template Name:",
  1291. "ssAddCategory":"Add Category",
  1292. "ssSelectFirst":"Select First Level:",
  1293. "ssCategoryName":"Category Name:",
  1294. "ssSelectSecond":"Select Second Level:",
  1295. "ssSelectSecondPls":"Please select second level, if there is no second level please go to add!",
  1296. "ssSetSuccess":"Set Success",
  1297. "ssShareSuccess":"Share Success",
  1298. "ssSelectShare":"Please select which resource to share to!",
  1299. "ssConfirmDelTemp2":"Are you sure to delete this template?",
  1300. "ssChooseEvalTemp":"Please select evaluation template!",
  1301. "ssUseEvalTemp":"Do you want to use this evaluation template? It will overwrite the existing evaluation!",
  1302. "ssFirstLevel":"First Level",
  1303. "ssResource":"Resource",
  1304. "ssSetEnglishOralInfo":"Set English Oral Information",
  1305. "ssDescription":"Description",
  1306. "ssEnterDesc":"Please enter description of the question",
  1307. "ssSetEnglishOralQ":"Set English Oral Questions",
  1308. "ssQuestionTypeSel":"Question Type Selection",
  1309. "ssEvalQuestion":"Evaluation Questions",
  1310. "ssEvalOutline":"Evaluation Outline",
  1311. "ssSaveEditContent":"Do you want to save the edited content?",
  1312. "ssAddOneOralQ":"Please add at least one oral question",
  1313. "ssEnterContentQ":"Question *: Please enter content",
  1314. "ssEnterQuestionQ":"Question *: Please enter question",
  1315. "ssEnterPointQ":"Question *: Please enter key points",
  1316. "ssEnterRoleNameQ":"Question *: Please enter role name",
  1317. "ssEnterRoleDefQ":"Question *: Please enter role definition",
  1318. "ssEnterRoleGreetQ":"Question *: Please enter role greeting",
  1319. "ssSelectOptTask":"Select tasks to optimize:",
  1320. "ssSelectAll":"Select All",
  1321. "ssSelectOptPart":"Select parts to optimize:",
  1322. "ssSelectOptContent":"Select optimization content",
  1323. "ssEnterWantKnow":"Enter what you want to know here",
  1324. "ssSend":"Send",
  1325. "ssEnterWantKnowPls":"Please enter what you want to know",
  1326. "ssAnswerFinishSend":"Please send again after answering",
  1327. "ssAllContent":"All Content",
  1328. "ssTaskDesign":"Task Design",
  1329. "ssEvalDesign":"Evaluation Design",
  1330. "ssModifyContent":"Modify Content",
  1331. "ssRequire":"Requirement",
  1332. "ssSendSuccess":"Send Success",
  1333. "ssWaitPls":"Please wait...",
  1334. "ssGetChatFail":"Failed to get chat records",
  1335. "ssClickSaveDocx":"Click to save this content as a docx file to the appendix",
  1336. "ssMore":"More",
  1337. "ssClearScreen":"Clear Screen",
  1338. "ssContinuous":"Continuous Dialog",
  1339. "ssAuthor":"Author:",
  1340. "ssClickStartRec":"Click button to start recording",
  1341. "ssTerminate":"Terminate",
  1342. "ssHasPlanSum":"Existing Lesson Plan Summary",
  1343. "ssCourseTarget":"Course Objectives",
  1344. "ssCourseBrief":"Course Brief Description",
  1345. "ssTaskOutline":"Task * Course Outline",
  1346. "ssConceptGroup":"Concept Group",
  1347. "ssProblemChain":"Problem Chain",
  1348. "ssTargetLayer":"Target Layer",
  1349. "ssTaskCluster":"Task Cluster",
  1350. "ssTaskPlan":"Task * Lesson Plan",
  1351. "ssTaskDescL":"Task * Task Description",
  1352. "ssTaskToolDesc":"Task * Tool $ Description",
  1353. "ssEnterContent":"Please enter content",
  1354. "ssWaitAnswerSend":"Please wait for the answer to finish before sending",
  1355. "ssClearChatConfirm":"Are you sure to clear chat records?",
  1356. "ssClearChatSuccess":"Clear chat records successful",
  1357. "ssClearChatFail":"Clear chat records failed",
  1358. "ssCopySuccess":"Copy successful",
  1359. "ssStartRecPls":"Please start recording first",
  1360. "ssHelloAssistant":"Hello, I am your course creation assistant Xiaoke. If you encounter any problems during course creation, you can chat with me~, I will try my best to help you",
  1361. "ssSaveFail":"Save failed",
  1362. "ssFormatErrJson":"Returned JSON format is incorrect",
  1363. "ssAddTopic":"Add Topic",
  1364. "ssAdopt":"Adopt",
  1365. "ssSummaryDiscuss":"Summarize Discussion",
  1366. "ssSummaryCourse":"Summarize and Generate Course Overview",
  1367. "ssRecordAudioSend":"Please record audio before sending",
  1368. "ssQuoteContent":"Quote Content",
  1369. "ssCourseBriefHas":"Course brief description already has content, overwrite?",
  1370. "ssAdoptSuccess":"Adopt successful",
  1371. "ssAudio":"Audio:",
  1372. "ssAudioNum":"Audio *",
  1373. "ssLanguage":"Language:",
  1374. "ssRecording":"Recording...",
  1375. "ssPaused":"Paused...",
  1376. "ssWaitRecording":"Waiting for recording...",
  1377. "ssMandarin":"Mandarin",
  1378. "ssCantonese":"Cantonese",
  1379. "ssConfirmDelAudio":"Are you sure to delete this audio?",
  1380. "ssReminder":"Reminder",
  1381. "ssStartRecording":"Recording started",
  1382. "ssStillRecording":"Still recording",
  1383. "ssStopRecording":"Recording stopped",
  1384. "ssEndRecording":"Recording ended",
  1385. "ssPromptSet":"Prompt Settings",
  1386. "ssBasicCreate":"Basic Creation",
  1387. "ssDefaultPrompt":"Default Prompt",
  1388. "ssDefaultPrompt1":"Default Prompt 1",
  1389. "ssDefaultPrompt2":"Default Prompt 2",
  1390. "ssDefaultPrompt3":"Default Prompt 3",
  1391. "ssEnterPls":"Please enter....",
  1392. "ssEnterPrompt":"Please enter prompt",
  1393. "ssConfirmResetPrompt":"Are you sure to reset this prompt?",
  1394. "ssAiDetail":"Please design a project-based learning course named <Course Name> for <Course Subject> subject, targeting <Grade Level>, based on <Course Brief Description>.",
  1395. "ssAiOutline":"Please design sequential teaching activities for this project-based learning course named <Course Name> for <Course Subject> subject, targeting <Grade Level>, based on <Course Brief Description> and #Supplementary Reference Materials (each task needs at least 50 tokens of detailed description), activity design for each teaching activity (file content can be used directly), and evaluation rubrics for each teaching activity (students can...).",
  1396. "ssAiTask":"Please base on <Teaching Task Lesson Plan>.",
  1397. "ssAiDetail1":"Please redesign this teaching task based on <Course Description>. The task needs at least 50 tokens of detailed description, including task design and evaluation criteria.",
  1398. "ssAiDetail2":"Please optimize the task description and task name considering the entire course: <Task Name>: <Task Description>",
  1399. "ssAiDetail3":"Please optimize tool guidance considering the entire course, **especially considering the task, tool name and tool content**.",
  1400. "ssAiDetail4":"Please optimize evaluation criteria considering the entire course, **especially considering the task details** and tools.",
  1401. "ssAiTeacher":"Please design detailed lesson plans for each teaching task based on <Task Outline>, including but not limited to teaching objectives, teaching process, teacher-student discussion, extension, student task sheets, practice or Quiz and answers for related knowledge points, etc.",
  1402. "ssTeacherDetail":"Please redesign this lesson plan based on <Lesson Plan Description>. Including but not limited to teaching objectives, teaching process, teacher-student discussion, extension, student task sheets, practice or Quiz and answers for related knowledge points, etc.",
  1403. "ssAiOutline2":"Please design sequential teaching activities for this project-based learning course named <Course Name> for <Course Subject> subject, targeting <Grade Level> students (each task needs at least 100 tokens of detailed description). You need to refer to the course brief description <Course Brief Description>, and produce the design of each teaching task (file content can be used directly) and evaluation rubrics for each teaching activity (students can...).",
  1404. "ssAiDetail2Alt":"Please optimize the task description considering the entire course",
  1405. "ssAiTeacher2":"Please design detailed lesson plans for each teaching task based on <Task Outline>. The lesson plan needs to include the teaching objectives of the task, teaching process (including step-by-step teacher activities and student activities, teacher activities and student activities should correspond one by one), explanation of related knowledge points, practice (practice needs to include example answers.",
  1406. "ssTeacherDet2":"Please design detailed lesson plans for this teaching task based on <Task Outline> and # other teaching task lesson plans. The lesson plan needs to include the teaching objectives of the task, teaching process (including step-by-step teacher activities and student activities), explanation of related knowledge points, practice (practice needs to include example answers. Note, you must never repeat the content in other teaching task lesson plans",
  1407. "ssTeacherDet2Alt":"Please design detailed lesson plans for this task based on <Task Name>, <Task Description>, <Course Brief Description>. The lesson plan needs to include the teaching objectives of the task, teaching process (including step-by-step teacher activities and student activities, teacher activities and student activities should correspond one by one), explanation of related knowledge points, practice (practice needs to include example answers).",
  1408. "ssSavePromptTemp":"Save Prompt Template",
  1409. "ssTemplateDesc":"Template Description:",
  1410. "ssPermission":"Permission:",
  1411. "ssPersonal":"Personal",
  1412. "ssEveryone":"Everyone",
  1413. "ssPublicPrompt":"Public Prompt:",
  1414. "ssNotPublic":"Not Public",
  1415. "ssPublic":"Public",
  1416. "ssConfirmSaveCourse":"Confirm and Save Course",
  1417. "ssEnterTemplateName":"Please enter template name",
  1418. "ssConfirmModifyTemp":"Are you sure to modify this template?",
  1419. "ssModifySuccess":"Modify successful",
  1420. "ssTaskAiGenPPT":"Task * AI Generated PPT",
  1421. "ssGenWaitPls":"AI is working hard to generate, please wait.",
  1422. "ssStop":"Stop",
  1423. "ssGenOutline":"Please generate outline",
  1424. "ssSelectTemplate":"Select Template",
  1425. "ssSelectTemplatePls":"Please select template",
  1426. "ssRegenOutline":"Regenerate Outline",
  1427. "ssRegenPPT":"Regenerate PPT",
  1428. "ssGenPPT":"Generate PPT",
  1429. "ssPrevStep":"Previous Step",
  1430. "ssNextStep":"Next Step",
  1431. "ssCollapse":"Collapse",
  1432. "ssTaskGenPPT":"Task * Generated PPT",
  1433. "ssOpen":"Open",
  1434. "ssStopSuccess":"Successfully stopped",
  1435. "ssClickGenPPT":"Please click 'Generate PPT' button",
  1436. "ssGenWait":"Generating, please wait",
  1437. "ssGenOutlinePls":"Please generate outline content first",
  1438. "ssGenFailRetry":"Generation failed, regenerating",
  1439. "ssThanksWatch":"Thanks for watching, class dismissed!",
  1440. "ssSmartSearch":"Smart Search",
  1441. "ssSearchVideoKey":"Search video keywords (use \",\" to separate multiple keywords)",
  1442. "ssComprehensive":"Comprehensive",
  1443. "ssMostPlayed":"Most Played",
  1444. "ssLatest":"Latest",
  1445. "ssMostDanmu":"Most Danmu",
  1446. "ssMostFav":"Most Favorites",
  1447. "ssAddSuccess":"Added successfully",
  1448. "ssEnterKeyword":"Please enter keyword",
  1449. "ssServerBusy":"Oops, too many requests, server is busy, please search keywords manually",
  1450. "ssPdfView":"PDF View",
  1451. "ssDocView":"Document View",
  1452. "ssEvalSetting":"Evaluation Settings",
  1453. "ssRegenEval":"Regenerate Evaluation",
  1454. "ssGenEval":"Generate Evaluation",
  1455. "ssLiteracy":"Literacy:",
  1456. "ssFillTarget":"Fill Target",
  1457. "ssAiScoring":"AI Scoring",
  1458. "ssEvalStandard":"Evaluation Standard:",
  1459. "ssFillEvalStd":"Fill Evaluation Standard",
  1460. "ssEvalDetail":"Evaluation Detail:",
  1461. "ssCollapseDetail":"Collapse Detail",
  1462. "ssExpandDetail":"Expand Detail",
  1463. "ssEnterEvalDetail":"Please enter evaluation detail",
  1464. "ssRegenDetail":"Regenerate",
  1465. "ssGenDetail":"Generate Detail",
  1466. "ssStopGenEvalSet":"Successfully stopped generating evaluation settings",
  1467. "ssStopGenEvalDetail":"Successfully stopped generating evaluation detail",
  1468. "ssGenWaitFinish":"Generating, please wait until finished",
  1469. "ssUploadRefGenEval":"Please upload reference standards before generating evaluation",
  1470. "ssCompleteInfoGen":"Please complete evaluation information before generating detail",
  1471. "ssEvalDetailGenOk":"Evaluation detail generated successfully",
  1472. "ssAppCenter":"App Center",
  1473. "ssSelectScope":"Please select display scope",
  1474. "ssSelectType":"Please select type",
  1475. "ssSelectStatus":"Please select status",
  1476. "ssEnterAppName":"Please enter app name",
  1477. "ssWorkflow":"Workflow",
  1478. "ssAgent":"Agent",
  1479. "ssCopyCount":"Copy Count",
  1480. "ssCancelLike":"Cancel Like",
  1481. "ssLike":"Like",
  1482. "ssCancelCollect":"Cancel Collect",
  1483. "ssCollect":"Collect",
  1484. "ssTest":"Test",
  1485. "ssStable":"Stable",
  1486. "ssViewMore":"View More",
  1487. "ssAllApps":"All Apps",
  1488. "ssOfficial":"Official & Featured",
  1489. "ssOrgInternal":"Organization",
  1490. "ssMine":"Mine",
  1491. "ssAllStatus":"All Status",
  1492. "ssAllTypes":"All Types",
  1493. "ssSelectAppFirst":"Please select an app first!",
  1494. "ssGetAppTypeFail":"Failed to get app type",
  1495. "ssGetAppFail":"Failed to get app",
  1496. "ssLikeSuccess":"Like successful",
  1497. "ssLikeFail":"Like failed",
  1498. "ssCancelLikeOk":"Cancel like successful",
  1499. "ssCancelLikeFail":"Cancel like failed",
  1500. "ssCollectSuccess":"Collect successful",
  1501. "ssCollectFail":"Collect failed",
  1502. "ssCancelCollectOk":"Cancel collect successful",
  1503. "ssCancelCollectFail":"Cancel collect failed",
  1504. "ssAddHTML":"Add HTML",
  1505. "ssModifyHTML":"Modify HTML",
  1506. "ssFillNameInfo":"Please complete the name information",
  1507. "ssFillCodeInfo":"Please complete the code information",
  1508. "ssLoadHtmlError":"Error loading HTML file:",
  1509. "ssStuEval":"Student Evaluation",
  1510. "ssStuMgmt":"Student Management",
  1511. "ssCourseMgmt":"Course Management",
  1512. "ssEvalMgmt":"Assessment Management",
  1513. "ssViewCourse":"View by Course",
  1514. "ssViewStu":"View by Student",
  1515. "ssClassFilter":"Select Class",
  1516. "ssFilterCourse":"Select Course Name",
  1517. "ssStuFilter":"Student Filter",
  1518. "ssAllClass":"All Classes",
  1519. "ssFilterStu":"Select Student Name",
  1520. "ssCourse":"Course",
  1521. "ssClass":"Class",
  1522. "ssCreator":"Owner",
  1523. "ssAction":"Actions",
  1524. "ssViewWork":"View Assignments",
  1525. "ssViewReport":"View Reports",
  1526. "ssStuName":"Student Name",
  1527. "ssViewCourse2":"View Course",
  1528. "ssBack":"Back",
  1529. "ssFilter":"Select Course",
  1530. "ssSelectStu":"Please select student",
  1531. "ssViewAllStu":"View All Students",
  1532. "ssAllStu":"All Students",
  1533. "ssName":"Name",
  1534. "ssExportReport":"Export Report",
  1535. "ssViewExport":"View",
  1536. "ssExport":"Export",
  1537. "ssStuGrowth":"Student Growth Report",
  1538. "ssTeacherName":"Teacher Name:",
  1539. "ssClassPerf":"Class Performance",
  1540. "ssCourseNum":"Course Participants: 100 total, Completed:",
  1541. "ssPerson":"people",
  1542. "ssClassTime":"Class Duration",
  1543. "ssTimes":"times",
  1544. "ssMinute":"min",
  1545. "ssSecond":"sec",
  1546. "ssBeat99":"Beat 99% of teachers",
  1547. "ssClassSess":"Class Sessions",
  1548. "ssSession":"sessions",
  1549. "ssTeacherCent":"Teacher-Centered",
  1550. "ssStudentCent":"Student-Centered",
  1551. "ssClassInter":"Class Interaction",
  1552. "ssClassGen":"Class Generation",
  1553. "ssSelfAct":"Self-Activity",
  1554. "ssChinese2":"Chinese",
  1555. "ssMath":"Math",
  1556. "ssEnglish":"English",
  1557. "ssInfoTech":"Information Technology",
  1558. "ssArt":"Art",
  1559. "ssCrossLit":"Cross-Disciplinary Literacy",
  1560. "ssProblemAw":"Problem Awareness",
  1561. "ssSciInquiry":"Scientific Inquiry",
  1562. "ssPracticeIn":"Practical Innovation",
  1563. "ssEngThink":"Engineering Thinking",
  1564. "ssLearnRef":"Learning Reflection",
  1565. "ssAbilityIdx":"Ability Indicator",
  1566. "ssScore":"Score",
  1567. "ssStuPercent":"Student Percentage (Unit: %)",
  1568. "ssExportAllWork":"Export all student assignments? One-click export will take a moment~",
  1569. "ssBatchExportWork":"Batch export student assignments? Batch export will take a moment~",
  1570. "ssLearnReflect":"Learning Reflection Ability",
  1571. "ssLifelongLearn":"Lifelong Learning",
  1572. "ssSelfProgress":"Self-Improvement",
  1573. "ssSelfReflect":"Self-Reflection",
  1574. "ssEngThinkAb":"Engineering Thinking Ability",
  1575. "ssPracticeInno":"Practical Innovation Ability",
  1576. "ssSciInquiryAb":"Scientific Inquiry Ability",
  1577. "ssProblemAware":"Problem Awareness",
  1578. "ssStudentNum":"Student ID",
  1579. "ssScoreNum":"Score",
  1580. "ssClassType":"Class Type",
  1581. "ssClassTime2":"Class Time",
  1582. "ssClassDur":"Class Duration",
  1583. "ssMagicDur":"Magic Star Duration",
  1584. "ssTeachClass":"Teaching Class",
  1585. "ssVideo":"Video",
  1586. "ssInteractC":"Interaction",
  1587. "ssVote":"Vote",
  1588. "ssChallenge":"Challenge",
  1589. "ssAssess":"Assessment",
  1590. "ssAbstain":"Abstain",
  1591. "ssClassStuAb":"Class Student Ability Analysis",
  1592. "ssSelectStage":"Select Stage",
  1593. "ssTaskContent":"Task Content",
  1594. "ssTaskExport":"Export by Task",
  1595. "ssCustomExp":"Custom Export",
  1596. "ssStage":"Stage *",
  1597. "ssTaskrp":"Task *",
  1598. "ssTool":"Tool *:",
  1599. "ssQATool":"Q&A Tool",
  1600. "ssQuestion":"Question:",
  1601. "ssAnswer":"Answer:",
  1602. "ssAnswerText":"Answer",
  1603. "ssDocTool":"Document Tool",
  1604. "ssDefaultDesc":"Based on preliminary understanding and field research of the project, think and discuss to raise questions.",
  1605. "ssCorrect":"Correct",
  1606. "ssWrong":"Wrong",
  1607. "ssAnswer3":"Answer:",
  1608. "ssStuAnswer":"Student Answer:",
  1609. "ssCorrectAns":"Correct Answer:",
  1610. "ssMindGrid":"Mind Grid",
  1611. "ssAIAssist":"Xiaoke AI Assistant",
  1612. "ssPrevStu":"Previous",
  1613. "ssNextStu":"Next",
  1614. "ssStuBasicInfo":"Student Basic Information",
  1615. "ssCourseBasicInfo":"Course Basic Information",
  1616. "ssStuAbilityEval":"Student Comprehensive Ability Assessment",
  1617. "ssStageComplete":"Stage Completion Status",
  1618. "ssStageAvgScore":"Stage Evaluation Average Score",
  1619. "ssViewStudent":"View Student",
  1620. "ssCourseQuery":"Course Query",
  1621. "ssInputCourse":"Please enter course",
  1622. "ssNoClass":"No Class",
  1623. "ssViewGrade":"View & Grade Work",
  1624. "ssViewGrade2":"Review & Grade",
  1625. "ssCatalog":"Catalog",
  1626. "ssViewDoc":"View Document",
  1627. "ssScore2":"Score:",
  1628. "ssNoUpload":"No Upload Screenshot",
  1629. "ssQATitle":"Q&A Title",
  1630. "ssSurveyTool2":"Survey Tool",
  1631. "ssContent2":"Content",
  1632. "ssTopic3":"Topic:",
  1633. "ssChoiceTool2":"Choice Tool",
  1634. "ssTopicContent":"Topic Content",
  1635. "ssPersonalEval":"Personal Evaluation Tool",
  1636. "ssInputEval":"Please enter evaluation content...",
  1637. "ssMatchTool2":"Match Tool",
  1638. "ssSelectCorrect":"Please select correct answer",
  1639. "ssCorrect3":"Correct Answer",
  1640. "ssWrong3":"Wrong Answer",
  1641. "ssCorrectAns4":"Correct Answer:",
  1642. "ssSortTool2":"Sort Tool",
  1643. "ssQuestion2":"Question *",
  1644. "ssFormSentence":"Form Sentence:",
  1645. "ssCorrectAns5":"Correct Answer:",
  1646. "ssTableTool2":"Table Tool",
  1647. "ssCocopiTool":"Cocopi Tool",
  1648. "ssFullScreen":"Full Screen View",
  1649. "ssDocTool2":"Document Tool",
  1650. "ssTaskScore":"Task Score:",
  1651. "ssScoreUnit":"points",
  1652. "ssSubmitTime":"Work Submission Time:",
  1653. "ssScoreDetail":"Score Details",
  1654. "ssTarget2":"Target",
  1655. "ssSaveScore":"Save Score",
  1656. "ssCourseScore":"Course Score",
  1657. "ssViewChoice":"View Choice Questions",
  1658. "ssFilePreview":"File Preview",
  1659. "ssExportWork":"Export Submissions",
  1660. "ssTime":"Time",
  1661. "ssOperation":"Operation",
  1662. "ssEvalSuccess":"Evaluation Successful",
  1663. "ssEvalFail":"Evaluation Failed",
  1664. "ssNoTaskWork":"No work submitted for this task yet",
  1665. "ssWorkSet":"Work Set",
  1666. "ssWorkSetSummary":"Work Set Summary",
  1667. "ssImage":"Image",
  1668. "ssQuestion3":"Question *:",
  1669. "ssSelect2":"Select:",
  1670. "ssAnswer4":"Answer:",
  1671. "ssGenReport":"Generating report, please wait...",
  1672. "ssAIAnalysis":"AI Analysis",
  1673. "ssLastAnalysis":"Last Analysis:",
  1674. "ssSchoolYear":"School Year",
  1675. "ssSemester":"Semester *",
  1676. "ssSchool":"School:",
  1677. "ssTeacher":"Teacher:",
  1678. "ssLearnOver":"Learning Overview",
  1679. "ssComPerf":"Overall Performance",
  1680. "ssLoginTime2":"Login Duration",
  1681. "ssStudyTime2":"Study Duration",
  1682. "ssLearnScore":"Learning Score",
  1683. "ssContainSub":"Subjects Included",
  1684. "ssToolUsage":"Tool Usage",
  1685. "ssLearnBehav":"Learning Behavior Record",
  1686. "ssInputContent":"Please enter content",
  1687. "ssRegenerate":"Regenerate",
  1688. "ssLiteracyDev":"Literacy Development",
  1689. "ssLiteracyRadar":"Literacy Development Radar",
  1690. "ssLiteracyOver":"Literacy Development Overview",
  1691. "ssLearnAnalysis":"Learning Analysis Report",
  1692. "ssTaskEval":"Task Evaluation System",
  1693. "ssSyncExport":"Sync export student work set?",
  1694. "ssOnlyReport":"Report Only",
  1695. "ssReportWithWork":"Report (with work set)",
  1696. "ssNoWorkSubmit":"No work submitted for this course",
  1697. "ssSelectClass2":"Please select class",
  1698. "ssNoAnalysis":"No analysis results available, please click [AI Analysis] first",
  1699. "ssStartAnalysis":"Starting analysis...",
  1700. "ssAnalysisDone":"AI Analysis Completed",
  1701. "ssRegenDone":"Regeneration Completed",
  1702. "ssRegenerating":"Regenerating...",
  1703. "ssStuReportSum":"Student Report Summary",
  1704. "ssStuReport":"Student Report",
  1705. "ssStuGrowthRep":"Student Growth Report",
  1706. "ssComment":"Comment",
  1707. "ssLiteracy2":"Literacy",
  1708. "ssPersonalData":"Personal Data",
  1709. "ssCooperation":"Cooperation",
  1710. "ssClassAvg":"Class Average",
  1711. "ssTaskScore2":"Task Score",
  1712. "ssWorkSubmitRate":"Work Submission Rate",
  1713. "ssTaskWayRatio":"Task Completion Method Ratio",
  1714. "ssTeaStuInter":"Teacher-Student Interaction",
  1715. "ssStuStuActive":"Student-Student Interaction (Active)",
  1716. "ssStuStuPassive":"Student-Student Interaction (Passive)",
  1717. "ssToolRatio":"Tool Ratio",
  1718. "ssLiteracyAvg":"Literacy Average Score",
  1719. "ssCoopType":"Collaboration",
  1720. "ssAssessType":"Assessment",
  1721. "ssProgType":"Programming",
  1722. "ssOneClickExp":"One-Click Export",
  1723. "ssBatchExp":"Custom Export",
  1724. "ssAllStudent":"All Students",
  1725. "ssOneClickExpAll":"One-click export of all reports will take a lot of your time. Do you want to export?",
  1726. "ssBatchExpAll":"Batch export of reports will take some of your time. Do you want to export?",
  1727. "ssReport":"Report",
  1728. "ssExportAllStudentWork":"Do you want to export all student assignments? Full export will take a while~",
  1729. "ssBatchExportWorkTime":"Batch export of assignments will take more of your time. Do you want to export?",
  1730. "ssExportByTaskWork":"Export by Task",
  1731. "ssCustomExportWork":"Custom Export",
  1732. "ssViewByStudent":"View by Student",
  1733. "ssViewByTask":"View by Task",
  1734. "ssViewAllStudent":"View All Students",
  1735. "ssViewAndGrade":"Review & Grade",
  1736. "ssExportWorkSet":"Export Submissions",
  1737. "ssCustomExport":"Custom Export",
  1738. "ssExportByTask":"Export by Task",
  1739. "ssReturn":"Return",
  1740. "ssSelectStudent":"Please select student",
  1741. "ssAllStage":"All Stages",
  1742. "ssSelectTask":"Please select task",
  1743. "ssAllTask":"All Tasks",
  1744. "ssStageLabel":"Stage",
  1745. "ssQuestionnaire":"Questionnaire",
  1746. "ssSentence":"Sentence",
  1747. "ssCocoFlow":"cocoFlow",
  1748. "ssClickAddCover":"Add Cover Image",
  1749. "ssSelectCollab":"Please select collaborators",
  1750. "ssClear":"Clear",
  1751. "ssAddObjMgmt":"Please add objective management",
  1752. "ssLearnContentTip":"Learning Content (Please upload your existing lesson plans and PPT)",
  1753. "ssUploadFileTip":"Uploaded files will be used as learning resources for the generated online course. Selected files can be uploaded to the large model knowledge base to help you automatically create online courses.",
  1754. "ssModelNoteTip":"Note: The large model currently does not support reading video and audio format content.",
  1755. "ssEnterCourseBrief":"Please enter course brief description",
  1756. "ssTaskExtractGen":"Learning Task Extraction & Generation",
  1757. "ssEnterTaskCont":"Please enter learning task content",
  1758. "ssCourseOutline":"Course Outline",
  1759. "ssGenOutlineBtn":"Generate Outline",
  1760. "ssEnterTaskName":"Enter task name",
  1761. "ssAddTaskAbove":"Add a task above",
  1762. "ssAddTaskBelow":"Add a task below",
  1763. "ssEnterTaskDesc":"Please enter task description",
  1764. "ssReturnCourse":"Return to Course",
  1765. "ssConfirmUpload":"Confirm Upload",
  1766. "ssGenConceptGroup":"Generate Concept Group",
  1767. "ssGenProblemChain":"Generate Problem Chain",
  1768. "ssGenTargetLayer":"Generate Target Layer",
  1769. "ssUnnamedTask":"Unnamed Task",
  1770. "ssUnnamedStage":"Unnamed Stage",
  1771. "ssGenAllTaskName":"Generate All Task Names",
  1772. "ssRegenAllTaskName":"Regenerate All Task Names",
  1773. "ssGenAllTask":"Generate All Tasks",
  1774. "ssOneKeyGenAllTool":"One-Click Generate All Tools",
  1775. "ssOneKeyGenAllEva":"One-Click Generate All Evaluations",
  1776. "ssExportEvaAndPlan":"Export Evaluations and Lesson Plan",
  1777. "ssNewStage":"New Stage",
  1778. "ssStageOrder":"Stage Order",
  1779. "ssEnterStageTitle":"Please enter stage title",
  1780. "ssTaskOverview":"Task Overview",
  1781. "ssStopGenPlanBtn":"Stop Generating Lesson Plan",
  1782. "ssAIGenPlanBtn":"AI Generate Lesson Plan",
  1783. "ssIntSearchVideo":"Smart Search Video",
  1784. "ssTeachingDesign":"Teaching Design",
  1785. "ssTeachingCourseware":"Teaching Courseware",
  1786. "ssTeachingVideo":"Teaching Video",
  1787. "ssTeachingAudio":"Teaching Audio",
  1788. "ssLearningSheet":"Learning Sheet",
  1789. "ssPracticeContent":"Practice Content",
  1790. "ssAssessment":"Assessment",
  1791. "ssSubject":"Subject",
  1792. "ssMoveUp":"Move Up",
  1793. "ssMoveDown":"Move Down",
  1794. "ssCountdown":"Timer",
  1795. "ssPickPeople":"Pick someone",
  1796. "ssChoice":"Multiple Choice",
  1797. "ssAddToolDesc":"Add Tool Description",
  1798. "ssToolDescTip":"*You can add optimization suggestions after the tool description, click \"Smart Optimization\" to automatically modify",
  1799. "ssTaskEvalSys":"Task Evaluation System",
  1800. "ssGenEvalRules":"Generate Evaluation Rules",
  1801. "ssEvalRuleColon":"Evaluation Rules:",
  1802. "ssCollapseRule":"Collapse Rules",
  1803. "ssEnterEvalRule":"Please enter evaluation rules",
  1804. "ssTargetTree":"Target Tree",
  1805. "ssTargetCompass":"Target Compass",
  1806. "ssCollapseTarget":"Collapse Target",
  1807. "ssExpandTarget":"Expand Target",
  1808. "ssModifyTemplate":"Modify Template",
  1809. "ssEvalExtract":"Evaluation Extraction",
  1810. "ssToolDescOpt":"Tool Description Optimization",
  1811. "ssTaskEvalOpt":"Task Evaluation Optimization",
  1812. "ssCopyLinkInvite":"Please copy this link to invite collaborative editing",
  1813. "ssCopyLinkShare":"Copy Link & Share",
  1814. "ssEnterDocTitle":"Please enter document title...",
  1815. "ssAddRichText":"Add Rich Text",
  1816. "ssModifyResource":"Modify Resource",
  1817. "ssAddResource":"Add Resource",
  1818. "ssAddCourseMember":"Add Course Member",
  1819. "ssNoStudent":"No students available",
  1820. "ssEnterLinkTitle":"Please enter link title",
  1821. "ssAddCollaborative":"Add Collaborative Member",
  1822. "ssCreateQuestionnaire":"Create Questionnaire",
  1823. "ssSingleChoice":"Single Choice",
  1824. "ssEnterQuestion":"Please enter question",
  1825. "ssSmartGenerate":"Smart Generate",
  1826. "ssMaterialLib":"Material Library",
  1827. "ssCollaborativeDoc":"Collaborative Document",
  1828. "ssRubricScore":"Rubric Scoring",
  1829. "ssEnterQuestionAsk":"Please enter your question",
  1830. "ssEnterAnswerQ":"Please enter the question you want to answer",
  1831. "ssUploadImage":"Upload Image",
  1832. "ssSelectSystemFile":"Select System File",
  1833. "ssDrawing":"Drawing",
  1834. "ssTechnology":"Technology",
  1835. "ssHumanities":"Humanities",
  1836. "ssSearchImageKey":"Search image keywords",
  1837. "ssEnterKeywordSearch":"Please enter keywords to search images",
  1838. "ssMicNotFoundDenied":"No microphone found or you have not allowed this webpage to use the microphone",
  1839. "ssRecordBeforeUpload":"Please record before uploading audio",
  1840. "ssEnterModifyName":"Please enter the name to modify",
  1841. "ssSelectSecCategory":"Select secondary category",
  1842. "ssSelectAnsByQues":"Select the corresponding answer based on the question",
  1843. "ssConfirmBtn":"Confirm",
  1844. "ssGenLearnTaskFirst":"Please generate learning tasks before generating tasks",
  1845. "ssUnsavedChanges":"You have unsaved changes, are you sure you want to leave?",
  1846. "ssAICreation":"AI Creation",
  1847. "ssUploadCover":"Upload Cover",
  1848. "ssModifyCover":"Modify Cover",
  1849. "ssCollaborators":"Collaborator",
  1850. "ssSelectCollaborators":"Please select collaborator",
  1851. "ssSmartPasteMode":"Smart Paste Mode",
  1852. "ssCourseDescription":"Course Brief Description",
  1853. "ssLearningContent":"Learning Content",
  1854. "ssPleaseAddLearningContent":"Please add learning content",
  1855. "ssEnterLinkUrl":"Please enter the link",
  1856. "ssCocoLinkTip":"Please add a Cocorobo same-domain, Amazon, or accessible HTML link.",
  1857. "ssSelectClassDialog":"Select Teaching Class",
  1858. "ssFillEvaName":"Fill in evaluation name",
  1859. "ssEvaluationContent":"Evaluation Content",
  1860. "ssUpProgress":"Upload Progress",
  1861. "ssAiotBlockly":"AIoT Blockly",
  1862. "ssAiPython":"AI Python",
  1863. "ssAiBlockly":"AI Blockly",
  1864. "ssCocoPi":"CocoPi",
  1865. "ssSimulatedDriving":"Simulated Driving",
  1866. "ssRouteSearch":"Route Search",
  1867. "ssDeepLearning":"Deep Learning",
  1868. "ssMoleculeStruct":"Molecule Structure",
  1869. "ssTimeline":"Timeline",
  1870. "ssObjMgmt":"Objectives Management",
  1871. "ssCourseDesign":"Course Design",
  1872. "ssInterVideo":"Interactive Video",
  1873. "ssPhoto":"Photo",
  1874. "ssAIAgent":"AI Agent",
  1875. "ssPPT":"PPT",
  1876. "ssModify":"Modify",
  1877. "ssGradeType": "Grade",
  1878. "ssSubjectCategory": "Subject",
  1879. "ssThemeType": "Theme",
  1880. "ssSaveSuccess":"Saved successfully",
  1881. "SelectWebImage":"Select Web Image",
  1882. "ssCreateCocoNote":"Edit CocoNote",
  1883. "ssCocoNoteUpdateTips":"CocoNote does not support modifying basic information, only supports joining groups.",
  1884. "ssInterTool":"Interactive Tool",
  1885. "ssH5Page":"H5 Page",
  1886. "ssCreateSpace":"Creative Space",
  1887. "ssCreatedCont":"Created Content",
  1888. "ssTotal":"Total",
  1889. "ssItemCont":"Items",
  1890. "ssNoTool":"No tools...",
  1891. "ssPreview":"Preview",
  1892. "ssCopy":"Copy",
  1893. "ssEnterTextTitle":"Please enter text title...",
  1894. "ssAddH5Page":"Add H5 Page",
  1895. "ssSelectMember":"Select Member",
  1896. "ssSearchMemberName":"Search Member Name",
  1897. "ssMultipleChoice":"Multiple Choice",
  1898. "ssWhiteBoard":"Whiteboard",
  1899. "ssCollabDoc":"Collaborative Document",
  1900. "ssEnterAnswerQuestion":"Please enter the question you want to answer",
  1901. "ssInteractType":"Interactive",
  1902. "ssThinkType":"Thinking",
  1903. "ssEvalType":"Evaluation",
  1904. "ssAddQuestion":"Add Question",
  1905. "ssUntitled":"Untitled",
  1906. "ssReleaseBtn":"Publish",
  1907. "ssTotalPrefix":"Total ",
  1908. "ssBasicInfo":"Basic Information",
  1909. "ssPptLoad":"PPT is loading, please wait",
  1910. "ssPptLoad2":"PPT is uploading images, please wait",
  1911. "ssUploadPptFail":"Failed to upload PPT data",
  1912. "ssCopyToolSucc":"Tool copied successfully",
  1913. "ssAddH5":"Add Web Page",
  1914. "ssUploading":"Uploading...",
  1915. "ssCompleted":"Complete",
  1916. "ssBilibiliVideo":"Youtube Video",
  1917. "ssQAQuestion":"QA Question",
  1918. "ssQAQuestionTool":"QA Question Tool",
  1919. "ssBilibiliVideoSearch":"Search YouTube Videos",
  1920. "ssBiliLoading":"Searching, please wait...",
  1921. "ssBiliSearchKey":"Search video keywords (multiple can be separated by commas)",
  1922. "ssBiSort":"Relevance",
  1923. "ssBiPlay":"Most Play",
  1924. "ssBiRelease":"Latest Release",
  1925. "ssBitDanmaku":"Most Danmaku",
  1926. "ssBiFavorite":"Most Favorite",
  1927. "ssAddbl":"Add",
  1928. "ssAut":"Creator",
  1929. "ssDuration":"Duration",
  1930. "ssPrevPage":"Previous",
  1931. "ssPageInfo":"Page *",
  1932. "ssSearchFail":"Search failed, please try again",
  1933. "ssSelectVideo":"Please select the video to add",
  1934. "ssAddSuccessVideo":"Successfully added * videos",
  1935. "ssSelectVideoSource":"Select Video Source",
  1936. "ssLocalUpload":"Upload from Device",
  1937. "ssBiliSearch":"Search on YouTube",
  1938. "ssNewGrade":"New Grade",
  1939. "ssNewClass":"New Class",
  1940. "ssInterClassMng":"Interest Class Management",
  1941. "ssInterClassList":"Interest Class List",
  1942. "ssStuList":"Student List",
  1943. "ssStuCount":"(* people)",
  1944. "ssInterestClass":"Interest Class",
  1945. "ssEnterClassNamePlc":"Enter class name...",
  1946. "ssSortEarliest":"Sort by earliest created",
  1947. "ssSortLatest":"Sort by latest created",
  1948. "ssRefresh":"Refresh",
  1949. "ssResetPwd":"Reset Password",
  1950. "ssMove":"Move",
  1951. "ssAddInterCla":"Add Interest Class",
  1952. "ssCancelSelAll":"Cancel Select All",
  1953. "ssInterClaNameColon":"Interest Class Name:",
  1954. "ssEnterInterClaNm":"Enter interest class name",
  1955. "ssMoveStudent":"Move Student",
  1956. "ssEditInfo":"Edit Info",
  1957. "ssEnterUserName":"Enter name",
  1958. "ssSearchInterCla":"Search interest class...",
  1959. "ssSearchStudent":"Search student...",
  1960. "ssConfirmDelStuOne":"Confirm delete \"*\" student?",
  1961. "ssConfirmDelStuNum":"Confirm delete * student(s)?",
  1962. "ssConfirmDelClass":"This will delete the class and all teaching data. Continue?",
  1963. "ssConfirmRemoveNum":"Remove * student(s) from this class?",
  1964. "ssConfirmResetPwdN":"Reset password for * student(s)?",
  1965. "ssConfirmResetOne":"Reset password for *?",
  1966. "ssConfirmMoveCla":"Move to this class?",
  1967. "ssConfirmEditStu":"Edit *'s student info?",
  1968. "ssResetPwdSuccNum":"Password reset for * account(s)!",
  1969. "ssResetPwdSucc":"Password reset successful!",
  1970. "ssDefaultPwdCoco":"Default password: Coco1234",
  1971. "ssCopySucc":"Copied to clipboard",
  1972. "ssCopyFail":"Copy failed",
  1973. "ssOnlyCreatorDel":"Only the creator can delete",
  1974. "ssSelectStuExp":"Please select students to export first",
  1975. "ssMoveStuSame":"Cannot move to the same class",
  1976. "ssMoveStuSucc":"Move successful",
  1977. "ssMoveStuFail":"Move failed",
  1978. "ssRemoveStuSucc":"Remove successful",
  1979. "ssRemoveStuFail":"Remove failed",
  1980. "ssStuListXlsx":"Student List.xlsx",
  1981. "ssResetPwdPartErr":"Some passwords failed to reset, please try again",
  1982. "ssResetPwdFail":"Password reset failed",
  1983. "ssPartDelFail":"Some deletions failed, please try again",
  1984. "ssOnlyCreatorEdit":"Only the creator can edit",
  1985. "ssTargetClass":"Target class:",
  1986. "ssSearchStuLbl":"Search student:",
  1987. "ssEnterStuNameMul":"Enter student name(s), multiple names separated by Chinese comma (,)",
  1988. "ssInputStuCnt":"Entered * student(s)",
  1989. "ssSelectStuTip":"Select students (multiple allowed)",
  1990. "ssAddStuSucc":" and * student(s) have been added successfully",
  1991. "ssPageInfoL":"No.*-No.# , total $",
  1992. "ssAddStuTitle":"Add Student",
  1993. "ssFromExistL":"Add from existing students",
  1994. "ssManualInput":"Manual input",
  1995. "ssBelongClass":"Class:",
  1996. "ssEntered":"Entered:",
  1997. "ssStuNameDup":"The student you added \"*\" has duplicate names. Continue?",
  1998. "ssUploadClickDrag":"Click or drag file here to upload",
  1999. "ssUploadTip":"Supported: xlsx, xls , up to 10MB",
  2000. "ssUploadTempLbl":"Upload template:",
  2001. "ssDownloadTemp":"Download template",
  2002. "ssUploadNote":"Tip: Please fill in student information according to the template format to avoid import failure",
  2003. "ssGetSuffixReUp":"Getting suffix, please re-upload",
  2004. "ssGetSuffixReAdd":"Getting suffix, please re-add",
  2005. "ssCheckStuNameCol":"Please check whether the student name column in the uploaded file is correct",
  2006. "ssCheckClassCol":"Some students have incorrect class information, please check",
  2007. "ssParseStuFail":"Failed to parse student information. Please check the data format and use the template file format",
  2008. "ssEnterStu":"Please enter student",
  2009. "ssAddStuMax70":"You can add up to 70 students at a time",
  2010. "ssSelectBelCla":"Please select class",
  2011. "ssQAInputPH":"Please enter your answer here...",
  2012. "ssUploadImgTip":"Supports JPG and PNG formats, up to 5MB",
  2013. "ssPractice":"Practice",
  2014. "ssImgTooBig":"Image size cannot exceed 5MB",
  2015. "ssStartRec":"Start",
  2016. "ssStopRec":"Stop",
  2017. "ssRecordShort":"Recording time is too short, please wait...",
  2018. "ssNoPermStop":"Recording permission not granted, recording stopped",
  2019. "ssStoppedRec":"Recording stopped",
  2020. "ssMicCheckStop":"Unable to detect microphone permission, recording stopped",
  2021. "ssPrevQ":"Previous question",
  2022. "ssNextQ":"Next question",
  2023. "ssUntitledCourse":"Untitled Course",
  2024. "ssPPtUpProgress":"Uploading (*)",
  2025. "ssBilibiliVideoSearchKeyword":"Please enter a keyword",
  2026. "ssEditGrade":"Edit Grade",
  2027. "ssConfirmDeleteClassStudentone":"Confirm remove * student?",
  2028. "ssExplanationTip":"Explanation",
  2029. "ssAIGenerate":"AI Generate",
  2030. "ssEnterExplanation":"Please enter explanation",
  2031. "ssEvaluationStandard":"Evaluation Standard",
  2032. "ssEnterEvaluationStandard":"Please enter evaluation standard",
  2033. "ssCourseCenter":"Course Center",
  2034. "ssCourseType":"Course Type",
  2035. "ssSelectCourseType":"Please select course type",
  2036. "ssSelectedCourse":"Selected * courses",
  2037. "ssSelectedApp":"Selected * apps",
  2038. "ssNoSettingAnswer":"No correct answer set",
  2039. "ssSyncImportClassInfo":"Tip: If you need to synchronize import class information, please download the import template here, and accurately enter the grade + class name as the student class in the [Class] column (interest classes do not support importing students)."
  2040. }