forked from GibbonEdu/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbStringsForTranslation.php
executable file
·2633 lines (2584 loc) · 88.1 KB
/
dbStringsForTranslation.php
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
<?php
/*
Gibbon, Flexible & Open School System
Copyright (C) 2010, Ross Parker
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
include '../functions.php' ;
//STATIC: DO NOT OVERWRITE FROM DATABASE
//Timezones
__('Africa/Abidjan');
__('Africa/Accra');
__('Africa/Addis_Ababa');
__('Africa/Algiers');
__('Africa/Asmara');
__('Africa/Bamako');
__('Africa/Bangui');
__('Africa/Banjul');
__('Africa/Bissau');
__('Africa/Blantyre');
__('Africa/Brazzaville');
__('Africa/Bujumbura');
__('Africa/Cairo');
__('Africa/Casablanca');
__('Africa/Ceuta');
__('Africa/Conakry');
__('Africa/Dakar');
__('Africa/Dar_es_Salaam');
__('Africa/Djibouti');
__('Africa/Douala');
__('Africa/El_Aaiun');
__('Africa/Freetown');
__('Africa/Gaborone');
__('Africa/Harare');
__('Africa/Johannesburg');
__('Africa/Juba');
__('Africa/Kampala');
__('Africa/Khartoum');
__('Africa/Kigali');
__('Africa/Kinshasa');
__('Africa/Lagos');
__('Africa/Libreville');
__('Africa/Lome');
__('Africa/Luanda');
__('Africa/Lubumbashi');
__('Africa/Lusaka');
__('Africa/Malabo');
__('Africa/Maputo');
__('Africa/Maseru');
__('Africa/Mbabane');
__('Africa/Mogadishu');
__('Africa/Monrovia');
__('Africa/Nairobi');
__('Africa/Ndjamena');
__('Africa/Niamey');
__('Africa/Nouakchott');
__('Africa/Ouagadougou');
__('Africa/Porto-Novo');
__('Africa/Sao_Tome');
__('Africa/Tripoli');
__('Africa/Tunis');
__('Africa/Windhoek');
__('America/Adak');
__('America/Anchorage');
__('America/Anguilla');
__('America/Antigua');
__('America/Araguaina');
__('America/Argentina/Buenos_Aires');
__('America/Argentina/Catamarca');
__('America/Argentina/Cordoba');
__('America/Argentina/Jujuy');
__('America/Argentina/La_Rioja');
__('America/Argentina/Mendoza');
__('America/Argentina/Rio_Gallegos');
__('America/Argentina/Salta');
__('America/Argentina/San_Juan');
__('America/Argentina/San_Luis');
__('America/Argentina/Tucuman');
__('America/Argentina/Ushuaia');
__('America/Aruba');
__('America/Asuncion');
__('America/Atikokan');
__('America/Bahia');
__('America/Bahia_Banderas');
__('America/Barbados');
__('America/Belem');
__('America/Belize');
__('America/Blanc-Sablon');
__('America/Boa_Vista');
__('America/Bogota');
__('America/Boise');
__('America/Cambridge_Bay');
__('America/Campo_Grande');
__('America/Cancun');
__('America/Caracas');
__('America/Cayenne');
__('America/Cayman');
__('America/Chicago');
__('America/Chihuahua');
__('America/Costa_Rica');
__('America/Creston');
__('America/Cuiaba');
__('America/Curacao');
__('America/Danmarkshavn');
__('America/Dawson');
__('America/Dawson_Creek');
__('America/Denver');
__('America/Detroit');
__('America/Dominica');
__('America/Edmonton');
__('America/Eirunepe');
__('America/El_Salvador');
__('America/Fort_Nelson');
__('America/Fortaleza');
__('America/Glace_Bay');
__('America/Godthab');
__('America/Goose_Bay');
__('America/Grand_Turk');
__('America/Grenada');
__('America/Guadeloupe');
__('America/Guatemala');
__('America/Guayaquil');
__('America/Guyana');
__('America/Halifax');
__('America/Havana');
__('America/Hermosillo');
__('America/Indiana/Indianapolis');
__('America/Indiana/Knox');
__('America/Indiana/Marengo');
__('America/Indiana/Petersburg');
__('America/Indiana/Tell_City');
__('America/Indiana/Vevay');
__('America/Indiana/Vincennes');
__('America/Indiana/Winamac');
__('America/Inuvik');
__('America/Iqaluit');
__('America/Jamaica');
__('America/Juneau');
__('America/Kentucky/Louisville');
__('America/Kentucky/Monticello');
__('America/Kralendijk');
__('America/La_Paz');
__('America/Lima');
__('America/Los_Angeles');
__('America/Lower_Princes');
__('America/Maceio');
__('America/Managua');
__('America/Manaus');
__('America/Marigot');
__('America/Martinique');
__('America/Matamoros');
__('America/Mazatlan');
__('America/Menominee');
__('America/Merida');
__('America/Metlakatla');
__('America/Mexico_City');
__('America/Miquelon');
__('America/Moncton');
__('America/Monterrey');
__('America/Montevideo');
__('America/Montserrat');
__('America/Nassau');
__('America/New_York');
__('America/Nipigon');
__('America/Nome');
__('America/Noronha');
__('America/North_Dakota/Beulah');
__('America/North_Dakota/Center');
__('America/North_Dakota/New_Salem');
__('America/Ojinaga');
__('America/Panama');
__('America/Pangnirtung');
__('America/Paramaribo');
__('America/Phoenix');
__('America/Port-au-Prince');
__('America/Port_of_Spain');
__('America/Porto_Velho');
__('America/Puerto_Rico');
__('America/Rainy_River');
__('America/Rankin_Inlet');
__('America/Recife');
__('America/Regina');
__('America/Resolute');
__('America/Rio_Branco');
__('America/Santarem');
__('America/Santiago');
__('America/Santo_Domingo');
__('America/Sao_Paulo');
__('America/Scoresbysund');
__('America/Sitka');
__('America/St_Barthelemy');
__('America/St_Johns');
__('America/St_Kitts');
__('America/St_Lucia');
__('America/St_Thomas');
__('America/St_Vincent');
__('America/Swift_Current');
__('America/Tegucigalpa');
__('America/Thule');
__('America/Thunder_Bay');
__('America/Tijuana');
__('America/Toronto');
__('America/Tortola');
__('America/Vancouver');
__('America/Whitehorse');
__('America/Winnipeg');
__('America/Yakutat');
__('America/Yellowknife');
__('Antarctica/Casey');
__('Antarctica/Davis');
__('Antarctica/DumontDUrville');
__('Antarctica/Macquarie');
__('Antarctica/Mawson');
__('Antarctica/McMurdo');
__('Antarctica/Palmer');
__('Antarctica/Rothera');
__('Antarctica/Syowa');
__('Antarctica/Troll');
__('Antarctica/Vostok');
__('Arctic/Longyearbyen');
__('Asia/Aden');
__('Asia/Almaty');
__('Asia/Amman');
__('Asia/Anadyr');
__('Asia/Aqtau');
__('Asia/Aqtobe');
__('Asia/Ashgabat');
__('Asia/Atyrau');
__('Asia/Baghdad');
__('Asia/Bahrain');
__('Asia/Baku');
__('Asia/Bangkok');
__('Asia/Barnaul');
__('Asia/Beirut');
__('Asia/Bishkek');
__('Asia/Brunei');
__('Asia/Chita');
__('Asia/Choibalsan');
__('Asia/Colombo');
__('Asia/Damascus');
__('Asia/Dhaka');
__('Asia/Dili');
__('Asia/Dubai');
__('Asia/Dushanbe');
__('Asia/Famagusta');
__('Asia/Gaza');
__('Asia/Hebron');
__('Asia/Ho_Chi_Minh');
__('Asia/Hong_Kong');
__('Asia/Hovd');
__('Asia/Irkutsk');
__('Asia/Jakarta');
__('Asia/Jayapura');
__('Asia/Jerusalem');
__('Asia/Kabul');
__('Asia/Kamchatka');
__('Asia/Karachi');
__('Asia/Kathmandu');
__('Asia/Khandyga');
__('Asia/Kolkata');
__('Asia/Krasnoyarsk');
__('Asia/Kuala_Lumpur');
__('Asia/Kuching');
__('Asia/Kuwait');
__('Asia/Macau');
__('Asia/Magadan');
__('Asia/Makassar');
__('Asia/Manila');
__('Asia/Muscat');
__('Asia/Nicosia');
__('Asia/Novokuznetsk');
__('Asia/Novosibirsk');
__('Asia/Omsk');
__('Asia/Oral');
__('Asia/Phnom_Penh');
__('Asia/Pontianak');
__('Asia/Pyongyang');
__('Asia/Qatar');
__('Asia/Qyzylorda');
__('Asia/Riyadh');
__('Asia/Sakhalin');
__('Asia/Samarkand');
__('Asia/Seoul');
__('Asia/Shanghai');
__('Asia/Singapore');
__('Asia/Srednekolymsk');
__('Asia/Taipei');
__('Asia/Tashkent');
__('Asia/Tbilisi');
__('Asia/Tehran');
__('Asia/Thimphu');
__('Asia/Tokyo');
__('Asia/Tomsk');
__('Asia/Ulaanbaatar');
__('Asia/Urumqi');
__('Asia/Ust-Nera');
__('Asia/Vientiane');
__('Asia/Vladivostok');
__('Asia/Yakutsk');
__('Asia/Yangon');
__('Asia/Yekaterinburg');
__('Asia/Yerevan');
__('Atlantic/Azores');
__('Atlantic/Bermuda');
__('Atlantic/Canary');
__('Atlantic/Cape_Verde');
__('Atlantic/Faroe');
__('Atlantic/Madeira');
__('Atlantic/Reykjavik');
__('Atlantic/South_Georgia');
__('Atlantic/St_Helena');
__('Atlantic/Stanley');
__('Australia/Adelaide');
__('Australia/Brisbane');
__('Australia/Broken_Hill');
__('Australia/Currie');
__('Australia/Darwin');
__('Australia/Eucla');
__('Australia/Hobart');
__('Australia/Lindeman');
__('Australia/Lord_Howe');
__('Australia/Melbourne');
__('Australia/Perth');
__('Australia/Sydney');
__('Europe/Amsterdam');
__('Europe/Andorra');
__('Europe/Astrakhan');
__('Europe/Athens');
__('Europe/Belgrade');
__('Europe/Berlin');
__('Europe/Bratislava');
__('Europe/Brussels');
__('Europe/Bucharest');
__('Europe/Budapest');
__('Europe/Busingen');
__('Europe/Chisinau');
__('Europe/Copenhagen');
__('Europe/Dublin');
__('Europe/Gibraltar');
__('Europe/Guernsey');
__('Europe/Helsinki');
__('Europe/Isle_of_Man');
__('Europe/Istanbul');
__('Europe/Jersey');
__('Europe/Kaliningrad');
__('Europe/Kiev');
__('Europe/Kirov');
__('Europe/Lisbon');
__('Europe/Ljubljana');
__('Europe/London');
__('Europe/Luxembourg');
__('Europe/Madrid');
__('Europe/Malta');
__('Europe/Mariehamn');
__('Europe/Minsk');
__('Europe/Monaco');
__('Europe/Moscow');
__('Europe/Oslo');
__('Europe/Paris');
__('Europe/Podgorica');
__('Europe/Prague');
__('Europe/Riga');
__('Europe/Rome');
__('Europe/Samara');
__('Europe/San_Marino');
__('Europe/Sarajevo');
__('Europe/Saratov');
__('Europe/Simferopol');
__('Europe/Skopje');
__('Europe/Sofia');
__('Europe/Stockholm');
__('Europe/Tallinn');
__('Europe/Tirane');
__('Europe/Ulyanovsk');
__('Europe/Uzhgorod');
__('Europe/Vaduz');
__('Europe/Vatican');
__('Europe/Vienna');
__('Europe/Vilnius');
__('Europe/Volgograd');
__('Europe/Warsaw');
__('Europe/Zagreb');
__('Europe/Zaporozhye');
__('Europe/Zurich');
__('Indian/Antananarivo');
__('Indian/Chagos');
__('Indian/Christmas');
__('Indian/Cocos');
__('Indian/Comoro');
__('Indian/Kerguelen');
__('Indian/Mahe');
__('Indian/Maldives');
__('Indian/Mauritius');
__('Indian/Mayotte');
__('Indian/Reunion');
__('Pacific/Apia');
__('Pacific/Auckland');
__('Pacific/Bougainville');
__('Pacific/Chatham');
__('Pacific/Chuuk');
__('Pacific/Easter');
__('Pacific/Efate');
__('Pacific/Enderbury');
__('Pacific/Fakaofo');
__('Pacific/Fiji');
__('Pacific/Funafuti');
__('Pacific/Galapagos');
__('Pacific/Gambier');
__('Pacific/Guadalcanal');
__('Pacific/Guam');
__('Pacific/Honolulu');
__('Pacific/Johnston');
__('Pacific/Kiritimati');
__('Pacific/Kosrae');
__('Pacific/Kwajalein');
__('Pacific/Majuro');
__('Pacific/Marquesas');
__('Pacific/Midway');
__('Pacific/Nauru');
__('Pacific/Niue');
__('Pacific/Norfolk');
__('Pacific/Noumea');
__('Pacific/Pago_Pago');
__('Pacific/Palau');
__('Pacific/Pitcairn');
__('Pacific/Pohnpei');
__('Pacific/Port_Moresby');
__('Pacific/Rarotonga');
__('Pacific/Saipan');
__('Pacific/Tahiti');
__('Pacific/Tarawa');
__('Pacific/Tongatapu');
__('Pacific/Wake');
__('Pacific/Wallis');
__('UTC');
// gibbonPayment - type
__('Online');
__('Bank Transfer');
__('Cash');
__('Cheque');
__('Other');
__('Credit Card');
// System Admin - Import Fields
__n('Markbook Column', 'Markbook Columns', 1);
__n('Timetable Day', 'Timetable Days', 1);
__n('Medical Form', 'Medical Forms', 1);
__n('Special Day', 'Special Days', 1);
__n('Column Row', 'Column Rows', 1);
__n('Course', 'Courses', 1);
__('Created By');
//DYNAMIC: OVERWRITE FROM DATABASE
// gibbonAction - category
__('Absences');
__('Activities');
__('Administration');
__('Admissions');
__('Alarm');
__('Analyse');
__('Archive');
__('Assess');
__('Attendance');
__('Behaviour Records');
__('Behaviour Tracking');
__('Billing');
__('Catalog');
__('Contribute');
__('Courses & Classes');
__('Coverage');
__('Crowd Assessment');
__('Curriculum Overview');
__('Customise');
__('Data');
__('Departments');
__('Edit Timetables');
__('Expenses');
__('Extend & Update');
__('External Assessment');
__('Facilities');
__('Form Groups');
__('Future Information');
__('Groupings');
__('Import');
__('Individual Needs');
__('Internal Assessment');
__('Investigation');
__('Learn');
__('Manage Messages');
__('Manage Updates');
__('Markbook');
__('Medical');
__('Other');
__('Outcomes');
__('People');
__('Planning');
__('Profiles');
__('Progress');
__('Publish');
__('Reports');
__('Request Updates');
__('Resources');
__('Rubrics');
__('Settings');
__('Staff Management');
__('Student Management');
__('System');
__('Take Attendance');
__('Targets');
__('Timetable');
__('User Management');
__('User Settings');
__('Utilities');
__('View Messages');
__('View Timetables');
__('Visualise');
__('Years, Days & Times');
// gibbonAction - name
__('Activity Attendance by Date');
__('Activity Choices by Form Group');
__('Activity Choices by Student');
__('Activity Enrolment Summary');
__('Activity Settings');
__('Activity Spread by Form Group');
__('Activity Type by Form Group');
__('Age & Gender Summary');
__('Application Form');
__('Application Form Settings');
__('Approve Staff Absences');
__('Archive Records');
__('Assess');
__('Attendance By Class');
__('Attendance By Form Group_all');
__('Attendance By Form Group');
__('Attendance By Form Group_myGroups');
__('Attendance By Person');
__('Attendance History by Activity');
__('Attendance Settings');
__('Attendance Summary by Date');
__('Attendance Trends');
__('Behaviour Settings');
__('Browse The Library');
__('Cache Manager');
__('Canned Response');
__('Catalog Summary');
__('Class Enrolment by Form Group');
__('Classes Not Registered');
__('Concept Explorer');
__('Consecutive Absences');
__('Course Enrolment by Class');
__('Course Enrolment by Person');
__('Course Enrolment Rollover');
__('Custom Fields');
__('Dashboard Settings');
__('Data Points');
__('Data Retention');
__('Data Updater Settings');
__('Days of the Week');
__('Display Settings');
__('Edit Markbook_everything');
__('Edit Markbook');
__('Edit Markbook_multipleClassesAcrossSchool');
__('Edit Markbook_multipleClassesInDepartment');
__('Edit Markbook_singleClass');
__('Email Summary Settings');
__('Email Templates');
__('Emergency Data Summary');
__('Emergency SMS by Transport');
__('Emergency SMS by Year Group');
__('Enter Activity Attendance');
__('Enter Activity Attendance_leader');
__('External Assessment Data_manage');
__('External Assessment Data');
__('External Assessment Data_view');
__('Facility Settings');
__('Family Address by Student');
__('Family Data Updater History');
__('Family Data Updates');
__('Finance Data Updates');
__('Finance Settings');
__('Find Behaviour Patterns');
__('First Aid Record');
__('Form Group Summary');
__('Form Groups Not Registered');
__('Formal Assessment Settings');
__('Generate Invoices');
__('Generate Reports');
__('Graphing_all');
__('Graphing');
__('Import From File');
__('Import User Photos');
__('Individual Needs Overview');
__('Individual Needs Records_view');
__('Individual Needs Records');
__('Individual Needs Records_viewContribute');
__('Individual Needs Records_viewEdit');
__('Individual Needs Settings');
__('Individual Needs Summary');
__('Job Openings');
__('Left Students');
__('Lending & Activity Log');
__('Lesson Planner_viewAllEditMyClasses');
__('Lesson Planner');
__('Lesson Planner_viewEditAllClasses');
__('Lesson Planner_viewMyChildrensClasses');
__('Lesson Planner_viewMyClasses');
__('Lesson Planner_viewOnly');
__('Letters Home by Form Group');
__('Library Settings');
__('Manage Access');
__('Manage Activities');
__('Manage Alert Levels');
__('Manage Applications');
__('Manage Applications_edit');
__('Manage Applications_editDelete');
__('Manage Archives');
__('Manage Attendance Logs');
__('Manage Behaviour Records_all');
__('Manage Behaviour Records');
__('Manage Behaviour Records_my');
__('Manage Billing Schedule');
__('Manage Budget Cycles');
__('Manage Budgets');
__('Manage Catalog');
__('Manage Columns');
__('Manage Courses & Classes');
__('Manage Criteria');
__('Manage Departments');
__('Manage Districts');
__('Manage Expense Approvers');
__('Manage Expenses_all');
__('Manage Expenses');
__('Manage Expenses_myBudgets');
__('Manage External Assessments');
__('Manage Facilities');
__('Manage Facility Bookings_allBookings');
__('Manage Facility Bookings');
__('Manage Facility Bookings_myBookings');
__('Manage Facility Changes_allClasses');
__('Manage Facility Changes');
__('Manage Facility Changes_myClasses');
__('Manage Facility Changes_myDepartment');
__('Manage Families');
__('Manage Fee Categories');
__('Manage Fees');
__('Manage File Extensions');
__('Manage Form Groups');
__('Manage Grade Scales');
__('Manage Groups_all');
__('Manage Groups');
__('Manage Groups_my');
__('Manage Houses');
__('Manage Internal Assessments');
__('Manage Investigations_all');
__('Manage Investigations');
__('Manage Investigations_my');
__('Manage Invoicees');
__('Manage Invoices');
__('Manage Languages');
__('Manage Medical Conditions');
__('Manage Medical Forms');
__('Manage Messages_all');
__('Manage Messages');
__('Manage Messages_my');
__('Manage Modules');
__('Manage Outcomes_viewAll');
__('Manage Outcomes');
__('Manage Outcomes_viewAllEditLearningArea');
__('Manage Outcomes_viewEditAll');
__('Manage Permissions');
__('Manage Reporting Cycles');
__('Manage Reports');
__('Manage Resources_all');
__('Manage Resources');
__('Manage Resources_my');
__('Manage Roles_all');
__('Manage Roles');
__('Manage Roles_viewOnly');
__('Manage Rubrics_viewAllEditLearningArea');
__('Manage Rubrics');
__('Manage Rubrics_viewEditAll');
__('Manage School Years');
__('Manage Services');
__('Manage Special Days');
__('Manage Staff Absences');
__('Manage Staff Coverage');
__('Manage Staff_confidential');
__('Manage Staff');
__('Manage Staff_general');
__('Manage Student Enrolment');
__('Manage Substitutes');
__('Manage Terms');
__('Manage Themes');
__('Manage Timetables');
__('Manage Users_edit');
__('Manage Users');
__('Manage Users_editDelete');
__('Manage Weightings_everything');
__('Manage Weightings');
__('Manage Weightings_singleClass');
__('Manage Year Groups');
__('Markbook Settings');
__('Medical Data Summary');
__('Medical Form Updates');
__('Messenger Settings');
__('My Activities');
__('My Activities_viewEditEnrolment');
__('My Coverage');
__('My Data Updates');
__('My Expense Requests');
__('My Reporting');
__('My Student History');
__('New Absence_any');
__('New Absence');
__('New Absence_mine');
__('New Message_activities_any');
__('New Message');
__('New Message_activities_my');
__('New Message_activities_parents');
__('New Message_applicants');
__('New Message_attendance');
__('New Message_byEmail');
__('New Message_byMessageWall');
__('New Message_bySMS');
__('New Message_cannedResponse');
__('New Message_classes_any');
__('New Message_classes_my');
__('New Message_classes_parents');
__('New Message_courses_any');
__('New Message_courses_my');
__('New Message_courses_parents');
__('New Message_formGroups_any');
__('New Message_formGroups_my');
__('New Message_formGroups_parents');
__('New Message_fromSchool');
__('New Message_groups_any');
__('New Message_groups_my');
__('New Message_groups_parents');
__('New Message_houses_all');
__('New Message_houses_my');
__('New Message_individuals');
__('New Message_readReceipts');
__('New Message_role');
__('New Message_transport_any');
__('New Message_transport_parents');
__('New Message_yearGroups_any');
__('New Message_yearGroups_parents');
__('New Quick Wall Message');
__('New Students');
__('Notification Events');
__('Open Requests');
__('Outcomes By Course');
__('Parent Weekly Email Summary');
__('Participants by Activity');
__('Personal Data Updates');
__('Personal Document Settings');
__('Personal Document Summary');
__('Planner Settings');
__('Printable Attendance Sheet');
__('Privacy Choices by Student');
__('Progress by Person');
__('Progress by Reporting Cycle');
__('Proof Reading Progress');
__('Proof Read_all');
__('Proof Read');
__('Proof Read_mine');
__('Public Registration Settings');
__('Report Settings');
__('Request Coverage');
__('Resource Settings');
__('Rollover');
__('Scope & Sequence');
__('Security & Privacy Settings');
__('Send Notifications');
__('Send Reports');
__('Server Info');
__('Set Future Absence');
__('Sound Alarm');
__('Staff Absence Summary');
__('Staff Application Form Settings');
__('Staff Coverage Summary');
__('Staff Data Updates');
__('Staff Directory_brief');
__('Staff Directory');
__('Staff Directory_full');
__('Staff Settings');
__('String Replacement');
__('Student Borrowing Record');
__('Student Data Updater History');
__('Student Enrolment');
__('Student Enrolment Trends');
__('Student History_all');
__('Student History');
__('Student History_my');
__('Student History_myChildren');
__('Student ID Cards');
__('Student Self Registration');
__('Student Transport');
__('Students by Form Group');
__('Students by House');
__('Students Not In Class');
__('Students Not Onsite');
__('Students Not Present');
__('Students Settings');
__('Submit Contributions');
__('Substitute Availability');
__('Sync Course Enrolment');
__('System Check');
__('System Overview');
__('System Settings');
__('Template Builder');
__('Third Party Settings');
__('Tie Days To Dates');
__('Tracking Settings');
__('Unit Planner_all');
__('Unit Planner');
__('Unit Planner_learningAreas');
__('Update');
__('Update Family Data_any');
__('Update Family Data');
__('Update Family Data_family');
__('Update Finance Data_any');
__('Update Finance Data');
__('Update Finance Data_family');
__('Update Medical Data_any');
__('Update Medical Data');
__('Update Medical Form_family');
__('Update Medical Form');
__('Update Personal Data_any');
__('Update Personal Data');
__('Update Personal Data_family');
__('Update Staff Data_any');
__('Update Staff Data');
__('Update Staff Data_my');
__('Upload Reports');
__('User Settings');
__('View Absences_any');
__('View Absences');
__('View Absences_mine');
__('View Activities_studentRegister');
__('View Activities');
__('View Activities_studentRegisterByParent');
__('View Activities_view');
__('View Available Facilities');
__('View Available Teachers');
__('View Behaviour Letters');
__('View Behaviour Records_all');
__('View Behaviour Records');
__('View Behaviour Records_myChildren');
__('View by Report');
__('View by Student');
__('View Daily Attendance');
__('View Departments');
__('View Draft Reports');
__('View External Assessments_mine');
__('View External Assessments');
__('View External Assessments_myChildrens');
__('View Form Groups_all');
__('View Form Groups');
__('View Form Groups_myChildren');
__('View Individual Education Plans_myChildren');
__('View Individual Education Plans');
__('View Internal Assessments_all');
__('View Internal Assessments');
__('View Internal Assessments_mine');
__('View Internal Assessments_myChildrens');
__('View Invoices_mine');
__('View Invoices');
__('View Invoices_myChildren');
__('View Logs');
__('View Markbook_allClassesAllData');
__('View Markbook');
__('View Markbook_myClasses');
__('View Markbook_myMarks');
__('View Markbook_viewMyChildrensClasses');
__('View Master Timetable');
__('View Message Wall');
__('View Overdue Items');
__('View Past Reports');
__('View Reports_mine');
__('View Reports');
__('View Reports_myChildren');
__('View Resources');
__('View Rubrics');
__('View Student Profile_brief');
__('View Student Profile');
__('View Student Profile_full');
__('View Student Profile_fullEditAllNotes');
__('View Student Profile_fullNoNotes');
__('View Student Profile_my');
__('View Student Profile_myChildren');
__('View Timetable by Facility');
__('View Timetable by Person');
__('View Timetable by Person_allYears');
__('View Timetable by Person_my');
__('View Timetable by Person_myChildren');
__('Weekly Absences');
__('Withdraw Student');
__('Work Summary by Form Group');
__('Write Internal Assessments_all');
__('Write Internal Assessments');
__('Write Internal Assessments_myClasses');
__('Write Reports_editAll');
__('Write Reports');
__('Write Reports_mine');
// gibbonAction - description
__('A report for bulk creation of student ID cards.');
__('A report showing all new students in the current school year.');
__('A report showing all the students who have left within a specified date range.');
__('A week-by-week overview of staff absences.');
__('Add, edit and delete external assessments.');
__('Allow a user to manage all Indiviudal Needs investigations.');
__('Allow a user to manage their own Indiviudal Needs investigations.');
__('Allow admins to create and manage timetables');
__('Allow admins to manage timetable columns');
__('Allow users to view assessment data for all students');
__('Allows a department coordinator to manage changes for all classes in their department.');
__('Allows a departmental Coordinator or Assistant Coordinator to manage student enrolment within their department.');
__('Allows a parent to view external assessment records for their children.');
__('Allows a staff member to request coverage for their absences.');
__('Allows a student to print a report of their attendance data in the current school year.');
__('Allows a student to view their own external assessment records.');
__('Allows a student to view their own invoices.');
__('Allows a sufficiently priviledged user to create and manage budget cycles.');
__('Allows a user to book a room for on-off use, and manage bookings made by all other users.');
__('Allows a user to book a room for on-off use, and manage their own bookings.');
__('Allows a user to create and manage one-off location changes for all classes within the timetable.');
__('Allows a user to create and manage one-off location changes for their own classes within the timetable.');
__('Allows a user to create, edit and delete custom fields for users.');
__('Allows a user to export certain key assessment data points to a spreadsheet.');
__('Allows a user to manage settings for the Tracking module.');
__('Allows a user to request expenses from budgets they have access to.');
__('Allows a user to see all days, periods, teachers and rooms in a timetable.');
__('Allows a user to see progress tracking graphs for all students in school.');
__('Allows a user to submit their own staff absences.');
__('Allows a user to view and run available imports.');
__('Allows a user to view automated behaviour letters sent out by the system.');
__('Allows a user to view roles but not change them.');
__('Allows a user to view the activities they are involved in');
__('Allows admin to edit any user within the system, but not to delete them.');
__('Allows administrators to configure and make use of third party services.');
__('Allows administrators to configure the attendance module.');
__('Allows administrators to configure the system display settings.');
__('Allows administrators to control system-wide language and localisation settings.');
__('Allows administrators to edit and delete staff absences.');
__('Allows administrators to manage coverage requests.');
__('Allows administrators to view and action staff applications.');
__('Allows admins to control the application form');
__('Allows admins to control the descriptors available for use in the Individual Needs module.');
__('Allows admins to control the staff application form.');
__('Allows admins to create learning areas and administrative groups.');
__('Allows admins to kick the school forward one year');
__('Allows admins to place timetable days into the school calendar');
__('Allows admins to process data update requests for medical data');
__('Allows admins to process data update requests for personal data');
__('Allows admins to view and action applications');
__('Allows admins to view and action applications, but not to delete them');
__('Allows adults in a family to create data update request for their family.');
__('Allows adults in a family to create finance data update request for their family.');
__('Allows an activity organizer to manage enrolment for their activities.');
__('Allows bulk import of user photos based on a ZIP file.');
__('Allows Class Teachers and Heads of Year to contribute to investigations.');
__('Allows editing of any column in any class.');
__('Allows for current records to be archived for viewing in the future.');
__('Allows for interface strings to be replaced with custom values.');
__('Allows for the creation of job openings, which can be used in the job application form.');
__('Allows for the creation of message templates.');
__('Allows for the quick posting of a Message Wall message to all users.');
__('Allows management of custom groups for message targetting');
__('Allows managers to build activity program');
__('Allows parents to register their children for activities');
__('Allows parents to view individual needs plans for members of their family.');
__('Allows parents to view invoices issued to members of their family.');
__('Allows parents to view their children\'s classes');
__('Allows parents to view their children\'s report archive.');
__('Allows parents to view their children\'s timetable');
__('Allows parents to view their childrens\' Internal Assessment results.');
__('Allows parents to view their student\'s information');
__('Allows privileged users to create and manage Internal Assessment columns.');
__('Allows privileged users to enter Internal Assessment assessment data to columns in all classes.');
__('Allows privileged users to manage settings for spaces.');
__('Allows privileged users to move enrolments from the current year to the next year.');
__('Allows prospective staff to apply for job openings.');
__('Allows staff to see Internal Assessment results for all children.');