-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathbpsp.pot
2979 lines (2435 loc) · 92.6 KB
/
bpsp.pot
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-12-17 18:09+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: roles/bpsp-roles.class.php:27 roles/bpsp-roles.class.php:94
#: roles/bpsp-roles.class.php:181 roles/bpsp-roles.class.php:190
#: roles/roles.class.php:26 roles/roles.class.php:92 roles/roles.class.php:179
#: roles/roles.class.php:188 roles/roles.class.php:26 roles/roles.class.php:92
#: roles/roles.class.php:179 roles/roles.class.php:188
msgid "Apply for Teacher"
msgstr ""
#: roles/bpsp-roles.class.php:41 roles/bpsp-roles.class.php:45
#: roles/bpsp-roles.class.php:49 roles/bpsp-roles.class.php:93
#: roles/bpsp-roles.class.php:108 roles/bpsp-roles.class.php:109
#: roles/bpsp-roles.class.php:158 roles/bpsp-roles.class.php:188
#: roles/bpsp-roles.class.php:223 responses/bpsp-responses.class.php:87
#: roles/roles.class.php:39 roles/roles.class.php:43 roles/roles.class.php:47
#: roles/roles.class.php:91 roles/roles.class.php:106
#: roles/roles.class.php:107 roles/roles.class.php:156
#: roles/roles.class.php:186 roles/roles.class.php:221
#: responses/responses.class.php:87 roles/roles.class.php:39
#: roles/roles.class.php:43 roles/roles.class.php:47 roles/roles.class.php:91
#: roles/roles.class.php:106 roles/roles.class.php:107
#: roles/roles.class.php:156 roles/roles.class.php:186
#: roles/roles.class.php:221 responses/responses.class.php:87
msgid "Teacher"
msgstr ""
#: roles/bpsp-roles.class.php:42 roles/roles.class.php:40
#: roles/roles.class.php:40
msgid "BuddyPress Courseware error, you are not allowed to assign Teachers."
msgstr ""
#: roles/bpsp-roles.class.php:66 roles/roles.class.php:64
#: roles/roles.class.php:64
#, php-format
msgid "Please review %s application to become a teacher."
msgstr ""
#: roles/bpsp-roles.class.php:70 roles/bpsp-roles.class.php:125
#: roles/bpsp-roles.class.php:130 groups/bpsp-groups.class.php:97
#: groups/bpsp-groups.class.php:259 groups/groups.class.php:83
#: groups/groups.class.php:249 roles/roles.class.php:68
#: roles/roles.class.php:123 roles/roles.class.php:128
#: wordpress/wordpress.class.php:46 wordpress/wordpress.class.php:47
#: groups/groups.class.php:83 groups/groups.class.php:249
#: roles/roles.class.php:68 roles/roles.class.php:123
#: roles/roles.class.php:128 wordpress/wordpress.class.php:46
#: wordpress/wordpress.class.php:47
msgid "Courseware"
msgstr ""
#: roles/bpsp-roles.class.php:73 roles/roles.class.php:71
#: roles/roles.class.php:71
msgid " applied to become a teacher."
msgstr ""
#: roles/bpsp-roles.class.php:75 roles/roles.class.php:73
#: roles/roles.class.php:73
msgid "To review the profile, follow the link below."
msgstr ""
#: roles/bpsp-roles.class.php:90 roles/bpsp-roles.class.php:142
#: roles/bpsp-roles.class.php:149 roles/bpsp-roles.class.php:223
#: responses/bpsp-responses.class.php:87
#: responses/bpsp-responses.class.php:175 roles/roles.class.php:88
#: roles/roles.class.php:140 roles/roles.class.php:147
#: roles/roles.class.php:221 responses/responses.class.php:87
#: responses/responses.class.php:175 roles/roles.class.php:88
#: roles/roles.class.php:140 roles/roles.class.php:147
#: roles/roles.class.php:221 responses/responses.class.php:87
#: responses/responses.class.php:175
msgid "Role"
msgstr ""
#: roles/bpsp-roles.class.php:131 roles/roles.class.php:129
#: roles/roles.class.php:129
msgid "Students and Teachers fields. Do not delete as long as you use BuddyPress ScholarPress Courseware!"
msgstr ""
#: roles/bpsp-roles.class.php:136 roles/roles.class.php:134
#: roles/roles.class.php:134
msgid "BuddyPress Courseware error when saving xProfile group."
msgstr ""
#: roles/bpsp-roles.class.php:144
msgid "You role when using Courseware. Every request requires moderation. Please be patient untill an administrator reviews it."
msgstr ""
#: roles/bpsp-roles.class.php:151 roles/roles.class.php:149
#: roles/roles.class.php:149
msgid "BuddyPress Courseware error when saving xProfile field."
msgstr ""
#: roles/bpsp-roles.class.php:169 roles/bpsp-roles.class.php:189
#: responses/bpsp-responses.class.php:177 groups/templates/gradebook.php:45
#: roles/roles.class.php:167 roles/roles.class.php:187
#: responses/responses.class.php:177 groups/templates/gradebook.php:45
#: roles/roles.class.php:167 roles/roles.class.php:187
#: responses/responses.class.php:177
msgid "Student"
msgstr ""
#: roles/bpsp-roles.class.php:192 roles/roles.class.php:190
#: roles/roles.class.php:190
msgid "BuddyPress Courseware error when saving xProfile field options."
msgstr ""
#: responses/bpsp-responses.class.php:59
#: groups/templates/single_assignment.php:70
#: groups/templates/list_assignments.php:8 responses/responses.class.php:59
#: groups/templates/single_assignment.php:70
#: groups/templates/list_assignments.php:8 responses/responses.class.php:59
msgid "Responses"
msgstr ""
#: responses/bpsp-responses.class.php:60 responses/responses.class.php:60
#: responses/responses.class.php:60
msgid "Response"
msgstr ""
#: responses/bpsp-responses.class.php:61 responses/responses.class.php:61
#: responses/responses.class.php:61
msgid "BuddyPress ScholarPress Courseware Responses"
msgstr ""
#: responses/bpsp-responses.class.php:73 responses/responses.class.php:73
#: responses/responses.class.php:73
msgid "BuddyPress Courseware error while registering response post type."
msgstr ""
#: responses/bpsp-responses.class.php:337 responses/responses.class.php:457
#: responses/responses.class.php:457
msgid "BuddyPress Courseware Error while forbidden user tried to add a new response."
msgstr ""
#: responses/bpsp-responses.class.php:350 responses/responses.class.php:471
#: responses/responses.class.php:471
msgid "Nonce Error while adding a response."
msgstr ""
#: responses/bpsp-responses.class.php:354 responses/responses.class.php:475
#: responses/responses.class.php:475
msgid "You already sent your response."
msgstr ""
#: responses/bpsp-responses.class.php:374 responses/responses.class.php:508
#: responses/responses.class.php:508
msgid "New response was added."
msgstr ""
#: responses/bpsp-responses.class.php:377 responses/responses.class.php:511
#: responses/responses.class.php:511
msgid "New response could not be added (fill the title/content)."
msgstr ""
#: responses/bpsp-responses.class.php:441 responses/responses.class.php:581
#: responses/responses.class.php:581
msgid "BuddyPress Courseware Error while forbidden user tried to access a private response."
msgstr ""
#: responses/bpsp-responses.class.php:479 responses/responses.class.php:625
#: responses/responses.class.php:625
msgid "Nonce Error while deleting the response."
msgstr ""
#: responses/bpsp-responses.class.php:489 responses/responses.class.php:635
#: responses/responses.class.php:635
msgid "BuddyPress Courseware Error while forbidden user tried to delete the response."
msgstr ""
#: responses/bpsp-responses.class.php:494 responses/responses.class.php:640
#: responses/responses.class.php:640
msgid "Response deleted successfully."
msgstr ""
#: assignments/bpsp-assignments.class.php:46
#: assignments/bpsp-assignments.class.php:287
#: groups/templates/dashboard.php:176 groups/templates/list_assignments.php:2
#: assignments/assignments.class.php:62 assignments/assignments.class.php:303
#: groups/templates/dashboard.php:176 groups/templates/list_assignments.php:2
#: assignments/assignments.class.php:62 assignments/assignments.class.php:303
msgid "Assignments"
msgstr ""
#: assignments/bpsp-assignments.class.php:47
#: assignments/assignments.class.php:63 assignments/assignments.class.php:63
msgid "Assignment"
msgstr ""
#: assignments/bpsp-assignments.class.php:48
#: assignments/assignments.class.php:64 assignments/assignments.class.php:64
msgid "BuddyPress ScholarPress Courseware Assignments"
msgstr ""
#: assignments/bpsp-assignments.class.php:60
#: assignments/assignments.class.php:77 assignments/assignments.class.php:77
msgid "BuddyPress Courseware error while registering assignment post type."
msgstr ""
#: assignments/bpsp-assignments.class.php:66 lectures/lectures.class.php:69
#: lectures/lectures.class.php:69
msgid "Course ID"
msgstr ""
#: assignments/bpsp-assignments.class.php:81
msgid "BuddyPress Courseware error while registering assignment taxonomies."
msgstr ""
#: assignments/bpsp-assignments.class.php:284
#: assignments/assignments.class.php:382 assignments/assignments.class.php:382
msgid "New Assignment"
msgstr ""
#: assignments/bpsp-assignments.class.php:284
#: assignments/bpsp-assignments.class.php:287
#: bibliographies/bpsp-bibliography.class.php:420
#: bibliographies/bpsp-bibliography.class.php:423
#: bibliographies/bpsp-bibliography.class.php:518
#: bibliographies/bpsp-bibliography.class.php:521
#: groups/bpsp-groups.class.php:106 groups/bpsp-groups.class.php:123
#: groups/bpsp-groups.class.php:164 groups/groups.class.php:93
#: groups/groups.class.php:110 groups/groups.class.php:151
#: groups/templates/dashboard.php:8 groups/templates/dashboard.php:12
#: groups/templates/dashboard.php:33 groups/templates/dashboard.php:37
#: groups/templates/dashboard.php:50 groups/templates/dashboard.php:54
#: groups/templates/dashboard.php:66 groups/templates/dashboard.php:78
#: groups/templates/dashboard.php:82 groups/templates/dashboard.php:95
#: groups/templates/_trail.php:4 assignments/assignments.class.php:303
#: bibliography/bibliography.class.php:492
#: bibliography/bibliography.class.php:495
#: bibliography/bibliography.class.php:588 courses/courses.class.php:272
#: schedules/schedules.class.php:273 groups/groups.class.php:93
#: groups/groups.class.php:110 groups/groups.class.php:151
#: groups/templates/dashboard.php:8 groups/templates/dashboard.php:12
#: groups/templates/dashboard.php:33 groups/templates/dashboard.php:37
#: groups/templates/dashboard.php:50 groups/templates/dashboard.php:54
#: groups/templates/dashboard.php:66 groups/templates/dashboard.php:78
#: groups/templates/dashboard.php:82 groups/templates/dashboard.php:95
#: groups/templates/_trail.php:4 assignments/assignments.class.php:303
#: bibliography/bibliography.class.php:492
#: bibliography/bibliography.class.php:495
#: bibliography/bibliography.class.php:588 courses/courses.class.php:272
#: schedules/schedules.class.php:273
msgid "Home"
msgstr ""
#: assignments/bpsp-assignments.class.php:305
#: assignments/assignments.class.php:321 assignments/assignments.class.php:321
msgid "BuddyPress Courseware Error while forbidden user tried to add a new assignment."
msgstr ""
#: assignments/bpsp-assignments.class.php:318
#: assignments/assignments.class.php:334 assignments/assignments.class.php:334
msgid "Nonce Error while adding an assignment."
msgstr ""
#: assignments/bpsp-assignments.class.php:338
#: assignments/assignments.class.php:364 assignments/assignments.class.php:364
msgid "New assignment was added."
msgstr ""
#: assignments/bpsp-assignments.class.php:342
#: assignments/assignments.class.php:369 assignments/assignments.class.php:369
msgid "New assignment could not be added."
msgstr ""
#: assignments/bpsp-assignments.class.php:344 lectures/lectures.class.php:315
#: assignments/assignments.class.php:371 lectures/lectures.class.php:315
#: assignments/assignments.class.php:371
msgid "Please fill in all the fields."
msgstr ""
#: assignments/bpsp-assignments.class.php:445
#: assignments/assignments.class.php:486 assignments/assignments.class.php:486
msgid "Courseware Assignment Link"
msgstr ""
#: assignments/bpsp-assignments.class.php:448
#: assignments/assignments.class.php:489 assignments/assignments.class.php:489
msgid ", assignment"
msgstr ""
#: assignments/bpsp-assignments.class.php:463
#: assignments/assignments.class.php:504 assignments/assignments.class.php:504
msgid "Assignment forum created."
msgstr ""
#: assignments/bpsp-assignments.class.php:469
#: assignments/assignments.class.php:510 assignments/assignments.class.php:510
msgid "Forum was not created."
msgstr ""
#: assignments/bpsp-assignments.class.php:493
#: assignments/assignments.class.php:534 assignments/assignments.class.php:534
msgid "Nonce Error while deleting the assignment."
msgstr ""
#: assignments/bpsp-assignments.class.php:500
#: assignments/assignments.class.php:541 assignments/assignments.class.php:541
msgid "BuddyPress Courseware Error while forbidden user tried to delete the assignment."
msgstr ""
#: assignments/bpsp-assignments.class.php:504
#: assignments/assignments.class.php:545 assignments/assignments.class.php:545
msgid "Assignment deleted successfully."
msgstr ""
#: assignments/bpsp-assignments.class.php:529
#: assignments/assignments.class.php:568 assignments/assignments.class.php:568
msgid "BuddyPress Courseware Error while forbidden user tried to update the assignment."
msgstr ""
#: assignments/bpsp-assignments.class.php:542
#: assignments/assignments.class.php:581 assignments/assignments.class.php:581
msgid "Nonce Error while editing the assignment."
msgstr ""
#: assignments/bpsp-assignments.class.php:560
#: assignments/assignments.class.php:612 assignments/assignments.class.php:612
msgid "Assignment was updated."
msgstr ""
#: assignments/bpsp-assignments.class.php:564
#: assignments/assignments.class.php:616 assignments/assignments.class.php:616
msgid "Assignment could not be updated."
msgstr ""
#: static/bpsp-static.class.php:181 static/static.class.php:232
#: static/static.class.php:232
msgid "Processing..."
msgstr ""
#: static/bpsp-static.class.php:182 static/static.class.php:233
#: static/static.class.php:233
msgid "Display _MENU_ records per page"
msgstr ""
#: static/bpsp-static.class.php:183 static/static.class.php:234
#: static/static.class.php:234
msgid "Nothing found - sorry"
msgstr ""
#: static/bpsp-static.class.php:184 static/static.class.php:235
#: static/static.class.php:235
msgid "Showing _START_ to _END_ of _TOTAL_ records"
msgstr ""
#: static/bpsp-static.class.php:185 static/static.class.php:236
#: static/static.class.php:236
msgid "Showing 0 to 0 of 0 records"
msgstr ""
#: static/bpsp-static.class.php:186 static/static.class.php:237
#: static/static.class.php:237
msgid "(filtered from _MAX_ total records)"
msgstr ""
#: static/bpsp-static.class.php:187 static/static.class.php:238
#: static/static.class.php:238
msgid " "
msgstr ""
#: static/bpsp-static.class.php:188 static/static.class.php:239
#: static/static.class.php:239
msgid "Search"
msgstr ""
#: static/bpsp-static.class.php:199 static/static.class.php:250
#: static/static.class.php:250
msgid "today"
msgstr ""
#: static/bpsp-static.class.php:200 static/static.class.php:251
#: static/static.class.php:251
msgid "month"
msgstr ""
#: static/bpsp-static.class.php:201 static/static.class.php:252
#: static/static.class.php:252
msgid "week"
msgstr ""
#: static/bpsp-static.class.php:202 static/static.class.php:253
#: static/static.class.php:253
msgid "day"
msgstr ""
#: static/bpsp-static.class.php:206 static/static.class.php:257
#: static/static.class.php:257
msgid "H(:mm)"
msgstr ""
#: static/bpsp-static.class.php:213 static/bpsp-static.class.php:231
#: static/static.class.php:264 static/static.class.php:282
#: static/static.class.php:264 static/static.class.php:282
msgid "1"
msgstr ""
#: static/bpsp-static.class.php:225 static/static.class.php:276
#: static/static.class.php:276
msgid "Done"
msgstr ""
#: static/bpsp-static.class.php:226 static/static.class.php:277
#: static/static.class.php:277
msgid "Prev"
msgstr ""
#: static/bpsp-static.class.php:227 static/static.class.php:278
#: static/static.class.php:278
msgid "Next"
msgstr ""
#: static/bpsp-static.class.php:228 static/static.class.php:279
#: static/static.class.php:279
msgid "Today"
msgstr ""
#: static/bpsp-static.class.php:232 static/bpsp-static.class.php:233
#: static/static.class.php:283 static/static.class.php:284
#: static/static.class.php:283 static/static.class.php:284
msgid "false"
msgstr ""
#: static/bpsp-static.class.php:238 static/static.class.php:289
#: static/static.class.php:289
msgid "January"
msgstr ""
#: static/bpsp-static.class.php:239 static/static.class.php:290
#: static/static.class.php:290
msgid "February"
msgstr ""
#: static/bpsp-static.class.php:240 static/static.class.php:291
#: static/static.class.php:291
msgid "March"
msgstr ""
#: static/bpsp-static.class.php:241 static/static.class.php:292
#: static/static.class.php:292
msgid "April"
msgstr ""
#: static/bpsp-static.class.php:242 static/bpsp-static.class.php:258
#: static/static.class.php:293 static/static.class.php:309
#: static/static.class.php:293 static/static.class.php:309
msgid "May"
msgstr ""
#: static/bpsp-static.class.php:243 static/static.class.php:294
#: static/static.class.php:294
msgid "June"
msgstr ""
#: static/bpsp-static.class.php:244 static/static.class.php:295
#: static/static.class.php:295
msgid "July"
msgstr ""
#: static/bpsp-static.class.php:245 static/static.class.php:296
#: static/static.class.php:296
msgid "August"
msgstr ""
#: static/bpsp-static.class.php:246 static/static.class.php:297
#: static/static.class.php:297
msgid "September"
msgstr ""
#: static/bpsp-static.class.php:247 static/static.class.php:298
#: static/static.class.php:298
msgid "October"
msgstr ""
#: static/bpsp-static.class.php:248 static/static.class.php:299
#: static/static.class.php:299
msgid "November"
msgstr ""
#: static/bpsp-static.class.php:249 static/static.class.php:300
#: static/static.class.php:300
msgid "December"
msgstr ""
#: static/bpsp-static.class.php:254 static/static.class.php:305
#: static/static.class.php:305
msgid "Jan"
msgstr ""
#: static/bpsp-static.class.php:255 static/static.class.php:306
#: static/static.class.php:306
msgid "Feb"
msgstr ""
#: static/bpsp-static.class.php:256 static/static.class.php:307
#: static/static.class.php:307
msgid "Mar"
msgstr ""
#: static/bpsp-static.class.php:257 static/static.class.php:308
#: static/static.class.php:308
msgid "Apr"
msgstr ""
#: static/bpsp-static.class.php:259 static/static.class.php:310
#: static/static.class.php:310
msgid "Jun"
msgstr ""
#: static/bpsp-static.class.php:260 static/static.class.php:311
#: static/static.class.php:311
msgid "Jul"
msgstr ""
#: static/bpsp-static.class.php:261 static/static.class.php:312
#: static/static.class.php:312
msgid "Aug"
msgstr ""
#: static/bpsp-static.class.php:262 static/static.class.php:313
#: static/static.class.php:313
msgid "Sep"
msgstr ""
#: static/bpsp-static.class.php:263 static/static.class.php:314
#: static/static.class.php:314
msgid "Oct"
msgstr ""
#: static/bpsp-static.class.php:264 static/static.class.php:315
#: static/static.class.php:315
msgid "Nov"
msgstr ""
#: static/bpsp-static.class.php:265 static/static.class.php:316
#: static/static.class.php:316
msgid "Dec"
msgstr ""
#: static/bpsp-static.class.php:270 static/static.class.php:321
#: static/static.class.php:321
msgid "Sunday"
msgstr ""
#: static/bpsp-static.class.php:271 static/static.class.php:322
#: static/static.class.php:322
msgid "Monday"
msgstr ""
#: static/bpsp-static.class.php:272 static/static.class.php:323
#: static/static.class.php:323
msgid "Tuesday"
msgstr ""
#: static/bpsp-static.class.php:273 static/static.class.php:324
#: static/static.class.php:324
msgid "Wednesday"
msgstr ""
#: static/bpsp-static.class.php:274 static/static.class.php:325
#: static/static.class.php:325
msgid "Thursday"
msgstr ""
#: static/bpsp-static.class.php:275 static/static.class.php:326
#: static/static.class.php:326
msgid "Friday"
msgstr ""
#: static/bpsp-static.class.php:276 static/static.class.php:327
#: static/static.class.php:327
msgid "Saturday"
msgstr ""
#: static/bpsp-static.class.php:281 static/static.class.php:332
#: static/static.class.php:332
msgid "Sun"
msgstr ""
#: static/bpsp-static.class.php:282 static/static.class.php:333
#: static/static.class.php:333
msgid "Mon"
msgstr ""
#: static/bpsp-static.class.php:283 static/static.class.php:334
#: static/static.class.php:334
msgid "Tue"
msgstr ""
#: static/bpsp-static.class.php:284 static/static.class.php:335
#: static/static.class.php:335
msgid "Wed"
msgstr ""
#: static/bpsp-static.class.php:285 static/static.class.php:336
#: static/static.class.php:336
msgid "Thu"
msgstr ""
#: static/bpsp-static.class.php:286 static/static.class.php:337
#: static/static.class.php:337
msgid "Fri"
msgstr ""
#: static/bpsp-static.class.php:287 static/static.class.php:338
#: static/static.class.php:338
msgid "Sat"
msgstr ""
#: static/bpsp-static.class.php:292 static/static.class.php:343
#: static/static.class.php:343
msgid "Su"
msgstr ""
#: static/bpsp-static.class.php:293 static/static.class.php:344
#: static/static.class.php:344
msgid "Mo"
msgstr ""
#: static/bpsp-static.class.php:294 static/static.class.php:345
#: static/static.class.php:345
msgid "Tu"
msgstr ""
#: static/bpsp-static.class.php:295 static/static.class.php:346
#: static/static.class.php:346
msgid "We"
msgstr ""
#: static/bpsp-static.class.php:296 static/static.class.php:347
#: static/static.class.php:347
msgid "Th"
msgstr ""
#: static/bpsp-static.class.php:297 static/static.class.php:348
#: static/static.class.php:348
msgid "Fr"
msgstr ""
#: static/bpsp-static.class.php:298 static/static.class.php:349
#: static/static.class.php:349
msgid "Sa"
msgstr ""
#: gradebook/bpsp-gradebook.class.php:45 gradebook/gradebook.class.php:46
#: gradebook/gradebook.class.php:46
msgid "Gradebooks"
msgstr ""
#: gradebook/bpsp-gradebook.class.php:46
#: groups/templates/single_assignment.php:89 gradebook/gradebook.class.php:47
#: groups/templates/single_assignment.php:89 gradebook/gradebook.class.php:47
msgid "Gradebook"
msgstr ""
#: gradebook/bpsp-gradebook.class.php:47 gradebook/gradebook.class.php:48
#: gradebook/gradebook.class.php:48
msgid "BuddyPress ScholarPress Courseware Gradebook"
msgstr ""
#: gradebook/bpsp-gradebook.class.php:59 gradebook/gradebook.class.php:61
#: gradebook/gradebook.class.php:61
msgid "BuddyPress Courseware error while registering grade post type."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:65 gradebook/gradebook.class.php:67
#: gradebook/gradebook.class.php:67
msgid "Assignment ID"
msgstr ""
#: gradebook/bpsp-gradebook.class.php:80
msgid "BuddyPress Courseware error while registering grade taxonomies."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:363 gradebook/gradebook.class.php:365
#: gradebook/gradebook.class.php:365
msgid "BuddyPress Courseware Error while forbidden user tried to manage gradebook."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:373 gradebook/gradebook.class.php:375
#: gradebook/gradebook.class.php:375
msgid "BuddyPress Courseware Nonce Error while updating gradebook."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:379 gradebook/gradebook.class.php:381
#: gradebook/gradebook.class.php:381
msgid "BuddyPress Courseware Error while creating gradebook."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:393 gradebook/gradebook.class.php:395
#: gradebook/gradebook.class.php:395
msgid "Gradebook saved."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:422 gradebook/gradebook.class.php:424
#: gradebook/gradebook.class.php:424
msgid "BuddyPress Courseware Nonce Error while clearing gradebook."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:431 gradebook/gradebook.class.php:433
#: gradebook/gradebook.class.php:433
msgid "Gradebook was cleared"
msgstr ""
#: gradebook/bpsp-gradebook.class.php:448 gradebook/gradebook.class.php:450
#: gradebook/gradebook.class.php:450
msgid "BuddyPress Courseware Nonce Error while importing gradebook."
msgstr ""
#: gradebook/bpsp-gradebook.class.php:464 gradebook/gradebook.class.php:466
#: gradebook/gradebook.class.php:466
msgid "Data imported successfully, but it is not saved yet! Save this form changes to keep the data."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:64
msgid "Bibliographies"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:65
#: bibliographies/bpsp-bibliography.class.php:423
#: groups/templates/single_course.php:23
#: groups/templates/single_assignment.php:93
#: groups/templates/new_bibliography.php:28
#: bibliography/bibliography.class.php:58
#: bibliography/bibliography.class.php:59
#: groups/templates/single_course.php:23
#: groups/templates/single_assignment.php:93
#: groups/templates/new_bibliography.php:28
#: bibliography/bibliography.class.php:58
#: bibliography/bibliography.class.php:59
msgid "Bibliography"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:66
msgid "BuddyPress ScholarPress Courseware Bibliographies"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:78
#: bibliography/bibliography.class.php:72
#: bibliography/bibliography.class.php:72
msgid "BuddyPress Courseware error while registering bibliography post type."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:441
#: bibliography/bibliography.class.php:415
#: bibliography/bibliography.class.php:415
msgid "BuddyPress Courseware Error while forbidden user tried to delete bibliography."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:447
#: bibliography/bibliography.class.php:421
#: bibliography/bibliography.class.php:421
msgid "BuddyPress Courseware Nonce Error while deleting a post."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:471
#: bibliography/bibliography.class.php:445
#: bibliography/bibliography.class.php:445
msgid "Entry deleted."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:473
#: bibliography/bibliography.class.php:447
#: bibliography/bibliography.class.php:447
msgid "Entry could not be deleted."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:475
#: bibliographies/bpsp-bibliography.class.php:545
#: bibliography/bibliography.class.php:449
#: bibliography/bibliography.class.php:519
#: bibliography/bibliography.class.php:449
#: bibliography/bibliography.class.php:519
msgid "Entry could not be found."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:478
#: bibliographies/bpsp-bibliography.class.php:548
#: bibliography/bibliography.class.php:452
#: bibliography/bibliography.class.php:522
#: bibliography/bibliography.class.php:452
#: bibliography/bibliography.class.php:522
msgid "No Bibliography database was created."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:499
#: bibliography/bibliography.class.php:473
#: bibliography/bibliography.class.php:473
msgid "BuddyPress Courseware Error while forbidden user tried to edit bibliography."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:505
#: bibliography/bibliography.class.php:479
#: bibliography/bibliography.class.php:479
msgid "BuddyPress Courseware Nonce Error while editing bibliography."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:539
#: bibliography/bibliography.class.php:513
#: bibliography/bibliography.class.php:513
msgid "Entry updated."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:542
#: bibliography/bibliography.class.php:516
#: bibliography/bibliography.class.php:516
msgid "Entry could not be updated. Or nothing changed."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:578
#: bibliographies/bpsp-bibliography.class.php:636
#: bibliography/bibliography.class.php:555
#: bibliography/bibliography.class.php:616
#: bibliography/bibliography.class.php:555
#: bibliography/bibliography.class.php:616
msgid "BuddyPress Courseware Error while forbidden user tried to add a new bibliography."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:584
#: bibliography/bibliography.class.php:561
#: bibliography/bibliography.class.php:561
msgid "BuddyPress Courseware Nonce Error while adding bibliography."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:593
#: bibliography/bibliography.class.php:570
#: bibliography/bibliography.class.php:570
msgid "Entry added."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:595
#: bibliographies/bpsp-bibliography.class.php:602
#: bibliographies/bpsp-bibliography.class.php:743
#: bibliography/bibliography.class.php:572
#: bibliography/bibliography.class.php:579
#: bibliography/bibliography.class.php:726
#: bibliography/bibliography.class.php:572
#: bibliography/bibliography.class.php:579
#: bibliography/bibliography.class.php:726
msgid "Entry could not be added"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:600
#: bibliographies/bpsp-bibliography.class.php:741
#: bibliography/bibliography.class.php:577
#: bibliography/bibliography.class.php:724
#: bibliography/bibliography.class.php:577
#: bibliography/bibliography.class.php:724
msgid "Entry added"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:606
#: bibliographies/bpsp-bibliography.class.php:747
#: bibliography/bibliography.class.php:583
#: bibliography/bibliography.class.php:730
#: bibliography/bibliography.class.php:583
#: bibliography/bibliography.class.php:730
msgid "Book added"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:608
#: bibliographies/bpsp-bibliography.class.php:749
#: bibliography/bibliography.class.php:585
#: bibliography/bibliography.class.php:732
#: bibliography/bibliography.class.php:585
#: bibliography/bibliography.class.php:732
msgid "Book could not be added"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:690
#: bibliography/bibliography.class.php:670
#: bibliography/bibliography.class.php:670
msgid "entries were imported."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:693
#: bibliography/bibliography.class.php:673
#: bibliography/bibliography.class.php:673
msgid "entries were not imported (caused by duplication or misformat)."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:726
#: bibliography/bibliography.class.php:709
#: bibliography/bibliography.class.php:709
msgid "BuddyPress Courseware Error while forbidden user tried to add bibliography entries."
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:734
#: bibliography/bibliography.class.php:717
#: bibliography/bibliography.class.php:717
msgid "Bibliography added"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:736
#: bibliography/bibliography.class.php:719
#: bibliography/bibliography.class.php:719
msgid "Bibliography could not be added"
msgstr ""
#: bibliographies/bpsp-bibliography.class.php:751
#: bibliography/bibliography.class.php:734
#: bibliography/bibliography.class.php:734
msgid "No bibliography entry could be added."
msgstr ""
#: notifications/bpsp-notifications.class.php:58
#: notifications/notifications.class.php:58
#: notifications/notifications.class.php:58
msgid "Your assignment was graded."
msgstr ""
#: notifications/bpsp-notifications.class.php:61
#: notifications/notifications.class.php:61
#: notifications/notifications.class.php:61
msgid " graded your assignment: "
msgstr ""
#: notifications/bpsp-notifications.class.php:65
#: notifications/notifications.class.php:65
#: notifications/notifications.class.php:65
msgid "Follow the link above to see the grade."
msgstr ""
#: notifications/bpsp-notifications.class.php:83
#: notifications/notifications.class.php:83
#: notifications/notifications.class.php:83
msgid "Student replied to your assignment."
msgstr ""
#: notifications/bpsp-notifications.class.php:86
#: notifications/notifications.class.php:86
#: notifications/notifications.class.php:86
msgid " added a response to: "
msgstr ""
#: notifications/bpsp-notifications.class.php:90
#: notifications/notifications.class.php:90
#: notifications/notifications.class.php:90
msgid "Follow the link above to see it."
msgstr ""
#: activity/bpsp-activity.class.php:28 activity/activity.class.php:29
#: activity/activity.class.php:29
msgid "New assignment"
msgstr ""
#: activity/bpsp-activity.class.php:29
msgid "New course"
msgstr ""
#: activity/bpsp-activity.class.php:30 activity/activity.class.php:31
#: activity/activity.class.php:31
msgid "New response"
msgstr ""
#: activity/bpsp-activity.class.php:31 activity/activity.class.php:32
#: schedules/schedules.class.php:431 activity/activity.class.php:32
#: schedules/schedules.class.php:431
msgid "New Schedule"
msgstr ""
#: activity/bpsp-activity.class.php:57
#, php-format
msgid "%s created assignment %s in %s Courseware:"
msgstr ""
#: activity/bpsp-activity.class.php:87
#, php-format
msgid "%s created course %s in %s Courseware:"
msgstr ""
#: activity/bpsp-activity.class.php:119 activity/activity.class.php:123
#: activity/activity.class.php:123
#, php-format
msgid "%s added a response %s to %s Courseware Assignment:"
msgstr ""
#: activity/bpsp-activity.class.php:149
#, php-format
msgid "%s added %s schedules to %s Courseware:"
msgstr ""