forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs.json5
More file actions
11693 lines (8226 loc) · 596 KB
/
cs.json5
File metadata and controls
11693 lines (8226 loc) · 596 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
{
// "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
"401.help": "Nemáte oprávnění k přístupu na tuto stránku. Pro návrat na domovskou stránku můžete použít tlačítko níže.",
// "401.link.home-page": "Take me to the home page",
"401.link.home-page": "Návrat na domovskou stránku",
// "401.unauthorized": "Unauthorized",
"401.unauthorized": "Neautorizovaný přístup",
// "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
"403.help": "Nemáte povolení k přístupu na tuto stránku. Pro návrat na domovskou stránku můžete použít tlačítko níže.",
// "403.link.home-page": "Take me to the home page",
"403.link.home-page": "Návrat na domovskou stránku",
// "403.forbidden": "Forbidden",
"403.forbidden": "Přístup zakázán",
// "500.page-internal-server-error": "Service unavailable",
"500.page-internal-server-error": "Služba je nedostupná",
// "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.",
"500.help": "Server není dočasně schopen obsloužit váš požadavek z důvodu výpadku údržby nebo kapacitních problémů. Zkuste to prosím později.",
// "500.link.home-page": "Take me to the home page",
"500.link.home-page": "Návrat na domovskou stránku",
// "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ",
"404.help": "Nemůžeme najít stránku, kterou hledáte. Stránka mohla být přesunuta nebo smazána. Pomocí níže uvedeného tlačítka se můžete vrátit na domovskou stránku. ",
// "404.link.home-page": "Take me to the home page",
"404.link.home-page": "Návrat na domovskou stránku",
// "404.page-not-found": "Page not found",
"404.page-not-found": "Stránka nebyla nalezena",
// "error-page.description.401": "Unauthorized",
"error-page.description.401": "Neautorizovaný přístup",
// "error-page.description.403": "Forbidden",
"error-page.description.403": "Přístup zakázán",
// "error-page.description.500": "Service unavailable",
"error-page.description.500": "Služba je nedostupná",
// "error-page.description.404": "Page not found",
"error-page.description.404": "Stránka nebyla nalezena",
// "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator",
"error-page.orcid.generic-error": "Při přihlašování přes ORCID došlo k chybě. Ujistěte se, že jste sdíleli e-mailovou adresu připojenou ke svému účtu ORCID s DSpace. Pokud chyba přetrvává, kontaktujte správce",
// "access-status.embargo.listelement.badge": "Embargo",
"access-status.embargo.listelement.badge": "Embargo",
// "access-status.metadata.only.listelement.badge": "Metadata only",
"access-status.metadata.only.listelement.badge": "Pouze metadata",
// "access-status.open.access.listelement.badge": "Open Access",
"access-status.open.access.listelement.badge": "Otevřený přístup",
// "access-status.restricted.listelement.badge": "Restricted",
"access-status.restricted.listelement.badge": "Omezený přístup",
// "access-status.unknown.listelement.badge": "Unknown",
"access-status.unknown.listelement.badge": "Status neznámý",
// "admin.curation-tasks.breadcrumbs": "System curation tasks",
"admin.curation-tasks.breadcrumbs": "Systémové úlohy správy",
// "admin.curation-tasks.title": "System curation tasks",
"admin.curation-tasks.title": "Systémové úlohy správy",
// "admin.curation-tasks.header": "System curation tasks",
"admin.curation-tasks.header": "Systémové úlohy správy",
// "admin.registries.bitstream-formats.breadcrumbs": "Format registry",
"admin.registries.bitstream-formats.breadcrumbs": "Registr formátů",
// "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format",
"admin.registries.bitstream-formats.create.breadcrumbs": "Formát souboru",
// "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.",
"admin.registries.bitstream-formats.create.failure.content": "Při vytváření nového formátu souboru došlo k chybě.",
// "admin.registries.bitstream-formats.create.failure.head": "Failure",
"admin.registries.bitstream-formats.create.failure.head": "Vytváření nového formátu souboru selhalo",
// "admin.registries.bitstream-formats.create.head": "Create bitstream format",
"admin.registries.bitstream-formats.create.head": "Vytvořit formát souboru",
// "admin.registries.bitstream-formats.create.new": "Add a new bitstream format",
"admin.registries.bitstream-formats.create.new": "Přidat nový formát souboru",
// "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.",
"admin.registries.bitstream-formats.create.success.content": "Nový formát souboru byl úspěšně vytvořen.",
// "admin.registries.bitstream-formats.create.success.head": "Success",
"admin.registries.bitstream-formats.create.success.head": "Úspěšně vytvořeno",
// "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)",
"admin.registries.bitstream-formats.delete.failure.amount": "Nepodařilo se odstranit formát(y) {{ amount }}",
// "admin.registries.bitstream-formats.delete.failure.head": "Failure",
"admin.registries.bitstream-formats.delete.failure.head": "Odstranění formátu souboru selhalo",
// "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)",
"admin.registries.bitstream-formats.delete.success.amount": "Úspěšně odstraněno {{ amount }} formatů",
// "admin.registries.bitstream-formats.delete.success.head": "Success",
"admin.registries.bitstream-formats.delete.success.head": "Úspěšně odstraněno",
// "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.",
"admin.registries.bitstream-formats.description": "Tento seznam formátů souboru poskytuje informace o známých formátech a úrovni jejich podpory.",
// "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format",
"admin.registries.bitstream-formats.edit.breadcrumbs": "Formát souboru",
// "admin.registries.bitstream-formats.edit.description.hint": "",
"admin.registries.bitstream-formats.edit.description.hint": "",
// "admin.registries.bitstream-formats.edit.description.label": "Description",
"admin.registries.bitstream-formats.edit.description.label": "Popis",
// "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.",
"admin.registries.bitstream-formats.edit.extensions.hint": "Přípony jsou přípony souborů, které se používají k automatické identifikaci formátu nahraných souborů. Pro každý formát můžete zadat několik přípon.",
// "admin.registries.bitstream-formats.edit.extensions.label": "File extensions",
"admin.registries.bitstream-formats.edit.extensions.label": "Přípony souborů",
// "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot",
"admin.registries.bitstream-formats.edit.extensions.placeholder": "Zadejte příponu souboru bez tečky",
// "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
"admin.registries.bitstream-formats.edit.failure.content": "Při úpravě formátu souboru došlo k chybě.",
// "admin.registries.bitstream-formats.edit.failure.head": "Failure",
"admin.registries.bitstream-formats.edit.failure.head": "Úprava formátu souboru selhala",
// "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}",
"admin.registries.bitstream-formats.edit.head": "Formát souboru: {{ format }}",
// "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.",
"admin.registries.bitstream-formats.edit.internal.hint": "Formáty označené jako interní jsou uživateli skryté a používají se pro účely správy.",
// "admin.registries.bitstream-formats.edit.internal.label": "Internal",
"admin.registries.bitstream-formats.edit.internal.label": "Interní",
// "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.",
"admin.registries.bitstream-formats.edit.mimetype.hint": "Typ MIME spojený s tímto formátem, nemusí být jedinečný.",
// "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type",
"admin.registries.bitstream-formats.edit.mimetype.label": "Typ MIME",
// "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)",
"admin.registries.bitstream-formats.edit.shortDescription.hint": "Jedinečný název pro tento formát (např. Microsoft Word XP nebo Microsoft Word 2000)",
// "admin.registries.bitstream-formats.edit.shortDescription.label": "Name",
"admin.registries.bitstream-formats.edit.shortDescription.label": "Název",
// "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.",
"admin.registries.bitstream-formats.edit.success.content": "Formát souboru byl úspěšně upraven.",
// "admin.registries.bitstream-formats.edit.success.head": "Success",
"admin.registries.bitstream-formats.edit.success.head": "Úspěšně upraveno",
// "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.",
"admin.registries.bitstream-formats.edit.supportLevel.hint": "Úroveň podpory, kterou vaše instituce slibuje pro tento formát.",
// "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level",
"admin.registries.bitstream-formats.edit.supportLevel.label": "Úroveň podpory",
// "admin.registries.bitstream-formats.head": "Bitstream Format Registry",
"admin.registries.bitstream-formats.head": "Registr formátů souboru",
// "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.",
"admin.registries.bitstream-formats.no-items": "Žádné formáty souboru k zobrazení.",
// "admin.registries.bitstream-formats.table.delete": "Delete selected",
"admin.registries.bitstream-formats.table.delete": "Smazat vybrané",
// "admin.registries.bitstream-formats.table.deselect-all": "Deselect all",
"admin.registries.bitstream-formats.table.deselect-all": "Zrušit výběr všech",
// "admin.registries.bitstream-formats.table.internal": "internal",
"admin.registries.bitstream-formats.table.internal": "Interní",
// "admin.registries.bitstream-formats.table.mimetype": "MIME Type",
"admin.registries.bitstream-formats.table.mimetype": "Typ MIME",
// "admin.registries.bitstream-formats.table.name": "Name",
"admin.registries.bitstream-formats.table.name": "Název",
// "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.table.selected": "Selected bitstream formats",
// "admin.registries.bitstream-formats.table.id": "ID",
"admin.registries.bitstream-formats.table.id": "ID",
// "admin.registries.bitstream-formats.table.return": "Back",
// TODO Source message changed - Revise the translation
"admin.registries.bitstream-formats.table.return": "Zpět",
// "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known",
"admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Známé",
// "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported",
"admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Podporované",
// "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown",
"admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Neznámé",
// "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level",
"admin.registries.bitstream-formats.table.supportLevel.head": "Úroveň podpory",
// "admin.registries.bitstream-formats.title": "Bitstream Format Registry",
"admin.registries.bitstream-formats.title": "Registr formátů souboru",
// "admin.registries.bitstream-formats.select": "Select",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.select": "Select",
// "admin.registries.bitstream-formats.deselect": "Deselect",
// TODO New key - Add a translation
"admin.registries.bitstream-formats.deselect": "Deselect",
// "admin.registries.metadata.breadcrumbs": "Metadata registry",
"admin.registries.metadata.breadcrumbs": "Registr metadat",
// "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.",
"admin.registries.metadata.description": "Registr metadat udržuje seznam všech polí metadat dostupných v úložišti. Tato pole mohou být rozdělena mezi více schémat. DSpace však vyžaduje kvalifikované schéma Dublin Core.",
// "admin.registries.metadata.form.create": "Create metadata schema",
"admin.registries.metadata.form.create": "Vytvořit metadatové schéma",
// "admin.registries.metadata.form.edit": "Edit metadata schema",
"admin.registries.metadata.form.edit": "Upravit metadatové schéma",
// "admin.registries.metadata.form.name": "Name",
"admin.registries.metadata.form.name": "Název",
// "admin.registries.metadata.form.namespace": "Namespace",
"admin.registries.metadata.form.namespace": "Namespace",
// "admin.registries.metadata.head": "Metadata Registry",
"admin.registries.metadata.head": "Registr metadat",
// "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.",
"admin.registries.metadata.schemas.no-items": "Žádná schémata metadat k zobrazení.",
// "admin.registries.metadata.schemas.select": "Select",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.select": "Select",
// "admin.registries.metadata.schemas.deselect": "Deselect",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.deselect": "Deselect",
// "admin.registries.metadata.schemas.table.delete": "Delete selected",
"admin.registries.metadata.schemas.table.delete": "Smazat vybrané",
// "admin.registries.metadata.schemas.table.selected": "Selected schemas",
// TODO New key - Add a translation
"admin.registries.metadata.schemas.table.selected": "Selected schemas",
// "admin.registries.metadata.schemas.table.id": "ID",
"admin.registries.metadata.schemas.table.id": "ID",
// "admin.registries.metadata.schemas.table.name": "Name",
"admin.registries.metadata.schemas.table.name": "Název",
// "admin.registries.metadata.schemas.table.namespace": "Namespace",
"admin.registries.metadata.schemas.table.namespace": "Namespace",
// "admin.registries.metadata.title": "Metadata Registry",
"admin.registries.metadata.title": "Registr metadat",
// "admin.registries.schema.breadcrumbs": "Metadata schema",
"admin.registries.schema.breadcrumbs": "Metadatové schéma",
// "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".",
"admin.registries.schema.description": "Toto je metadatové schéma pro \"{{namespace}}\".",
// "admin.registries.schema.fields.select": "Select",
// TODO New key - Add a translation
"admin.registries.schema.fields.select": "Select",
// "admin.registries.schema.fields.deselect": "Deselect",
// TODO New key - Add a translation
"admin.registries.schema.fields.deselect": "Deselect",
// "admin.registries.schema.fields.head": "Schema metadata fields",
"admin.registries.schema.fields.head": "Metadatové pole schématu",
// "admin.registries.schema.fields.no-items": "No metadata fields to show.",
"admin.registries.schema.fields.no-items": "Žádná metadatová pole k zobrazení.",
// "admin.registries.schema.fields.table.delete": "Delete selected",
"admin.registries.schema.fields.table.delete": "Smazat vybrané",
// "admin.registries.schema.fields.table.field": "Field",
"admin.registries.schema.fields.table.field": "Pole",
// "admin.registries.schema.fields.table.selected": "Selected metadata fields",
// TODO New key - Add a translation
"admin.registries.schema.fields.table.selected": "Selected metadata fields",
// "admin.registries.schema.fields.table.id": "ID",
// TODO Source message changed - Revise the translation
"admin.registries.schema.fields.table.id": "ID",
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
"admin.registries.schema.fields.table.scopenote": "Poznámka k rozsahu",
// "admin.registries.schema.form.create": "Create metadata field",
"admin.registries.schema.form.create": "Vytvořit metadatové pole",
// "admin.registries.schema.form.edit": "Edit metadata field",
"admin.registries.schema.form.edit": "Upravit metadatové pole",
// "admin.registries.schema.form.element": "Element",
"admin.registries.schema.form.element": "Termín",
// "admin.registries.schema.form.qualifier": "Qualifier",
"admin.registries.schema.form.qualifier": "Kvalifikátor",
// "admin.registries.schema.form.scopenote": "Scope Note",
"admin.registries.schema.form.scopenote": "Poznámka k rozsahu",
// "admin.registries.schema.head": "Metadata Schema",
"admin.registries.schema.head": "Metadatové schéma",
// "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"",
"admin.registries.schema.notification.created": "Metadatové schéma bylo Úspěšně vytvořeno \"{{prefix}}\"",
// "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas",
"admin.registries.schema.notification.deleted.failure": "Nepodařilo se odstranit metadatové schéma {{amount}}",
// "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas",
"admin.registries.schema.notification.deleted.success": "Úspěšně odstraněno {{amount}} metadatových schémat",
// "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"",
"admin.registries.schema.notification.edited": "Úspěšně upraveno metadatové schéma \"{{prefix}}\"",
// "admin.registries.schema.notification.failure": "Error",
"admin.registries.schema.notification.failure": "Chyba",
// "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"",
"admin.registries.schema.notification.field.created": "Úspěšně vytvořeno metadatové pole \"{{field}}\"",
// "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields",
"admin.registries.schema.notification.field.deleted.failure": "Nepodařilo se smazat metadatové pole {{amount}}",
// "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields",
"admin.registries.schema.notification.field.deleted.success": "Úspěšně odstraněno {{amount}} polí metadat",
// "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"",
"admin.registries.schema.notification.field.edited": "Úspěšně upraveno metadatové pole \"{{field}}\"",
// "admin.registries.schema.notification.success": "Success",
"admin.registries.schema.notification.success": "V pořádku",
// "admin.registries.schema.return": "Back",
// TODO Source message changed - Revise the translation
"admin.registries.schema.return": "Zpět",
// "admin.registries.schema.title": "Metadata Schema Registry",
"admin.registries.schema.title": "Registr metadatových schémat",
// "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management",
"admin.access-control.bulk-access.breadcrumbs": "Hromadná správa přístupu",
// "administrativeBulkAccess.search.results.head": "Search Results",
"administrativeBulkAccess.search.results.head": "Výsledky vyhledávání",
// "admin.access-control.bulk-access": "Bulk Access Management",
"admin.access-control.bulk-access": "Hromadná správa přístupu",
// "admin.access-control.bulk-access.title": "Bulk Access Management",
"admin.access-control.bulk-access.title": "Hromadná správa přístupu",
// "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects",
"admin.access-control.bulk-access-browse.header": "Krok 1: Vybrat záznam",
// "admin.access-control.bulk-access-browse.search.header": "Search",
"admin.access-control.bulk-access-browse.search.header": "Hledat",
// "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})",
"admin.access-control.bulk-access-browse.selected.header": "Aktuální výběr({{number}})",
// "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform",
"admin.access-control.bulk-access-settings.header": "Krok 2: Provést operaci",
// "admin.access-control.epeople.actions.delete": "Delete EPerson",
"admin.access-control.epeople.actions.delete": "Smazat uživatele",
// "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson",
"admin.access-control.epeople.actions.impersonate": "Simulace jiného uživatele",
// "admin.access-control.epeople.actions.reset": "Reset password",
"admin.access-control.epeople.actions.reset": "Resetovat heslo",
// "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson",
"admin.access-control.epeople.actions.stop-impersonating": "Přestat vystupovat jako jiný uživatel",
// "admin.access-control.epeople.breadcrumbs": "EPeople",
"admin.access-control.epeople.breadcrumbs": "Uživatelé",
// "admin.access-control.epeople.title": "EPeople",
"admin.access-control.epeople.title": "Uživatelé",
// "admin.access-control.epeople.edit.breadcrumbs": "New EPerson",
// TODO New key - Add a translation
"admin.access-control.epeople.edit.breadcrumbs": "New EPerson",
// "admin.access-control.epeople.edit.title": "New EPerson",
// TODO New key - Add a translation
"admin.access-control.epeople.edit.title": "New EPerson",
// "admin.access-control.epeople.add.breadcrumbs": "Add EPerson",
// TODO New key - Add a translation
"admin.access-control.epeople.add.breadcrumbs": "Add EPerson",
// "admin.access-control.epeople.add.title": "Add EPerson",
// TODO New key - Add a translation
"admin.access-control.epeople.add.title": "Add EPerson",
// "admin.access-control.epeople.head": "EPeople",
"admin.access-control.epeople.head": "Uživatelé",
// "admin.access-control.epeople.search.head": "Search",
"admin.access-control.epeople.search.head": "Hledat",
// "admin.access-control.epeople.button.see-all": "Browse All",
"admin.access-control.epeople.button.see-all": "Procházet vše",
// "admin.access-control.epeople.search.scope.metadata": "Metadata",
"admin.access-control.epeople.search.scope.metadata": "Metadata",
// "admin.access-control.epeople.search.scope.email": "Email (exact)",
// TODO Source message changed - Revise the translation
"admin.access-control.epeople.search.scope.email": "E-mail (přesný)",
// "admin.access-control.epeople.search.button": "Search",
"admin.access-control.epeople.search.button": "Hledat",
// "admin.access-control.epeople.search.placeholder": "Search people...",
"admin.access-control.epeople.search.placeholder": "Hledat uživatele...",
// "admin.access-control.epeople.button.add": "Add EPerson",
"admin.access-control.epeople.button.add": "Přidat uživatele",
// "admin.access-control.epeople.table.id": "ID",
"admin.access-control.epeople.table.id": "ID",
// "admin.access-control.epeople.table.name": "Name",
"admin.access-control.epeople.table.name": "Jméno",
// "admin.access-control.epeople.table.email": "Email (exact)",
// TODO Source message changed - Revise the translation
"admin.access-control.epeople.table.email": "E-mail (přesný)",
// "admin.access-control.epeople.table.edit": "Edit",
"admin.access-control.epeople.table.edit": "Upravit",
// "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.edit": "Upravit \"{{name}}\"",
// "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group",
"admin.access-control.epeople.table.edit.buttons.edit-disabled": "Nejste oprávněni upravovat tuto skupinu",
// "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.remove": "Odstranit \"{{name}}\"",
// "admin.access-control.epeople.no-items": "No EPeople to show.",
"admin.access-control.epeople.no-items": "Žádní uživatelé k zobrazení.",
// "admin.access-control.epeople.form.create": "Create EPerson",
"admin.access-control.epeople.form.create": "Vytvořit uživatele",
// "admin.access-control.epeople.form.edit": "Edit EPerson",
"admin.access-control.epeople.form.edit": "Upravit uživatele",
// "admin.access-control.epeople.form.firstName": "First name",
"admin.access-control.epeople.form.firstName": "Křestní jméno",
// "admin.access-control.epeople.form.lastName": "Last name",
"admin.access-control.epeople.form.lastName": "Příjmení",
// "admin.access-control.epeople.form.email": "Email",
// TODO Source message changed - Revise the translation
"admin.access-control.epeople.form.email": "E-mail",
// "admin.access-control.epeople.form.emailHint": "Must be a valid email address",
// TODO Source message changed - Revise the translation
"admin.access-control.epeople.form.emailHint": "Musí to být platná e-mailová adresa",
// "admin.access-control.epeople.form.canLogIn": "Can log in",
"admin.access-control.epeople.form.canLogIn": "Lze se přihlásit",
// "admin.access-control.epeople.form.requireCertificate": "Requires certificate",
"admin.access-control.epeople.form.requireCertificate": "Vyžaduje certifikát",
// "admin.access-control.epeople.form.return": "Back",
"admin.access-control.epeople.form.return": "Zpět",
// "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.created.success": "Úspěšně vytvořen uživatel \"{{name}}\"",
// "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.created.failure": "Nepodařilo se vytvořit uživatele \"{{name}}\"",
// "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.",
"admin.access-control.epeople.form.notification.created.failure.emailInUse": "Nepodařilo se vytvořit uživatele \"{{name}}\", e-mail \"{{email}}\" je již používán.",
// "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.",
"admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Nepodařilo se upravit uživatele \"{{name}}\", e-mail \"{{email}}\" je již používán.",
// "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.edited.success": "Úspěšně upraven uživatel \"{{name}}\"",
// "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.edited.failure": "Nepodařilo se upravit uživatele \"{{name}}\"",
// "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.deleted.success": "Úspěšně smazán uživatel \"{{name}}\"",
// "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.deleted.failure": "Nepodařilo se smazat uživatele \"{{name}}\"",
// "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
"admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Člen těchto skupin:",
// "admin.access-control.epeople.form.table.id": "ID",
"admin.access-control.epeople.form.table.id": "ID",
// "admin.access-control.epeople.form.table.name": "Name",
"admin.access-control.epeople.form.table.name": "Jméno",
// "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.epeople.form.table.collectionOrCommunity": "Kolekce/Komunita",
// "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups",
"admin.access-control.epeople.form.memberOfNoGroups": "Tento uživatel není členem žádné skupiny",
// "admin.access-control.epeople.form.goToGroups": "Add to groups",
"admin.access-control.epeople.form.goToGroups": "Přidat do skupin",
// "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"",
"admin.access-control.epeople.notification.deleted.failure": "Nepodařilo se odstranit uživatele: \"{{name}}\"",
// "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"",
"admin.access-control.epeople.notification.deleted.success": "Úspěšně odstraněn uživatel: \"{{name}}\"",
// "admin.access-control.groups.title": "Groups",
"admin.access-control.groups.title": "Skupiny",
// "admin.access-control.groups.breadcrumbs": "Groups",
"admin.access-control.groups.breadcrumbs": "Skupiny",
// "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group",
"admin.access-control.groups.singleGroup.breadcrumbs": "Upravit skupinu",
// "admin.access-control.groups.title.singleGroup": "Edit Group",
"admin.access-control.groups.title.singleGroup": "Upravit skupinu",
// "admin.access-control.groups.title.addGroup": "New Group",
"admin.access-control.groups.title.addGroup": "Nová skupina",
// "admin.access-control.groups.addGroup.breadcrumbs": "New Group",
"admin.access-control.groups.addGroup.breadcrumbs": "Nová skupina",
// "admin.access-control.groups.head": "Groups",
"admin.access-control.groups.head": "Skupiny",
// "admin.access-control.groups.button.add": "Add group",
"admin.access-control.groups.button.add": "Přidat skupinu",
// "admin.access-control.groups.search.head": "Search groups",
"admin.access-control.groups.search.head": "Hledat skupiny",
// "admin.access-control.groups.button.see-all": "Browse all",
"admin.access-control.groups.button.see-all": "Procházet vše",
// "admin.access-control.groups.search.button": "Search",
"admin.access-control.groups.search.button": "Hledat",
// "admin.access-control.groups.search.placeholder": "Search groups...",
"admin.access-control.groups.search.placeholder": "Hledat skupiny...",
// "admin.access-control.groups.table.id": "ID",
"admin.access-control.groups.table.id": "ID",
// "admin.access-control.groups.table.name": "Name",
"admin.access-control.groups.table.name": "Název",
// "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.groups.table.collectionOrCommunity": "Kolekce/Komunita",
// "admin.access-control.groups.table.members": "Members",
"admin.access-control.groups.table.members": "Členové",
// "admin.access-control.groups.table.edit": "Edit",
"admin.access-control.groups.table.edit": "Upravit",
// "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"",
"admin.access-control.groups.table.edit.buttons.edit": "Upravit \"{{name}}\"",
// "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.groups.table.edit.buttons.remove": "Odstranit \"{{name}}\"",
// "admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID",
"admin.access-control.groups.no-items": "Nebyla nalezena žádná skupina s tímto v návzvu nebo UUID",
// "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"",
"admin.access-control.groups.notification.deleted.success": "Úspěšně odstraněna skupina \"{{name}}\"",
// "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"",
"admin.access-control.groups.notification.deleted.failure.title": "Nepodařilo se odstranit skupinu \"{{name}}\"",
// "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"",
"admin.access-control.groups.notification.deleted.failure.content": "Důvod: \"{{cause}}\"",
// "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.",
"admin.access-control.groups.form.alert.permanent": "Tato skupina je trvalá, takže ji nelze upravit ani odstranit. Přesto můžete členy skupiny přidávat a odebírat pomocí této stránky.",
// "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the <a href='{{comcolEditRolesRoute}}'>\"assign roles\"</a> tab on the edit {{comcol}} page. You can still add and remove group members using this page.",
"admin.access-control.groups.form.alert.workflowGroup": "Tuto skupinu nelze změnit či vymazat, protože odpovídá roli v zadávání a workflow v \"{{name}}\" {{comcol}}. Můžete ji vymazat z <a href='{{comcolEditRolesRoute}}'>\"assign roles\"</a> záložce na stránce editace {{comcol}}. Na této stránce můžete přidávat či odebírat členy skupiny.",
// "admin.access-control.groups.form.head.create": "Create group",
"admin.access-control.groups.form.head.create": "Vytvořit skupinu",
// "admin.access-control.groups.form.head.edit": "Edit group",
"admin.access-control.groups.form.head.edit": "Upravit skupinu",
// "admin.access-control.groups.form.groupName": "Group name",
"admin.access-control.groups.form.groupName": "Název skupiny",
// "admin.access-control.groups.form.groupCommunity": "Community or Collection",
"admin.access-control.groups.form.groupCommunity": "Komunita nebo kolekce",
// "admin.access-control.groups.form.groupDescription": "Description",
"admin.access-control.groups.form.groupDescription": "Popis",
// "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"",
"admin.access-control.groups.form.notification.created.success": "Úspěšně vytvořena skupina \"{{name}}\"",
// "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"",
"admin.access-control.groups.form.notification.created.failure": "Nepodařilo se vytvořit skupinu \"{{name}}\"",
// "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
"admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Nepodařilo se vytvořit skupinu s názvem: \"{{name}}\", ujistěte se, že název již není používán.",
// "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"",
"admin.access-control.groups.form.notification.edited.failure": "Nepodařilo se upravit skupinu s názvem \"{{name}}\"",
// "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!",
"admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Název \"{{name}}\" je již používán!",
// "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"",
"admin.access-control.groups.form.notification.edited.success": "Úspěšně upravena skupina \"{{name}}\"",
// "admin.access-control.groups.form.actions.delete": "Delete Group",
"admin.access-control.groups.form.actions.delete": "Odstranit skupinu",
// "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.header": "Odstranit skupinu \"{{ dsoName }}\"",
// "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.info": "Určitě chcete odstranit skupinu \"{{ dsoName }}\"",
// "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel",
"admin.access-control.groups.form.delete-group.modal.cancel": "Zrušit",
// "admin.access-control.groups.form.delete-group.modal.confirm": "Delete",
"admin.access-control.groups.form.delete-group.modal.confirm": "Odstranit",
// "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"",
"admin.access-control.groups.form.notification.deleted.success": "Úspěšně odstraněna skupina \"{{ name }}\"",
// "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"",
"admin.access-control.groups.form.notification.deleted.failure.title": "Nepodařilo se odstranit skupinu \"{{ name }}\"",
// "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"",
"admin.access-control.groups.form.notification.deleted.failure.content": "Důvod: \"{{ cause }}\"",
// "admin.access-control.groups.form.members-list.head": "EPeople",
"admin.access-control.groups.form.members-list.head": "Uživatelé",
// "admin.access-control.groups.form.members-list.search.head": "Add EPeople",
"admin.access-control.groups.form.members-list.search.head": "Přidat uživatele",
// "admin.access-control.groups.form.members-list.button.see-all": "Browse All",
"admin.access-control.groups.form.members-list.button.see-all": "Procházet vše",
// "admin.access-control.groups.form.members-list.headMembers": "Current Members",
"admin.access-control.groups.form.members-list.headMembers": "Současní členové",
// "admin.access-control.groups.form.members-list.search.button": "Search",
"admin.access-control.groups.form.members-list.search.button": "Hledat",
// "admin.access-control.groups.form.members-list.table.id": "ID",
"admin.access-control.groups.form.members-list.table.id": "ID",
// "admin.access-control.groups.form.members-list.table.name": "Name",
"admin.access-control.groups.form.members-list.table.name": "Název",
// "admin.access-control.groups.form.members-list.table.identity": "Identity",
"admin.access-control.groups.form.members-list.table.identity": "Identita",
// "admin.access-control.groups.form.members-list.table.email": "Email",
"admin.access-control.groups.form.members-list.table.email": "E-mail",
// "admin.access-control.groups.form.members-list.table.netid": "NetID",
"admin.access-control.groups.form.members-list.table.netid": "NetID",
// "admin.access-control.groups.form.members-list.table.edit": "Remove / Add",
"admin.access-control.groups.form.members-list.table.edit": "Odstranit / Přidat",
// "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
"admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Odebrat člena jménem \"{{name}}\"",
// "admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.success.addMember": "Úspěšně přidán člen: \"{{name}}\"",
// "admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.failure.addMember": "Nepodařilo se přidat člena: \"{{name}}\"",
// "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.success.deleteMember": "Úspěšně odstraněn člen: \"{{name}}\"",
// "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
"admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Nepodařilo se smazat člena: \"{{name}}\"",
// "admin.access-control.groups.form.members-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
"admin.access-control.groups.form.members-list.table.edit.buttons.add": "Přidat člena jménem \"{{name}}\"",
// "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "Žádná aktuální aktivní skupina, nejprve zadejte název.",
// "admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.",
"admin.access-control.groups.form.members-list.no-members-yet": "Ve skupině zatím nejsou žádní členové, vyhledejte je a přidejte.",
// "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search",
"admin.access-control.groups.form.members-list.no-items": "V tomto vyhledávání nebyli nalezeni žádní uživatelé",
// "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"",
"admin.access-control.groups.form.subgroups-list.notification.failure": "Neúspěch: Něco se pokazilo: \"{{cause}}\"",
// "admin.access-control.groups.form.subgroups-list.head": "Groups",
"admin.access-control.groups.form.subgroups-list.head": "Skupiny",
// "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup",
"admin.access-control.groups.form.subgroups-list.search.head": "Přidat podskupinu",
// "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All",
"admin.access-control.groups.form.subgroups-list.button.see-all": "Procházet vše",
// "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups",
"admin.access-control.groups.form.subgroups-list.headSubgroups": "Aktuální podskupiny",
// "admin.access-control.groups.form.subgroups-list.search.button": "Search",
"admin.access-control.groups.form.subgroups-list.search.button": "Hledat",
// "admin.access-control.groups.form.subgroups-list.table.id": "ID",
"admin.access-control.groups.form.subgroups-list.table.id": "ID",
// "admin.access-control.groups.form.subgroups-list.table.name": "Name",
"admin.access-control.groups.form.subgroups-list.table.name": "Název",
// "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Kolekce/Komunita",
// "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add",
"admin.access-control.groups.form.subgroups-list.table.edit": "Odstranit / Přidat",
// "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Remove subgroup with name \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Odebrat podskupinu s názvem \"{{name}}\"",
// "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Add subgroup with name \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Přidat podskupinu s názvem \"{{name}}\"",
// "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Úspěšně přidána podskupina: \"{{name}}\"",
// "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Nepodařilo se přidat podskupinu: \"{{name}}\"",
// "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Úspěšně odstraněna podskupina: \"{{name}}\"",
// "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Podskupinu se nepodařilo odstranit: \"{{name}}\"",
// "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "Žádná aktuální aktivní skupina, nejprve zadejte název.",
// "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.",
"admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "Toto je aktuální skupina, nelze přidat.",
// "admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID",
"admin.access-control.groups.form.subgroups-list.no-items": "Nebyla nalezena žádná skupina s tímto v návzvu nebo UUID",
// "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.",
"admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "Ve skupině zatím nejsou žádné podskupiny.",
// "admin.access-control.groups.form.return": "Back",
// TODO Source message changed - Revise the translation
"admin.access-control.groups.form.return": "Zpět",
// "admin.quality-assurance.breadcrumbs": "Quality Assurance",
// TODO New key - Add a translation
"admin.quality-assurance.breadcrumbs": "Quality Assurance",
// "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions",
// TODO New key - Add a translation
"admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions",
// "admin.notifications.event.page.title": "Quality Assurance Suggestions",
// TODO New key - Add a translation
"admin.notifications.event.page.title": "Quality Assurance Suggestions",
// "admin.quality-assurance.page.title": "Quality Assurance",
// TODO New key - Add a translation
"admin.quality-assurance.page.title": "Quality Assurance",
// "admin.notifications.source.breadcrumbs": "Quality Assurance",
// TODO New key - Add a translation
"admin.notifications.source.breadcrumbs": "Quality Assurance",
// "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.",
"admin.access-control.groups.form.tooltip.editGroupPage": "Na této stránce můžete upravit vlastnosti a členy skupiny. V horní části můžete upravit název a popis skupiny, pokud se nejedá o skupinu admin pro kolekci nebo komunitu. V takovém případě jsou název a popis skupiny vygenerovány automaticky a nelze je upravovat. V následujících částech můžete upravovat členství ve skupině. Další podrobnosti naleznete v části [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group).",
// "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
"admin.access-control.groups.form.tooltip.editGroup.addEpeople": "Pro přidání nebo odebrání uživatele z této skupiny, buď klikněte na „Prohledávat všechny“ nebo použijte vyhledávací okno pro vyhledání uživatele (použijte roletku na levé straně vyhledávacího okna a vyberte, zda chcete prohledávat pomocí metadat nebo e-mailu). Potom klikněte na tlačítko plus u každého uživatele, kterého chcete přidat, nebo na ikonu odpadkového koše u každého uživatele, kterého chcete odebrat. Seznam níže může obsahovat několik stránek: k přechodu na další stránku použijte ovládací prvky pod seznamem. Až budete hotovi, uložte změny pomocí tlačítka „Uložit“ v horní části.",
// "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
"admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "Pro přidání nebo odebrání podskupiny z této skupiny, buď klikněte na „Prohledávat všechny“ nebo použijte vyhledávací okno níže pro vyhledání uživatele. Potom klikněte na tlačítko plus u každého uživatele, kterého chcete přidat, nebo na ikonu odpadkového koše u každého uživatele, kterého chcete odebrat. Seznam níže může obsahovat několik stránek: k přechodu na další stránku použijte ovládací prvky pod seznamem. Až budete hotovi, uložte změny pomocí tlačítka „Uložit“ v horní části.",
// "admin.reports.collections.title": "Collection Filter Report",
// TODO New key - Add a translation
"admin.reports.collections.title": "Collection Filter Report",
// "admin.reports.collections.breadcrumbs": "Collection Filter Report",
// TODO New key - Add a translation
"admin.reports.collections.breadcrumbs": "Collection Filter Report",
// "admin.reports.collections.head": "Collection Filter Report",
// TODO New key - Add a translation
"admin.reports.collections.head": "Collection Filter Report",
// "admin.reports.button.show-collections": "Show Collections",
// TODO New key - Add a translation
"admin.reports.button.show-collections": "Show Collections",
// "admin.reports.collections.collections-report": "Collection Report",
// TODO New key - Add a translation
"admin.reports.collections.collections-report": "Collection Report",
// "admin.reports.collections.item-results": "Item Results",
// TODO New key - Add a translation
"admin.reports.collections.item-results": "Item Results",
// "admin.reports.collections.community": "Community",
// TODO New key - Add a translation
"admin.reports.collections.community": "Community",
// "admin.reports.collections.collection": "Collection",
// TODO New key - Add a translation
"admin.reports.collections.collection": "Collection",
// "admin.reports.collections.nb_items": "Nb. Items",
// TODO New key - Add a translation
"admin.reports.collections.nb_items": "Nb. Items",
// "admin.reports.collections.match_all_selected_filters": "Matching all selected filters",
// TODO New key - Add a translation
"admin.reports.collections.match_all_selected_filters": "Matching all selected filters",
// "admin.reports.items.breadcrumbs": "Metadata Query Report",
// TODO New key - Add a translation
"admin.reports.items.breadcrumbs": "Metadata Query Report",
// "admin.reports.items.head": "Metadata Query Report",
// TODO New key - Add a translation
"admin.reports.items.head": "Metadata Query Report",
// "admin.reports.items.run": "Run Item Query",
// TODO New key - Add a translation
"admin.reports.items.run": "Run Item Query",
// "admin.reports.items.section.collectionSelector": "Collection Selector",
// TODO New key - Add a translation
"admin.reports.items.section.collectionSelector": "Collection Selector",
// "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries",
// TODO New key - Add a translation
"admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries",
// "admin.reports.items.predefinedQueries": "Predefined Queries",
// TODO New key - Add a translation
"admin.reports.items.predefinedQueries": "Predefined Queries",
// "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries",
// TODO New key - Add a translation
"admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries",
// "admin.reports.items.limit": "Limit/",
// TODO New key - Add a translation
"admin.reports.items.limit": "Limit/",
// "admin.reports.items.offset": "Offset",
// TODO New key - Add a translation
"admin.reports.items.offset": "Offset",
// "admin.reports.items.wholeRepo": "Whole Repository",
// TODO New key - Add a translation
"admin.reports.items.wholeRepo": "Whole Repository",
// "admin.reports.items.anyField": "Any field",
// TODO New key - Add a translation
"admin.reports.items.anyField": "Any field",
// "admin.reports.items.predicate.exists": "exists",
// TODO New key - Add a translation
"admin.reports.items.predicate.exists": "exists",
// "admin.reports.items.predicate.doesNotExist": "does not exist",
// TODO New key - Add a translation
"admin.reports.items.predicate.doesNotExist": "does not exist",
// "admin.reports.items.predicate.equals": "equals",
// TODO New key - Add a translation
"admin.reports.items.predicate.equals": "equals",
// "admin.reports.items.predicate.doesNotEqual": "does not equal",
// TODO New key - Add a translation
"admin.reports.items.predicate.doesNotEqual": "does not equal",
// "admin.reports.items.predicate.like": "like",
// TODO New key - Add a translation
"admin.reports.items.predicate.like": "like",
// "admin.reports.items.predicate.notLike": "not like",
// TODO New key - Add a translation
"admin.reports.items.predicate.notLike": "not like",
// "admin.reports.items.predicate.contains": "contains",
// TODO New key - Add a translation
"admin.reports.items.predicate.contains": "contains",
// "admin.reports.items.predicate.doesNotContain": "does not contain",
// TODO New key - Add a translation
"admin.reports.items.predicate.doesNotContain": "does not contain",
// "admin.reports.items.predicate.matches": "matches",
// TODO New key - Add a translation
"admin.reports.items.predicate.matches": "matches",
// "admin.reports.items.predicate.doesNotMatch": "does not match",
// TODO New key - Add a translation
"admin.reports.items.predicate.doesNotMatch": "does not match",
// "admin.reports.items.preset.new": "New Query",
// TODO New key - Add a translation
"admin.reports.items.preset.new": "New Query",
// "admin.reports.items.preset.hasNoTitle": "Has No Title",
// TODO New key - Add a translation
"admin.reports.items.preset.hasNoTitle": "Has No Title",
// "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri",
// TODO New key - Add a translation
"admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri",
// "admin.reports.items.preset.hasCompoundSubject": "Has compound subject",
// TODO New key - Add a translation
"admin.reports.items.preset.hasCompoundSubject": "Has compound subject",
// "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author",
// TODO New key - Add a translation
"admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author",
// "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator",
// TODO New key - Add a translation
"admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator",
// "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description",
// TODO New key - Add a translation
"admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description",
// "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance",
// TODO New key - Add a translation
"admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance",
// "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance",
// TODO New key - Add a translation
"admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance",