-
Notifications
You must be signed in to change notification settings - Fork 59
/
strings_cs.json
5014 lines (5014 loc) · 220 KB
/
strings_cs.json
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
{
"title": {
"resetPassword": {
"string": "Obnovit heslo",
"developer_comment": "This is the text shown as the title of a page including in the browser tab."
},
"setPassword": {
"string": "Nastavit heslo",
"developer_comment": "This is the text shown as the title of a page including in the browser tab."
},
"editProfile": {
"string": "Upravit profil",
"developer_comment": "This is the text shown as the title of a page including in the browser tab."
},
"download": {
"string": "Stáhnout",
"developer_comment": "This is the text shown as the title of a page including in the browser tab."
},
"pageNotFound": {
"string": "Stránka nenalezena",
"developer_comment": "This is the text shown as the title of a page including in the browser tab."
},
"details": {
"string": "Detaily",
"developer_comment": "This is the text shown as the title of a page including in the browser tab."
}
},
"projectShow": {
"tab": {
"formAccess": {
"string": "Přístup k formulářům",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
}
}
},
"formHead": {
"tab": {
"versions": {
"string": "Verze",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
},
"publicAccess": {
"string": "Veřejný přístup",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
}
},
"draftNav": {
"tab": {
"testing": {
"string": "Testování",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
},
"status": {
"string": "Stav"
}
}
}
},
"systemHome": {
"title": {
"string": "Řízení systému",
"developer_comment": "This is the title of the page for audit logs and other system-level functions."
},
"tab": {
"audits": {
"string": "Protokoly auditu serveru",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
},
"analytics": {
"string": "Hlášení o používání",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
}
}
},
"role": {
"none": {
"string": "Žádná",
"developer_comment": "This is shown when a user does not have a Role."
},
"admin": {
"string": "Administrátor",
"developer_comment": "This is the name of a user Role."
},
"manager": {
"string": "Projektový manažer",
"developer_comment": "This is the name of a user Role."
},
"viewer": {
"string": "Prohlížeč projektu",
"developer_comment": "This is the name of a user Role."
},
"formfill": {
"string": "Sběratel dat",
"developer_comment": "This is the name of a user Role."
}
},
"formState": {
"open": {
"string": "Otevřít",
"developer_comment": "Form States control the lifecycle state of each Form. \"Open\" is one Form State."
},
"closing": {
"string": "Dokončení",
"developer_comment": "Form States control the lifecycle state of each Form. \"Closing\" is one Form State."
},
"closed": {
"string": "Dokončeno",
"developer_comment": "Form States control the lifecycle state of each Form. \"Closed\" is one Form State."
},
"unpublished": {
"string": "Zatím nezveřejněno",
"developer_comment": "This is a note about a Form that is not yet published."
}
},
"reviewState": {
"received": {
"string": "Přijato",
"developer_comment": "This is a possible Review State for a Submission."
},
"hasIssues": {
"string": "Má problémy",
"developer_comment": "This is a possible Review State for a Submission."
},
"edited": {
"string": "Upraveno",
"developer_comment": "This is a possible Review State for a Submission."
},
"approved": {
"string": "Schváleno",
"developer_comment": "This is a possible Review State for a Submission."
},
"rejected": {
"string": "Odmítnuto",
"developer_comment": "This is a possible Review State for a Submission."
}
},
"audit": {
"category": {
"nonverbose": {
"string": "(Všechny akce)",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"user": {
"string": "Akce webového uživatele",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"project": {
"string": "Akce projektu",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"form": {
"string": "Akce formuláře",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"field_key": {
"string": "Akce uživatelů aplikace",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"public_link": {
"string": "Akce s veřejným přístupem",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"dataset": {
"string": "Seznam akcí entit",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"config": {
"string": "Akce konfigurace serveru",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"upgrade": {
"string": "Upgrade serveru",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
},
"task": {
"string": "",
"developer_comment": "This is a category of actions performed on the server. It is shown in a dropdown when filtering the log of actions by type."
}
},
"action": {
"default": {
"create": {
"string": "Vytvořit",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action."
},
"update": {
"string": "Aktualizovat podrobnosti",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action."
},
"session_end": {
"string": "Zrušit",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action."
},
"delete": {
"string": "Smazat",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action."
}
},
"analytics": {
"string": "Zpráva o použití",
"developer_comment": "This is shown in the log of actions performed on the server."
},
"blobs": {
"s3_upload": {
"string": "Nahrávání souborů do úložiště",
"developer_comment": "This is shown in the log of actions performed on the server."
},
"s3_failed_to_pending": {
"string": "Označení souborů k opětovnému nahrání do úložiště",
"developer_comment": "This is shown in the log of actions performed on the server."
}
},
"config": {
"set": {
"string": "Nastavit",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Server Configuration."
}
},
"dataset": {
"update": {
"string": "Aktualizovat",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on an Entity List."
},
"update_publish": {
"string": "Zveřejnit",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on an Entity List."
}
},
"field_key": {
"assignment_create": {
"string": "Dát přístup",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on an App User."
},
"assignment_delete": {
"string": "Odebrat přístup",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on an App User."
}
},
"form": {
"update_draft_set": {
"string": "Vytvořit nebo aktualizovat koncept",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"update_draft_replace": {
"string": "Nahrazení návrhu",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"update_publish": {
"string": "Zveřejnit koncept",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"update_draft_delete": {
"string": "Opustit koncept",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"attachment_update": {
"string": "Aktualizovat přílohy",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"submission_export": {
"string": "Stáhnout příspěvky",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"restore": {
"string": "Zrušit smazání",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
},
"purge": {
"string": "Vyčistit",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Form."
}
},
"public_link": {
"assignment_create": {
"string": "Dát přístup",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Public Access Link."
},
"assignment_delete": {
"string": "Odebrat přístup",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on a Public Access Link."
}
},
"submission": {
"purge": {
"string": "",
"developer_comment": "This is shown in the log of actions performed on the server."
}
},
"upgrade": {
"process_form": {
"string": "Zpracování formuláře",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that the server performs when it is upgraded."
},
"process_form_draft": {
"string": "Zpracování návrhu formuláře",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that the server performs when it is upgraded."
},
"process_form_entities_version": {
"string": "",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that the server performs when it is upgraded."
}
},
"user": {
"assignment_create": {
"string": "Přiřadit roli",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on or for a Web User."
},
"assignment_delete": {
"string": "Odebrat roli",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on or for a Web User."
},
"delete": {
"string": "Uspat",
"developer_comment": "This is shown in the log of actions performed on the server. It is a type of action that can be taken on or for a Web User."
}
}
}
},
"action": {
"cancel": {
"string": "Zrušit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"clear": {
"string": "Vymazat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"close": {
"string": "Zavřít",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"comment": {
"string": "Komentář",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"continue": {
"string": "Pokračovat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"create": {
"string": "Vytvořit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"createSubmission": {
"string": "Nový",
"developer_comment": "This is the text of a button that is used to fill out a new Submission. It is shown next to a heading whose text is \"Submissions\"."
},
"delete": {
"string": "Smazat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"done": {
"string": "Hotovo",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"download": {
"string": "Stáhnout",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"edit": {
"string": "Upravit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"editProfile": {
"string": "Upravit profil",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"finish": {
"string": "Dokončit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"logIn": {
"string": "Přihlásit se",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"looksGood": {
"string": "Vypadá to dobře, pokračujte",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"more": {
"string": "Více",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"neverMind": {
"string": "Nevadí, zrušit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"next": {
"string": "Další",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"noCancel": {
"string": "Ne, zrušit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"ok": {
"string": "OK",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"proceed": {
"string": "Pokračovat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"refresh": {
"string": "Obnovit",
"developer_comment": "This is the text of a button that refreshes data."
},
"resetPassword": {
"string": "Resetovat heslo",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"review": {
"string": "Zkontrolovat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"save": {
"string": "Uložit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"saveSettings": {
"string": "Uložit nastavení",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"sort": {
"string": "Seřadit",
"developer_comment": "This text is shown next to a dropdown menu or other way to change the sorting of Projects or Forms"
},
"update": {
"string": "Aktualizovat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"yesProceed": {
"string": "Ano, pokračovat",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"showPreview": {
"string": "Náhled",
"developer_comment": "This text is shown on a button that the user clicks to show a preview of something"
},
"hidePreview": {
"string": "Skrýt náhled",
"developer_comment": "This text is shown on a button that the user clicks to hide a preview of something"
},
"newPreview": {
"string": "Nový náhled",
"developer_comment": "This text is show on a button that the user clicks to see the Form preview in the new Web Forms component"
},
"expand": {
"string": "Rozbalit",
"developer_comment": "This is the text for an action, for example, the text of a button."
},
"collapse": {
"string": "Sbalit",
"developer_comment": "This is the text for an action, for example, the text of a button."
}
},
"field": {
"comment": {
"string": "Zanechat komentář…",
"developer_comment": "This is the text of a form field."
},
"dateRange": {
"string": "Časové období",
"developer_comment": "This is the text of a form field."
},
"displayName": {
"string": "Zobrazit název",
"developer_comment": "This is the text of a form field."
},
"email": {
"string": "E-mailová adresa",
"developer_comment": "This is the text of a form field."
},
"name": {
"string": "Jméno",
"developer_comment": "This is the text of a form field."
},
"newPassword": {
"string": "Nové heslo",
"developer_comment": "This is the text of a form field."
},
"oldPassword": {
"string": "Staré heslo",
"developer_comment": "This is the text of a form field."
},
"passphrase": {
"string": "Přístupová fráze",
"developer_comment": "This is the text of a form field."
},
"password": {
"string": "Heslo",
"developer_comment": "This is the text of a form field."
},
"passwordConfirm": {
"string": "Nové heslo (potvrzení)",
"developer_comment": "This is the text of a form field."
},
"type": {
"string": "Typ",
"developer_comment": "This is the text of a form field."
},
"reviewState": {
"string": "Přezkoumání stavu"
}
},
"header": {
"actions": {
"string": "Akce",
"developer_comment": "This is the text of a table column header."
},
"created": {
"string": "Vytvořeno",
"developer_comment": "This is the text of a table column header. The column shows who created each App User and possibly also when they did so."
},
"createdBy": {
"string": "Vytvořeno od",
"developer_comment": "This is the text of a table column header. The column shows the user or Public Access Link that created each Entity."
},
"createdAt": {
"string": "Vytvořeno v",
"developer_comment": "This is the text of a table column header. The column shows when each Entity was created."
},
"updatedBy": {
"string": "Aktualizováno od",
"developer_comment": "This is the text of a table column header. For each Entity property, the column shows the Forms that can update the property."
},
"displayName": {
"string": "Zobrazit jméno",
"developer_comment": "This is the text of a table column header."
},
"email": {
"string": "E-mailová adresa",
"developer_comment": "This is the text of a table column header."
},
"instanceId": {
"string": "Instance ID",
"developer_comment": "This is the text of a table column header."
},
"lastSubmission": {
"string": "Poslední podání",
"developer_comment": "This is the text of a table column header."
},
"recentActivity": {
"string": "Nedávná aktivita",
"developer_comment": "This is the text of a table column header."
},
"name": {
"string": "Jméno",
"developer_comment": "This is the text of a table column header."
},
"listName": {
"string": "Název seznamu",
"developer_comment": "This is the text of a table column header."
},
"submitterName": {
"string": "Odesláno od",
"developer_comment": "This is the text of a table column header. The column shows the user or Public Access Link that submitted each Submission."
},
"submissionDate": {
"string": "Odesláno v",
"developer_comment": "This is the text of a table column header. The column indicates when each Submission was submitted."
},
"time": {
"string": "Čas",
"developer_comment": "This is the text of a table column header for a column that shows dates and times."
},
"type": {
"string": "Typ",
"developer_comment": "This is the text of a table column header."
},
"entities": {
"string": "Celkem subjektů",
"developer_comment": "This is the text of a table column header. The column shows the number of entities for the Entity List"
},
"lastEntity": {
"string": "Nejnovější entita",
"developer_comment": "This is the text of a table column header. The column shows the date and time of the newest entity"
}
},
"plural": {
"appUser": {
"string": "{count, plural, one {Uživatel aplikace} few {Uživatelé aplikace} many {Uživatelů aplikace} other {Uživatelé aplikace}}"
},
"form": {
"string": "{count, plural, one {Formulář} few {Formulářů} many {Formulářů} other {Formuláře}}"
},
"project": {
"string": "{count, plural, one {Projekt} few {Projektů} many {Projektů} other {Projekty}}"
},
"submission": {
"string": "{count, plural, one {Podaný příspěvek} few {Podaných příspěvků} many {Podaných příspěvků} other {Podané příspěvky}}"
},
"user": {
"string": "{count, plural, one {Uživatel} few {Uživatelé} many {Uživatelů} other {Uživatelé}}"
},
"webUser": {
"string": "{count, plural, one {Webový uživatel} few {Weboví uživatelé} many {Webových uživatelů} other {Weboví uživatelé}}"
}
},
"count": {
"appUser": {
"string": "{count, plural, one {{count} uživatel aplikace} few {{count} uživatelů aplikace} many {{count} uživatelů aplikace} other {{count} uživatelů aplikace}}",
"developer_comment": "This text appears on its own and is not part of a longer sentence."
},
"form": {
"string": "{count, plural, one {{count} formulář} few {{count} formulářů} many {{count} formulářů} other {{count} formulářů}}",
"developer_comment": "This text appears on its own and is not part of a longer sentence."
},
"submission": {
"string": "{count, plural, one {{count} podaný příspěvek} few {{count} podaných příspěvků} many {{count} podaných příspěvků} other {{count} podaných příspěvků}}",
"developer_comment": "This text appears on its own and is not part of a longer sentence."
},
"warning": {
"string": "{count, plural, one {} few {} many {} other {}}",
"developer_comment": "This text appears on its own and is not part of a longer sentence."
}
},
"resource": {
"appUser": {
"string": "Uživatel aplikace",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"appUsers": {
"string": "Uživatelé aplikace",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"config": {
"string": "Konfigurace serveru",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"entityList": {
"string": "Seznam entit",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"entityLists": {
"string": "Seznamy entit",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"entities": {
"string": "Subjekty",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"form": {
"string": "Formulář",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"forms": {
"string": "Formuláře",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"formAttachments": {
"string": "Přílohy formuláře",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"project": {
"string": "Projekt",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"projects": {
"string": "Projekty",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"property": {
"string": "Vlastnost",
"developer_comment": "This is a data property of an Entity."
},
"publicLink": {
"string": "Veřejný odkaz",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"user": {
"string": "Uživatel",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"users": {
"string": "Uživatelé",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"webUser": {
"string": "Webový uživatel",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"webUsers": {
"string": "Uživatelé webu",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"session": {
"string": "Relace",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"submissions": {
"string": "Příspěvky",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"projectRoles": {
"string": "Role projektu",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
},
"formPreview": {
"string": "Náhled formuláře",
"developer_comment": "This text appears on its own and is not part of a longer sentence. It may be shown as a title, for example, at the top of the page."
}
},
"alert": {
"passwordTooShort": {
"string": "Zadejte heslo dlouhé alespoň 10 znaků."
},
"updateEntity": {
"string": "Entita byla aktualizována!"
},
"updateReviewState": {
"string": "Stav kontroly uložen!"
},
"versionChange": {
"string": "Server byl aktualizován. Obnovte prosím stránku, abyste se vyhnuli nepředvídatelnému chování."
},
"submissionDeleted": {
"string": ""
},
"submissionRestored": {
"string": ""
}
},
"moreInfo": {
"clickHere": {
"full": {
"string": "Pro více informací {clickHere}.",
"developer_comment": "{clickHere} is a separate string that will be translated below. Its text will be formatted within ODK Central, for example, it might be bold or a link. Its text is:\n\nclick here"
},
"clickHere": {
"string": "klikněte zde",
"developer_comment": "This text will be formatted within ODK Central, for example, it might be bold or a link. It will be inserted where {clickHere} is in the following text:\n\nFor more information, {clickHere}."
}
},
"helpArticle": {
"full": {
"string": "Pro více informací viz {helpArticle}.",
"developer_comment": "{helpArticle} is a separate string that will be translated below. Its text will be formatted within ODK Central, for example, it might be bold or a link. Its text is:\n\nthis help article"
},
"helpArticle": {
"string": "tento článek nápovědy",
"developer_comment": "This text will be formatted within ODK Central, for example, it might be bold or a link. It will be inserted where {helpArticle} is in the following text:\n\nFor more information, please see {helpArticle}."
}
},
"learnMore": {
"string": "Další informace.",
"developer_comment": "This is a link to more information."
}
},
"analytics": {
"alwaysImprove": {
"string": "Neustále se snažíme ODK Central vylepšovat."
},
"needFeedback": {
"full": {
"string": "K tomu potřebujeme {your} zpětnou vazbu, abychom pochopili, jak Central používáte a jak by pro vás mohl být lepší.",
"developer_comment": "\"This\" refers to improving Central.\n\n{your} is a separate string that will be translated below. Its text will be formatted within ODK Central, for example, it might be bold or a link. Its text is:\n\nyour"
},
"your": {
"string": "vaší",
"developer_comment": "This text will be formatted within ODK Central, for example, it might be bold or a link. It will be inserted where {your} is in the following text:\n\nTo do this, we need {your} feedback, so that we can understand how you are using Central, and how it could be better for you."
}
}
},
"submission": {
"missingAttachment": {
"string": "Chybějící příloha",
"developer_comment": "This is a possible state for a Submission. It means that the Submission is missing one or more expected Attachments."
},
"action": {
"edit": {
"string": "Upravit ({count})",
"developer_comment": "{count} is the number of previous edits."
}
},
"editDisabled": {
"string": "Šifrované příspěvky nemůžete upravovat.",
"developer_comment": "This is shown when the Edit button is disabled."
},
"binaryLinkTitle": {
"string": "Soubor byl odeslán. Kliknutím stáhnete."
},
"encryptionMessage": {
"string": "Náhled dat není k dispozici kvůli šifrování."
},
"noSubmission": {
"string": "(žádný)",
"developer_comment": "This text is shown under the \"Latest Submission\" column of the tables for Projects and Forms. It is shown for a Project or Form with no Submissions."
},
"emptyTable": {
"string": "Zatím nejsou žádné příspěvky."
},
"fileDownloadUnavailable": {
"string": ""
}
},
"entity": {
"label": {
"string": "Štítek",
"developer_comment": "This is the label of an Entity."
},
"entityLabel": {
"string": "Štítek Entity"
},
"entityId": {
"string": "ID subjektu",
"developer_comment": "This is the UUID of an Entity."
},
"noProperties": {
"string": "Tento formulář nastavuje pouze \"štítek\"."
},
"noEntity": {
"string": "(žádný)"
},
"conflictsCount": {
"string": "{count, plural, one {{count} konflikt} few {{count} konflikty} many {{count} konfliktů} other {{count} konfliktů}}"
}
},
"common": {
"activity": {
"string": "Aktivita",
"developer_comment": "This is a title shown above a section of the page."
},
"anybody": {
"string": "(Kdokoli)",
"developer_comment": "This is shown in a dropdown that allows the user to filter to only show data for particular users."
},
"areYouSure": {
"string": "Opravdu chcete pokračovat?",
"developer_comment": "Here we ask the user to confirm that they wish to complete an action that they have initiated."
},
"basicInfo": {
"string": "Základní informace",
"developer_comment": "This is a title shown above a section of the page."
},
"conflict": {
"string": "Konflikt"
},
"conflicts": {
"string": "Konflikty"
},
"currentDraft": {
"string": "Váš aktuální koncept",
"developer_comment": "This is a title shown above a section of the page."
},
"dangerZone": {
"string": "Nebezpečná zóna",
"developer_comment": "This is a title shown above a section of the page."
},
"data": {
"string": "Data",
"developer_comment": "This is shown in the tab above a table of data."
},
"docs": {
"string": "Dokumentace",
"developer_comment": "This is the text of a link that links to the documentation."
},
"emptyValue": {
"string": "(prázdný)",
"developer_comment": "This is shown when the value of an Entity property is empty."
},
"error": {
"string": "Chyba"
},
"filter": {
"string": "Filtr",
"developer_comment": "This text is shown next to options for filtering a table."
},
"forum": {
"string": "Fórum",
"developer_comment": "This is the text of a link that links to the ODK forum."
},
"loading": {
"string": "Načítání..."
},
"no": {
"string": "Ne"
},
"noResults": {
"string": "Žádné výsledky",
"developer_comment": "This is shown if a search returned no results."
},
"noUndo": {
"string": ""
},
"rightNow": {
"string": "Právě teď",
"developer_comment": "This is the title of a section that shows status information for the entire server such as project count."
},
"rowNumber": {
"string": "",
"developer_comment": "This is shown for the row number."
},
"success": {
"string": "Úspěch!"
},
"system": {
"string": "System",
"developer_comment": "\"System\" refers to the server and how it is configured. It may be shown as a title, for example, at the top of the page."
},
"yes": {
"string": "Ano"
},
"tab": {
"settings": {
"string": "Nastavení",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
},
"overview": {
"string": "Přehled",
"developer_comment": "This is the text of a navigation tab, which may also be shown as the page title (browser tab)."
}
},
"total": {
"string": "Celkem"
},
"totalSubmissions": {
"string": "Celkem odeslání"
},
"propertiesCount": {
"string": "{count, plural, one {} few {} many {} other {}}",
"developer_comment": "{inform} is the number of Entity Properties defined by the form. {count} is the total number of Properties. The string will be pluralized based on {count}."
},
"new": {
"string": "Novinka!"
},
"totalEntities": {
"string": "Celkem entit"
},
"versionShort": {
"string": "v{version}",
"developer_comment": "A short identifier of an Entity version. \"v\" is short for \"version\". {version} is a version number."
},
"warning": {
"string": "",
"developer_comment": "This text is shown on its own before details about a warning."
}
},
"mixin": {
"request": {
"alert": {
"fileSize": {
"string": "Soubor \"{name}\" který se pokoušíte nahrát, je větší než limit 100 MB."
},
"entityTooLarge": {
"string": "Data, která se snažíte nahrát, jsou příliš velká."
}
}
}
},
"util": {
"csv": {
"readError": {
"string": "",
"developer_comment": "{message} is a description of the problem."
},
"invalidCSV": {
"string": ""
},
"rowError": {
"string": "",
"developer_comment": "{row} is a row number. {message} is a description of the problem."
},
"invalidQuotes": {
"string": "",
"developer_comment": "This is an error that is shown for a spreadsheet. The field may be any cell in the spreadsheet."
},
"emptyRow": {
"string": "Řádek je prázdný."
},
"dataWithoutHeader": {
"string": "{count, plural, one {} few {} many {} other {}}",
"developer_comment": "This is an error that is shown for a data file. {expected} and {actual} are each a number of columns. The string will be pluralized based on {expected}."
}
},
"request": {
"noRequest": {
"string": "Něco se pokazilo: nebyl žádný požadavek."
},
"noResponse": {
"string": "Něco se pokazilo: nebyla žádná odezva na váš požadavek."
},
"errorNotProblem": {
"string": "Něco se pokazilo: chybový kód {status}.",
"developer_comment": "{status} is an HTTP status code, for example, 404."
},
"problem": {
"404_1": {
"string": "Hledaný zdroj nelze nalézt. Zdroj mohl být smazán.",
"developer_comment": "A \"resource\" is a generic term for something in Central, for example, a Project, a Web User, or a Form."
}
}
},
"session": {
"alert": {
"expiresSoon": {
"string": "Vaše relace vyprší za 2 minuty a budete automaticky odhlášeni."
},
"expired": {
"string": "Vaše relace vypršela. Chcete-li pokračovat v práci, přihlaste se prosím znovu."