-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathapp_bg.arb
More file actions
9792 lines (9792 loc) · 449 KB
/
Copy pathapp_bg.arb
File metadata and controls
9792 lines (9792 loc) · 449 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": "Без резервно копие ще загубите достъп до своите биткоини, ако:",
"backupWarningLoseReasonLostPhone": "Загубите телефона си",
"backupWarningLoseReasonDeletedApp": "Изтриете приложението",
"backupWarningLoseReasonCriticalIssue": "Възникне критичен проблем с приложението или устройството",
"backupWarningLoseReasonKeystore": "Устройството анулира keystore при смяна на заключения екран или удостоверяването на устройството",
"backupWarningLoseReasonCloudRestore": "Възстановяване на устройството от резервно копие в облака",
"backupWarningNoRecovery": "Без резервно копие няма начин да възстановите портфейла си.",
"broadcastSignedTxBroadcastError": "Неуспешно излъчване на транзакцията",
"translationWarningTitle": "Преводи, генерирани от ИИ",
"@translationWarningTitle": {
"description": "Title for the AI translation warning bottom sheet"
},
"translationWarningDescription": "Повечето преводи в това приложение са генерирани с помощта на AI и може да съдържат неточности. Ако забележите грешки или искате да помогнете за подобряване на преводите, можете да изпратите корекция в нашето GitHub хранилище.",
"@translationWarningDescription": {
"description": "Description explaining that translations are AI-generated and may be inaccurate"
},
"translationWarningContributeButton": "Помогнете да се подобрят преводите",
"@translationWarningContributeButton": {
"description": "Button to open GitHub repository for translations"
},
"translationWarningDismissButton": "Разбрах",
"@translationWarningDismissButton": {
"description": "Button to dismiss the translation warning"
},
"durationSeconds": "{seconds} секунди",
"@durationSeconds": {
"description": "Duration format for seconds",
"placeholders": {
"seconds": {
"type": "String"
}
}
},
"durationMinute": "{minutes} минута",
"@durationMinute": {
"description": "Duration format for singular minute",
"placeholders": {
"minutes": {
"type": "String"
}
}
},
"durationMinutes": "{minutes} минути",
"@durationMinutes": {
"description": "Duration format for plural minutes",
"placeholders": {
"minutes": {
"type": "String"
}
}
},
"coreSwapsStatusPending": "В очакване",
"@coreSwapsStatusPending": {
"description": "Display name for pending swap status"
},
"coreSwapsStatusInProgress": "В процес",
"@coreSwapsStatusInProgress": {
"description": "Display name for in-progress swap status (paid, claimable, refundable, canCoop)"
},
"coreSwapsStatusCompleted": "Завършено",
"@coreSwapsStatusCompleted": {
"description": "Display name for completed swap status"
},
"coreSwapsStatusExpired": "Изтекъл",
"@coreSwapsStatusExpired": {
"description": "Display name for expired swap status"
},
"coreSwapsStatusFailed": "Неуспешно",
"@coreSwapsStatusFailed": {
"description": "Display name for failed swap status"
},
"coreSwapsActionClaim": "Вземи",
"@coreSwapsActionClaim": {
"description": "Action label for claiming a swap"
},
"coreSwapsActionClose": "Затвори",
"@coreSwapsActionClose": {
"description": "Action label for closing a swap cooperatively"
},
"coreSwapsActionRefund": "Възстановяване",
"@coreSwapsActionRefund": {
"description": "Action label for refunding a swap"
},
"coreSwapsLnReceivePending": "Обмена все още не е инициализиран.",
"@coreSwapsLnReceivePending": {
"description": "Status message for pending Lightning receive swap"
},
"coreSwapsLnReceivePaid": "Изпращачът е платил фактурата.",
"@coreSwapsLnReceivePaid": {
"description": "Status message for paid Lightning receive swap"
},
"coreSwapsLnReceiveClaimable": "Обменът е готов за получаване.",
"@coreSwapsLnReceiveClaimable": {
"description": "Status message for claimable Lightning receive swap"
},
"coreSwapsLnReceiveRefundable": "Обмена е готов за възстановяване.",
"@coreSwapsLnReceiveRefundable": {
"description": "Status message for refundable Lightning receive swap"
},
"coreSwapsLnReceiveCanCoop": "Обмена ще завърши всеки момент.",
"@coreSwapsLnReceiveCanCoop": {
"description": "Status message for Lightning receive swap that can complete cooperatively"
},
"coreSwapsLnReceiveFailed": "Обмена се провали.",
"@coreSwapsLnReceiveFailed": {
"description": "Status message for failed Lightning receive swap"
},
"coreSwapsLnSendPending": "Обмена все още не е инициализиран.",
"@coreSwapsLnSendPending": {
"description": "Status message for pending Lightning send swap"
},
"coreSwapsLnSendPaid": "Фактурата ще бъде платена, след като вашето плащане получи потвърждение.",
"@coreSwapsLnSendPaid": {
"description": "Status message for paid Lightning send swap"
},
"coreSwapsLnSendClaimable": "Обменът е готов за получаване.",
"@coreSwapsLnSendClaimable": {
"description": "Status message for claimable Lightning send swap"
},
"coreSwapsLnSendRefundable": "Обмена е готов за възстановяване.",
"@coreSwapsLnSendRefundable": {
"description": "Status message for refundable Lightning send swap"
},
"coreSwapsLnSendCanCoop": "Обмена ще завърши всеки момент.",
"@coreSwapsLnSendCanCoop": {
"description": "Status message for Lightning send swap that can complete cooperatively"
},
"coreSwapsLnSendCompletedRefunded": "Обмена е възстановен.",
"@coreSwapsLnSendCompletedRefunded": {
"description": "Status message for Lightning send swap completed via refund"
},
"coreSwapsLnSendFailed": "Обмена се провали.",
"@coreSwapsLnSendFailed": {
"description": "Status message for failed Lightning send swap"
},
"coreSwapsChainPending": "Трансферът все още не е инициализиран.",
"@coreSwapsChainPending": {
"description": "Status message for pending chain swap"
},
"coreSwapsChainPaid": "Изчакване на плащането от доставчика на трансфера за получаване на потвърждение. Това може да отнеме известно време.",
"@coreSwapsChainPaid": {
"description": "Status message for paid chain swap"
},
"coreSwapsChainClaimable": "Прехвърлянето е готово за получаване.",
"@coreSwapsChainClaimable": {
"description": "Status message for claimable chain swap"
},
"coreSwapsChainRefundable": "Прехвърлянето е готово за възстановяване.",
"@coreSwapsChainRefundable": {
"description": "Status message for refundable chain swap"
},
"coreSwapsChainCanCoop": "Транзакцията ще завърши всеки момент.",
"@coreSwapsChainCanCoop": {
"description": "Status message for chain swap that can complete cooperatively"
},
"coreSwapsChainCompletedRefunded": "Преводът е възстановен.",
"@coreSwapsChainCompletedRefunded": {
"description": "Status message for chain swap completed via refund"
},
"coreWalletTransactionStatusPending": "В очакване",
"@coreWalletTransactionStatusPending": {
"description": "Display name for pending wallet transaction status"
},
"settingsTelegramLabel": "## Telegram",
"@settingsTelegramLabel": {
"description": "Label for the Telegram link in settings"
},
"exchangeSettingsSecuritySettingsTitle": "Настройки за сигурност",
"@exchangeSettingsSecuritySettingsTitle": {
"description": "Title for the security settings section in exchange settings"
},
"transactionStatusInProgress": "В процес",
"@transactionStatusInProgress": {
"description": "Status label for transactions in progress"
},
"transactionStatusPending": "В очакване",
"@transactionStatusPending": {
"description": "Status label for pending transactions"
},
"transactionStatusSwapFailed": "Обмена се провали.",
"@transactionStatusSwapFailed": {
"description": "Status label for failed swaps"
},
"transactionLabelCompletedAt": "Завършено",
"@transactionLabelCompletedAt": {
"description": "Label for completion timestamp"
},
"transactionPayjoinStatusCompleted": "Завършено",
"@transactionPayjoinStatusCompleted": {
"description": "Payjoin status: completed"
},
"transactionPayjoinStatusExpired": "Изтекъл",
"@transactionPayjoinStatusExpired": {
"description": "Payjoin status: expired"
},
"transactionSwapProgressClaim": "Вземи",
"@transactionSwapProgressClaim": {
"description": "Swap progress step: claim"
},
"transactionSwapProgressCompleted": "Завършено",
"@transactionSwapProgressCompleted": {
"description": "Swap progress step: completed"
},
"transactionSwapProgressInProgress": "В процес",
"@transactionSwapProgressInProgress": {
"description": "Generic swap progress step: in progress"
},
"transactionDetailLabelCompletedAt": "Завършено",
"@transactionDetailLabelCompletedAt": {
"description": "Label for completion time"
},
"transactionDetailLabelPayjoinCompleted": "Завършено",
"@transactionDetailLabelPayjoinCompleted": {
"description": "Payjoin completed status"
},
"transactionDetailLabelPayjoinExpired": "Изтекъл",
"@transactionDetailLabelPayjoinExpired": {
"description": "Payjoin expired status"
},
"walletBalanceUnconfirmedIncoming": "В процес",
"@walletBalanceUnconfirmedIncoming": {
"description": "Label for unconfirmed incoming balance"
},
"arkStatusPending": "В очакване",
"@arkStatusPending": {
"description": "Status label for pending transactions"
},
"arkPending": "В очакване",
"@arkPending": {
"description": "Label for pending balance in breakdown"
},
"arkAboutTitle": "Относно",
"@arkAboutTitle": {
"description": "AppBar title for Ark about screen"
},
"arkDurationSeconds": "{seconds} секунди",
"@arkDurationSeconds": {
"description": "Duration format for seconds",
"placeholders": {
"seconds": {
"type": "String"
}
}
},
"arkDurationMinute": "{minutes} минута",
"@arkDurationMinute": {
"description": "Duration format for singular minute",
"placeholders": {
"minutes": {
"type": "String"
}
}
},
"arkDurationMinutes": "{minutes} минути",
"@arkDurationMinutes": {
"description": "Duration format for plural minutes",
"placeholders": {
"minutes": {
"type": "String"
}
}
},
"arkTxPending": "В очакване",
"@arkTxPending": {
"description": "Status label for pending Ark transactions"
},
"closeDialogButton": "Затвори",
"@closeDialogButton": {
"description": "Button to close the value display modal dialog"
},
"payExpired": "Изтекъл",
"@payExpired": {
"description": "Status label for expired invoice"
},
"paySwapFailed": "Обмена се провали.",
"@paySwapFailed": {
"description": "Error message when swap fails"
},
"payFailedPayments": "Неуспешно",
"@payFailedPayments": {
"description": "Filter for failed payments"
},
"payPendingPayments": "В очакване",
"@payPendingPayments": {
"description": "Filter for pending payments"
},
"recoverbullFailed": "Неуспешно",
"@recoverbullFailed": {
"description": "Status label indicating operation failure"
},
"electrumCloseTooltip": "Затвори",
"@electrumCloseTooltip": {
"description": "Close button tooltip"
},
"arkAboutDurationSeconds": "{seconds} секунди",
"@arkAboutDurationSeconds": {
"description": "Duration format for seconds",
"placeholders": {
"seconds": {
"type": "int"
}
}
},
"arkAboutDurationMinute": "{minutes} минута",
"@arkAboutDurationMinute": {
"description": "Duration format for singular minute",
"placeholders": {
"minutes": {
"type": "int"
}
}
},
"arkAboutDurationMinutes": "{minutes} минути",
"@arkAboutDurationMinutes": {
"description": "Duration format for plural minutes",
"placeholders": {
"minutes": {
"type": "int"
}
}
},
"ledgerHelpTitle": "Отстраняване на неизправности",
"@ledgerHelpTitle": {
"description": "Title for Ledger troubleshooting help modal"
},
"bitboxErrorMultipleDevicesFound": "Намерени са множество BitBox устройства. Моля, уверете се, че е свързано само едно устройство.",
"@bitboxErrorMultipleDevicesFound": {
"description": "Error when multiple BitBox devices are connected"
},
"payTransactionBroadcast": "Изпращане на транзакцията",
"@payTransactionBroadcast": {
"description": "Success message after broadcasting"
},
"fundExchangeSepaDescriptionExactly": "точно.",
"@fundExchangeSepaDescriptionExactly": {
"description": "Emphasized word 'exactly' in SEPA description"
},
"payPleasePayInvoice": "Моля, платете тази фактура.",
"@payPleasePayInvoice": {
"description": "Title for receive payment screen"
},
"buyPayoutWillBeSentIn": "Вашето изплащане ще бъде изпратено в ",
"@buyPayoutWillBeSentIn": {
"description": "Text before countdown timer for payout"
},
"fundExchangeInstantSepaInfo": "Използвайте само за транзакции под €20 000. За по-големи транзакции използвайте опцията Стандартен SEPA.",
"@fundExchangeInstantSepaInfo": {
"description": "Info message for Instant SEPA transaction limits"
},
"transactionLabelSwapId": "ID за размяна",
"@transactionLabelSwapId": {
"description": "Label for swap ID"
},
"dcaChooseWalletTitle": "Изберете портфейл за Биткойн",
"@dcaChooseWalletTitle": {
"description": "AppBar title for wallet selection screen"
},
"bitboxScreenNeedHelpButton": "Нужна помощ?",
"@bitboxScreenNeedHelpButton": {
"description": "Button to show help instructions"
},
"fundExchangeETransferLabelSecretAnswer": "Секретен отговор",
"@fundExchangeETransferLabelSecretAnswer": {
"description": "Label for E-transfer security answer"
},
"payPayinAmount": "Входяща сума",
"@payPayinAmount": {
"description": "Label for amount user pays in"
},
"transactionDetailLabelTransactionFee": "Такса за транзакцията",
"@transactionDetailLabelTransactionFee": {
"description": "Label for transaction fee"
},
"jadeStep13": "- Портфейлът Bull Bitcoin ще ви помоли да сканирате QR кода на Jade. Сканирайте го.",
"@jadeStep13": {
"description": "Jade instruction for scanning signed PSBT"
},
"payInstitutionNumber": "Код на банката",
"@payInstitutionNumber": {
"description": "Label for institution number"
},
"sendScheduledPayment": "Планирано плащане",
"@sendScheduledPayment": {
"description": "Feature to delay transaction"
},
"fundExchangeLabelBicCode": "BIC код",
"@fundExchangeLabelBicCode": {
"description": "Label for BIC code field"
},
"fundExchangeCanadaPostStep6": "6. Касиерът ще ви даде разписка; пазете я като доказателство за плащането",
"@fundExchangeCanadaPostStep6": {
"description": "Step 6 for Canada Post payment process"
},
"sendSendNetworkFee": "Такса за мрежата при изпращане",
"@sendSendNetworkFee": {
"description": "Label for network fee on send side of swap"
},
"psbtFlowClickScan": "Сканирайте",
"@psbtFlowClickScan": {
"description": "Instruction to click scan button on device"
},
"sellInstitutionNumber": "Код на банката",
"@sellInstitutionNumber": {
"description": "Label for bank institution code"
},
"recoverbullGoogleDriveErrorDisplay": "Грешка: {error}",
"@recoverbullGoogleDriveErrorDisplay": {
"description": "Error message display format",
"placeholders": {
"error": {
"type": "String"
}
}
},
"mempoolSettingsCustomServer": "Персонализиран сървър",
"@mempoolSettingsCustomServer": {
"description": "Label for custom mempool server section"
},
"fundExchangeMethodRegularSepa": "Стандартен SEPA",
"@fundExchangeMethodRegularSepa": {
"description": "Payment method: Regular SEPA (Europe)"
},
"fundExchangeSinpeLabelPhone": "Изпратете към този телефонен номер",
"@fundExchangeSinpeLabelPhone": {
"description": "Label for SINPE Móvil phone number field"
},
"passportStep1": "==WEBLATE_PART==\nВлезте в устройството Passport",
"@passportStep1": {
"description": "Passport instruction step 1"
},
"sellAdvancedOptions": "Разширени настройки",
"@sellAdvancedOptions": {
"description": "Title for advanced options bottom sheet"
},
"exchangeFileUploadSuccess": "Файлът е качен успешно.",
"@exchangeFileUploadSuccess": {
"description": "Success message when file is uploaded successfully"
},
"receiveInvoice": "Lightning фактура",
"@receiveInvoice": {
"description": "Label for Lightning invoice"
},
"receiveGenerateAddress": "Създай нов адрес",
"@receiveGenerateAddress": {
"description": "Button to create new on-chain address"
},
"kruxStep3": "Натисни PSBT",
"@kruxStep3": {
"description": "Krux instruction step 3"
},
"hwColdcardQ": "Coldcard Q",
"@hwColdcardQ": {
"description": "Name of Coldcard Q hardware wallet"
},
"fundExchangeCrIbanCrcTransferCodeWarning": "Трябва да добавите кода за прехвърляне като \"съобщение\" или \"причина\" или \"описание\" при извършване на плащането. Ако забравите да включите този код, плащането ви може да бъде отхвърлено.",
"@fundExchangeCrIbanCrcTransferCodeWarning": {
"description": "Warning about including transfer code in payment"
},
"paySinpeBeneficiario": "Получател",
"@paySinpeBeneficiario": {
"description": "Label for beneficiary in SINPE details"
},
"sellPaymentMethod": "Начин на плащане",
"@sellPaymentMethod": {
"description": "Section for selecting how to receive fiat"
},
"transactionNoteHint": "Бележка",
"@transactionNoteHint": {
"description": "Hint text for note input field"
},
"transactionLabelPreimage": "Предобраз",
"@transactionLabelPreimage": {
"description": "Label for preimage in Lightning swap details"
},
"satsSuffix": " сатове",
"@satsSuffix": {
"description": "Unit suffix for satoshi amounts"
},
"recoverbullErrorPasswordNotSet": "Паролата не е зададена",
"@recoverbullErrorPasswordNotSet": {
"description": "Error when attempting operation without setting password"
},
"fundExchangeSinpeTitle": "SINPE превод",
"@fundExchangeSinpeTitle": {
"description": "Screen title for SINPE transfer (Costa Rica)"
},
"payExpiresIn": "Изтича след {time}",
"@payExpiresIn": {
"description": "Label showing invoice expiration time",
"placeholders": {
"time": {
"type": "String"
}
}
},
"transactionDetailLabelConfirmationTime": "Време за потвърждаване",
"@transactionDetailLabelConfirmationTime": {
"description": "Label for confirmation time"
},
"exchangeFileUploadStatusInReview": "В преглед",
"@exchangeFileUploadStatusInReview": {
"description": "Status badge when files are under review"
},
"fundExchangeCanadaPostStep5": "5. Платете с пари в брой или дебитна карта",
"@fundExchangeCanadaPostStep5": {
"description": "Step 5 for Canada Post payment process"
},
"backupWalletErrorSaveBackup": "Неуспешно запазване на резервното копие",
"@backupWalletErrorSaveBackup": {
"description": "Error when backup save operation fails"
},
"exchangeReferralsTitle": "Реферални кодове",
"@exchangeReferralsTitle": {
"description": "Title for the referral codes section"
},
"onboardingRecoverYourWallet": "Възстановете портфейла си.",
"@onboardingRecoverYourWallet": {
"description": "Title for the recover wallet section in onboarding"
},
"bitboxScreenTroubleshootingStep2": "Уверете се, че телефонът ви има разрешения за USB.",
"@bitboxScreenTroubleshootingStep2": {
"description": "Troubleshooting step 2"
},
"replaceByFeeErrorNoFeeRateSelected": "Моля, изберете скорост на таксата.",
"@replaceByFeeErrorNoFeeRateSelected": {
"description": "Error message when no fee rate is selected"
},
"transactionSwapDescChainPending": "Вашият превод е създаден, но все още не е иницииран.",
"@transactionSwapDescChainPending": {
"description": "Description for pending chain swap"
},
"onboardingEncryptedVaultDescription": "Възстановете резервното копие чрез облака с вашия ПИН.",
"@onboardingEncryptedVaultDescription": {
"description": "Description for the encrypted vault recovery option in onboarding"
},
"transactionOrderLabelPayoutStatus": "Статус на изплащането",
"@transactionOrderLabelPayoutStatus": {
"description": "Label for order payout status"
},
"receiveInvoiceCopied": "Инвойсът е копиран в клипборда",
"@receiveInvoiceCopied": {
"description": "Toast message after copying invoice"
},
"kruxStep7": " - Увеличете яркостта на екрана на вашето устройство",
"@kruxStep7": {
"description": "Krux troubleshooting tip 1"
},
"exchangeStatisticsBuySellRatio": "Съотношение Купуване/Продажба",
"@exchangeStatisticsBuySellRatio": {
"description": "Label for buy/sell ratio statistic"
},
"autoswapUpdateSettingsError": "Неуспешно актуализиране на настройките за автообмен",
"@autoswapUpdateSettingsError": {
"description": "Error message when updating settings fails"
},
"transactionStatusTransferFailed": "Прехвърлянето се провали",
"@transactionStatusTransferFailed": {
"description": "Status label for failed transfers"
},
"jadeStep11": "- Jade ще ви покаже своя собствен QR код.",
"@jadeStep11": {
"description": "Jade instruction about signed PSBT QR"
},
"bitboxActionPairDeviceProcessing": "Сдвояване на устройството",
"@bitboxActionPairDeviceProcessing": {
"description": "Processing text for pair device"
},
"receiveServerNetworkFees": "Сървърни такси за мрежата",
"@receiveServerNetworkFees": {
"description": "Label for network fees charged by the swap server"
},
"rbfFastest": "Най-бързият",
"@rbfFastest": {
"description": "Label for fastest fee option"
},
"buyConfirmExpressWithdrawal": "Потвърдете експресното теглене",
"@buyConfirmExpressWithdrawal": {
"description": "Title for express withdrawal confirmation screen"
},
"recoverbullReenterConfirm": "Моля, въведете повторно вашия {inputType}, за да потвърдите.",
"@recoverbullReenterConfirm": {
"description": "Instruction to re-enter PIN or password for confirmation",
"placeholders": {
"inputType": {
"type": "String"
}
}
},
"importWatchOnlyCopiedToClipboard": "Копирано в клипборда",
"@importWatchOnlyCopiedToClipboard": {
"description": "Snackbar message shown when QR code content is copied"
},
"dcaLightningAddressInvalidError": "Моля, въведете валиден Lightning адрес",
"@dcaLightningAddressInvalidError": {
"description": "Validation error when Lightning address format is invalid"
},
"backupInstruction4": "Не правете цифрови копия на вашето резервно копие. Запишете го на лист хартия, или го гравирайте върху метал.",
"@backupInstruction4": {
"description": "Fourth backup instruction about not making digital copies"
},
"hwKrux": "Krux",
"@hwKrux": {
"description": "Name of Krux hardware wallet"
},
"transactionFilterTransfer": "Прехвърляне",
"@transactionFilterTransfer": {
"description": "Filter option to show only transfer/swap transactions"
},
"recoverbullSelectVaultImportSuccess": "Вашият сейф беше успешно импортиран",
"@recoverbullSelectVaultImportSuccess": {
"description": "Success message shown on vault selected page"
},
"mempoolServerNotUsed": "Не се използва (активен е персонализираният сървър)",
"@mempoolServerNotUsed": {
"description": "Label shown when default server is not used because custom server is active"
},
"recoverbullSelectErrorPrefix": "Грешка:",
"@recoverbullSelectErrorPrefix": {
"description": "Prefix text shown before error messages"
},
"bitboxErrorDeviceMismatch": "Установено несъответствие на устройството.",
"@bitboxErrorDeviceMismatch": {
"description": "Error when connected device does not match expected device"
},
"backupWalletHowToDecideVaultMoreInfo": "Посетете recoverbull.com за повече информация.",
"@backupWalletHowToDecideVaultMoreInfo": {
"description": "Link text to external resource about vault locations"
},
"recoverbullGoBackEdit": "<< Върнете се назад и редактирайте",
"@recoverbullGoBackEdit": {
"description": "Button text to return to previous screen for editing"
},
"importWatchOnlyWalletGuides": "Ръководства за портфейли",
"@importWatchOnlyWalletGuides": {
"description": "Button label for wallet documentation and guides"
},
"receiveConfirming": "Потвърждаване... ({count}/{required})",
"@receiveConfirming": {
"description": "Shows confirmation progress",
"placeholders": {
"count": {
"type": "int"
},
"required": {
"type": "int"
}
}
},
"fundExchangeInfoPaymentDescription": "В описанието на плащането добавете вашия код за прехвърляне.",
"@fundExchangeInfoPaymentDescription": {
"description": "Info about adding transfer code to payment description"
},
"payInstantPayments": "Моментални плащания",
"@payInstantPayments": {
"description": "Display text for instant payment wallet"
},
"importWatchOnlyImportButton": "Импортиране на портфейл за наблюдение",
"@importWatchOnlyImportButton": {
"description": "Button to confirm watch-only import"
},
"fundExchangeCrIbanCrcDescriptionBold": "точно",
"@fundExchangeCrIbanCrcDescriptionBold": {
"description": "Bold emphasis word for CR IBAN transfer instructions"
},
"transactionNetworkLightning": "Лайтнинг мрежа",
"@transactionNetworkLightning": {
"description": "Label for Lightning network transactions"
},
"paySecurityQuestionLength": "{count}/40 символа",
"@paySecurityQuestionLength": {
"description": "Character count for security question",
"placeholders": {
"count": {
"type": "int"
}
}
},
"sendBroadcastingTransaction": "Излъчване на транзакцията.",
"@sendBroadcastingTransaction": {
"description": "Message shown while broadcasting transaction to network"
},
"pinCodeMinLengthError": "PIN трябва да има поне {minLength} цифри",
"@pinCodeMinLengthError": {
"description": "Error message when PIN is too short",
"placeholders": {
"minLength": {
"type": "String"
}
}
},
"swapReceiveExactAmountLabel": "Получете точната сума",
"swapInsufficientFunds": "Недостатъчни средства",
"@swapReceiveExactAmountLabel": {
"description": "Label when receive exact amount toggle is on"
},
"labelInputLabel": "Етикет",
"@labelInputLabel": {
"description": "Label for wallet label input field"
},
"bitboxActionPairDeviceButton": "Започнете сдвояване.",
"@bitboxActionPairDeviceButton": {
"description": "Button text for pair device"
},
"transactionDetailLabelSwapFees": "Такси за размяна",
"@transactionDetailLabelSwapFees": {
"description": "Label for swap fees"
},
"recoverbullRecoveryBalanceLabel": "Баланс: {amount}",
"@recoverbullRecoveryBalanceLabel": {
"description": "Label showing total wallet balance found",
"placeholders": {
"amount": {
"type": "String"
}
}
},
"buyFundYourAccount": "Заредете акаунта си",
"@buyFundYourAccount": {
"description": "Button to fund exchange account"
},
"sellReplaceByFeeActivated": "Replace-by-fee е активирана",
"@sellReplaceByFeeActivated": {
"description": "Label for RBF toggle"
},
"globalDefaultBitcoinWalletLabel": "Безопасен Биткойн",
"@globalDefaultBitcoinWalletLabel": {
"description": "Default label for Bitcoin wallets when used as the default wallet"
},
"fundExchangeLabelRecipientAddress": "Адрес на получателя",
"@fundExchangeLabelRecipientAddress": {
"description": "Label for recipient address field"
},
"dcaWalletLiquidSubtitle": "Изисква се съвместим портфейл.",
"@dcaWalletLiquidSubtitle": {
"description": "Subtitle/description for Liquid wallet option"
},
"fundExchangeCrIbanCrcTitle": "Банков превод (CRC)",
"@fundExchangeCrIbanCrcTitle": {
"description": "Screen title for Costa Rica bank transfer in Colones"
},
"appUnlockButton": "Разблокирай",
"@appUnlockButton": {
"description": "Button label to unlock the app"
},
"payServiceFee": "Такса за услуга",
"@payServiceFee": {
"description": "Label for service provider fee"
},
"transactionStatusSwapExpired": "Обмяната е изтекла.",
"@transactionStatusSwapExpired": {
"description": "Status label for expired swaps"
},
"swapAmountPlaceholder": "0",
"@swapAmountPlaceholder": {
"description": "Placeholder for amount input fields"
},
"fundExchangeMethodInstantSepaSubtitle": "Най-бързият - само за транзакции до €30 000",
"@fundExchangeMethodInstantSepaSubtitle": {
"description": "Subtitle for Instant SEPA payment method"
},
"fundExchangeSepaDescription": "Изпратете SEPA превод от банковата си сметка, използвайки данните по-долу ",
"@fundExchangeSepaDescription": {
"description": "Description for SEPA transfer (first part, before 'exactly')"
},
"sendAddress": "Адрес: ",
"@sendAddress": {
"description": "Label prefix for address field"
},
"receiveBitcoinNetwork": "Биткойн",
"@receiveBitcoinNetwork": {
"description": "Bitcoin on-chain network option"
},
"fundExchangeCrIbanCrcPaymentDescriptionHelp": "Вашият код за превод.",
"@fundExchangeCrIbanCrcPaymentDescriptionHelp": {
"description": "Help text explaining payment description is the transfer code"
},
"testBackupWriteDownPhrase": "Запишете фразата си за възстановяване\nв правилния ред\n==WEBLATE_PART==",
"@testBackupWriteDownPhrase": {
"description": "Main instruction header for physical backup screen"
},
"jadeStep8": " - Опитайте да преместите устройството си по-близо или по-далеч",
"@jadeStep8": {
"description": "Jade troubleshooting tip 3"
},
"payNotLoggedIn": "Не сте влезли",
"@payNotLoggedIn": {
"description": "Title for not logged in card"
},
"arkSettled": "Урегулирано",
"@arkSettled": {
"description": "Label for settled balance in Ark balance breakdown"
},
"transactionFilterBuy": "Купи",
"@transactionFilterBuy": {
"description": "Filter option to show only buy orders"
},
"approximateFiatPrefix": "~",
"@approximateFiatPrefix": {
"description": "Prefix indicating approximate fiat equivalent value"
},
"sendEstimatedDeliveryHoursToDays": "часове до дни",
"@sendEstimatedDeliveryHoursToDays": {
"description": "Estimated delivery time ranging from hours to days"
},
"testBackupErrorLoadWallets": "Неуспях да заредя портфейли: {error}",
"@testBackupErrorLoadWallets": {
"description": "Error when loading wallets fails",
"placeholders": {
"error": {
"type": "String"
}
}
},
"fundExchangeLabelBankAccountCountry": "Държава на банковата сметка",
"@fundExchangeLabelBankAccountCountry": {
"description": "Label for bank account country field"
},
"walletAddressTypeNestedSegwit": "Вложен SegWit",
"@walletAddressTypeNestedSegwit": {
"description": "Address type for BIP49 wallets"
},
"payPaymentPending": "Плащането е в процес на обработка.",
"@payPaymentPending": {
"description": "Status message for in-flight payment"
},
"payConfirmHighFee": "Таксата за това плащане е {percentage}% от сумата. Продължи?",
"@payConfirmHighFee": {
"description": "Confirmation prompt when fee percentage is high",
"placeholders": {
"percentage": {
"type": "String"
}
}
},
"payPayoutAmount": "Сума за изплащане",
"@payPayoutAmount": {
"description": "Label for amount user receives"
},
"payPhone": "Телефон",
"@payPhone": {
"description": "Label for phone details"
},
"recoverbullTorNetwork": "Tor мрежа",
"@recoverbullTorNetwork": {
"description": "Label for Tor network connection status"
},
"transactionDetailLabelTransferStatus": "Статус на прехвърлянето",
"@transactionDetailLabelTransferStatus": {
"description": "Label for transfer status"
},
"sendVerifyOnDevice": "Потвърдете на устройството",
"@sendVerifyOnDevice": {
"description": "Instruction to check hardware wallet screen"
},
"sendAmountRequested": "Изисквана сума: ",
"@sendAmountRequested": {
"description": "Label for the requested amount in a payment request"
},
"exchangeTransactionsTitle": "Транзакции",
"@exchangeTransactionsTitle": {
"description": "Title for the transactions section in exchange"
},
"payRoutingFailed": "Маршрутизирането се провали",
"@payRoutingFailed": {
"description": "Error when Lightning payment routing fails"
},
"payCard": "Карта",
"@payCard": {
"description": "Label for card details"
},
"sendFreezeCoin": "Замрази монетата",
"@sendFreezeCoin": {
"description": "Action to prevent UTXO from being spent"
},
"fundExchangeLabelTransitNumber": "Транзитен номер",
"@fundExchangeLabelTransitNumber": {
"description": "Label for transit number field"
},
"buyDocumentUpload": "Качване на документи",
"@buyDocumentUpload": {
"description": "Section for ID document submission"
},
"walletAddressTypeConfidentialSegwit": "Конфиденциален SegWit",
"@walletAddressTypeConfidentialSegwit": {
"description": "Address type for Liquid wallets"
},
"transactionDetailRetryTransfer": "Повтори прехвърлянето {action}",
"@transactionDetailRetryTransfer": {
"description": "Button label to retry a failed transfer action",
"placeholders": {
"action": {
"type": "String"
}
}
},
"sendTransferFeeDescription": "Това е общата такса, удържана от изпратената сума.",
"@sendTransferFeeDescription": {
"description": "Explanation of what the transfer fee represents"
},
"bitcoinSettingsWalletsTitle": "Портфейли",
"@bitcoinSettingsWalletsTitle": {
"description": "Title for the wallets section in Bitcoin settings"
},
"seedsignerStep12": "Портфейлът Bull Bitcoin ще ви помоли да сканирате QR кода на SeedSigner. Сканирайте го.",
"@seedsignerStep12": {
"description": "SeedSigner instruction for scanning signed PSBT"
},
"psbtFlowKeystoneTitle": "Keystone Инструкции",
"@psbtFlowKeystoneTitle": {
"description": "Title for Keystone device signing instructions"
},
"transactionLabelTransferStatus": "Статус на прехвърлянето",
"@transactionLabelTransferStatus": {
"description": "Label for transfer status"
},
"arkSessionDuration": "Продължителност на сесията",
"@arkSessionDuration": {
"description": "Label for session duration field"
},
"sendShowPsbt": "Покажи PSBT",
"@sendShowPsbt": {
"description": "Button to display PSBT for external signing"
},
"receiveAddress": "Адрес за получаване",
"@receiveAddress": {
"description": "Label for generated address"
},
"hwJade": "Blockstream Jade",
"@hwJade": {
"description": "Name of Blockstream Jade hardware wallet"
},
"keystoneStep14": "Сега е готово за излъчване! Веднага щом кликнете върху Излъчване, транзакцията ще бъде публикувана в мрежата на Bitcoin и средствата ще бъдат изпратени.",
"@keystoneStep14": {
"description": "Keystone final instruction about broadcasting"
},
"exchangeStatisticsTitle": "Статистика",
"@exchangeStatisticsTitle": {
"description": "Title for the statistics screen"
},
"recoverbullErrorConnectionFailed": "Не успя да се свърже към целевия сървър за ключове. Моля, опитайте отново по-късно!",
"@recoverbullErrorConnectionFailed": {
"description": "Error message when server connection fails"
},
"testBackupDigitalCopy": "Цифрово копие",
"@testBackupDigitalCopy": {
"description": "Label with X mark warning against making digital copies"
},
"fundExchangeLabelMemo": "Бележка",
"@fundExchangeLabelMemo": {
"description": "Label for memo/reference field"
},
"paySearchPayments": "Търсене на плащания...",
"@paySearchPayments": {
"description": "Search box placeholder"
},
"exchangeStatisticsCurrency": "Валута: {currency}",
"@exchangeStatisticsCurrency": {
"description": "Label showing currency for biller stats",
"placeholders": {
"currency": {
"type": "String"
}
}
},
"coreSwapsLnSendExpired": "Обмяната е изтекла.",
"@coreSwapsLnSendExpired": {
"description": "Status message for expired Lightning send swap"
},
"backupWalletEncryptedVaultTag": "Лесно и просто (1 минута)",
"@backupWalletEncryptedVaultTag": {
"description": "Tag indicating difficulty and time for encrypted vault backup"
},
"payBroadcastFailed": "Неуспешно изпращане на транзакцията",
"@payBroadcastFailed": {
"description": "Error when transaction broadcast fails"
},
"arkSettleTransactions": "Урегулиране на транзакциите",
"@arkSettleTransactions": {
"description": "Bottom sheet title for settling pending transactions"
},
"transactionLabelConfirmationTime": "Време за потвърждаване",
"@transactionLabelConfirmationTime": {
"description": "Label for transaction confirmation timestamp"
},
"languageSettingsScreenTitle": "Език",
"@languageSettingsScreenTitle": {
"description": "The title of the language settings screen"
},
"payNetworkFees": "Такси за мрежата",
"@payNetworkFees": {
"description": "Label for network fees amount"
},
"bitboxScreenSegwitBip84": "Сегвит (BIP84)",
"@bitboxScreenSegwitBip84": {
"description": "Script type display name for BIP84"
},
"bitboxScreenConnectingSubtext": "Установяване на сигурна връзка...",
"@bitboxScreenConnectingSubtext": {
"description": "Subtext when connecting"