-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathapp_cs.arb
More file actions
12780 lines (12780 loc) · 496 KB
/
Copy pathapp_cs.arb
File metadata and controls
12780 lines (12780 loc) · 496 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
{
"backupWarningDescription": "Bez zálohy ztratíte přístup ke svým bitcoinům, pokud:",
"backupWarningLoseReasonLostPhone": "Ztratíte telefon",
"backupWarningLoseReasonDeletedApp": "Smažete aplikaci",
"backupWarningLoseReasonCriticalIssue": "Dojde ke kritickému problému s aplikací nebo zařízením",
"backupWarningLoseReasonKeystore": "Zařízení zneplatní keystore při změně zámku obrazovky nebo ověřování zařízení",
"backupWarningLoseReasonCloudRestore": "Obnovení zařízení ze zálohy v cloudu",
"backupWarningNoRecovery": "Bez zálohy nelze peněženku obnovit.",
"durationSeconds": "{seconds} vteřin(y)",
"@durationSeconds": {
"description": "Duration format for seconds",
"placeholders": {
"seconds": {
"type": "String"
}
}
},
"durationMinute": "{minutes} minuta",
"@durationMinute": {
"description": "Duration format for singular minute",
"placeholders": {
"minutes": {
"type": "String"
}
}
},
"durationMinutes": "{minutes} minut(y)",
"@durationMinutes": {
"description": "Duration format for plural minutes",
"placeholders": {
"minutes": {
"type": "String"
}
}
},
"coreSwapsStatusInProgress": "Zpracovávám",
"@coreSwapsStatusInProgress": {
"description": "Display name for in-progress swap status (paid, claimable, refundable, canCoop)"
},
"coreSwapsStatusCompleted": "Hotovo",
"@coreSwapsStatusCompleted": {
"description": "Display name for completed swap status"
},
"coreSwapsStatusExpired": "Vypršelo",
"@coreSwapsStatusExpired": {
"description": "Display name for expired swap status"
},
"coreSwapsStatusFailed": "Selhalo",
"@coreSwapsStatusFailed": {
"description": "Display name for failed swap status"
},
"coreSwapsActionClose": "Zavřít",
"@coreSwapsActionClose": {
"description": "Action label for closing a swap cooperatively"
},
"coreSwapsActionRefund": "Refundovat",
"@coreSwapsActionRefund": {
"description": "Action label for refunding a swap"
},
"coreSwapsLnReceivePaid": "Odesílatel zaplatil fakturu.",
"@coreSwapsLnReceivePaid": {
"description": "Status message for paid Lightning receive swap"
},
"coreSwapsLnReceiveExpired": "Swap vypršel.",
"@coreSwapsLnReceiveExpired": {
"description": "Status message for expired Lightning receive swap"
},
"coreSwapsLnReceiveFailed": "Swap selhal.",
"@coreSwapsLnReceiveFailed": {
"description": "Status message for failed Lightning receive swap"
},
"coreSwapsLnSendPaid": "Faktura bude zaplacena po potvrzení Tvé platby.",
"@coreSwapsLnSendPaid": {
"description": "Status message for paid Lightning send swap"
},
"coreSwapsLnSendExpired": "Swap vypršel",
"@coreSwapsLnSendExpired": {
"description": "Status message for expired Lightning send swap"
},
"coreSwapsLnSendCompletedSuccess": "Swap proběhnul úspěšně.",
"@coreSwapsLnSendCompletedSuccess": {
"description": "Status message for successfully completed Lightning send swap"
},
"coreSwapsLnSendFailedRefunding": "Swap bude brzy refundován.",
"@coreSwapsLnSendFailedRefunding": {
"description": "Status message for failed Lightning send swap that will be refunded"
},
"coreSwapsLnSendFailed": "Swap selhal.",
"@coreSwapsLnSendFailed": {
"description": "Status message for failed Lightning send swap"
},
"coreWalletTransactionStatusConfirmed": "Potvrzení",
"@coreWalletTransactionStatusConfirmed": {
"description": "Display name for confirmed wallet transaction status"
},
"onboardingScreenTitle": "Vítejte",
"@onboardingScreenTitle": {
"description": "The title of the onboarding screen"
},
"onboardingCreateWalletButtonLabel": "Vytvořit peněženku",
"@onboardingCreateWalletButtonLabel": {
"description": "The label for the button to create a wallet from the onboarding screen"
},
"onboardingRecoverWalletButtonLabel": "Obnovení peněženky",
"@onboardingRecoverWalletButtonLabel": {
"description": "The label for the button to recover a wallet from the onboarding screen"
},
"settingsScreenTitle": "Nastavení",
"@settingsScreenTitle": {
"description": "The title of the settings screen"
},
"pinCodeSettingsLabel": "PIN kód",
"@pinCodeSettingsLabel": {
"description": "The label for the button to access the PIN code settings"
},
"languageSettingsLabel": "Čeština",
"@languageSettingsLabel": {
"description": "The label for the button to access the language settings"
},
"backupSettingsLabel": "Peněženka zálohování",
"@backupSettingsLabel": {
"description": "The label for the button to access the backup settings"
},
"fiatCurrencySettingsLabel": "Fiat měna",
"@fiatCurrencySettingsLabel": {
"description": "The label for the button to access the fiat currency settings"
},
"languageSettingsScreenTitle": "Čeština",
"@languageSettingsScreenTitle": {
"description": "The title of the language settings screen"
},
"backupSettingsScreenTitle": "Nastavení zálohování",
"@backupSettingsScreenTitle": {
"description": "AppBar title for backup settings screen"
},
"settingsWalletBackupTitle": "Peněženka Backup",
"@settingsWalletBackupTitle": {
"description": "Title for the wallet backup section in the settings menu"
},
"translationWarningTitle": "Poznámka k překladu",
"@translationWarningTitle": {
"description": "Title for the AI translation warning bottom sheet"
},
"translationWarningDescription": "Většina překladů v této aplikaci byla vytvořena pomocí AI a může obsahovat nepřesnosti. Pokud si všimnete chyb nebo chcete pomoci zlepšit překlady, můžete odeslat opravu do našeho GitHub repozitáře.",
"@translationWarningDescription": {
"description": "Description explaining that translations are AI-generated and may be inaccurate"
},
"translationWarningContributeButton": "Chci pomoci vylepšit překlad",
"@translationWarningContributeButton": {
"description": "Button to open GitHub repository for translations"
},
"translationWarningDismissButton": "Rozumím",
"@translationWarningDismissButton": {
"description": "Button to dismiss the translation warning"
},
"settingsSecurityPinTitle": "Bezpečnostní Pin",
"@settingsSecurityPinTitle": {
"description": "Title for the security PIN section in the settings menu"
},
"pinCodeAuthentication": "Ověřování",
"@pinCodeAuthentication": {
"description": "AppBar title for PIN code authentication screens"
},
"pinCodeCreateTitle": "Vytvořit nový pin",
"@pinCodeCreateTitle": {
"description": "Title for creating a new PIN code"
},
"pinCodeCreateDescription": "Váš PIN chrání přístup k vaší peněžence a nastavením. Udržujte ho nezapomenutelný.",
"@pinCodeCreateDescription": {
"description": "Description explaining the purpose of the PIN code"
},
"pinCodeMinLengthError": "PIN musí být nejméně {minLength} číslice dlouhé",
"@pinCodeMinLengthError": {
"description": "Error message when PIN is too short",
"placeholders": {
"minLength": {
"type": "String"
}
}
},
"pinCodeConfirmTitle": "Potvrzení nového kolíku",
"@pinCodeConfirmTitle": {
"description": "Title for confirming the new PIN code"
},
"pinCodeMismatchError": "PINy neodpovídají",
"@pinCodeMismatchError": {
"description": "Error message when PIN confirmation doesn't match"
},
"pinCodeSecurityPinTitle": "Bezpečnostní PIN",
"@pinCodeSecurityPinTitle": {
"description": "AppBar title for PIN settings screen"
},
"pinCodeChangeButton": "Změna PIN",
"@pinCodeChangeButton": {
"description": "Button label to change existing PIN"
},
"pinCodeCreateButton": "Vytvořit PIN",
"@pinCodeCreateButton": {
"description": "Button label to create a new PIN"
},
"pinCodeRemoveButton": "Odebrat bezpečnostní PIN",
"@pinCodeRemoveButton": {
"description": "Button label to remove the security PIN"
},
"pinCodeContinue": "Pokračovat",
"@pinCodeContinue": {
"description": "Button label to continue with PIN entry"
},
"pinCodeConfirm": "Odeslat",
"@pinCodeConfirm": {
"description": "Button label to confirm PIN entry"
},
"pinCodeLoading": "Čeština",
"@pinCodeLoading": {
"description": "Status screen title while loading PIN settings"
},
"pinCodeCheckingStatus": "Kontrola stavu PIN",
"@pinCodeCheckingStatus": {
"description": "Status screen description while checking PIN status"
},
"pinCodeProcessing": "Zpracování",
"@pinCodeProcessing": {
"description": "Status screen title while processing PIN changes"
},
"pinCodeSettingUp": "Nastavení PIN kódu",
"@pinCodeSettingUp": {
"description": "Status screen description while setting up PIN"
},
"pinCodeBackupRequiredWarning": "Před nastavením PIN dokončete zálohu peněženky",
"@pinCodeBackupRequiredWarning": {
"description": "Warning shown when user tries to set a PIN without having tested their wallet backup"
},
"settingsCurrencyTitle": "Čeština",
"@settingsCurrencyTitle": {
"description": "Title for the currency settings section in the settings menu"
},
"settingsAppSettingsTitle": "Nastavení aplikace",
"@settingsAppSettingsTitle": {
"description": "Title for the app settings section in the settings menu"
},
"settingsTermsOfServiceTitle": "Obchodní podmínky",
"@settingsTermsOfServiceTitle": {
"description": "Title for the terms of service section in the settings menu"
},
"settingsAppVersionLabel": "Verze aplikace: ",
"@settingsAppVersionLabel": {
"description": "Label displayed before the app version number in settings"
},
"settingsTelegramLabel": "Čeština",
"@settingsTelegramLabel": {
"description": "Label for the Telegram link in settings"
},
"settingsGithubLabel": "Čeština",
"@settingsGithubLabel": {
"description": "Label for the Github link in settings"
},
"settingsGetHelpLabel": "Získat pomoc",
"settingsTorSettingsTitle": "Nastavení Tor",
"@settingsTorSettingsTitle": {
"description": "Title for the Tor settings section in app settings"
},
"settingsRecoverbullTitle": "Čeština",
"@settingsRecoverbullTitle": {
"description": "Title for the Recoverbull backup section in app settings"
},
"settingsLanguageTitle": "Čeština",
"@settingsLanguageTitle": {
"description": "Title for the language selection in app settings"
},
"settingsThemeTitle": "Čeština",
"@settingsThemeTitle": {
"description": "Title for the theme selection in app settings"
},
"settingsArkTitle": "Čeština",
"@settingsArkTitle": {
"description": "Title for the Ark protocol section in Bitcoin settings"
},
"settingsDevModeWarningTitle": "Režim Dev",
"@settingsDevModeWarningTitle": {
"description": "Title for the developer mode warning dialog"
},
"settingsDevModeWarningMessage": "Tento režim je rizikový. Tím, že to umožňuje, Berete na vědomí, že můžete ztratit peníze",
"@settingsDevModeWarningMessage": {
"description": "Warning message displayed when enabling developer mode"
},
"settingsDevModeUnderstandButton": "Souhlasím",
"@settingsDevModeUnderstandButton": {
"description": "Button label to acknowledge developer mode warning"
},
"settingsSuperuserModeDisabledMessage": "Režim Superuser vypnutý.",
"@settingsSuperuserModeDisabledMessage": {
"description": "Message shown when superuser mode is disabled"
},
"settingsSuperuserModeUnlockedMessage": "Režim Superuser odemknout!",
"@settingsSuperuserModeUnlockedMessage": {
"description": "Message shown when superuser mode is enabled"
},
"walletOptionsUnnamedWalletFallback": "Unnamed Peněženka",
"@walletOptionsUnnamedWalletFallback": {
"description": "Fallback name displayed for wallets without a specified name"
},
"walletOptionsNotFoundMessage": "Peněženka nebyla nalezena",
"@walletOptionsNotFoundMessage": {
"description": "Error message displayed when a wallet cannot be found"
},
"walletOptionsWalletDetailsTitle": "Detaily peněženky",
"@walletOptionsWalletDetailsTitle": {
"description": "Title for the wallet details screen"
},
"addressViewAddressesTitle": "Odkazy",
"@addressViewAddressesTitle": {
"description": "Title for the addresses section in wallet options"
},
"walletDetailsDeletingMessage": "Deleting peněženka...",
"@walletDetailsDeletingMessage": {
"description": "Message displayed while a wallet is being deleted"
},
"bitboxErrorMultipleDevicesFound": "Nalezeno více zařízení BitBox. Ujistěte se, že je připojeno pouze jedno zařízení.",
"@bitboxErrorMultipleDevicesFound": {
"description": "Error when multiple BitBox devices are connected"
},
"payTransactionBroadcast": "Transakční vysílání",
"@payTransactionBroadcast": {
"description": "Success message after broadcasting"
},
"fundExchangeSepaDescriptionExactly": "přesně.",
"@fundExchangeSepaDescriptionExactly": {
"description": "Emphasized word 'exactly' in SEPA description"
},
"payPleasePayInvoice": "Tuto fakturu prosím vyplňte",
"@payPleasePayInvoice": {
"description": "Title for receive payment screen"
},
"swapMax": "ČEŠTINA",
"@swapMax": {
"description": "MAX button label"
},
"importQrDeviceSpecterStep2": "Zadejte PIN kód",
"@importQrDeviceSpecterStep2": {
"description": "Specter instruction step 2"
},
"importColdcardInstructionsStep10": "Nastavení kompletní",
"@importColdcardInstructionsStep10": {
"description": "ImportColdcardQ: Final instruction step"
},
"buyPayoutWillBeSentIn": "Vaše platba bude zaslána v ",
"@buyPayoutWillBeSentIn": {
"description": "Text before countdown timer for payout"
},
"fundExchangeInstantSepaInfo": "Používejte pouze pro transakce pod €20,000. Pro větší transakce použijte možnost pravidelného SEPA.",
"@fundExchangeInstantSepaInfo": {
"description": "Info message for Instant SEPA transaction limits"
},
"transactionLabelSwapId": "Změna ID",
"@transactionLabelSwapId": {
"description": "Label for swap ID"
},
"dcaChooseWalletTitle": "Vyberte Bitcoin Peněženka",
"@dcaChooseWalletTitle": {
"description": "AppBar title for wallet selection screen"
},
"torSettingsPortHint": "9050 Kč",
"@torSettingsPortHint": {
"description": "Hint text for port input showing default value"
},
"electrumTimeoutPositiveError": "Časová doba musí být pozitivní",
"@electrumTimeoutPositiveError": {
"description": "Validation error for non-positive Timeout value"
},
"bitboxScreenNeedHelpButton": "Potřebujete pomoc?",
"@bitboxScreenNeedHelpButton": {
"description": "Button to show help instructions"
},
"sellSendPaymentAboveMax": "S touto peněženkou se snažíte prodat nad maximální částku, která může být prodána.",
"@sellSendPaymentAboveMax": {
"description": "Above max amount error"
},
"fundExchangeETransferLabelSecretAnswer": "Tajná odpověď",
"@fundExchangeETransferLabelSecretAnswer": {
"description": "Label for E-transfer security answer"
},
"payPayinAmount": "Payin částka",
"@payPayinAmount": {
"description": "Label for amount user pays in"
},
"transactionDetailLabelTransactionFee": "Transakční poplatek",
"@transactionDetailLabelTransactionFee": {
"description": "Label for transaction fee"
},
"jadeStep13": "Bull Bitcoin peněženku vás požádá o skenování QR kódu na Jade. Skenovat.",
"@jadeStep13": {
"description": "Jade instruction for scanning signed PSBT"
},
"transactionSwapDescLnSendPending": "Vaše výměna byla zahájena. Vysíláme transakci on-chain, aby zamknout vaše prostředky.",
"@transactionSwapDescLnSendPending": {
"description": "Description for pending Lightning send swap"
},
"payInstitutionNumber": "Číslo instituce",
"@payInstitutionNumber": {
"description": "Label for institution number"
},
"sendScheduledPayment": "Plánovaná platba",
"@sendScheduledPayment": {
"description": "Feature to delay transaction"
},
"fundExchangeLabelBicCode": "BIC kód",
"@fundExchangeLabelBicCode": {
"description": "Label for BIC code field"
},
"fundExchangeCanadaPostStep6": "V Peněženka vás provede účtenkou, ponechte ji jako doklad o platbě",
"@fundExchangeCanadaPostStep6": {
"description": "Step 6 for Canada Post payment process"
},
"withdrawOwnershipQuestion": "Kdo má tento účet?",
"@withdrawOwnershipQuestion": {
"description": "Question asking about account ownership"
},
"sendSendNetworkFee": "Odeslat Síťový poplatek",
"@sendSendNetworkFee": {
"description": "Label for network fee on send side of swap"
},
"exchangeDcaUnableToGetConfig": "Nelze získat konfiguraci DCA",
"@exchangeDcaUnableToGetConfig": {
"description": "Error message when DCA configuration cannot be retrieved"
},
"psbtFlowClickScan": "Klikněte na Skenování",
"@psbtFlowClickScan": {
"description": "Instruction to click scan button on device"
},
"sellInstitutionNumber": "Číslo instituce",
"@sellInstitutionNumber": {
"description": "Label for bank institution code"
},
"recoverbullGoogleDriveErrorDisplay": "Chyba: {error}",
"@recoverbullGoogleDriveErrorDisplay": {
"description": "Error message display format",
"placeholders": {
"error": {
"type": "String"
}
}
},
"mempoolSettingsCustomServer": "Vlastní server",
"@mempoolSettingsCustomServer": {
"description": "Label for custom mempool server section"
},
"fundExchangeMethodRegularSepa": "Pravidelná platba",
"@fundExchangeMethodRegularSepa": {
"description": "Payment method: Regular SEPA (Europe)"
},
"addressViewTransactions": "Transakce",
"@addressViewTransactions": {
"description": "Label for number of transactions"
},
"fundExchangeSinpeLabelPhone": "Odeslat na tento telefonní číslo",
"@fundExchangeSinpeLabelPhone": {
"description": "Label for SINPE Móvil phone number field"
},
"importQrDeviceKruxStep3": "Klikněte na XPUB - QR kód",
"@importQrDeviceKruxStep3": {
"description": "Krux instruction step 3"
},
"passportStep1": "Přihlášení do zařízení pasu",
"@passportStep1": {
"description": "Passport instruction step 1"
},
"sellAdvancedOptions": "Pokročilé možnosti",
"@sellAdvancedOptions": {
"description": "Title for advanced options bottom sheet"
},
"exchangeFileUploadSuccess": "Soubory úspěšně nahrané",
"@exchangeFileUploadSuccess": {
"description": "Success message when file is uploaded successfully"
},
"electrumPrivacyNoticeSave": "Čeština",
"@electrumPrivacyNoticeSave": {
"description": "Save button in privacy notice dialog"
},
"withdrawOwnershipOtherAccount": "To je někdo jiný účet",
"@withdrawOwnershipOtherAccount": {
"description": "Option indicating the account belongs to someone else"
},
"receiveInvoice": "Blesková faktura",
"@receiveInvoice": {
"description": "Label for Lightning invoice"
},
"receiveGenerateAddress": "Generovat novou adresu",
"@receiveGenerateAddress": {
"description": "Button to create new on-chain address"
},
"kruxStep3": "Klikněte na PSBT",
"@kruxStep3": {
"description": "Krux instruction step 3"
},
"hwColdcardQ": "Studená karta Q",
"@hwColdcardQ": {
"description": "Name of Coldcard Q hardware wallet"
},
"fundExchangeCrIbanCrcTransferCodeWarning": "Při platbě je nutné přidat kód převodu jako \"oddělování\" nebo \"rozpis\" nebo \"description\". Pokud zapomenete zahrnout tento kód, vaše platba může být odmítnuta.",
"@fundExchangeCrIbanCrcTransferCodeWarning": {
"description": "Warning about including transfer code in payment"
},
"paySinpeBeneficiario": "Čeština",
"@paySinpeBeneficiario": {
"description": "Label for beneficiary in SINPE details"
},
"exchangeDcaAddressDisplay": "{addressLabel}: {address}",
"@exchangeDcaAddressDisplay": {
"description": "Format for displaying address label and address",
"placeholders": {
"addressLabel": {
"type": "String",
"description": "The address label (e.g., 'Bitcoin address')"
},
"address": {
"type": "String",
"description": "The actual address"
}
}
},
"autoswapAlwaysBlockEnabledInfo": "Pokud je povoleno, autopřenosy s poplatky nad stanoveným limitem budou vždy blokovány",
"@autoswapAlwaysBlockEnabledInfo": {
"description": "Info text when always block is enabled"
},
"electrumServerAlreadyExists": "Tento server již existuje",
"@electrumServerAlreadyExists": {
"description": "Error message when trying to add a duplicate server"
},
"sellPaymentMethod": "Způsob platby",
"@sellPaymentMethod": {
"description": "Section for selecting how to receive fiat"
},
"transactionNoteHint": "Poznámka",
"@transactionNoteHint": {
"description": "Hint text for note input field"
},
"transactionLabelPreimage": "Čeština",
"@transactionLabelPreimage": {
"description": "Label for preimage in Lightning swap details"
},
"coreSwapsChainCanCoop": "Transfer dokončuje momentálně.",
"@coreSwapsChainCanCoop": {
"description": "Status message for chain swap that can complete cooperatively"
},
"importColdcardInstructionsStep2": "Zadejte pasphrase, pokud je to použitelné",
"@importColdcardInstructionsStep2": {
"description": "ImportColdcardQ: Second instruction step"
},
"satsSuffix": " čeština",
"@satsSuffix": {
"description": "Unit suffix for satoshi amounts"
},
"recoverbullErrorPasswordNotSet": "Heslo není nastavena",
"@recoverbullErrorPasswordNotSet": {
"description": "Error when attempting operation without setting password"
},
"sellSendPaymentExchangeRate": "Směnný kurz",
"@sellSendPaymentExchangeRate": {
"description": "Field label for exchange rate"
},
"systemLabelAutoSwap": "Auto Swap",
"@systemLabelAutoSwap": {
"description": "System label for automatic swap transactions"
},
"fundExchangeSinpeTitle": "SINPE přenos",
"@fundExchangeSinpeTitle": {
"description": "Screen title for SINPE transfer (Costa Rica)"
},
"payExpiresIn": "Vyprší v {time}",
"@payExpiresIn": {
"description": "Label showing invoice expiration time",
"placeholders": {
"time": {
"type": "String"
}
}
},
"transactionDetailLabelConfirmationTime": "Doba potvrzení",
"@transactionDetailLabelConfirmationTime": {
"description": "Label for confirmation time"
},
"exchangeFileUploadStatusInReview": "V recenzi",
"@exchangeFileUploadStatusInReview": {
"description": "Status badge when files are under review"
},
"fundExchangeCanadaPostStep5": "V Platit s hotovostí nebo debetní kartou",
"@fundExchangeCanadaPostStep5": {
"description": "Step 5 for Canada Post payment process"
},
"importQrDeviceKruxName": "Čeština",
"@importQrDeviceKruxName": {
"description": "Name of Krux device"
},
"addressViewNoAddressesFound": "Žádné adresy",
"@addressViewNoAddressesFound": {
"description": "Empty state message when no addresses are available"
},
"backupWalletErrorSaveBackup": "Neúspěšné uložení zálohy",
"@backupWalletErrorSaveBackup": {
"description": "Error when backup save operation fails"
},
"exchangeReferralsTitle": "Referenční kódy",
"@exchangeReferralsTitle": {
"description": "Title for the referral codes section"
},
"onboardingRecoverYourWallet": "Obnovit peněženku",
"@onboardingRecoverYourWallet": {
"description": "Title for the recover wallet section in onboarding"
},
"bitboxScreenTroubleshootingStep2": "Ujistěte se, že telefon má povoleno oprávnění USB.",
"@bitboxScreenTroubleshootingStep2": {
"description": "Troubleshooting step 2"
},
"replaceByFeeErrorNoFeeRateSelected": "Prosím vyberte poplatek",
"@replaceByFeeErrorNoFeeRateSelected": {
"description": "Error message when no fee rate is selected"
},
"transactionSwapDescChainPending": "Váš převod byl vytvořen, ale nestartoval.",
"@transactionSwapDescChainPending": {
"description": "Description for pending chain swap"
},
"coreScreensTransferFeeLabel": "Transfer poplatek",
"@coreScreensTransferFeeLabel": {
"description": "Label for transfer fee field"
},
"onboardingEncryptedVaultDescription": "Obnovení zálohování přes cloud pomocí PINu.",
"@onboardingEncryptedVaultDescription": {
"description": "Description for the encrypted vault recovery option in onboarding"
},
"transactionOrderLabelPayoutStatus": "Stav výplaty",
"@transactionOrderLabelPayoutStatus": {
"description": "Label for order payout status"
},
"transactionSwapStatusSwapStatus": "Stav Swapu",
"@transactionSwapStatusSwapStatus": {
"description": "Header for swap status section"
},
"receiveInvoiceCopied": "Faktury zkopírované do schránky",
"@receiveInvoiceCopied": {
"description": "Toast message after copying invoice"
},
"kruxStep7": " - Zvýšení jasu obrazovky ve vašem zařízení",
"@kruxStep7": {
"description": "Krux troubleshooting tip 1"
},
"exchangeStatisticsBuySellRatio": "Koupit / Sell poměr",
"@exchangeStatisticsBuySellRatio": {
"description": "Label for buy/sell ratio statistic"
},
"autoswapUpdateSettingsError": "Vypnuto aktualizovat nastavení automatického swapu",
"@autoswapUpdateSettingsError": {
"description": "Error message when updating settings fails"
},
"transactionStatusTransferFailed": "Převodový set",
"@transactionStatusTransferFailed": {
"description": "Status label for failed transfers"
},
"jadeStep11": "Jade vám ukáže vlastní QR kód.",
"@jadeStep11": {
"description": "Jade instruction about signed PSBT QR"
},
"buyConfirmExternalWallet": "Externí Bitcoin peněženku",
"@buyConfirmExternalWallet": {
"description": "External wallet payout method"
},
"bitboxActionPairDeviceProcessing": "Párování zařízení",
"@bitboxActionPairDeviceProcessing": {
"description": "Processing text for pair device"
},
"exchangeCurrencyDropdownTitle": "Vyberte měnu",
"@exchangeCurrencyDropdownTitle": {
"description": "Title for the currency selection dropdown"
},
"receiveServerNetworkFees": "Server Síťové poplatky",
"@receiveServerNetworkFees": {
"description": "Label for network fees charged by the swap server"
},
"importQrDeviceImporting": "Importovat peněženku ...",
"@importQrDeviceImporting": {
"description": "Status while importing from QR device"
},
"rbfFastest": "Čeština",
"@rbfFastest": {
"description": "Label for fastest fee option"
},
"buyConfirmExpressWithdrawal": "Potvrzení o odstoupení od smlouvy",
"@buyConfirmExpressWithdrawal": {
"description": "Title for express withdrawal confirmation screen"
},
"arkReceiveBoardingAddress": "BTC Boarding adresa",
"@arkReceiveBoardingAddress": {
"description": "Label for BTC boarding address"
},
"sellSendPaymentTitle": "Potvrzení platby",
"@sellSendPaymentTitle": {
"description": "Title on sell payment screen"
},
"recoverbullReenterConfirm": "Prosím, znovu zadejte {inputType} pro potvrzení.",
"@recoverbullReenterConfirm": {
"description": "Instruction to re-enter PIN or password for confirmation",
"placeholders": {
"inputType": {
"type": "String"
}
}
},
"importWatchOnlyCopiedToClipboard": "Připojil se do schránky",
"@importWatchOnlyCopiedToClipboard": {
"description": "Snackbar message shown when QR code content is copied"
},
"dcaLightningAddressInvalidError": "Zadejte platnou adresu blesku",
"@dcaLightningAddressInvalidError": {
"description": "Validation error when Lightning address format is invalid"
},
"ledgerButtonNeedHelp": "Potřebujete pomoc?",
"@ledgerButtonNeedHelp": {
"description": "Button label to show help/troubleshooting instructions"
},
"backupInstruction4": "Nedělejte digitální kopie vaší zálohy. Napište jej na kus papíru nebo vyryt v kovu.",
"@backupInstruction4": {
"description": "Fourth backup instruction about not making digital copies"
},
"hwKrux": "Čeština",
"@hwKrux": {
"description": "Name of Krux hardware wallet"
},
"transactionFilterTransfer": "Čeština",
"@transactionFilterTransfer": {
"description": "Filter option to show only transfer/swap transactions"
},
"recoverbullSelectVaultImportSuccess": "Vaše klenba byla úspěšně dovážena",
"@recoverbullSelectVaultImportSuccess": {
"description": "Success message shown on vault selected page"
},
"mempoolServerNotUsed": "Nepoužívejte (aktivní server)",
"@mempoolServerNotUsed": {
"description": "Label shown when default server is not used because custom server is active"
},
"recoverbullSelectErrorPrefix": "Chyba:",
"@recoverbullSelectErrorPrefix": {
"description": "Prefix text shown before error messages"
},
"bitboxErrorDeviceMismatch": "Detekována chyba zařízení.",
"@bitboxErrorDeviceMismatch": {
"description": "Error when connected device does not match expected device"
},
"arkReceiveBtcAddress": "BTC adresa",
"@arkReceiveBtcAddress": {
"description": "Label for Bitcoin address"
},
"exchangeLandingRecommendedExchange": "Doporučené Bitcoin burza",
"@exchangeLandingRecommendedExchange": {
"description": "Subtitle on landing screen v2 describing Bull Bitcoin as recommended"
},
"backupWalletHowToDecideVaultMoreInfo": "Navštivte obnovitbull.com pro více informací.",
"@backupWalletHowToDecideVaultMoreInfo": {
"description": "Link text to external resource about vault locations"
},
"recoverbullGoBackEdit": "<< Přejděte zpět a upravte",
"@recoverbullGoBackEdit": {
"description": "Button text to return to previous screen for editing"
},
"importWatchOnlyWalletGuides": "Průvodce peněženkami",
"@importWatchOnlyWalletGuides": {
"description": "Button label for wallet documentation and guides"
},
"receiveConfirming": "Potvrzení ... ({count}/{required})",
"@receiveConfirming": {
"description": "Shows confirmation progress",
"placeholders": {
"count": {
"type": "int"
},
"required": {
"type": "int"
}
}
},
"fundExchangeInfoPaymentDescription": "V popisu platby přidejte kód převodu.",
"@fundExchangeInfoPaymentDescription": {
"description": "Info about adding transfer code to payment description"
},
"payInstantPayments": "Okamžité platby",
"@payInstantPayments": {
"description": "Display text for instant payment wallet"
},
"importWatchOnlyImportButton": "Import Watch-Only Peněženka",
"@importWatchOnlyImportButton": {
"description": "Button to confirm watch-only import"
},
"fundExchangeCrIbanCrcDescriptionBold": "přesně",
"@fundExchangeCrIbanCrcDescriptionBold": {
"description": "Bold emphasis word for CR IBAN transfer instructions"
},
"electrumTitle": "Nastavení serveru Electrum",
"@electrumTitle": {
"description": "AppBar title for Electrum settings screen"
},
"importQrDeviceJadeStep7": "V případě potřeby vyberte možnost \"Volby\" pro změnu typu adresy",
"@importQrDeviceJadeStep7": {
"description": "Jade instruction step 7"
},
"transactionNetworkLightning": "Blesk",
"@transactionNetworkLightning": {
"description": "Label for Lightning network transactions"
},
"paySecurityQuestionLength": "{count}/40 znaků",
"@paySecurityQuestionLength": {
"description": "Character count for security question",
"placeholders": {
"count": {
"type": "int"
}
}
},
"sendBroadcastingTransaction": "Vysílání transakce.",
"@sendBroadcastingTransaction": {
"description": "Message shown while broadcasting transaction to network"
},
"swapReceiveExactAmountLabel": "Získejte přesné množství",
"swapInsufficientFunds": "Nedostatek prostředků",
"@swapReceiveExactAmountLabel": {
"description": "Label when receive exact amount toggle is on"
},
"ledgerImportButton": "Start Import",
"@ledgerImportButton": {
"description": "Button label to start importing Ledger wallet"
},
"dcaActivate": "Aktivace opakovaného nákupu",
"@dcaActivate": {
"description": "Label to activate DCA"
},
"labelInputLabel": "Čeština",
"@labelInputLabel": {
"description": "Label for wallet label input field"
},
"bitboxActionPairDeviceButton": "Start Párování",
"@bitboxActionPairDeviceButton": {
"description": "Button text for pair device"
},
"importQrDeviceSpecterName": "Čeština",
"@importQrDeviceSpecterName": {
"description": "Name of Specter device"
},
"transactionDetailLabelSwapFees": "Výměnné poplatky",
"@transactionDetailLabelSwapFees": {
"description": "Label for swap fees"
},
"broadcastSignedTxFee": "Čeština",
"@broadcastSignedTxFee": {
"description": "Label for transaction fee"
},
"recoverbullRecoveryBalanceLabel": "Zůstatek: {amount}",
"@recoverbullRecoveryBalanceLabel": {
"description": "Label showing total wallet balance found",
"placeholders": {
"amount": {
"type": "String"
}
}
},
"buyFundYourAccount": "Fond vašeho účtu",
"@buyFundYourAccount": {
"description": "Button to fund exchange account"
},
"sellReplaceByFeeActivated": "Nahradit aktivovaný",
"@sellReplaceByFeeActivated": {
"description": "Label for RBF toggle"
},
"globalDefaultBitcoinWalletLabel": "Bezpečné Bitcoin",
"@globalDefaultBitcoinWalletLabel": {
"description": "Default label for Bitcoin wallets when used as the default wallet"
},
"arkAboutServerUrl": "URL serveru",
"@arkAboutServerUrl": {
"description": "Field label for server URL"
},
"fundExchangeLabelRecipientAddress": "Adresa příjemce",
"@fundExchangeLabelRecipientAddress": {
"description": "Label for recipient address field"
},
"save": "Čeština",
"@save": {
"description": "Generic save button label"
},
"dcaWalletLiquidSubtitle": "Vyžaduje kompatibilní peněženku",
"@dcaWalletLiquidSubtitle": {
"description": "Subtitle/description for Liquid wallet option"
},
"fundExchangeCrIbanCrcTitle": "Bankovní převod (CRC)",
"@fundExchangeCrIbanCrcTitle": {
"description": "Screen title for Costa Rica bank transfer in Colones"
},
"appUnlockButton": "Čeština",
"@appUnlockButton": {
"description": "Button label to unlock the app"
},
"payServiceFee": "Ceník služeb",
"@payServiceFee": {
"description": "Label for service provider fee"
},
"swapAmountPlaceholder": "V",
"@swapAmountPlaceholder": {
"description": "Placeholder for amount input fields"
},
"fundExchangeMethodInstantSepaSubtitle": "Nejrychlejší - Pouze pro transakce pod €30,000",
"@fundExchangeMethodInstantSepaSubtitle": {
"description": "Subtitle for Instant SEPA payment method"
},
"dcaConfirmError": "Něco šlo špatně: {error}",
"@dcaConfirmError": {
"description": "DCA confirmation error message",
"placeholders": {
"error": {
"type": "String"
}
}
},
"exchangeDcaNetworkLiquid": "Tekutý síť",
"@exchangeDcaNetworkLiquid": {
"description": "DCA network option: Liquid"
},
"fundExchangeSepaDescription": "Odeslání SEPA převodu z vašeho bankovního účtu pomocí níže uvedených údajů ",
"@fundExchangeSepaDescription": {
"description": "Description for SEPA transfer (first part, before 'exactly')"
},
"sendAddress": "Adresa: ",
"@sendAddress": {
"description": "Label prefix for address field"
},
"receiveBitcoinNetwork": "Čeština",
"@receiveBitcoinNetwork": {
"description": "Bitcoin on-chain network option"
},
"fundExchangeCrIbanCrcPaymentDescriptionHelp": "Váš převodový kód.",
"@fundExchangeCrIbanCrcPaymentDescriptionHelp": {
"description": "Help text explaining payment description is the transfer code"
},
"testBackupWriteDownPhrase": "Napište svou regeneraci\nv správné objednávce",
"@testBackupWriteDownPhrase": {
"description": "Main instruction header for physical backup screen"
},
"jadeStep8": " - Zkuste přesunout zařízení blíže nebo dál",
"@jadeStep8": {
"description": "Jade troubleshooting tip 3"
},
"payNotLoggedIn": "Ne Logged V",
"@payNotLoggedIn": {
"description": "Title for not logged in card"
},
"importQrDeviceSpecterStep7": "Zakázat \"Použít SLIP-132\"",
"@importQrDeviceSpecterStep7": {
"description": "Specter instruction step 7"
},
"customLocationTitle": "Vlastní poloha",
"@customLocationTitle": {
"description": "Title for custom location screen"
},
"importQrDeviceJadeStep5": "Vyberte \"Wallet\" z seznamu možností",
"@importQrDeviceJadeStep5": {
"description": "Jade instruction step 5"
},
"arkSettled": "Čeština",
"@arkSettled": {
"description": "Label for settled balance in Ark balance breakdown"
},
"transactionFilterBuy": "Koupit",
"@transactionFilterBuy": {
"description": "Filter option to show only buy orders"
},
"approximateFiatPrefix": "Čeština",
"@approximateFiatPrefix": {
"description": "Prefix indicating approximate fiat equivalent value"
},
"sendEstimatedDeliveryHoursToDays": "hodiny do dnů",
"@sendEstimatedDeliveryHoursToDays": {
"description": "Estimated delivery time ranging from hours to days"
},
"coreWalletTransactionStatusPending": "Čeština",
"@coreWalletTransactionStatusPending": {
"description": "Display name for pending wallet transaction status"
},
"ledgerActionFailedMessage": "{action} Failed",
"@ledgerActionFailedMessage": {
"description": "Error message when a Ledger action fails",
"placeholders": {
"action": {
"type": "String"
}
}
},
"testBackupErrorLoadWallets": "Neúspěšné zatížení peněženky: {error}",
"@testBackupErrorLoadWallets": {
"description": "Error when loading wallets fails",
"placeholders": {
"error": {
"type": "String"
}
}
},