Newer
Older
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
# Translation for Django RELATE package (https://github.com/inducer/relate/)
# Language: de
# Copyright (C) 2015 Andreas Kloeckner, Dong Zhuang
# This file is distributed under the same license as the RELATE package.
# Dong Zhuang <dzhuang.scut@gmail.com>, 2015.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-18 18:54+0800\n"
"PO-Revision-Date: 2015-05-18 18:54+0800\n"
"Last-Translator: NONE\n"
"Language-Team: NONE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: .\course\admin.py:104 .\course\admin.py:278
msgid "First name"
msgstr ""
#: .\course\admin.py:110 .\course\admin.py:284
msgid "Last name"
msgstr ""
#: .\course\admin.py:268
msgid "Tags must belong to same course as participation."
msgstr ""
#: .\course\admin.py:387 .\course\admin.py:505 .\course\admin.py:589
#: .\course\admin.py:702 .\course\admin.py:776
#: .\course\templates\course\gradebook-single.html:17 .\course\views.py:464
msgid "Participant"
msgstr ""
#: .\course\admin.py:482 .\course\admin.py:584 .\course\admin.py:692
#: .\course\admin.py:771 .\course\models.py:248
msgid "Course"
msgstr ""
#: .\course\admin.py:487 .\course\flow.py:1403 .\course\models.py:416
#: .\course\models.py:443 .\course\models.py:802 .\course\models.py:868
#: .\course\models.py:975 .\course\templates\course\gradebook-opp-list.html:26
#: .\course\templates\course\gradebook-single.html:130 .\course\views.py:309
#: .\course\views.py:392 .\course\views.py:468
msgid "Flow ID"
msgstr ""
#: .\course\admin.py:496 .\course\models.py:539
#: .\course\templates\course\gradebook-single.html:210
msgid "Page ID"
msgstr ""
#: .\course\admin.py:503
msgid "anonymous"
msgstr ""
#: .\course\admin.py:510
msgid "Has answer"
msgstr ""
#: .\course\admin.py:515
msgid "Flow Session ID"
msgstr ""
#: .\course\admin.py:697
msgid "Opportunity"
msgstr ""
#. Translators: "TA" is short for Teaching Assistant.
#: .\course\analytics.py:57 .\course\analytics.py:415
#: .\course\analytics.py:452
msgid "must be at least TA to view analytics"
msgstr ""
#: .\course\analytics.py:105
msgctxt "No data"
msgid "None"
msgstr ""
#: .\course\analytics.py:114
msgctxt "Value of grade"
msgid "value greater than max"
msgstr ""
#: .\course\analytics.py:122
msgctxt "Value of grade"
msgid "value smaller than min"
msgstr ""
#: .\course\analytics.py:240 .\course\analytics.py:384
msgctxt "Status of session"
msgid "in progress"
msgstr ""
#: .\course\analytics.py:378
msgctxt "Minute (time unit)"
msgid "min"
msgstr ""
#: .\course\apps.py:8
msgid "Course module"
msgstr ""
#: .\course\auth.py:112
msgid "Error while impersonating."
msgstr ""
#. Translators: information displayed when select user
#. for impersonating, you can use your prefered
#. style. For example %(user_lastname)s,
#. %(user_firstname)s (user_email)s, but all three
#. strings should be used.
#: .\course\auth.py:128 .\course\views.py:442
#, python-format
msgid "%(user_email)s - %(user_lastname)s, %(user_firstname)s"
msgstr ""
#: .\course\auth.py:138
msgid "Select user to impersonate."
msgstr ""
#: .\course\auth.py:139 .\course\templates\course\grade-import-preview.html:18
msgid "User"
msgstr ""
#: .\course\auth.py:141
msgid "Impersonate"
msgstr ""
#: .\course\auth.py:149
msgid "Already impersonating someone."
msgstr ""
#: .\course\auth.py:158
#, python-format
msgid "Now impersonating '%s'."
msgstr ""
#: .\course\auth.py:167 .\relate\templates\base.html:78
msgid "Impersonate user"
msgstr ""
#: .\course\auth.py:177 .\relate\templates\base.html:76
msgid "Stop impersonating"
msgstr ""
#: .\course\auth.py:183
msgid "Not currently impersonating anyone."
msgstr ""
#: .\course\auth.py:190
msgid "No longer impersonating anyone."
msgstr ""
#: .\course\auth.py:199
msgid "Stop impersonating user"
msgstr ""
#: .\course\auth.py:271 .\course\templates\course\course-page.html:38
#: .\course\templates\course\flow-start.html:186
#: .\course\templates\course\login.html:7 .\relate\templates\403.html:14
#: .\relate\templates\base.html:104
msgid "Sign in"
msgstr ""
#: .\course\auth.py:285
msgid "Username"
msgstr ""
#: .\course\auth.py:295 .\course\auth.py:380
msgid "Send email"
msgstr ""
#: .\course\auth.py:302 .\course\auth.py:386
msgid "password-based sign-in is not being used"
msgstr ""
#: .\course\auth.py:312
msgid "That user name is already taken."
msgstr ""
#: .\course\auth.py:317
#, python-format
msgid ""
"That email address is already in use. Would you like to <a href='%s'>reset "
"your password</a> instead?"
msgstr ""
#: .\course\auth.py:352 .\course\auth.py:419 .\course\auth.py:564
#: .\course\templates\course\analytics-flow.html:5
#: .\course\templates\course\analytics-flows.html:5
#: .\course\templates\course\analytics-page.html:5
#: .\course\templates\course\broken-code-question-email.txt:12
#: .\course\templates\course\calendar.html:8
#: .\course\templates\course\course-base.html:8
#: .\course\templates\course\flow-completion-grade.html:6
#: .\course\templates\course\flow-completion.html:6
#: .\course\templates\course\flow-confirm-completion.html:6
#: .\course\templates\course\flow-page.html:9
#: .\course\templates\course\flow-start.html:6
#: .\course\templates\course\grade-flow-page.html:7
#: .\course\templates\course\gradebook-by-opp.html:8
#: .\course\templates\course\gradebook-opp-list.html:8
#: .\course\templates\course\gradebook-participant-list.html:7
#: .\course\templates\course\gradebook-participant.html:7
#: .\course\templates\course\gradebook-single.html:5
#: .\course\templates\course\gradebook.html:7
#: .\course\templates\course\grading-statistics.html:5
#: .\course\templates\course\home.html:6
#: .\course\templates\course\home.html:30
#: .\course\templates\course\sandbox-page.html:17
#: .\course\templates\course\sign-in-email.txt:18
#: .\relate\templates\admin\base_site.html:5 .\relate\templates\base.html:15
#: .\relate\templates\base.html.py:60 .\relate\templates\maintenance.html:6
msgid "RELATE"
msgstr ""
#: .\course\auth.py:353
msgid "Verify your email"
msgstr ""
#: .\course\auth.py:359 .\course\auth.py:426 .\course\auth.py:570
msgid "Email sent. Please check your email and click the link."
msgstr ""
#: .\course\auth.py:368
msgid "Sign up"
msgstr ""
#: .\course\auth.py:374 .\course\auth.py:515 .\course\models.py:385
msgid "Email"
msgstr ""
#: .\course\auth.py:401
msgid "Email address is not known."
msgstr ""
#: .\course\auth.py:420
msgid "Password reset"
msgstr ""
#: .\course\auth.py:434 .\course\auth.py:505
msgid "Reset Password"
msgstr ""
#: .\course\auth.py:441
msgid "Password"
msgstr ""
#: .\course\auth.py:443
msgid "Password repeat"
msgstr ""
#: .\course\auth.py:449 .\course\auth.py:628 .\course\auth.py:641
#: .\course\templates\course\course-page.html:30
#: .\course\templates\course\home.html:22 .\course\versioning.py:388
msgid "Update"
msgstr ""
#: .\course\auth.py:457
msgid "Passwords do not match"
msgstr ""
#: .\course\auth.py:462 .\course\auth.py:527 .\course\auth.py:584
msgid "email-based sign-in is not being used"
msgstr ""
#: .\course\auth.py:466 .\course\auth.py:590
msgid "Invalid sign-in token. Perhaps you've used an old token email?"
msgstr ""
#: .\course\auth.py:468 .\course\auth.py:476 .\course\auth.py:481
#: .\course\auth.py:592 .\course\auth.py:597
msgid "invalid sign-in token"
msgstr ""
#: .\course\auth.py:480 .\course\auth.py:596
msgid "Account disabled."
msgstr ""
#: .\course\auth.py:491 .\course\auth.py:603
msgid ""
"Successfully signed in. Please complete your registration information below."
msgstr ""
#: .\course\auth.py:498 .\course\auth.py:610
msgid "Successfully signed in."
msgstr ""
#: .\course\auth.py:521
msgid "Send sign-in email"
msgstr ""
#: .\course\auth.py:564
#, python-format
msgid "Your %(RELATE)s sign-in link"
msgstr ""
#: .\course\auth.py:662 .\course\auth.py:672
msgid "Profile data saved."
msgstr ""
#: .\course\calendar.py:52 .\course\calendar.py:155 .\course\calendar.py:237
msgid "only instructors and TAs may do that"
msgstr ""
#. Translators: format of event kind in Event model
#: .\course\calendar.py:76 .\course\calendar.py:217 .\course\models.py:271
msgid "Should be lower_case_with_underscores, no spaces allowed."
msgstr ""
#: .\course\calendar.py:78 .\course\calendar.py:219
msgctxt "Kind of event"
msgid "Kind of event"
msgstr ""
#: .\course\calendar.py:82
msgctxt "Starting time of event"
msgid "Starting time"
msgstr ""
#: .\course\calendar.py:84
msgid "Duration in minutes"
msgstr ""
#: .\course\calendar.py:87
msgid "Weekly"
msgstr ""
#: .\course\calendar.py:89
msgctxt "Interval of recurring events"
msgid "Interval"
msgstr ""
#: .\course\calendar.py:91 .\course\calendar.py:221
msgctxt "Starting ordinal of recurring events"
msgid "Starting ordinal"
msgstr ""
#: .\course\calendar.py:93
msgctxt "Count of recurring events"
msgid "Count"
msgstr ""
#: .\course\calendar.py:99
msgid "Create"
msgstr ""
#: .\course\calendar.py:127
#, python-format
msgid "'%(event_kind)s %(event_ordinal)d' already exists"
msgstr ""
#: .\course\calendar.py:142
msgctxt "Unkown time interval"
msgid "unknown interval"
msgstr ""
#: .\course\calendar.py:185 .\course\calendar.py:197
msgid "No events created."
msgstr ""
#: .\course\calendar.py:203
msgid "Events created."
msgstr ""
#: .\course\calendar.py:211 .\course\templates\course\course-base.html:90
msgid "Create recurring events"
msgstr ""
#: .\course\calendar.py:227
msgid "Renumber"
msgstr ""
#: .\course\calendar.py:269
msgid "Events renumbered."
msgstr ""
#: .\course\calendar.py:272
msgid "No events found."
msgstr ""
#: .\course\calendar.py:279 .\course\templates\course\course-base.html:91
msgid "Renumber events"
msgstr ""
#: .\course\constants.py:38
msgctxt "User status"
msgid "Unconfirmed"
msgstr ""
#: .\course\constants.py:39
msgctxt "User status"
msgid "Active"
msgstr ""
#: .\course\constants.py:57
msgctxt "Participation role"
msgid "Instructor"
msgstr ""
#: .\course\constants.py:59
msgctxt "Participation role"
msgid "Teaching Assistant"
msgstr ""
#: .\course\constants.py:61
msgctxt "Participation role"
msgid "Student"
msgstr ""
#: .\course\constants.py:63
msgctxt "Participation role"
msgid "Observer"
msgstr ""
#: .\course\constants.py:65
msgctxt "Participation role"
msgid "Auditor"
msgstr ""
#: .\course\constants.py:79
msgctxt "Participation status"
msgid "Requested"
msgstr ""
#: .\course\constants.py:81
msgctxt "Participation status"
msgid "Active"
msgstr ""
#: .\course\constants.py:83
msgctxt "Participation status"
msgid "Dropped"
msgstr ""
#: .\course\constants.py:85
msgctxt "Participation status"
msgid "Denied"
msgstr ""
#: .\course\constants.py:112
msgctxt "Flow expiration mode"
msgid "End session and grade"
msgstr ""
#: .\course\constants.py:115
msgctxt "Flow expiration mode"
msgid "Keep session and apply new rules"
msgstr ""
#: .\course\constants.py:127
msgid "unknown expiration mode"
msgstr ""
#: .\course\constants.py:168
msgctxt "Flow permission"
msgid "View the flow"
msgstr ""
#: .\course\constants.py:170
msgctxt "Flow permission"
msgid "Submit answers"
msgstr ""
#: .\course\constants.py:172
msgctxt "Flow permission"
msgid "End session"
msgstr ""
#: .\course\constants.py:174
msgctxt "Flow permission"
msgid "Change already-graded answer"
msgstr ""
#: .\course\constants.py:177
msgctxt "Flow permission"
msgid "See whether an answer is correct"
msgstr ""
#: .\course\constants.py:180
msgctxt "Flow permission"
msgid "See the correct answer before answering"
msgstr ""
#: .\course\constants.py:183
msgctxt "Flow permission"
msgid "See the correct answer after answering"
msgstr ""
#: .\course\constants.py:186
msgctxt "Flow permission"
msgid "Set the session to 'roll over' expiration mode"
msgstr ""
#: .\course\constants.py:198
msgctxt "Flow rule kind choices"
msgid "Session Start"
msgstr ""
#: .\course\constants.py:200
msgctxt "Flow rule kind choices"
msgid "Session Access"
msgstr ""
#: .\course\constants.py:202
msgctxt "Flow rule kind choices"
msgid "Grading"
msgstr ""
#: .\course\constants.py:240
msgctxt "Grade aggregation strategy"
msgid "Use the max grade"
msgstr ""
#: .\course\constants.py:242
msgctxt "Grade aggregation strategy"
msgid "Use the avg grade"
msgstr ""
#: .\course\constants.py:244
msgctxt "Grade aggregation strategy"
msgid "Use the min grade"
msgstr ""
#: .\course\constants.py:246
msgctxt "Grade aggregation strategy"
msgid "Use the earliest grade"
msgstr ""
#: .\course\constants.py:248
msgctxt "Grade aggregation strategy"
msgid "Use the latest grade"
msgstr ""
#: .\course\constants.py:265
msgctxt "Grade state change"
msgid "Grading started"
msgstr ""
#: .\course\constants.py:267
msgctxt "Grade state change"
msgid "Graded"
msgstr ""
#: .\course\constants.py:269
msgctxt "Grade state change"
msgid "Retrieved"
msgstr ""
#: .\course\constants.py:271
msgctxt "Grade state change"
msgid "Unavailable"
msgstr ""
#: .\course\constants.py:273
msgctxt "Grade state change"
msgid "Extension"
msgstr ""
#: .\course\constants.py:275
msgctxt "Grade state change"
msgid "Report sent"
msgstr ""
#: .\course\constants.py:277
msgctxt "Grade state change"
msgid "Do-over"
msgstr ""
#: .\course\constants.py:279
msgctxt "Grade state change"
msgid "Exempt"
msgstr ""
#: .\course\content.py:75
#, python-format
msgid "resource '%s' not found"
msgstr ""
#: .\course\content.py:251
msgid "I have no idea what a processing instruction is."
msgstr ""
#: .\course\content.py:526
#, python-format
msgid "invalid period: %s"
msgstr ""
#: .\course\content.py:700
#, python-format
msgid "page '%(group_id)s/%(page_id)s' in flow '%(flow_id)s'"
msgstr ""
#: .\course\content.py:753
#, python-format
msgid "repo page class must conist of two dotted components (invalid: '%s')"
msgstr ""
#: .\course\enrollment.py:62
msgid "can only enroll using POST request"
msgstr ""
#: .\course\enrollment.py:69
msgid "Course is not accepting enrollments."
msgstr ""
#: .\course\enrollment.py:74
msgid "Already enrolled. Cannot re-renroll."
msgstr ""
#: .\course\enrollment.py:82
msgid ""
"Your email address is not yet confirmed. Confirm your email to continue."
msgstr ""
#: .\course\enrollment.py:90
#, python-format
msgid "Enrollment not allowed. Please use your '%s' email to enroll."
msgstr ""
#: .\course\enrollment.py:137
msgid "New enrollment request"
msgstr ""
#: .\course\enrollment.py:144
msgid ""
"Enrollment request sent. You will receive notifcation by email once your "
"request has been acted upon."
msgstr ""
#: .\course\enrollment.py:150
msgid "Successfully enrolled."
msgstr ""
#: .\course\enrollment.py:185
msgid "Your enrollment request"
msgstr ""
#. Translators: how many enroll requests have ben processed.
#: .\course\enrollment.py:197
#, python-format
msgid "%d requests processed."
msgstr ""
#: .\course\enrollment.py:203
msgctxt "Admin"
msgid "Approve enrollment"
msgstr ""
#: .\course\enrollment.py:209
msgid "Deny enrollment"
msgstr ""
#: .\course\enrollment.py:220 .\course\models.py:390
#: .\course\templates\course\gradebook-participant-list.html:27
msgid "Role"
msgstr ""
#: .\course\enrollment.py:222
msgid "Enter fully qualified email addresses, one per line."
msgstr ""
#: .\course\enrollment.py:223
msgid "Emails"
msgstr ""
#: .\course\enrollment.py:229
msgid "Preapprove"
msgstr ""
#: .\course\enrollment.py:238
msgid "only instructors may do that"
msgstr ""
#: .\course\enrollment.py:276
#, python-format
msgid "%(n_created)d preapprovals created, %(n_exist)d already existed."
msgstr ""
#: .\course\enrollment.py:287
msgid "Create Participation Preapprovals"
msgstr ""
#: .\course\flow.py:78
msgid "cannot grade ungraded answer"
msgstr ""
#: .\course\flow.py:461 .\course\flow.py:1335
msgid "Can't end a session that's already ended"
msgstr ""
#: .\course\flow.py:495
msgid "Can't expire a session that's not in progress"
msgstr ""
#: .\course\flow.py:497
msgid "Can't expire an anonymous flow session"
msgstr ""
#: .\course\flow.py:535
#, python-format
msgid "invalid expiration mode '%(mode)s' on flow session ID %(session_id)d"
msgstr ""
#: .\course\flow.py:566
#, python-format
msgid "Counted at %(percent).1f%% of %(point).1f points"
msgstr ""
#: .\course\flow.py:632
msgid "Can't reopen a session that's already in progress"
msgstr ""
#: .\course\flow.py:635
msgid "Can't reopen anonymous sessions"
msgstr ""
#: .\course\flow.py:647
msgid "Can't open multiple sessions at once"
msgstr ""
#: .\course\flow.py:655
#, python-format
msgid ""
"Session reopened at %(now)s, previous completion time was '%(complete_time)"
"s'."
msgstr ""
#: .\course\flow.py:723
#, python-format
msgid "Session regraded at %(time)s."
msgstr ""
#: .\course\flow.py:739
msgid "cannot recalculate grade on in-progress session"
msgstr ""
#: .\course\flow.py:744
#, python-format
msgid "Session grade recomputed at %(time)s."
msgstr ""
#: .\course\flow.py:774
msgid "new session not allowed"
msgstr ""
#: .\course\flow.py:786
msgid "unrecognized POST action"
msgstr ""
#: .\course\flow.py:880
msgid "may not view other people's sessions"
msgstr ""
#: .\course\flow.py:899
msgid "Save answer"
msgstr ""
#: .\course\flow.py:906
msgid "Submit answer for grading"
msgstr ""
#: .\course\flow.py:910
msgid "Submit final answer"
msgstr ""
#: .\course\flow.py:919
msgid "Save answer and move on"
msgstr ""
#: .\course\flow.py:927
msgid "Save answer and finish"
msgstr ""
#: .\course\flow.py:940
msgid "could not find which button was pressed"
msgstr ""
#: .\course\flow.py:964
msgid ""
"No in-progress session record found for this flow. Redirected to flow start "
"page."
msgstr ""
#: .\course\flow.py:996
msgid "not allowed to view flow"
msgstr ""
#: .\course\flow.py:1008
msgid "Answer submission not allowed."
msgstr ""
#: .\course\flow.py:1017
msgid "Already have final answer."
msgstr ""
#: .\course\flow.py:1030
msgid "Answer saved."
msgstr ""
#: .\course\flow.py:1246
msgid "only POST allowed"
msgstr ""
#: .\course\flow.py:1252
msgid "may only change your own flow sessions"
msgstr ""
#: .\course\flow.py:1255
msgid "may only change in-progress flow sessions"
msgstr ""
#: .\course\flow.py:1260
msgid "invalid expiration mode"
msgstr ""
#: .\course\flow.py:1331
msgid "odd POST parameters"
msgstr ""
#: .\course\flow.py:1339
msgid "not permitted to end session"
msgstr ""
#: .\course\flow.py:1406
msgid ""
"If non-empty, limit the regrading to sessions started under this access "
"rules tag."
msgstr ""
#: .\course\flow.py:1408 .\course\models.py:455
msgid "Access rules tag"
msgstr ""
#: .\course\flow.py:1412
msgid "Regrade in-progress and not-in-progress sessions"
msgstr ""
#: .\course\flow.py:1414
msgid "Regrade in-progress sessions only"
msgstr ""
#: .\course\flow.py:1416
msgid "Regrade not-in-progress sessions only"
msgstr ""
#: .\course\flow.py:1418
msgid "Regraded session in progress"
msgstr ""
#: .\course\flow.py:1421 .\course\templates\course\gradebook-single.html:242
msgid "Regrade"
msgstr ""
#: .\course\flow.py:1439
msgid "must be instructor to regrade flows"
msgstr ""
#: .\course\flow.py:1469
#, python-format
msgid "%d sessions regraded."
msgstr ""
#: .\course\flow.py:1477
msgid ""
"This regrading process is only intended for flows that donot show up in the "
"grade book. If you would like to regradefor-credit flows, use the "
"corresponding functionality in the grade book."
msgstr ""
#: .\course\flow.py:1482
msgid "Regrade not-for-credit Flow Sessions"
msgstr ""
#: .\course\grades.py:60
msgid "must be enrolled to view grades"
msgstr ""
#: .\course\grades.py:73 .\course\grades.py:799
msgid "may not view other people's grades"
msgstr ""
#: .\course\grades.py:151 .\course\grades.py:174 .\course\grades.py:271
#: .\course\grades.py:468 .\course\grading.py:61
msgid "must be instructor or TA to view grades"
msgstr ""
#: .\course\grades.py:293
msgid "must be instructor or TA to export grades"
msgstr ""
#: .\course\grades.py:342
msgid "Rule tag"
msgstr ""
#: .\course\grades.py:346
msgid ""
"Only act on in-progress sessions that are past their access rule's due date "
"(applies to 'expire' and 'end')"
msgstr ""
#. Translators: see help text above.
#: .\course\grades.py:349
msgid "Past due only"
msgstr ""
#: .\course\grades.py:352
msgid "Expire sessions"
msgstr ""
#: .\course\grades.py:355
msgid "End sessions and grade"
msgstr ""
#: .\course\grades.py:357
msgid "Regrade ended sessions"
msgstr ""
#: .\course\grades.py:359
msgid "Recalculate grades of ended sessions"
msgstr ""
#: .\course\grades.py:473
msgid "opportunity from wrong course"
msgstr ""
#: .\course\grades.py:499 .\course\views.py:343 .\course\views.py:370
#: .\course\views.py:418
msgid "invalid operation"
msgstr ""
#: .\course\grades.py:515
#, python-format
msgid "%d session(s) expired."
msgstr ""
#: .\course\grades.py:524
#, python-format
msgid "%d session(s) ended."
msgstr ""
#: .\course\grades.py:532
#, python-format
msgid "%d session(s) regraded."
msgstr ""
#: .\course\grades.py:540
#, python-format
msgid "Grade recalculated for %d session(s)."
msgstr ""
#: .\course\grades.py:549 .\course\grades.py:866 .\course\grades.py:1172
#: .\course\versioning.py:442
msgctxt "Starting of Error message"
msgid "Error"
msgstr ""
#: .\course\grades.py:660 .\course\views.py:718
msgid "Set access rules tag"
msgstr ""
#: .\course\grades.py:664 .\course\models.py:832 .\course\models.py:880
#: .\course\models.py:1043 .\course\views.py:762
msgid "Comment"
msgstr ""
#: .\course\grades.py:668 .\course\templates\course\gradebook-single.html:256
msgid "Reopen"
msgstr ""
#: .\course\grades.py:703
#, python-format
msgid ""
"Session reopened at %(now)s by %(user)s, previous completion time was '%"
"(completion_time)s': %(comment)s."
msgstr ""
#: .\course\grades.py:726
msgid "Reopen session"
msgstr ""
#: .\course\grades.py:783
msgid "participation does not match course"
msgstr ""
#: .\course\grades.py:792
msgid "This grade is not shown in the grade book."
msgstr ""
#: .\course\grades.py:795
msgid "This grade is not shown in the student grade book."
msgstr ""
#: .\course\grades.py:802
msgid "grade has not been released"
msgstr ""