-
-
Notifications
You must be signed in to change notification settings - Fork 967
/
Copy pathassignment.properties
1335 lines (1136 loc) · 73.3 KB
/
assignment.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
acesubdea2 = Accept submissions deadline should be set after the due date.
acesubdea3 = Accept submissions deadline should be set after the open date.
acesubdea4 = Accept submissions deadline set to be in the past. Please make a correction or click on the original button again to proceed.
acesubdea5 = Accept resubmissions deadline set to be in the past. Please make a correction or click on the original button again to proceed.
acesubdea6 = Accept resubmissions deadline should be set after the open date.
acesubdea7 = Accept resubmissions deadline should be set after the due date.
areyousur_withSubmission = Are you sure you want to delete ''{0}'' which has submissions already?
areyousur_multiple = Are you sure you want to delete these assignments?
areyousur_single = Are you sure you want to delete this assignment?
areyousur_unpub_single = Are you sure you want to unpublish this assignment?
areyousur_unpub_multiple = Are you sure you want to unpublish these assignments?
areyousur_pub_single = Are you sure you want to publish this assignment?
areyousur_pub_multiple = Are you sure you want to publish these assignments?
areyousur_pubWithSubmission = Are you sure you want to publish ''{0}'' which has submissions already?
publish_multiple_question=Are you sure you want to publish these assignments?
publish_single_question=Are you sure you want to publish this assignment?
publish_withsubmission_confirmation=Are you sure you want to publish ''{0}'' which has submissions already?
areyousur_unpubWithSubmission = Are you sure you want to unpublish ''{0}'' which has submissions already?
unpublish_multiple_question=Are you sure you want to unpublish these assignments?
unpublish_single_question=Are you sure you want to unpublish this assignment?
unpublish_withsubmission_confirmation=Are you sure you want to unpublish ''{0}'' which has submissions already?
assig3 = Assignment due date should be set after the open date.
assig4 = Assignment due date set to be in the past. Please make a correction or click on the original button again to proceed.
assig5 = Edited Assignment: Open Date for ''{0}''
assig6 = Assignment: Open Date for ''{0}''
attaonly = Attachments only
attempty = Can not submit empty attachments: ''{0}''.
cannotfin1 = Can not add the due date to calendar.
cannotfin_assignment = Can not find the assignment ''{0}''.
cannotfin_assignmentContent = Can not find the assignment content ''{0}''.
cannotfin3 = Can not find the assignment.
cannotfin4 = Can not find the assignment content.
cannotfin5 = Can not find the assignment submission.
cannotfin_site = Can not find site with id = ''{0}''.
cannotfin_submission = Can not find the assignment submission with id = ''{0}''.
cannotfin_submission_1 = Can not find the assignment submission for assignment reference =''{0}'' and user id=''{1}''.
cannotfin6 = Can not find the calendar event ''{0}''.
cannot_getEvents = Can not read events for calendar ''{0}''.
cannotmak = Can not make an announcement for the assignment open date.
cannotrem = Can not remove the old event for assignment ''{0}''.
check = Checkmark
conte = content.
delet = Delete
publish = Publish
unpublish = Unpublish
delete_assig.delanass = Delete an assignment...
delete_assig.delass = Delete assignments...
publish_assignment=Publish an assignment...
publish_assignments=Publish assignments...
unpublish_assignment=Unpublish an assignment...
unpublish_assignments=Unpublish assignments...
downall = Download All
downspr = Download Spreadsheet [XLSX]
downsprByColumns = Download Spreadsheet (assignments by columns) [XLSX]
draft = Drafted
dupli = Duplicate
gen.acesubunt = Accept Until
gen.addatt = Add Attachments
gen.addatttoassig = Add attachment(s) to assignment {0} for {1}
gen.addatttoassig.singular = Add attachment to assignment {0} for {1}
gen.addatttoassiginstr = Add an item from your computer or select an existing item from Resources. Once you've made your selection, select 'Continue', or select 'Cancel' to return without making any changes. You will return your assignment - which you should then save.
gen.adddroatt = Add / Remove Attachments
gen.addduedat = Add due date to calendar
gen.addhonple = Add honor pledge
gen.addinst = Additional instructor's comments about your submission
gen.addinst2 = Instructor's comments about your submission
gen.addinstatts = Instructor's attachments to this submission
gen.addres2 = Additional resources for assignment
gen.alert = Alert:
gen.anntheope = Add an announcement about the open date to Announcements
gen.assdet = Assignment Details
gen.assig = Assignment
gen.assinf = Assignment Instructions
gen.ass.lis.sum = List of assignments.
gen.asstit = Assignment Title
gen.ass.remind = Send a reminder email {0} hours before the due date
gen.at = at
gen.att = Attachments
gen.has.att = This assignment has attachments
gen.attfprgra = Attachments for grading
gen.atttoret = Attachments to Return with Grade
gen.atttoret2 = Attachments to Return with Assignment
gen.availability = Availability
gen.can = Cancel
gen.can.discard = Your changes will be discarded. Are you sure you want to cancel?
gen.clocli = Close, click to open assignment instructions
gen.closed = Closed
gen.creby = Created by
gen.removeddate = Removed Date
gen.don = Done
gen.dra1 = Draft
gen.agree = Agree
gen.dra2 = Draft -
gen.due = Due
gen.due.header = Due
gen.duedat = Due Date
gen.filatt = File attachment
gen.folatt = Folder attachment
gen.forpoi = Max Points
gen.assign.gra = Grade
gen.assign.spent = Time spent:
gen.gra = Grade
gen.gra2 = Grade:
gen.grade.override = Override grade with:
gen.grading = Grading
gen.group = Group
gen.groups = Groups
gen.group.grade = Group Grade
gen.mod.user = Last Modified
gen.mod.date = Modified Date
gen.na = N/A
gen.subformat = Select the format for student submission
group.issubmit = The selected group(s), as a group assignment (one group member submits on behalf of the entire group)
gen.groupassignment = Group Submission
gen.userassignment = Individual Submission
gen.section.info = Section (do not use for group submissions)
group.submission.not.found = Submission's Group Not Found
group.select.represent = You are representing the following group:
group.user.multiple.warning = The following users are in more than one group eligible to submit to this assignment:
group.must.member = You must be a member of at least one group to submit!
group.already.submitted = Group has already submitted!
group.user.multiple.error = At least one user is in more than one group. Please see below.
group.error.title = User in multiple groups!
group.error.message = You or one of your group members are members of more than one group eligible to submit to this assignment. Please inform your instructor that you will not be able to submit or view feedback until this error is resolved.
group.user.duplicate.error = ERROR: This user is in more than one eligible group!
group.user.grade.override = Grade override for {0}
gen.cant.change.after.draft = Once posted, an assignment cannot be switched between individual and group.
gen.history = History
gen.visible.date = Visible Date
gen.checked = Checked
gen.commented = Commented
gen.comments = Comments:
gen.attachments = Attachments
gen.regra = Re-grade
gen.regrading = Re-grading
gen.grarep = Grade Report
gen.grasca = Grade Scale
gen.hasbee = Assignment has been submitted on
gen.hidassinf = Hide assignment info
gen.honple = Honor pledge:
gen.hpa.title = Honor Pledge
gen.hpa.text = I have not given, received, or used any unauthorized assistance on this assignment.
gen.viewasstablesummary = Assignment settings.
gen.viewassliststudentsummary = List of students that have turned in assignments.
gen.viewassliststudentdetails = List of students with additional info.
gen.viewasslistreportsummary = List of graded student assignments.
gen.in = In
gen.inpro = In progress
gen.instr = Instructions
gen.instrcomment = Instructor Summary Comments
gen.to = to
gen.late = late
gen.late2 = - late
gen.lisofassto = List of assignments to be deleted
gen.mod = Modified
gen.modbyins = Modified by instructor
gen.new = New
gen.no = No
gen.noasscan = Assignments cannot be submitted after the close date.
gen.noatt = No attachments yet
gen.noattsubmitted=No attachments submitted
gen.nograd = No Grade
gen.notavail = This assignment is not available; Status: {0}<br>
gen.notope = Not Open
gen.notset = Not Set
gen.notsta = Not Started
gen.hpsta = Honor Pledge Accepted
gen.of = of
gen.open = Open
gen.orisub = Original submission text
gen.orisub2 = Original submission text with the instructor's comments inserted if applicable
gen.orisub3 = Last submission text with instructor comments inserted if applicable
gen.outof = out of
gen.peerReviews = Peer Reviews
gen.pending_resubmit = Resubmission Allowed
gen.pf = P/F
gen.pos = Post
gen.position = Position
gen.pre = Preview
gen.relea = Released
gen.released = Released
gen.resub = Re-submitted
gen.retu = Return
gen.backtolist = Back to list
gen.reorder = Reorder
gen.review = Review
gen.peerreview.subm4 = Peer Review Submitted
gen.peerreview.todo = Peer Review ({0}) Due {1}
gen.reviewer.who = Reviewer: {0} ({1})
gen.reviewer.countReview = Reviewer ({0})
gen.reordertitle = Organize Default Assignment List View
gen.retustud = Save and Release to Student
gen.retustudtit = Save and return comments and grade to student
gen.returned = Returned
gen.revi = Edit
gen.sav = Save
gen.savdra = Save Draft
gen.savdragra = Save and Don't Release to Student
gen.savdratit = Save comments and grade, but do not return to student yet
gen.sca = Scale
gen.score.display = <b>Score:</b> {0}
gen.sect = Section
gen.settfor = Settings for
gen.sorasc = Sort ascending
gen.sorbydue = Sort by due date
gen.sorbymodusr = Sort by Last Modified
gen.sorbymoddat = Sort by Modified Date
gen.sorbyremoveddate = Sort by Removed Date
gen.sortinstruct = Move an item within the list by clicking an arrow on the left or adjusting a drop-down menu. To save your changes, click Save at the bottom of the page.
gen.sorbygra = Sort by Grade
gen.sorbylas = Sort by Last Name
gen.sorbymax = Sort by max grade available
gen.sorbynumsub = Sort by number of submissions
gen.sortbyfor = Sort by audience
gen.sortbyforasc = Sort by audience ascending
gen.sortbyfordesc = Sort by audience descending
gen.sordes = Sort descending
gen.staass = Start assignment
gen.status = Status
gen.stuatt = Submitted Attachments
gen.student = Student
gen.students = Students
gen.stunam = Student Name
gen.stusub = Student Submissions
gen.submissionType= Submission Type
gen.stuvie = Student View
gen.stuvieof = Student view of the assignment
gen.stucantdo = Students cannot save or submit the assignment until the open date.
gen.stuwonsee = Students will not see this assignment until the viewable date.
gen.subm = Assignment Submission
gen.submission = Submission
gen.resubmission = Resubmission
gen.notes = Notes
gen.details = Details
gen.openquote = "
gen.closequote = "
gen.subm2 = Submissions
gen.subm3 = Submit
gen.subm4 = Submitted
gen.subm5 = Submitted Date
gen.subm6 = Graded Date:
gen.proceed = Proceed
gen.extension = Extension Deadline
gen.sumcom = Summary comments
gen.theare2 = There are no submissions.
gen.thearecur1 = There are currently no assignments at this location.
gen.thearecur2 = There are currently no submissions at this location.
gen.theassall4 = This assignment allows submissions using both the text box below and attached documents. Type your submission in the box below and/or use the Browse button or the "select files" button to include other documents. <b>Save frequently while working</b>.
gen.theassall6 = This assignment allows submissions using the text box below only. Type in your submission. <b>Save frequently while working</b>.
gen.yoursubwill = Your submission will be sent to {0} to be reviewed for plagiarism.
gen.yoursubwill.indexed = Your submission will be sent to {0} to be reviewed for plagiarism. It will be indexed to be compared against by other submissions.
gen.thesubswill = The submissions will be sent to {0} to be reviewed for plagiarism.
gen.thesubswill.indexed = The submissions will be sent to {0} to be reviewed for plagiarism. They will be indexed to be compared against by other submissions.
gen.subStudentPreview = This assignment has enabled student preview which allows students to submit as many papers as a draft as they wish. A draft paper report is only visible to the owner of the paper, however instructors will be able to see the number of draft submissions and the report scores of each draft. Also, if there is a due date, the most recent draft will automatically be submitted if the student has no other submissions. Students can submit a draft paper as their final submission at any time within the plagiarism report.
gen.onlythefoll = <li>Only the following file types will be accepted: {0}.</li>
gen.onlythefoll.turnitin = <li>The uploaded file must have a file extension, which is the text following the dot.</li><li>Attachments must be less than 100 MB in size (.txt attachments should be less than 2 MB), have a minimum of 20 words, and contain less than 800 pages.</li><li>The inclusion of vector images may result in problems when having the "originality report", we recommend .jpg format for images.</li>
gen.onlythefoll.urkund = <li>Maximum upload limit: {0}Mb per file.</li>
gen.theassinf = The assignment info
gen.title = Title
gen.view2 = View
gen.yes = Yes
gen.youmus = (You must respond to submit your assignment.)
gen.yousub = Your Submission
gen.review = Review
gen.reviewing = Reviewing
gen.submittedtext = Submitted Text
gen.visible = For
gen.applygrade=Apply
gen.viewallgroupssections = Entire Site
gen.toggle = toggle select all
gen.hideduedate = Hide due date from students
grad2 = Grade entered ''{0}'' is larger than the maximum grade allowed ''{1}''. Please make a correction or click the original button again to save the entered value ''{0}''.
grad3 = Graded
grade.title=Grades
gradingsub.belisthe = Below is the submission from a student. You can insert comments into this text by clicking in the box, then type your comments. Comments surrounded by double curly braces, {{<span class="highlight">like this</span>}}, will appear red to the student.
gradingsub.nosubmittedtext = There is no student submitted text.
gradingsub.opecliass = Open, click to close assignment instruction
gradingsub.prefee = Previous Feedback Comment
gradingsub.prefee2 = Instructor comments to previous submissions
gradingsub.prefeetex = Previous Feedback Text
gradingsub.prefeetex2 = Other previous submissions with instructor comments inserted if applicable
gradingsub.prefeetex3 = Previous submissions with instructor comments inserted if applicable
gradingsub.prefeedbackAttachments = Previous Returned Attachments
gradingsub.pregra = Previous Grade(s)
gradingsub.usethebel1 = Use the box below to enter additional summary comments about this submission.
gradingsub.usethebel2 = Use the box below to enter summary comments about this submission's attachment or the grade.
granotset = Grade Type Not Set
hassum = Assignment {0} has submissions.
hasDraftSum = Some students have started working on the assignment but have not submitted yet.
inlin = Inline only
inlinatt = Inline and Attachments
# months (used in chef_dateselectionwidget macro in VM_chef_library.vm)
jan = JAN
feb = FEB
mar = MAR
apr = APR
may = MAY
jun = JUN
jul = JUL
aug = AUG
sep = SEP
oct = OCT
nov = NOV
dec = DEC
dateselectionwidget.day = Select day
dateselectionwidget.month = Select month
dateselectionwidget.year = Select year
dateselectionwidget.hour = Select hour
dateselectionwidget.minute = Select minute
dateselectionwidget.ampm = Select AM or PM
letter = Letter grade
lisofass1 = Assignments
lisofass2 = Assignments by Student
listassig.allgroups = All groups
listassig.filterbygroup = Filter by group:
listassig.filter.ALL=All
listassig.filter.DRAFT=Drafts
listassig.filter.PUB_ALL=Published - All
listassig.filter.PUB_ACTIVE=Published - Active
listassig.filter.PUB_INACTIVE=Published - Inactive
listassig.searchgroup = Search group
listassig.sorbynum1 = Sort by number of total submissions
listassig.sorbynum2 = Sort by number of ungraded submissions
listassig.sorbynum3 = Sort by number of grades released
listassig.sorbyope=Sort by open date
listassig.sorbysec = Sort by section
list.sorbysta = Sort by status
listassig.sorbytit = Sort by title
listsub.grasub = Grade submission
listsub.nosub = No Submission
listsub.sorbyrel = Sort by Released
listsub.sorbysub = Sort by Submission Times
listsub.submitted.by = by
listsub.submitted.on.behalf = on behalf of
listsub.submitted = submitted
listsub.submitted.draft = saved draft
new = Add
new.title = Add new assignment
edit = - Edit
newass = new assignment
newassig.comfor = Complete the form and then choose 'Post'. An asterisk (<span class="reqStarInline" title="Required">*</span>) indicates required information.
newassig.opedat = Open Date
newassig.selectmessage = Press Enter, then use alt + up and down arrows to scroll through menu
newassig.tosel = To select more than one section: hold down the (PC - CTRL, Mac - Apple) key while clicking on the 2nd and subsequent sections.
newope = Updated open date for assignment ''{0}'' is {1}.
opedat = Open date for assignment ''{0}'' is {1}.
passfail = Pass/Fail
pass = Pass
permis = Permissions
plespethe1 = Please specify the assignment title.
plespethe2 = Please specify the grade.
plespethe3 = Please specify the maximum points.
plesuse0 = ''{0}'' is invalid. Please use correct grade string.
plesuse1 = Please use a number for the grade field.
plesuse2 = Please use only {0} decimal place(s) for the grade field.
plesuse3 = Please use a positive number or zero for the grade field.
plesuse4 = {0} is greater than the maximum value allowed by the system. Please enter a value no greater than {1}.
pleasee6 = Points must match assignments in the selected Gradebook category ({0})
pleaseselectlti = Please select an External Tool
points = Points
prevassig.hidass = Hide assignment
prevassig.hidstuvie = Hide student view
prevassig.preass = Previewing assignment...
prevassig.shoass = Show assignment
prevassig.shostuvie = Show student view
releas = Released
relgrad = Release Grades
relcommented = Release Commented
repsubmi.sorbysca = Sort by Scale
repsubmi.sorbytur = Sort by Turned In Date
return = Returned
setperfor = Set permissions for Assignments in worksite
somelsis_assignment = Someone else is editing this assignment ''{0}''.
somelsis_submission = Someone else is editing this submission ''{0}''.
somelsis_assignmentContent = Someone else is editing this assignment content ''{0}''.
somelsis_calendar = Someone else is editing this calendar.
sort.summary = Table holds items to be sorted. Second column holds link to move item up. Third: link to move down. Last: select to move item to specific location
sort.caption = List of resources to be sorted
sort.moveup = Move up
sort.movedn = Move down
stulistassig.asshasbee1 = (Assignment has been deleted)
stulistassig.selanass1 = The list of assignments below appears exactly as a student will see it. By clicking 'Submit as Student', you can work through the assignment exactly as a student will, including submitting the assignment.
stulistassig.selanass = Select an assignment to view details, start working or edit your previous work.
stulistsunbm.chotri = Click the triangle icon beside a student to view the student's status for all assignments.
stulistsunbm.hidstuass = Hide student's assignments/submissions
stulistsunbm.listhestu = List the student submission for every assignment. Column 1: student name - click to expand. When expanded, columns 2-5 display assignment title, submission, status and grade.
stulistsunbm.shostuass = Show student's assignments/submissions
stupresub.max = max
stuviewgrad.thegradet = The grading detail of assignment submission
stuviewsubm.asshasbee2 = Assignment has been graded/commented.
stuviewsubm.asshasbee3 = Assignment has been resubmitted on
stuviewsubm.asshasbee4 = Assignment has been returned on
stuviewsubm.asshasnot = Complete the form, then choose the appropriate button at the bottom.
stuviewsubm.assattonly = Add attachment(s), then choose the appropriate button at the bottom.
stuviewsubm.entbelo = Enter resubmission text below
stuviewsubm.plesub = Please submit again with your changes.
stuviewsubm.theassall2 = This assignment allows submissions by attaching documents only.
stuviewsubm.theclodat = The close date of the assignment has passed. You can no longer submit to this assignment.
stuviewsubm.youatt = Your attached submission
stuviewsubm.submissatt =Submission attachment(s)
stuviewsubm.listsummary=List of attachments. Column 1: attachment link; column 2: attachment properties; column 3: link to remove attachment from list
stuviewsubm.listsummary.simple=List of attachments. Column 1: attachment link; column 2: attachment properties;
stuviewsubm.removeatt=Remove
stuviewsubm.attfromcomputerlabel=Select a file from computer
stuviewsubm.attfromcomputerlabelmore=Select more files from computer
stuviewsubm.attfromserverlabel=or select files from 'Home' or site
stuviewsubm.attfromserverlabel.singular=or select a file from workspace or site
stuviewsubm.attfromserverlabelmore= or select more files from 'Home' or site
feedbacktext = Feedback Text
addfeedback = Add Feedback
stuviewsubm.submitvideoreminder=Don't forget to proceed after recording your video!
stuviewsubm.submitreminder=Don't forget to save or proceed!
stuviewsubm.modifytoresubmit=You may resubmit if you modify this submission.
stuviewsubm.reminder=Don't forget to submit your work! A confirmation message will be displayed after submission.
stuviewsubm.externaltool=This assignment launches an external tool that will provide a grade, please launch the tool below.
feedbackcomment = Feedback Comment
stuviewsubm.typesubhaschanged.inline = The submission type for this assignment has changed. This text from your previous submission is for your reference only and will NOT be included if you resubmit.
stuviewsubm.typesubhaschanged.attach = The submission type for this assignment has changed. These files from your previous submission are for your reference only and will NOT be included if you resubmit.
stuviewsubm.typesubhaschanged.singleUploadedFileOnly = The submission type for this assignment has changed to only accept a single file. To resubmit, select one file from your previous submission or upload a new file.
stuviewsubm.uploadnew = Upload a new file
# Taggable
tag.emptylist = There are no tags to display.
tag.tags = Tags
tag.list.summary = Table contains list of tags associated with current assignment.
theassiid_isnotval = The assignment id ''{0}'' is not valid.
theassiid_hasnotbee = The assignment id ''{0}'' has not been used.
theassicon = The assignment content is being edited by another user.
theisno = There is no such assignment.
theisnostudent = There is no student.
thiasshas = This assignment has no instructions. Please make a correction or click the original button to proceed.
ungra = Ungraded
unchecked=Unchecked
fail = Fail
viewassig.datcre = Date created
viewassig.datmod = Date modified
viewassig.shoassinf = Show assignment info
viewassig.theassall1 = This assignment allows both typed in text and/or attached documents.Type in your submission in the box below, and use the Browse button or the "select files" button to include other documents as part of your submission. <b>Save frequently while working</b>.
viewassig.theassall3 = This assignment allows submissions by attaching documents only. Use the Add Attachments button below to attach 1 or more documents.
viewassig.theassall5 = This assignment allows submissions using the text box below only. Please type in your submission and save frequently while working.
viewassig.viewass1 = Viewing assignment...
youarenot_addAssignment = You are not allowed to add assignment.
youarenot_addAssignmentContent = You are not allowed to add assignment content.
youarenot_removeAssignment = You are not allowed to remove the assignment id = ''{0}''.
youarenot11_c = You are not allowed to remove the assignment content id =
youarenot_removeSubmission = You are not allowed to remove the assignment submission id = ''{0}''
youarenot12 = You are not allowed to submit an answer.
youarenot13 = You are not allowed to submit an assignment.
youarenot_viewAssignment = You are not allowed to view the assignment ''{0}''.
youarenot_editAssignment = You are not allowed to edit the assignment ''{0}''.
youarenot_editSubmission = You are not allowed to edit the assignment submission ''{0}''.
youarenot_viewAssignmentContent = You are not allowed to view the assignment content ''{0}''.
youarenot_viewSubmission = You are not allowed to view the submission ''{0}''.
youarenot17 = You are revising an assignment after the due date.
youarenot18 = You have to check the honor pledge before submission.
youarenot19 = You are not allowed to reorder assignments.
youarenot20 = You are revising an assignment after the open date.
youarenot21 = You have to agree to the EULA to submit to {0}
youarenot4 = You are not allowed to create assignment submission.
youarenot5 = You are not allowed to duplicate assignment.
youarenot6 = You are not allowed to edit the assignment.
youmust1 = You must attach at least one document before submission.
youmust2 = You must either type in your answer in the text input or attach at least one document before submission.
youmust6 = You must choose the assignment(s) first, and then click the 'Remove Selected' button to delete the selected assignment(s).
youmust7 = You must type in your answer in the text input area before submission.
youmust8 = You must upload an attachment
youmust9 = You must record a video submission using the video recorder.
#added during legacy tool refactoring
list.show = Show
list.itemsper = items...
update = Update
removedAssignmentList = Trash
removeSelected = Remove Selected
publishSelected = Publish Selected
unpublishSelected = Unpublish Selected
selectAssignments = Select Assignments
restoreSelected = Restore Selected
hardRemoveSelected = Permanently Remove Selected
restoreConfirmation = The selected assignments will be restored. Would you like to proceed?
restoreWarning = <strong>Warning:</strong> when restoring an assignment with a Gradebook item, certain details such as the associated category, any Gradebook item comments, the extra credit setting, excused grades, and the grade log, cannot be restored. Please review the corresponding Gradebook item after restoring an assignment to configure any settings as necessary.
hardRemoveConfirmation = The selected assignments will be permanently removed and cannot be recovered. Would you like to proceed?
subasstudent = Submit as Student
alert.globalNavi = If you choose to exit without clicking any of the assignment submission navigation action buttons at the top or bottom of this page, you will lose your work. Please choose one of these buttons or navigate to your chosen page and abandon your work on this page.
viewassign = View Assignment
exampleassign = Assignment Preview
exampleassign2 = This is an example preview of how students will see the assignment. You may work through this assignment as a student would, including submitting it.
exampleassign3 = You must be a member of one of the groups in order to submit this preview, and your submission here will count as a real submission for that group.
assignmenttext = Assignment Text
submitforstudent = Submit on behalf of Student
submitforstudentnotallowed = Submit on behalf of Student (not available after due date)
resubmit = Resubmit
viewsubmission = View Submission
viewsubmissions = View Submissions
allowResubmit = Allow Resubmission
launchContentId = External Tool to launch
launchContentNewWindow = Load this tool in a new tab
launchContentTitle = Do you want to change the assignment title to:
allowExtension = Allow Extension
allowExtensionCaption = - If this student has not submitted yet, you can set a custom extended due date for this student only.
allowExtensionCaptionGrader = If this student has not submitted yet, you can set a custom extended due date for this student only.
allowGradeOverride = Assign Grade Overrides
allowVisibleDate = Use Visible Date
gen.first = First
gen.previous = Previous
gen.next = Next
gen.last = Last
gen.remove = Remove
gen.remove.q = Remove?
addtogradebook = Add to Gradebook
addtogradebook.wrongGradeScale = Gradebook integration is only available when Grade Scale is set to Points.
addtogradebook.nonUniqueTitle = The assignment {0} has been created but has not been associated with a new Gradebook item due to an existing item of the same name. Please edit the assignment title.
addtogradebook.illegalPoints = The assignment could not be added to Gradebook. To add to Gradebook, edit the assignment and enter a value greater than zero for points.
addtogradebook.titleInvalidCharacters = The assignment {0} has been created but has not been associated with a new Gradebook item due to assignment name contain invalid characters for a Gradebook item: '*', '[', ']' or start with a '#'. Please edit the assignment title.
addtogradebook.alertMessage = Exception while getting site gradebook, exception below:
addtogradebook.previouslyAssoc = You are trying to associate this assignment with an already associated Gradebook item and scores might be overwritten. Do you want to continue?
date.invalid = Invalid date setting for {0}.
date.closedate = close date
date.resubmission.closedate = resubmission close date
date.allpurpose.releasedate = release date of All Purpose item
date.allpurpose.retractdate = retract date of All Purpose item
gen.viewing = Viewing
gen.items = items
gen.required=required
gen.notrequired= Not required
download.feedback.attachment = Feedback Attachment(s)
download.spreadsheet.title = Assignment Submission Excel File
download.spreadsheet.site = Site:
download.spreadsheet.date = Download date:
download.spreadsheet.column.userid = User Id
download.spreadsheet.column.name = Name
download.spreadsheet.column.asn.title = Assignment
download.spreadsheet.column.asn.scale = Scale
download.spreadsheet.column.asn.grade = Grade
download.spreadsheet.column.submitted = Submitted
download.spreadsheet.column.late = Late
# AssignmentActivityProducer
## the column headers in grades.csv file in zip download
grades.id=Display ID
grades.eid=ID
grades.lastname=Last Name
grades.firstname=First Name
grades.grade=grade
grades.members=Users
#group related variables
displayto.site = Each individual member of the site
displayto.selected = Each individual member of the selected group(s)
range.allgroups = site
group = Group
groups = Groups
group.editsite.nopermission = Cannot edit the group state due to site permissions.
group.list.summary = Table contains list of groups. First will contain checkboxes, second will contain the group name, third the group description. Header links can be used to sort
group.list.descr = Description
java.alert.youchoosegroup = You need to choose at least one group.
nostudent = There is no student in the site.
grading=Grading
grading.no=Do not add assignment to Gradebook
grading.gradeAssignment=Grade this assignment
grading.send=Send released grades to the Gradebook
grading.add=Create new Gradebook item
grading.associate=Associate with existing Gradebook item
grading.associate.disabled=(This option is not available unless the grading scale is "Points" and a point value has been assigned.)
grading.associate.alert=You must select a Gradebook item.
grading.select=Select a Gradebook Item
grading.alert.draft.beforeclosedate=The Accept Until Date has not yet passed, and this assignment may still be worked on by the student. Are you sure you want to grade?
grading.unassigned=Unassigned
grading.ofcategory=of Category
grading.categorylist=Add to Gradebook category
accessSectionHeader=Assign To
grading.alert.multiTab=Your grade, comments and feedback have not been saved. You will need to enter them again. You can only open one student submission at a time. If you open a second student's work before leaving the first student's submission, the first submission cannot be graded until you close all the submissions, and then open it. To avoid this problem, please do not open multiple browser-windows or tabs while you are grading. We recommend that you close and restart your browser, and then log back into the system, before continuing with your grading.
grading.reminder=Important Reminder:
grading.reminder.body=Please do not grade assignments with multiple browser windows or tabs. Grade assignments and navigate the system with only one browser window.
grading.reminder.anon=Grading for this peer review is anonymous, so do not post your name in the reviewer comments section. However, please be aware that your identity, such as your name, will be displayed to the instructor.
grading.type.change.confirm=Existing graded submissions were found. Changing the grade type for this assignment will result in the permanent loss of these existing grades. Please make a correction or click on the original button again to proceed.
grading.userphoto=User photo for {0}
## SAK-17606
grading.anonymous=Hide submitters' identities (e.g. for anonymous grading)
grading.anonymous.title=anonymous
submitted.date.redacted=(date withheld)
allow.resubmit.number=Number of resubmissions allowed
allow.resubmit.number.unlimited=Unlimited
allow.resubmit.closeTime=Accept Resubmission Until
assignment.copy = Copy
## max grade
grade.max=max
## no-submission grade
non.submission.grade=Found {0} participant(s). Assign this grade to participants without:
non.submission.grade.select=Please select default grade:
## for not graded non-electronic submission grades
not.graded.non.electronic.submission.grade=Found {0} participant(s). Assign this grade to ungraded non-electronic submissions:
##################UPV added
not_allowed_to_submit=You are not allowed to submit to this assignment.
### Non-electronic submission
nonelec=Non-electronic
nonelec_instruction=This assignment does not accept online submissions. Contact your instructor for additional instructions.
nonelec_instruction2=This non-electronic assignment does not accept student submissions.
## on the submission confirmation page
confirm.savesubmission.title = Saved Assignment Confirmation
confirm.submission.title=Submission Confirmation
confirm.savesubmission.success=You have successfully saved your work but NOT submitted yet. To complete submission, you must select the Submit button.
confirm.submission.success=You have successfully submitted your work.
confirm.submission.label.user=User:
confirm.submission.label.classsite=Class site:
assignment.title=Assignment:
confirm.savesubmission.label.submission.id = Saved Assignment ID:
submission.id=Submission ID:
confirm.savesubmission.include=Your saved assignment included the following:
confirm.submission.include=Your submission included the following:
confirm.savesubmission.notext=No saved assignment Text
confirm.submission.notext=No submission text
confirm.savesubmission.attachments=Saved attachments:
confirm.submission.email=You will receive an email confirmation containing this information.
confirm.submission.email.noEmailAddress=No email confirmation containing this information could be sent to you due to missing email address.
confirm.submission.button=OK
receive.confirm.submission.email.options=Submission Notification Email Options:
receive.confirm.submission.email.each=Send a notification email for each student submission
receive.confirm.submission.email.digest=Send one email per day summarizing notifications for student submissions
receive.confirm.submission.email.none=Do not send notification emails for any student submissions
# on the download/upload all page, most of the attributes are shared between upload and download process
uploadall.title = Upload All
uploadall.instruction=Select an archive file to upload, choose options, and then click 'Upload' at the bottom. Required items marked with
uploadall.instruction2=The archive file should contain a folder for each student.
uploadall.instruction3=Download Template
uploadall.instruction4=Each folder can contain a comments.txt file, the student's submission with instructor comments you have added, and/or other files you want to return with the student's submission.
uploadall.instruction5=The upload time needed is related to the zip file size (max {0} MB) and the connection speed. If you only need to upload a subset of the zip file, please limit your zip file size first by choosing options accordingly in the Download All process.
downloadall.instruction=Choose download options, and then click 'Download' at the bottom.
uploadall.choose.file=File:
uploadall.choose.file2=Choose which elements in the archive file to upload
uploadall.choose.file.studentSubmissionText=Student submission text (original student submitted text, possibly containing instructor added comments)
uploadall.choose.file.studentSubmissionAttachment=Student submission attachment(s)
uploadall.choose.file.gradeFile=Grade file (file at top level of archive)
uploadall.choose.file.gradeFile.csv=CSV format, file grades.csv
uploadall.choose.file.gradeFile.excel=EXCEL format, file grades.xls
uploadall.choose.file.feedbackTexts=Feedback text (the inline comments with student submission)
uploadall.choose.file.feedbackComments=Feedback comments (comments.txt file if available in student's folder. Comments are put into the Instructor Comments field for each student's submission)
uploadall.choose.file.includeNotSubmitted=Include students who have not yet submitted
uploadall.choose.file.confirm = You have selected the archive file for uploading. Files contained in the archive will be uploaded to the corresponding student submission for the assignment.
uploadall.releaseOption=Select release option
uploadall.releaseOption.yes=Release uploaded grades and feedback comments to students
uploadall.releaseOption.no=Do not release uploaded information - I'll release it later
uploadall.button.upload=Upload
downloadall.button.download=Download
uploadall.alert.choose.element=You must choose at least one element in the archive file to upload.
uploadall.alert.wrongZipFormat=ZIP file is not in correct format. Please ensure that ZIP file contains student folders or grades.csv file at the root level.
uploadall.alert.incorrectFormat=ZIP file is not in correct format.
uploadall.alert.invalidUserId=Please ensure that user id's correctly match those in the site and the folders are in the top level of the zip (not nested).
uploadall.alert.noGradeFile=Please ensure there is a grade file and correct folder structure.
uploadall.alert.nocsv=CSV grades file format was selected, but no grades.csv file was found at the root level.
uploadall.alert.noexcel=Excel grades file format was selected, but no grades.xls file was found at the root level.
downloadall.alert.choose.element=You must choose at lease one element in the download options.
uploadall.alert.zipFile=You have not selected a zip archive file. You must select either a .zip or a .sit archive file as the upload file.
uploadall.note=NOTICE: If you switch between languages in your preferences, for example English to Spanish, you will need to upload this archive in the same language as it was downloaded (or re-download and use a new archive).
downloadall.note=NOTICE: If you switch between languages in your preferences, for example English to Spanish, you will need to upload this archive in the same language as it was downloaded (or re-download and use a new archive).
# SAK-19147 Assignments : Download All - flat file structure
uploadall.folders.yes=Save submissions in separate user folders
uploadall.folders.no=Save all selected download options in one folder (This CANNOT be loaded back into Assignments)
review.use = Use {0}
review.switch.ne.1 = {0} is not available for non-electronic submissions.
review.switch.ne.2 = {0} is not available for non-electronic submissions. "Use Turnitin" has been deselected below.
review.allow = Allow students to view report
review.report = Report
review.report.expand = Expand reports
review.report.collapse = Collapse reports
review.report.error.expand=Expand troubleshooting information
review.report.error.collapse=Collapse troubleshooting information
review.report.urkund.optoutlink = Exempt from Urkund
review.reports={0} reports
review.submit.papers.repository=Submit papers to the following repository:
review.submit.papers.repository.none=None
review.submit.papers.repository.standard=Standard Paper Repository
review.submit.papers.repository.institution=Institution Paper Repository
review.originality.reports=Generate originality reports:
review.originality.reports.immediately=Immediately
review.originality.reports.due=On Due Date
review.originality.reports.immediately_and_due=Immediately and On Due Date
review.originality.check=Check originality against:
review.originality.check.turnitin=Turnitin paper repository
review.originality.check.internet=Current and archived internet
review.originality.check.pub=Periodicals, journals, and publications
review.originality.check.institution=Institution-specific repository
review.exclude.bibliographic=Exclude bibliographic materials from Similarity Index for all papers in this assignment
review.exclude.quoted=Exclude quoted materials from Similarity Index for all papers in this assignment
review.exclude.quoted.help=Set the default for all reports submitted to this assignment. To reduce the number of false matches, we recommend excluding quotes by default. You will still retain the ability to toggle this option for each individual report after submission.
review.exclude.self.plag=Exclude self plagiarism within course
review.exclude.self.plag.help=Set the default for all reports submitted to this assignment. To reduce the number of false matches, we recommend excluding self plagiarism in the same course by default. You will still retain the ability to toggle this option for each individual report after submission. Self plagiarism will always be checked against the user's reports in other courses.
review.store.inst.index=Store paper in institutional index
review.store.inst.index.help=Set the default for all reports submitted to this assignment. If you choose not to store reports in your institutional index, the reports will not be used to check for plagiarism against other student reports in your institution. Once a report has been submitted, you cannot change this option for that report.
review.studentPreview=Enable Student Preview
review.studentPreview.help=If you choose to enable student preview, users will be able to review and re-submit their papers until the due date. Instructors will only be able to see the final submission but a record of the scores for each paper will show in the report logs. If the assignment has a due date, the student's most recent draft will automatically be submitted if there are no submissions from a student. It is recommended that you set a due date for this assignment and allow the students to view their reports.
review.exclude.smallMatches=Exclude small matches
review.exclude.matches.by=Exclude matches by:
review.exclude.matches.wordmax=Up to a Word Count of:
review.exclude.matches.percentage=Percentage:
review.exclude.matches.value_error=A value from 0-100 is required when excluding small matches for Turnitin.
review.exclude.matches.header=Exclusion options:
review.file.not.accepted={0} will not accept the uploaded file. Please upload a file from the allowed file types: {1}. {2}
review.file.not.accepted.turnitin=The uploaded file must have a file extension, which is the text following the dot. Attachments must be less than 100 MB in size, have a minimum of 20 words, and contain less than 800 pages.
review.eula.agreement=I have read and agree to the following
review.eula=End User License Agreement
turnitinoc.exclude.header=Exclude from Similarity Reports
turnitinoc.exclude.quoted=Quotes
turnitinoc.exclude.bibliography=Bibliography
turnitinoc.index.header=Submission Indexing
turnitinoc.index.info=Indexed submissions will be available for comparison in Similarity Reports
turnitinoc.index.all=Index all submissions
turnitinoc.generate.header=Generate Similarity Reports
turnitinoc.instructions=Learn more about Turnitin settings
turnitinoc.instructions.url=https://help.turnitin.com/integrity/administrator/sakai.htm
gen.sorbyreview = Sort by review
gen.rev = TurnItIn
review.notavail = Not available yet
review.viewreport = View Report
review.title = {0} Plagiarism Service
review.noreport = no report
review.contentReviewIndicator=Originality of submissions will be verified by {0}.
review.required=Please enter required information for the {0} Plagiarism Service settings.
## notification email content
noti.subject.label=Subject:
noti.subject.content=Email notification for assignment submission
noti.site.title=Site Title:
noti.site.url=Site URL:
noti.assignment.duedate=Assignment Due Date:
noti.student=Student:
noti.submit.time=Submitted on:
noti.archive.empty=Archive is empty or encrypted.
## navigation labels
nav.prev=< Previous
nav.list=Return to List
nav.next=Next >
nav.message=(Changes will be saved)
nav.header = Navigate Submissions
nav.prev.ungraded = < Previous Ungraded
nav.next.ungraded = Next Ungraded >
nav.view.subsOnly = Navigate between students with submissions only
gen.opendate.annc = Announce the open date
## supplement
supplement = Supplement Items
extraNodesRequired = Please enter required information.
additional_information = Additional information
## model answer
modelAnswer = Model Answer
modelAnswer.instruction=Provide a model answer or a solution to the assignment
modelAnswer.show_to_student.prompt=Show to students
modelAnswer.show_to_student.tooltip=Choose when to show the model answer to students
modelAnswer.show_to_student.0=--select one--
modelAnswer.show_to_student.1=Before student starts assignment
modelAnswer.show_to_student.2=After student submits
modelAnswer.show_to_student.3=After submission is graded and returned
modelAnswer.show_to_student.4=After accept-until date
modelAnswer.alert.modelAnswer=Please provide model answer text.
modelAnswer.alert.showto=Please choose proper time for showing model answer to students.
## private note
note = Private Note
note.label = Private Notes
note.instruction = You can use a note to track assignment issues, thoughts, etc. Available to those you specify while grading.
note.to.prompt = Share
note.to.tooltip = Choose who to show this note to
note.to.0 = -- select one --
note.to.1 = Keep private to myself
note.to.2 = Allow other instructors to read
note.to.3 = Allow other instructors to read and edit
note.alert.text=Please enter the private note text.
note.alert.to=Please choose share option for private note.
## all purpose of item
allPurpose = All Purpose Item
allPurpose.instruction = Information displayed at a specific time to whomever you choose.
allPurpose.show = Show this item
allPurpose.show.from = From
allPurpose.show.util = Until
allPurpose.show.date = Date:
allPurpose.show.time = Time:
allPurpose.show.hide = Hide this item
allPurpose.show.to = Show to
allPurpose.show.expand = Expand
allPurpose.show.collapse = Collapse
allPurpose.show.list = List
allPurpose.user.selection.count= selected
allPurpose.alert.title=Please enter title for the All Purpose item.
allPurpose.alert.text=Please enter information text for the All Purpose item.
allPurpose.alert.access=Please choose access list for the All Purpose item.
allPurpose.alert.release.afer.retract=The show start date of all purpose item cannot be set after the show until date.
all = All
allowResubmission.show = Show Settings for Allowing Resubmissions
allowResubmission.hide = Hide Settings for Allowing Resubmissions
allowResubmission.label = Set Resubmission Options for Multiple Students
allowResubmission.groups.label = Set Resubmission Options for Multiple Groups
allowResubmission.instruction = Select students from the table below. Set the number of resubmissions each student is allowed and the date they can resubmit by. Click "Update" to allow the selected students to resubmit to this assignment.
allowResubmission.groups.instruction = Select groups from the table below. Set the number of resubmissions each group is allowed and the date they can resubmit by. Click "Update" to allow the selected groups to resubmit to this assignment.
allowResubmission.nouser = Please choose at least one user or group from the table below for setting the resubmission options.
allowResubmission.toggleall = Select/unselect all to allow for resubmission
allowResubmission.select.student = Allow resubmission from
#SAK-31405
assignment.print=Print
assignment.additional.notes.file.title=additional-info
assignment.additional.notes.export.title=Additional Notes about Students
assignment.additional.notes.export.header=Additional notes have been made about the following students:
assignment.additional.notes.export.footer=The markers of their assignments should be notified, so this information can be taken into account.
assignment.additional.notes.students.explanation= Your student record shows that the following notes apply to you: {0}
## single file upload
singleatt = Single Uploaded File only
att.upl = Choose File:
size.exceeded = The upload size limit of {0} MB has been exceeded.
notpermis4 = You do not have proper permissions to add resources.
alert.toolong = The name ''{0}'' is too long.
failed = Operation could not be completed at this time.
failed.upload = Upload of file failed.
failed.diskio=The file upload process is not finished due to server disk i/o error.
choosefile7 = Please choose the file to attach.
# External Tool - SAK-32679
externaltool = External Tool (LTI)
external.tool.header=External tool
external.tool.detail=<b>Note:</b> When you create an assignment that launches an external tool, not all of the assignment features are available. Unsupported features are hidden when you select this assignment type.
external.tool.label=External Tool (LTI) Options
external.tool.placeholder=No tool selected
external.tool.find=Select External Tool (LTI)
external.tool.goto=Go to External Tool
external.tool.deleted=*Deleted*
external.tool.new.window=Launch External Tool in New Window
external.tool.launched=External Tool has launched, please refresh page to re-launch
external.tool.expired=Launch has expired, please refresh page
external.tool.notavail=This assignment is not available
external.tool.missing=The external tool is not configured, check with your instructor
external.tool.resubmission=You may want allow unlimited resubmissions for LTI assignments so students can launch the tool multiple times. Each tool may have different behavior in regards to what constitutes a "submission".
## link to calendar
assign_due_event_desc=Assignment {0} is due on {1}.
## confirm success grading of submission
saved_grading=Comments and/or grade have been saved.
## Advise to use the navigation on the page
use_form_navigation=Please use previous and next buttons on page to navigate assignments.
## cancel changes button
cancel_changes=Cancel Changes
send.submission.releasegrade.email.options=Released Grade Notification Email Options:
send.submission.releasegrade.email.none=Do not send notification email to student when the grade is released
send.submission.releasegrade.email=Send notification email to student when the grade is released
noti.releasegrade.subject.content=Email notification for assignment released grade
#noti.releasegrade.text=Your submission to assignment ''{0}'' has been returned. Please go to {1} to view details.
noti.releasegrade.text=Your submission to assignment ''{0}'' has been returned. To view the details, click
noti.here=here
not_allowed_to_grade_in_gradebook=The assignment is associated with a Gradebook item. Since you are not allowed to grade in Gradebook, you cannot grade here in Assignments tool. However, you can still update the comment area and upload attachment(s) for grading purposes.