-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathen.pot
More file actions
2394 lines (1667 loc) · 61.7 KB
/
Copy pathen.pot
File metadata and controls
2394 lines (1667 loc) · 61.7 KB
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
msgid ""
msgstr ""
"Project-Id-Version: i18next-conv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"POT-Creation-Date: 2026-08-07T14:02:01.671Z\n"
"PO-Revision-Date: 2026-08-07T14:02:01.671Z\n"
msgid "The application could not be loaded."
msgstr "The application could not be loaded."
msgid "Please verify that the server is running."
msgstr "Please verify that the server is running."
msgid "Please see log for details."
msgstr "Please see log for details."
msgid "Choose one or more dates..."
msgstr "Choose one or more dates..."
msgid "Choose a date..."
msgstr "Choose a date..."
msgid "Today"
msgstr "Today"
msgid ""
"A possible reason for this is that the browser or mode (e.g. privacy mode) "
"is not supported. See log for details."
msgstr ""
"A possible reason for this is that the browser or mode (e.g. privacy mode) "
"is not supported. See log for details."
msgid "Please refresh the page (Either the server or the app version changed)"
msgstr "Please refresh the page (Either the server or the app version changed)"
msgid "Bulk data entry"
msgstr "Bulk data entry"
msgid "Program overview"
msgstr "Program overview"
msgid "Active enrollments"
msgstr "Active enrollments"
msgid "Completed enrollments"
msgstr "Completed enrollments"
msgid "Cancelled enrollments"
msgstr "Cancelled enrollments"
msgid "Search"
msgstr "Search"
msgid "Enrollment dashboard"
msgstr "Enrollment dashboard"
msgid "View event"
msgstr "View event"
msgid "Edit event"
msgstr "Edit event"
msgid "New event"
msgstr "New event"
msgid "Loading..."
msgstr "Loading..."
msgid "Event list"
msgstr "Event list"
msgid "More"
msgstr "More"
msgid "View {{programName}} dashboard"
msgstr "View {{programName}} dashboard"
msgid "View dashboard"
msgstr "View dashboard"
msgid "View active enrollment"
msgstr "View active enrollment"
msgid "Re-enroll in {{programName}}"
msgstr "Re-enroll in {{programName}}"
msgid "Re-enroll"
msgstr "Re-enroll"
msgid "Enrolled"
msgstr "Enrolled"
msgid "Previously enrolled"
msgstr "Previously enrolled"
msgid "Organisation unit"
msgstr "Organisation unit"
msgid "Date of enrollment"
msgstr "Date of enrollment"
msgid "Last updated"
msgstr "Last updated"
msgid "Lat"
msgstr "Lat"
msgid "Long"
msgstr "Long"
msgid "lat{{escape}} {{latitudeValue}}"
msgstr "lat{{escape}} {{latitudeValue}}"
msgid "long{{escape}} {{longitudeValue}}"
msgstr "long{{escape}} {{longitudeValue}}"
msgid "Show less"
msgstr "Show less"
msgid "Show more"
msgstr "Show more"
msgid "error encountered during field validation"
msgstr "error encountered during field validation"
msgid "error"
msgstr "error"
msgid "This value is validating"
msgstr "This value is validating"
msgid "Async field update failed"
msgstr "Async field update failed"
msgid "Area"
msgstr "Area"
msgid "Coordinate"
msgstr "Coordinate"
msgid "Enrollment"
msgstr "Enrollment"
msgid "Complete event"
msgstr "Complete event"
msgid ""
"The date entered belongs to an expired period. Enter a date after "
"{{firstValidDate}}."
msgstr ""
"The date entered belongs to an expired period. Enter a date after "
"{{firstValidDate}}."
msgid "A value is required"
msgstr "A value is required"
msgid "Please provide a valid date"
msgstr "Please provide a valid date"
msgid "{{ stageName }} - Basic info"
msgstr "{{ stageName }} - Basic info"
msgid "{{ stageName }} - Assignee"
msgstr "{{ stageName }} - Assignee"
msgid "{{ stageName }} - Status"
msgstr "{{ stageName }} - Status"
msgid "Please select {{categoryName}}"
msgstr "Please select {{categoryName}}"
msgid "A date in the future is not allowed"
msgstr "A date in the future is not allowed"
msgid "Saving a new enrollment in {{programName}} in {{orgUnitName}}."
msgstr "Saving a new enrollment in {{programName}} in {{orgUnitName}}."
msgid "Saving a {{trackedEntityName}} in {{programName}} in {{orgUnitName}}."
msgstr "Saving a {{trackedEntityName}} in {{programName}} in {{orgUnitName}}."
msgid "Cancel"
msgstr "Cancel"
msgid "Metadata error. see log for details"
msgstr "Metadata error. see log for details"
msgid "{{ stageName }} - Details"
msgstr "{{ stageName }} - Details"
msgid "{{ stageName }} - {{ sectionName }}"
msgstr "{{ stageName }} - {{ sectionName }}"
msgid "Assigned user"
msgstr "Assigned user"
msgid "Search for user"
msgstr "Search for user"
msgid "Notes"
msgstr "Notes"
msgid "Basic info"
msgstr "Basic info"
msgid "Status"
msgstr "Status"
msgid "Relationships"
msgstr "Relationships"
msgid "Assignee"
msgstr "Assignee"
msgid "Saving to {{programName}} in {{orgUnitName}}"
msgstr "Saving to {{programName}} in {{orgUnitName}}"
msgid "Saving to {{programName}}"
msgstr "Saving to {{programName}}"
msgid ""
"This is not an event program or the metadata is corrupt. See log for "
"details."
msgstr ""
"This is not an event program or the metadata is corrupt. See log for "
"details."
msgid "This event"
msgstr "This event"
msgid ""
"Relationship of type {{relationshipTypeName}} to {{entityName}} already "
"exists"
msgstr ""
"Relationship of type {{relationshipTypeName}} to {{entityName}} already "
"exists"
msgid "Active"
msgstr "Active"
msgid "Completed"
msgstr "Completed"
msgid "Please add or cancel the note before saving the event"
msgstr "Please add or cancel the note before saving the event"
msgid "Please provide an valid organisation unit"
msgstr "Please provide an valid organisation unit"
msgid "Save and add another"
msgstr "Save and add another"
msgid "Save and exit"
msgstr "Save and exit"
msgid "Finish"
msgstr "Finish"
msgid "Save without completing"
msgstr "Save without completing"
msgid "Complete"
msgstr "Complete"
msgid "No write access"
msgstr "No write access"
msgid "New {{titleText}}"
msgstr "New {{titleText}}"
msgid "Switch to form view"
msgstr "Switch to form view"
msgid "Switch to row view"
msgstr "Switch to row view"
msgid "{{count}} event added"
msgid_plural "{{count}} event added"
msgstr[0] "{{count}} event added"
msgstr[1] "{{count}} events added"
msgid "No events added"
msgstr "No events added"
msgid "New event relationship"
msgstr "New event relationship"
msgid "Adding relationship to event."
msgstr "Adding relationship to event."
msgid "Go back to event without saving relationship"
msgstr "Go back to event without saving relationship"
msgid "Discard unsaved changes?"
msgstr "Discard unsaved changes?"
msgid ""
"Leaving this page will discard the selections you made for a new "
"relationship"
msgstr ""
"Leaving this page will discard the selections you made for a new "
"relationship"
msgid "Yes, discard changes"
msgstr "Yes, discard changes"
msgid "No, cancel"
msgstr "No, cancel"
msgid "You don't have access to create an event in the current selections"
msgstr "You don't have access to create an event in the current selections"
msgid "Saving a {{trackedEntityName}}"
msgstr "Saving a {{trackedEntityName}}"
msgid "without"
msgstr "without"
msgid "enrollment"
msgstr "enrollment"
msgid "in"
msgstr "in"
msgid "Enroll in a program by selecting a program from the top bar."
msgstr "Enroll in a program by selecting a program from the top bar."
msgid "An error has occurred. See log for details"
msgstr "An error has occurred. See log for details"
msgid "{{programStageName}} completed"
msgstr "{{programStageName}} completed"
msgid "Would you like to complete the enrollment and all active events as well?"
msgstr "Would you like to complete the enrollment and all active events as well?"
msgid "{{count}} event in {{programStageName}}"
msgid_plural "{{count}} event in {{programStageName}}"
msgstr[0] "{{count}} event in {{programStageName}}"
msgstr[1] "{{count}} events in {{programStageName}}"
msgid "Yes, complete enrollment and events"
msgstr "Yes, complete enrollment and events"
msgid "Complete enrollment only"
msgstr "Complete enrollment only"
msgid "Would you like to complete the enrollment?"
msgstr "Would you like to complete the enrollment?"
msgid "Complete enrollment"
msgstr "Complete enrollment"
msgid "A duplicate exists (but there were some errors, see log for details"
msgstr "A duplicate exists (but there were some errors, see log for details"
msgid ""
"An item with this {{attributeName}} is already registered, but you don't "
"have access to it"
msgstr ""
"An item with this {{attributeName}} is already registered, but you don't "
"have access to it"
msgid "You have already registered this {{attributeName}}"
msgstr "You have already registered this {{attributeName}}"
msgid ""
"A {{trackedEntityTypeName}} with this {{attributeName}} is already "
"registered"
msgstr ""
"A {{trackedEntityTypeName}} with this {{attributeName}} is already "
"registered"
msgid "Show registered {{trackedEntityTypeName}}"
msgstr "Show registered {{trackedEntityTypeName}}"
msgid "Registered person"
msgstr "Registered person"
msgid "No item selected"
msgstr "No item selected"
msgid "Form foundation missing. See log for details"
msgstr "Form foundation missing. See log for details"
msgid "validation failed"
msgstr "validation failed"
msgid "No feedback for this event yet"
msgstr "No feedback for this event yet"
msgid "No indicator output for this event yet"
msgstr "No indicator output for this event yet"
msgid "Generate new event"
msgstr "Generate new event"
msgid "Do you want to create another event?"
msgstr "Do you want to create another event?"
msgid "Yes, create new event"
msgstr "Yes, create new event"
msgid "Back to form"
msgstr "Back to form"
msgid "Save anyway"
msgstr "Save anyway"
msgid "Validation errors and warnings"
msgstr "Validation errors and warnings"
msgid "Validation errors"
msgstr "Validation errors"
msgid "Validation warnings"
msgstr "Validation warnings"
msgid "Some operations are still running. Please wait."
msgstr "Some operations are still running. Please wait."
msgid "Operations running"
msgstr "Operations running"
msgid "No feedback for this enrollment yet"
msgstr "No feedback for this enrollment yet"
msgid "No indicator output for this enrollment yet"
msgstr "No indicator output for this enrollment yet"
msgid ""
"This event has unsaved changes. Leaving this page without saving will lose "
"these changes. Are you sure you want to discard unsaved changes?"
msgstr ""
"This event has unsaved changes. Leaving this page without saving will lose "
"these changes. Are you sure you want to discard unsaved changes?"
msgid "No events to display"
msgstr "No events to display"
msgid "Data for offline list not present"
msgstr "Data for offline list not present"
msgid "Close"
msgstr "Close"
msgid "Please select the user"
msgstr "Please select the user"
msgid "Me"
msgstr "Me"
msgid "Anyone"
msgstr "Anyone"
msgid "None"
msgstr "None"
msgid "Select user"
msgstr "Select user"
msgid "Please specify a range"
msgstr "Please specify a range"
msgid "Start date must be before the end date"
msgstr "Start date must be before the end date"
msgid "From"
msgstr "From"
msgid "to"
msgstr "to"
msgid "To"
msgstr "To"
msgid "Period"
msgstr "Period"
msgid "Please provide zero or a positive integer"
msgstr "Please provide zero or a positive integer"
msgid "Please specify the number of days"
msgstr "Please specify the number of days"
msgid "Days in the past"
msgstr "Days in the past"
msgid "Days in the future"
msgstr "Days in the future"
msgid "This week"
msgstr "This week"
msgid "This month"
msgstr "This month"
msgid "This year"
msgstr "This year"
msgid "Last week"
msgstr "Last week"
msgid "Last month"
msgstr "Last month"
msgid "Last 3 months"
msgstr "Last 3 months"
msgid "Absolute range"
msgstr "Absolute range"
msgid "Relative range"
msgstr "Relative range"
msgid "Please specify a date"
msgstr "Please specify a date"
msgid "The \"Before\" value must be after the \"After\" value"
msgstr "The \"Before\" value must be after the \"After\" value"
msgid "After"
msgstr "After"
msgid "Date"
msgstr "Date"
msgid "Time"
msgstr "Time"
msgid "Before"
msgstr "Before"
msgid "Is empty"
msgstr "Is empty"
msgid "Is not empty"
msgstr "Is not empty"
msgid "Minimum value cannot be greater than maximum value"
msgstr "Minimum value cannot be greater than maximum value"
msgid "Please provide a valid number"
msgstr "Please provide a valid number"
msgid "Please provide a valid integer"
msgstr "Please provide a valid integer"
msgid "Please provide an integer between 0 and 100"
msgstr "Please provide an integer between 0 and 100"
msgid "Please provide a positive integer"
msgstr "Please provide a positive integer"
msgid "Please provide a negative integer"
msgstr "Please provide a negative integer"
msgid "Min"
msgstr "Min"
msgid "Max"
msgstr "Max"
msgid "Yes"
msgstr "Yes"
msgid "Uploading file"
msgstr "Uploading file"
msgid "selected"
msgstr "selected"
msgid "Delete"
msgstr "Delete"
msgid "Select file"
msgstr "Select file"
msgid "No"
msgstr "No"
msgid "Uploading image"
msgstr "Uploading image"
msgid "Select image"
msgstr "Select image"
msgid "Type to filter options"
msgstr "Type to filter options"
msgid "No match found"
msgstr "No match found"
msgid "Search for an organisation unit"
msgstr "Search for an organisation unit"
msgid "Clear"
msgstr "Clear"
msgid "No results found"
msgstr "No results found"
msgid "Description"
msgstr "Description"
msgid "URL"
msgstr "URL"
msgid "Icon for {{field}}"
msgstr "Icon for {{field}}"
msgid "start typing to search"
msgstr "start typing to search"
msgid "suggestions could not be retrieved"
msgstr "suggestions could not be retrieved"
msgid "No items to display"
msgstr "No items to display"
msgid "Tracked entity is deactivated"
msgstr "Tracked entity is deactivated"
msgid "Select columns"
msgstr "Select columns"
msgid "Columns to show in table"
msgstr "Columns to show in table"
msgid "Save"
msgstr "Save"
msgid "Column"
msgstr "Column"
msgid "Visible"
msgstr "Visible"
msgid "Update"
msgstr "Update"
msgid "Reset filter"
msgstr "Reset filter"
msgid "Remove filter"
msgstr "Remove filter"
msgid "Minimum characters to search is too high for this filter."
msgstr "Minimum characters to search is too high for this filter."
msgid "Please enter at least {{minCharactersToSearch}} character to filter"
msgid_plural "Please enter at least {{minCharactersToSearch}} character to filter"
msgstr[0] "Please enter at least {{minCharactersToSearch}} character to filter"
msgstr[1] "Please enter at least {{minCharactersToSearch}} characters to filter"
msgid "Locked to{{escape}} {{buttonText}}"
msgstr "Locked to{{escape}} {{buttonText}}"
msgid "{{fromDate}} to {{toDate}}"
msgstr "{{fromDate}} to {{toDate}}"
msgid "after or equal to {{date}}"
msgstr "after or equal to {{date}}"
msgid "before or equal to {{date}}"
msgstr "before or equal to {{date}}"
msgid "{{start}} days in the past to {{end}} days in the future"
msgstr "{{start}} days in the past to {{end}} days in the future"
msgid "{{from}} to {{to}}"
msgstr "{{from}} to {{to}}"
msgid "greater than or equal to {{value}}"
msgstr "greater than or equal to {{value}}"
msgid "less than or equal to {{value}}"
msgstr "less than or equal to {{value}}"
msgid "after or equal to"
msgstr "after or equal to"
msgid "before or equal to"
msgstr "before or equal to"
msgid "More filters"
msgstr "More filters"
msgid "Program stage filters"
msgstr "Program stage filters"
msgid "Rows per page"
msgstr "Rows per page"
msgid "Could not get organisation unit"
msgstr "Could not get organisation unit"
msgid "Program doesn't exist"
msgstr "Program doesn't exist"
msgid "Selected program is invalid for selected organisation unit"
msgstr "Selected program is invalid for selected organisation unit"
msgid "Add note"
msgstr "Add note"
msgid "Write note"
msgstr "Write note"
msgid "{{fieldName}} was blanked out and hidden by your last action"
msgstr "{{fieldName}} was blanked out and hidden by your last action"
msgid "Notice"
msgstr "Notice"
msgid "Close the notice"
msgstr "Close the notice"
msgid "Quick actions"
msgstr "Quick actions"
msgid "Schedule an event"
msgstr "Schedule an event"
msgid "Make referral"
msgstr "Make referral"
msgid "No available program stages"
msgstr "No available program stages"
msgid "Invalid enrollment id {{enrollmentId}}."
msgstr "Invalid enrollment id {{enrollmentId}}."
msgid "Choose an enrollment to view the dashboard."
msgstr "Choose an enrollment to view the dashboard."
msgid ""
"Choose a program to add new or see existing enrollments for "
"{{teiDisplayName}}"
msgstr ""
"Choose a program to add new or see existing enrollments for "
"{{teiDisplayName}}"
msgid "{{programName}} has categories. Choose all categories to view dashboard."
msgstr "{{programName}} has categories. Choose all categories to view dashboard."
msgid "There are no active enrollments."
msgstr "There are no active enrollments."
msgid "Add new enrollment for {{teiDisplayName}} in this program."
msgstr "Add new enrollment for {{teiDisplayName}} in this program."
msgid ""
"You do not have permissions to access to this program, registering unit or "
"record, contact your administrator for more information."
msgstr ""
"You do not have permissions to access to this program, registering unit or "
"record, contact your administrator for more information."
msgid "{{teiDisplayName}} is not enrolled in this program."
msgstr "{{teiDisplayName}} is not enrolled in this program."
msgid "Enroll {{teiDisplayName}} in this program."
msgstr "Enroll {{teiDisplayName}} in this program."
msgid ""
"{{teiDisplayName}} is a {{tetName}} and cannot be enrolled in the "
"{{programName}}. Choose another program that allows {{tetName}} enrollment. "
msgstr ""
"{{teiDisplayName}} is a {{tetName}} and cannot be enrolled in the "
"{{programName}}. Choose another program that allows {{tetName}} enrollment. "
msgid "Enroll a new {{selectedTetName}} in this program."
msgstr "Enroll a new {{selectedTetName}} in this program."
msgid "{{programName}} is an event program and does not have enrollments."
msgstr "{{programName}} is an event program and does not have enrollments."
msgid "Create a new event in this program."
msgstr "Create a new event in this program."
msgid "View working list in this program."
msgstr "View working list in this program."
msgid "Enrollment with id \"{{enrollmentId}}\" does not exist"
msgstr "Enrollment with id \"{{enrollmentId}}\" does not exist"
msgid "Tracked entity instance with id \"{{teiId}}\" does not exist"
msgstr "Tracked entity instance with id \"{{teiId}}\" does not exist"
msgid "Program with id \"{{programId}}\" does not exist"
msgstr "Program with id \"{{programId}}\" does not exist"
msgid "An error occurred while fetching enrollments. Please enter a valid url."
msgstr "An error occurred while fetching enrollments. Please enter a valid url."
msgid "An error has occurred"
msgstr "An error has occurred"
msgid "Page is missing required values from URL"
msgstr "Page is missing required values from URL"
msgid "There was an error opening the Page"
msgstr "There was an error opening the Page"
msgid "There was an error loading the page"
msgstr "There was an error loading the page"
msgid "Program stage is invalid"
msgstr "Program stage is invalid"
msgid "Program stage not found"
msgstr "Program stage not found"
msgid "Report"
msgstr "Report"
msgid "Schedule"
msgstr "Schedule"
msgid "Refer"
msgstr "Refer"
msgid "New Event"
msgstr "New Event"
msgid "You can't add any more {{ programStageName }} events"
msgstr "You can't add any more {{ programStageName }} events"
msgid "Cancel without saving"
msgstr "Cancel without saving"
msgid "Choose a program stage for a new event"
msgstr "Choose a program stage for a new event"
msgid "Program Stages could not be loaded"
msgstr "Program Stages could not be loaded"
msgid "Program stage"
msgstr "Program stage"
msgid "The category option is not valid for the selected organisation unit."
msgstr "The category option is not valid for the selected organisation unit."
msgid "Please select a valid combination."
msgstr "Please select a valid combination."
msgid "Get started with Capture app"
msgstr "Get started with Capture app"
msgid "Report data"
msgstr "Report data"
msgid ""
"Choose a program and organisation unit to see existing data and create new "
"records."
msgstr ""
"Choose a program and organisation unit to see existing data and create new "
"records."
msgid "Click 'Search'. For program-specific results, choose a program first."
msgstr "Click 'Search'. For program-specific results, choose a program first."
msgid "Learn more about Capture app"
msgstr "Learn more about Capture app"
msgid "Please select {{category}}."
msgstr "Please select {{category}}."
msgid "Please select an organisation unit"
msgstr "Please select an organisation unit"
msgid "See working list without organisation unit"
msgstr "See working list without organisation unit"
msgid "Search for a {{trackedEntityName}}"
msgstr "Search for a {{trackedEntityName}}"
msgid "Registered events"
msgstr "Registered events"
msgid ""
"You don't have access to create a {{trackedEntityName}} in the current "
"selections"
msgstr ""
"You don't have access to create a {{trackedEntityName}} in the current "
"selections"
msgid "Choose an organisation unit to start reporting"
msgstr "Choose an organisation unit to start reporting"
msgid "Choose the {{missingCategories}} to start reporting"
msgstr "Choose the {{missingCategories}} to start reporting"
msgid "Save as new"
msgstr "Save as new"
msgid "New"
msgstr "New"
msgid "You can also choose a program from the top bar and create in that program"
msgstr "You can also choose a program from the top bar and create in that program"
msgid "New Enrollment in program{{escape}} {{programName}}"
msgstr "New Enrollment in program{{escape}} {{programName}}"
msgid "Save {{trackedEntityTypeName}}"
msgstr "Save {{trackedEntityTypeName}}"
msgid "Save {{trackedEntityName}}"
msgstr "Save {{trackedEntityName}}"
msgid "Enter details now is not available when creating a relationship"
msgstr "Enter details now is not available when creating a relationship"
msgid "Save new {{trackedEntityTypeName}} and link"
msgstr "Save new {{trackedEntityTypeName}} and link"
msgid "Link"
msgstr "Link"
msgid "Save as new {{trackedEntityName}}"
msgstr "Save as new {{trackedEntityName}}"
msgid "Some programs are being filtered."
msgstr "Some programs are being filtered."
msgid "Show all"
msgstr "Show all"
msgid "Program"
msgstr "Program"
msgid "Organisation Unit"
msgstr "Organisation Unit"
msgid "Registration"
msgstr "Registration"
msgid "Search results"
msgstr "Search results"
msgid "No {{trackedEntityTypeName}} found."
msgstr "No {{trackedEntityTypeName}} found."
msgid "New search"
msgstr "New search"
msgid "Edit search"
msgstr "Edit search"
msgid "Link to an existing {{trackedEntityType}}"
msgstr "Link to an existing {{trackedEntityType}}"
msgid "Create new {{trackedEntityType}}"
msgstr "Create new {{trackedEntityType}}"
msgid "Register"
msgstr "Register"
msgid "Back"
msgstr "Back"
msgid "events"
msgstr "events"
msgid "event"
msgstr "event"
msgid "View changelog"
msgstr "View changelog"
msgid "Event details"
msgstr "Event details"
msgid ""
"Leaving this page will discard any selections you made for a new "
"relationship"
msgstr ""
"Leaving this page will discard any selections you made for a new "
"relationship"
msgid "Errors"
msgstr "Errors"
msgid "This event doesn't have any notes"
msgstr "This event doesn't have any notes"
msgid "This event doesn't have any relationships"
msgstr "This event doesn't have any relationships"
msgid "Warnings"
msgstr "Warnings"
msgid "Event could not be loaded. Are you sure it exists?"
msgstr "Event could not be loaded. Are you sure it exists?"
msgid "Event could not be loaded"