-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathstrings.xml
More file actions
1838 lines (1838 loc) · 165 KB
/
strings.xml
File metadata and controls
1838 lines (1838 loc) · 165 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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="id_1030_minutes">Aprox. 10-30 de minute</string>
<string name="id_12_confirmations">1/2 confirmări</string>
<string name="id_12_months_51840_blocks">12 luni (51840 blocuri)</string>
<string name="id_12_words">12 words</string>
<string name="id_15_months_65535_blocks">15 luni (65535 blocuri)</string>
<string name="id_1_double_check_all_of_your">1. Verificați de două ori fraza de recuperare cuvânt cu cuvânt. Toate cuvintele sunt scrise corect?\n\n2. Ordinea cuvintelor este importantă! Asigurați-vă ca ați scris cuvintele în ordinea corespunzătoare.\n\nDacă aceste instrucțiuni nu au fost de ajutor sau dacă nu aveți o frază de recuperare din 12, 24 sau 27 de cuvinte, accesați centrul nostru de ajutor.</string>
<string name="id_1d_2s_ago">În urmă cu %1$d %2$s</string>
<string name="id_1d_minutes">%1$d minute</string>
<string name="id_1s_blocks_left_2d">%1$s blocuri rămase %2$d</string>
<string name="id_1s_twofactor_setup">%1$s Two-Factor setup</string>
<string name="id_24_words">24 words</string>
<string name="id_2_hours">Aproximativ 2 ore</string>
<string name="id_2fa_account">2FA Account</string>
<string name="id_2fa_call_is_now_enabled">2FA Call is now enabled</string>
<string name="id_2fa_dispute_in_progress">Contestare 2FA în curs</string>
<string name="id_2fa_expired">2FA Expired</string>
<string name="id_2fa_expiry">Expirare 2FA</string>
<string name="id_2fa_isnt_set_up_yetnnyou_can">2FA isn't set up yet.\n\nYou can choose your favourite 2FA method among an authenticator app, email, SMS or a call.</string>
<string name="id_2fa_methods">Metode 2FA</string>
<string name="id_2fa_protected">2FA Protected</string>
<string name="id_2fa_protected_accounts_are_2of2">2FA Protected accounts are 2-of-2 wallets needing the user's key and Blockstream's 2FA signature. After a ~1-year timelock, they become 1-of-1, disabling 2FA, to ultimately keep you in control. Redeposit your coins to reactivate 2FA protection.</string>
<string name="id_2fa_reactivated">2FA Reactivated!</string>
<string name="id_2fa_reset_in_progress">2FA în curs de resetare</string>
<string name="id_2fa_shield">2FA Shield</string>
<string name="id_2fa_shield_account">2FA Shield Account</string>
<string name="id_2fa_threshold">Limită pentru autentificarea în doi pași (2FA)</string>
<string name="id_2of2">2of2</string>
<string name="id_2of3">2of3</string>
<string name="id_2of3_account">Cont 2-din-3</string>
<string name="id_2of3_with_2fa">2of3 with 2FA</string>
<string name="id_2of3_with_2fa_shield">2of3 with 2FA Shield</string>
<string name="id_4_hours">Aprox. 4 ore</string>
<string name="id_5_seconds_minimum">Minimum 5 secunde</string>
<string name="id_6_months_25920_blocks">6 luni (25920 blocuri)</string>
<string name="id_a_2of3_account_requires_two_out">Un cont 2-din-3 necesită 2 semnături din 3 pentru a cheltui monedele. A treia semnătură va fi o cheie de rezervă cunoscută doar de tine. Astfel ai securitatea unui cont standard și libertatea de a-ți gestiona monedele în orice eventualitate.</string>
<string name="id_a_bitcoin_account_is_required">A bitcoin account is required</string>
<string name="id_a_fully_airgapped_workflow_no">A fully air-gapped workflow, no USB or Bluetooth required</string>
<string name="id_a_funding_fee_of_s_is_applied">A funding fee of %1$s is applied when receiving amounts above your current receive capacity of %2$s</string>
<string name="id_a_funding_fee_of_s_minimum_s_is">A funding fee of %1$s (minimum %2$s) is applied when receiving amounts above your current receive capacity of %3$s</string>
<string name="id_a_funding_fee_of_s_s_is_applied">A funding fee of %1$s (%2$s) is applied when receiving amounts above your current receive capacity %3$s (%4$s)</string>
<string name="id_a_liquid_account_is_required">A liquid account is required</string>
<string name="id_a_new_device_has_been_detected">A new device has been detected, please set it up to start using it.</string>
<string name="id_a_new_transaction_has_just">Ați primit o tranzacție nouă.</string>
<string name="id_a_newer_version_of_blockstream">A newer version of Blockstream is now available</string>
<string name="id_a_powerful_hardware_wallet_for">A powerful hardware wallet for securing your Bitcoin.</string>
<string name="id_a_screen_lock_must_be_enabled">Blocarea ecranului trebuie să fie activată din setările Android.</string>
<string name="id_a_set_up_funding_fee_of_s_s">A set up funding fee of %1$s (%2$s) will be applied to the received amount.</string>
<string name="id_a_wallet_is_detected_on_this">Există deja un portofel pe acest dispozitiv:</string>
<string name="id_about">Despre</string>
<string name="id_accept">Accept</string>
<string name="id_access">Acces</string>
<string name="id_access_method_not_supported">Access method not supported</string>
<string name="id_access_wallet_on_a_new_device">Access wallet on a new device</string>
<string name="id_access_your_wallet_to_check">Access your wallet to check your wallet balance and transactions.\n\nSign transactions offline using your Jade.</string>
<string name="id_account">Account</string>
<string name="id_account__asset">Account & Asset</string>
<string name="id_account_address">Account Address</string>
<string name="id_account_archived">Account archived</string>
<string name="id_account_balance">Account Balance</string>
<string name="id_account_extended_public_keys">Account Extended Public Keys</string>
<string name="id_account_for_special_assets">Account for special assets, monitored or authorized by the asset issuer.</string>
<string name="id_account_has_been_archived">Account has been archived</string>
<string name="id_account_has_been_removed">Account has been removed</string>
<string name="id_account_id">ID Cont</string>
<string name="id_account_name">Nume Cont</string>
<string name="id_account_selector">Account selector</string>
<string name="id_account_settings">Account Settings</string>
<string name="id_account_transfer">Account Transfer</string>
<string name="id_account_type">Tip de Cont</string>
<string name="id_accounts">Accounts</string>
<string name="id_accounts_summary">Rezumatul Conturilor Dvs.</string>
<string name="id_action_canceled">Acțiune anulată</string>
<string name="id_actions">Actions</string>
<string name="id_add_2fa_account">Add 2FA Account</string>
<string name="id_add_a_note_only_you_can_see_it">Adăugare notă (doar dvs. o puteți vedea).</string>
<string name="id_add_a_pgp_public_key_to_receive">Adăugare cheie publica PGP pentru a primi e-mailuri criptate care să-ți protejeze intimitatea</string>
<string name="id_add_amount">Adăugare sumă</string>
<string name="id_add_amount_optional">Adăugare sumă (opțional)</string>
<string name="id_add_an_amp_wallet">Add an AMP wallet</string>
<string name="id_add_another_wallet">Adaugă alt portofel</string>
<string name="id_add_custom_network_by_qr_code">Adăugați o altă rețea folosind un cod QR</string>
<string name="id_add_custom_network_by_url">Adăugați o altă rețea prin URL</string>
<string name="id_add_lightning_shortcut">Add lightning shortcut</string>
<string name="id_add_new_account">Adăugați un cont nou</string>
<string name="id_add_note">Add Note</string>
<string name="id_add_recipient">Add Recipient</string>
<string name="id_add_wallet">Adăugați un portofel</string>
<string name="id_added_already">Added Already!</string>
<string name="id_adding_a_2fa">adding a 2FA</string>
<string name="id_additional_networks">Alte rețele</string>
<string name="id_additional_security">Securitate suplimentară</string>
<string name="id_address">Adresă</string>
<string name="id_address_1s">Adresă: %1$s</string>
<string name="id_address_copied_to_clipboard">Adresă copiată în clipboard</string>
<string name="id_address_to_receive">Address to Receive</string>
<string name="id_address_type">Address Type</string>
<string name="id_address_verified">Address verified!</string>
<string name="id_address_was_filled_by_a_payment">Address was filled by a Payment URI</string>
<string name="id_addresses">Adrese</string>
<string name="id_advanced">Advanced</string>
<string name="id_advanced_network_settings">Setări avansate de rețea</string>
<string name="id_advanced_options">Advanced options</string>
<string name="id_advanced_options_for_your_third">Advanced options for your third recovery key</string>
<string name="id_after_2fa_expires_you_can_send">After 2FA expires, you can send funds without your 2FA method or utilize or open source recovery tool.</string>
<string name="id_all">Tot/toate</string>
<string name="id_all_assets">All Assets</string>
<string name="id_all_coins">(All coins)</string>
<string name="id_all_networks">All networks</string>
<string name="id_all_of_the_accounts_in_your">Toate conturile din portofel trebuie să fie goale înainte de a-l șterge</string>
<string name="id_all_the_coins_received_or">All the coins received or created as change.</string>
<string name="id_all_wallets">Toate portofelele</string>
<string name="id_allow_collection">Allow collection</string>
<string name="id_allow_data_collection">Allow data collection</string>
<string name="id_allow_nondefault_connection">Allow Non-Default Connection</string>
<string name="id_allows_you_to_quickly_check">Vă permite să verificați rapid situația contului, să primiți monede sau să scanati un portofel de hârtie (paper wallet). În modul watch-only nu veți putea trimite monede.</string>
<string name="id_allows_you_to_sign_transactions">Allows you to sign transactions and validate addresses using Jade's camera</string>
<string name="id_always">Întotdeauna</string>
<string name="id_always_ask">Always ask</string>
<string name="id_amount">Sumă</string>
<string name="id_amount_above_maximum_allowed">Amount above maximum allowed value</string>
<string name="id_amount_below_minimum_allowed">Amount below minimum allowed value</string>
<string name="id_amount_below_the_dust_threshold">Amount below the dust threshold</string>
<string name="id_amount_in_s">Amount in %1$s</string>
<string name="id_amount_must_be_at_least_s">Amount must be at least %1$s</string>
<string name="id_amount_must_be_at_most_s">Amount must be at most %1$s</string>
<string name="id_amount_to_be_refunded">Amount to be refunded</string>
<string name="id_amount_to_receive">Amount to Receive</string>
<string name="id_amp">AMP</string>
<string name="id_amp_account">Cont AMP</string>
<string name="id_amp_accounts_allow_you_to_send">AMP accounts allow you to send, receive, and store managed assets issued on the Liquid Network.</string>
<string name="id_amp_accounts_are_only_available">Conturile AMP sunt disponibile doar în portofelele Liquid. Este posibil să vi se ceară ID-ul contului pentru a primi active AMP.</string>
<string name="id_amp_id">AMP ID</string>
<string name="id_amp_wallet">AMP Wallet</string>
<string name="id_an_unidentified_error_occured">An unidentified error occured. The following error log can help you identify the issue:</string>
<string name="id_an_unidentified_error_occurred">An unidentified error occurred. The following error log can help you identify the issue:\n\n%1$s</string>
<string name="id_another_2fa_method_is_already">O alta metodă 2FA este activă. Confirmați prin metoda activă că acceptați această schimbare.</string>
<string name="id_any_wallet_found_will_be">Any wallet found will be displayed here.</string>
<string name="id_app_access">APP ACCESS</string>
<string name="id_app_settings">Setări aplicație</string>
<string name="id_archive">Archive</string>
<string name="id_archive_account">Archive account</string>
<string name="id_archived">Archived</string>
<string name="id_archived_account">Archived Account</string>
<string name="id_archived_accounts">Archived Accounts</string>
<string name="id_archiving">Archiving</string>
<string name="id_are_you_not_receiving_your_2fa">Are you not receiving your 2FA code?</string>
<string name="id_are_you_sure_you_want_to_delete">Are you sure you want to delete the recipient?</string>
<string name="id_are_you_sure_you_want_to_remove">Are you sure you want to remove your Lightning account?</string>
<string name="id_are_you_sure_you_want_to_view">Sunteți sigur(ă) că vreți să vizualizați tranzacția folosind %1$s?</string>
<string name="id_as_easy_as_snapping_a_photo">La fel de ușor precum ai face o poză cu telefonul. Dacă ai deja un portofel, scanează codul recuperare din setări.</string>
<string name="id_asset">Activ</string>
<string name="id_asset_details">Descriere activ</string>
<string name="id_asset_icons_are_missing_try">Asset icons are missing, try reloading them.</string>
<string name="id_asset_id">ID activ</string>
<string name="id_asset_name">Nume activ</string>
<string name="id_asset_to_buy">Asset to buy</string>
<string name="id_asset_to_sell">Asset to sell</string>
<string name="id_assets">Active</string>
<string name="id_assets_cannot_be_used_on_bitcoin">Assets cannot be used on Bitcoin</string>
<string name="id_at_least_8_characters_required">At least 8 characters required</string>
<string name="id_attempts_remaining_d">Încercări rămase: %1$d</string>
<string name="id_auth_not_supported">Auth not supported</string>
<string name="id_authenticate">Authenticate</string>
<string name="id_authenticate_address">Authenticate address</string>
<string name="id_authenticate_to_view_the">Logați-vă pentru a vedea fraza de recuperare</string>
<string name="id_authenticate_your_jade">Authenticate your Jade</string>
<string name="id_authentication_error_s">Authentication error: %1$s</string>
<string name="id_authentication_failed">Authentication failed</string>
<string name="id_authentication_successful">Authentication Successful</string>
<string name="id_authenticator_app">Aplicație de autentificare</string>
<string name="id_authenticator_qr_code">Cod QR din aplicația de autentificare</string>
<string name="id_authenticator_secret_key">Cheia secretă pentru aplicația de autentificare</string>
<string name="id_auto_logout_timeout">Auto Logout Timeout</string>
<string name="id_auto_logout_timeout_expired">Auto logout timeout expired</string>
<string name="id_autolock_after">Blocare automată după</string>
<string name="id_available">Available</string>
<string name="id_available_funds_s">Available funds %1$s</string>
<string name="id_back">Înapoi</string>
<string name="id_back_up_now">Back Up Now</string>
<string name="id_back_up_recovery_phrase">Frază de recuperare</string>
<string name="id_back_up_the_recovery_mnemonic">Back Up the recovery mnemonic and recovery xpub to recover funds from your 2of3 account.</string>
<string name="id_back_up_your_mnemonic_before">Back Up your mnemonic before removing the wallet from this device.</string>
<string name="id_back_up_your_wallet">Back Up Your Wallet</string>
<string name="id_back_up_your_wallet_now">Back Up Your Wallet Now</string>
<string name="id_backup">Backup</string>
<string name="id_be_aware_other_apps_can_read_or">Atenție! Alte aplicații pot să citească sau să schimbe textul din clipboard</string>
<string name="id_be_sure_your_recovery_phrase_is">Asigurați-vă că aveți o copie a frazei de recuperare înainte de a șterge portofelul</string>
<string name="id_before_you_back_up">Before You Back Up</string>
<string name="id_best_price">Best Price</string>
<string name="id_biometric_login_is_disabled">Logarea biometrică este dezactivată</string>
<string name="id_biometric_login_is_enabled">Logarea biometrică este activată</string>
<string name="id_biometrics">Biometrics</string>
<string name="id_biometrics_authentication">Biometrics Authentication</string>
<string name="id_bip39_passphrase">BIP39 Passphrase</string>
<string name="id_bip39_passphrase_login">BIP39 Passphrase login</string>
<string name="id_bip49_accounts_allow_you_to">BIP49 accounts allow you to segregate funds, and to receive on wrapped segwit addresses, thus ensuring the highest backwards compatibility when receiving funds from anyone on the network.</string>
<string name="id_bip84_accounts_allow_you_to">BIP84 accounts allow you to segregate your funds, and to receive on bech32 native segwit addresses. This account type ensures cheaper transactions when sending funds, but not all services support bech32 addresses yet.</string>
<string name="id_bitcoin_and_liquid">Bitcoin and Liquid</string>
<string name="id_bitcoin_denomination">Subunități Bitcoin</string>
<string name="id_bitcoin_electrum_server">Bitcoin Electrum server</string>
<string name="id_bitcoin_is_the_worlds_leading">Bitcoin este cea mai importantă criptomonedă din lume. Selectează pentru a trimite și primi bitcoin.</string>
<string name="id_bitcoin_price">Bitcoin Price</string>
<string name="id_bitcoin_testnet_and_liquid">Bitcoin Testnet and Liquid Testnet</string>
<string name="id_bitcoin_wallet">Portofel Bitcoin.</string>
<string name="id_bitcoin_wallets">Portofele Bitcoin</string>
<string name="id_block">bloc</string>
<string name="id_block_d">Bloc %1$d</string>
<string name="id_block_height">Block Height</string>
<string name="id_block_height_1d">Înălțimea blocului: %1$d</string>
<string name="id_blocks">blocuri</string>
<string name="id_blocks_confirmed">blocuri confirmate</string>
<string name="id_blockstream_devices">Blockstream Devices</string>
<string name="id_blockstream_does_not_have">Blockstream nu are acces la copia de siguranță a portofelului dvs și nu va putea să vă ajute să o recuperați în situația în care o pierdeți</string>
<string name="id_blockstream_greennsimple_and">Blockstream Green: Simplu și sigur</string>
<string name="id_blockstream_is_a_noncustodial">Blockstream is a non-custodial wallet</string>
<string name="id_blockstream_needs_access_to">Blockstream needs access to Bluetooth in order to connect to hardware wallets. Location data is not used or kept by Blockstream.</string>
<string name="id_blockstream_store">Magazinul Blockstream</string>
<string name="id_blockstream_supports_both">Blockstream supports both Bitcoin and the Liquid Network.</string>
<string name="id_blockstream_uses_biometric">Blockstream uses biometric authentication to allow easy access to the wallet</string>
<string name="id_blockstream_uses_bluetooth_for">Blockstream uses Bluetooth for communication with hardware wallets</string>
<string name="id_blockstream_uses_bluetooth_to">Blockstream uses Bluetooth to connect to hardware wallets</string>
<string name="id_blockstream_uses_multisig_with">Blockstream uses multisig with one signature generated by your device, and one by Blockstream's servers. Setting up your Two-Factor Authentication enables an extra layer of security for the server-side signature.</string>
<string name="id_bluetooth">Bluetooth</string>
<string name="id_btchip_is_not_set_up_please_set">BTChip nu este instalat. Vă rugăm să instalați folosind o aplicație desktop.</string>
<string name="id_buy__sell">Buy / Sell</string>
<string name="id_buy_bitcoin">Buy Bitcoin</string>
<string name="id_buy_btc">Buy BTC</string>
<string name="id_buy_now">Buy Now</string>
<string name="id_buy_s">Buy %1$s</string>
<string name="id_buy_with_s">Buy with %1$s</string>
<string name="id_by_continuing_you_agree_to">By continuing you agree to Blockstream's Terms Of Service and Privacy Policy</string>
<string name="id_by_proceeding_to_the_next_steps">Trecînd la pasul următor, va exprimați acordul pentru %1$s</string>
<string name="id_by_using_the_blockstream_app">By using the Blockstream app, you agree to the Terms & Conditions and Privacy Policy.</string>
<string name="id_cable">Cablu</string>
<string name="id_call">Apel</string>
<string name="id_camera_problem">Problemă cu camera</string>
<string name="id_cancel">Anulare</string>
<string name="id_cancel_2fa_reset">Anulează restarea 2FA</string>
<string name="id_cancel_a_reset_to_unlock_your">Renunțați la resetare pentru a vă debloca portofelul dacă ați reușit să recuperați accesul la o metodă 2FA</string>
<string name="id_cancel_twofactor_reset">Anulați resetarea autentificării in doi pași (2FA)</string>
<string name="id_cannot_remove_enabled_network">Nu a putut fi eliminată rețeaua activată, vă rugăm să o dezactivați înainte de a încerca din nou</string>
<string name="id_cant_connect_to_this_url">Conectare eșuată la acest URL</string>
<string name="id_change">Change</string>
<string name="id_change_address">Adresă rest</string>
<string name="id_change_exchange">Change Exchange</string>
<string name="id_change_language_to">Change Language to</string>
<string name="id_change_pin">Schimbare PIN</string>
<string name="id_change_speed">Change speed</string>
<string name="id_changing_reference_exchange">Schimbarea ratei de referință va reseta la 0 limita de cheltuire fara 2FA. Vă rugăm să restabiliți limita 2FA manual.</string>
<string name="id_channel_closure_initiated_you">Channel closure initiated. You can sweep your funds after the transaction is confirmed</string>
<string name="id_cheaper_and_more_private">Cheaper and more private singlesig option. Addresses are Bech32m.</string>
<string name="id_cheaper_singlesig_option">Cheaper singlesig option. Addresses are Native SegWit Bech32.</string>
<string name="id_check_device">Check Device</string>
<string name="id_check_for_updates">Check for updates</string>
<string name="id_check_for_updates_on_startup">Check for updates on startup</string>
<string name="id_check_our_6_easy_steps_to_be">Check our 6 easy steps to be able to send and receive AMP assets.</string>
<string name="id_check_our_store">Check our store</string>
<string name="id_check_transaction_details">Check transaction Details</string>
<string name="id_check_your_backup">Verificați-vă copia de protecție (Backup)</string>
<string name="id_check_your_device">Check your device</string>
<string name="id_choose">Alegeți</string>
<string name="id_choose_a_name_for_your_new">Alegeți un nume pentru noul dvs portofel Blockstream Green.</string>
<string name="id_choose_a_name_for_your_wallet">Alegeți un nume pentru portofelul dvs.</string>
<string name="id_choose_a_swap_option">Choose a Swap Option</string>
<string name="id_choose_a_usb_or_bluetooth">Choose a USB or Bluetooth connection on Jade after verifying your recovery phrase</string>
<string name="id_choose_bluetooth_connection_on">Choose Bluetooth connection on Jade after verifying your recovery phrase</string>
<string name="id_choose_method_to_authorize_the">Alegeți metoda de autorizare a acțiunii</string>
<string name="id_choose_recovery_phrase_length">Choose recovery phrase length</string>
<string name="id_choose_security_policy">Alegeți setările de securitate.</string>
<string name="id_choose_the_electrum_servers_you">Alegeți un server Electrum de incredere</string>
<string name="id_choose_the_security_policy_that">Choose the security policy that matches your wallet.</string>
<string name="id_choose_the_security_policy_you">Choose the security policy you want to restore this wallet on.</string>
<string name="id_choose_this_version_to_connect">Alegeți aceasta versiune pentru a vă conecta la Blockstream Jade atât prin cablu dar și wireless</string>
<string name="id_choose_this_version_to_disable">Versiune fără conexiuni wireless. Blockstream Jade va fi incompatibil cu dispozitivele iOS.</string>
<string name="id_choose_twofactor_authentication">Alegeți metoda de autentificare în doi pasi (2FA)</string>
<string name="id_choose_watchonly">Alegeți "watch-only\</string>
<string name="id_choose_which_account_you_want">Choose which account you want to receive funds in.</string>
<string name="id_choose_your_network">Alegeți rețeaua</string>
<string name="id_clear">Șterge</string>
<string name="id_clear_cache">Clear cache</string>
<string name="id_click_to_copy">Click aici pentru copiere</string>
<string name="id_click_to_receive_an_email_with">Click aici pentru a primi un e-mail cu datele de recuperare criptate.</string>
<string name="id_close">Close</string>
<string name="id_close_channel">Close Channel</string>
<string name="id_closed_channel">Closed Channel</string>
<string name="id_closing_transaction_id">Closing Transaction ID</string>
<string name="id_code">Cod</string>
<string name="id_coin">Coin</string>
<string name="id_coins">Coins</string>
<string name="id_coins_for_which_2fa_protection">Coins for which 2FA protection is expired.</string>
<string name="id_coins_locked">Coins locked</string>
<string name="id_coins_protected_by_the_legacy">Coins protected by the legacy script recoverable with your nlocktimes.zip file.</string>
<string name="id_coins_protected_by_the_new">Coins protected by the new script with embedded 2FA expiry through CheckSequenceVerify.</string>
<string name="id_coins_received_or_created">Coins received or created before SegWit was activated.</string>
<string name="id_coins_unlocked">Coins unlocked</string>
<string name="id_coins_whose_asset_and_amount">Coins whose asset and amount are publicly visible.</string>
<string name="id_coins_with_a_value_lower_than">Coins with a value lower than 1092 satoshis that are uneconomic to spend; these coins can be generated by your wallet as change or sent to you by third parties trying to spam or deanonymize your wallet.</string>
<string name="id_collapse_sidebar">Collapse sidebar</string>
<string name="id_coming_soon">Coming Soon!</string>
<string name="id_comment">Comment</string>
<string name="id_communication_timed_out_make">Comnicarea nu s-a putut realiza. Vă rugăm să verificați dacă dispozitivul este pornit și încercați din nou.</string>
<string name="id_compare_security_levels">Compare Security Levels</string>
<string name="id_completed">Completat</string>
<string name="id_confidential">Confidențial</string>
<string name="id_confidential_transaction">Confidential Transaction</string>
<string name="id_confirm">Confirm</string>
<string name="id_confirm_action">Confirmați acțiunea</string>
<string name="id_confirm_by_typing_the_wallet">Confirmați prin scrierea numelui portofelului</string>
<string name="id_confirm_code">Confirmați codul</string>
<string name="id_confirm_coin_selection">Confirm Coin Selection</string>
<string name="id_confirm_on_your_device">Confirm on your device</string>
<string name="id_confirm_on_your_jade">Confirm on your Jade</string>
<string name="id_confirm_passphrase">Confirmați parola</string>
<string name="id_confirm_refund">Confirm Refund</string>
<string name="id_confirm_swap">Confirm swap</string>
<string name="id_confirm_transaction">Confirmare tranzacție</string>
<string name="id_confirm_transaction_details_on">Confirm transaction details on your hardware wallet</string>
<string name="id_confirm_update_on_your_jade">Confirmați update-ul pe Jade</string>
<string name="id_confirm_version_on_jade">Confirm version on Jade</string>
<string name="id_confirm_via_2fa_that_you">Confirmați prin 2FA modificarea</string>
<string name="id_confirm_your_new_pin">Confirm your new PIN</string>
<string name="id_confirmation_in_d_blocks">Confirmare în %1$d blocuri</string>
<string name="id_confirmation_time">Confirmation Time</string>
<string name="id_confirmations">Confirmations</string>
<string name="id_confirming_your_transaction">Confirming your transaction</string>
<string name="id_congratulations">Felicitări!</string>
<string name="id_connect_a_different_hardware">Connect a different Hardware Device</string>
<string name="id_connect_hardware_wallet">Conectați portofelul hardware</string>
<string name="id_connect_jade">Connect Jade</string>
<string name="id_connect_jade_with_a_usb_cable">Connect Jade with a USB cable to download the latest firmware update</string>
<string name="id_connect_through_a_proxy">Connect Through a Proxy</string>
<string name="id_connect_usb_cable_or_enable">Connect USB cable or enable Bluetooth</string>
<string name="id_connect_using_usb_or_bluetooth">Connect using USB or Bluetooth</string>
<string name="id_connect_via_qr">Connect via QR</string>
<string name="id_connect_with_bluetooth">Connect with Bluetooth</string>
<string name="id_connect_with_tor">Conectare la Tor</string>
<string name="id_connect_your_jade_to_use_it">Connect your Jade to use it with Blockstream</string>
<string name="id_connect_your_ledger_to_use_it">Connect your Ledger to use it in Blockstream</string>
<string name="id_connected_peers">Connected Peers</string>
<string name="id_connected_to_jade">Conectat la Jade</string>
<string name="id_connected_wallets">Connected wallets</string>
<string name="id_connecting">Connecting…</string>
<string name="id_connecting_through_tor">Conectare prin TOR</string>
<string name="id_connecting_to_1d">Connecting to %1$d</string>
<string name="id_connecting_to_a_trusted_node">Pentru a conecta un nod de încredere la Tor trebuie să activați setările de proxy din aplicație înainte de a vă loga. Trebuie să activați și un proxy Socks5 (aplicația Orbot pentru Android).</string>
<string name="id_connecting_to_peers">Conectare la noduri de rețea...</string>
<string name="id_connecting_to_tor_onion_nodes">Conectarea la noduri Tor (.onion) permite un nivel maxim de confidențialitate și securitate. Apăsați "OK" pentru a continua.</string>
<string name="id_connecting_to_your_device">Connecting to your device</string>
<string name="id_connection">Conexiune</string>
<string name="id_connection_attempt_to_s">Connection attempt to: %1$s</string>
<string name="id_connection_blocked">Connection Blocked</string>
<string name="id_connection_failed">Conectare eșuată</string>
<string name="id_connection_to_device_failed">Conectarea la dispozitiv a eșuat! Apropiați-vă de dispozitiv și încercați din nou.</string>
<string name="id_contact_support">Contact Support</string>
<string name="id_contact_support_at_s_or_visit_s">Contactați echipa de suport la adresa %1$s sau vizitați %2$s</string>
<string name="id_contact_us">Contact Us</string>
<string name="id_continue">Continuare</string>
<string name="id_continue_as_diy">Continue as DIY</string>
<string name="id_continue_with_1s">Continuă cu %1$s</string>
<string name="id_continue_with_jade">Continue with Jade</string>
<string name="id_convenient_spending">Convenient spending</string>
<string name="id_copied_to_clipboard">Copiat în clipboard</string>
<string name="id_copy">Copy</string>
<string name="id_copy_address">Copiere adresă</string>
<string name="id_copy_amp_id">Copy AMP ID</string>
<string name="id_copy_details">Copiere detalii</string>
<string name="id_copy_device_id">Copy Device ID</string>
<string name="id_copy_id">Copy ID</string>
<string name="id_copy_raw_transaction">Copiere tranzacție brută</string>
<string name="id_copy_signature">Copy Signature</string>
<string name="id_copy_support_id">Copy support ID</string>
<string name="id_copy_swap_proposal">Copy Swap Proposal</string>
<string name="id_copy_to_clipboard">Copiere pe Clipboard </string>
<string name="id_copy_transaction_id">Copiere ID Tranzacție</string>
<string name="id_copy_unblinded_link">Copy unblinded link</string>
<string name="id_copy_unblinding_data">Copiere date de-anonimizare </string>
<string name="id_copy_uri">Copiere URI</string>
<string name="id_copy_url">Copy URL</string>
<string name="id_copy_xpub">Copiere xpub (cheie publică extinsă)</string>
<string name="id_copying">Copying...</string>
<string name="id_correct_order">correct order</string>
<string name="id_could_not_recognized_qr_code">Could not recognized QR code</string>
<string name="id_could_not_recognized_the_uri">Could not recognized the URI</string>
<string name="id_country">Country</string>
<string name="id_create">Creați</string>
<string name="id_create_a_bitcoin_2fa_protected">Create a Bitcoin 2FA protected account</string>
<string name="id_create_a_liquid_2fa_protected">Create a Liquid 2FA protected account if you need to secure more assets, other than Bitcoin.</string>
<string name="id_create_a_new_proposal">Create a New Proposal</string>
<string name="id_create_a_new_swap">Create a New Swap</string>
<string name="id_create_a_new_wallet_to_begin">Create a new wallet to begin your bitcoin journey.</string>
<string name="id_create_a_pin">Create a PIN</string>
<string name="id_create_a_pin_to_access_your">Creați un PIN pentru accesarea portofelului</string>
<string name="id_create_a_wallet_for_bitcoin">Creați un portofel pentru Bitcoin, Liquid și Testnet </string>
<string name="id_create_account">Create Account</string>
<string name="id_create_an_amp_account">Create an AMP Account</string>
<string name="id_create_invoice">Create Invoice</string>
<string name="id_create_new_account">Create New Account</string>
<string name="id_create_new_wallet">Creați un Portofel Nou</string>
<string name="id_create_temporary_wallet">Creați un Portofel Temporar</string>
<string name="id_create_wallet">Creează portofel</string>
<string name="id_create_your_first_account_to">Create your first account to receive funds.</string>
<string name="id_creating_wallet">Se creează portofel...</string>
<string name="id_creating_your_s_account">Creating your %1$s account...</string>
<string name="id_csv">Csv</string>
<string name="id_currency">Monedă</string>
<string name="id_current_language">Current language</string>
<string name="id_current_version">Versiunea curentă</string>
<string name="id_custom">Personalizare </string>
<string name="id_custom_network_added_enable_it">Adresa de rețea personalizată a fost adăugată, vă rugăm să îi permiteți accesul din setările de rețea</string>
<string name="id_custom_network_not_found">Rețeaua personalizată nu a fost găsită</string>
<string name="id_custom_network_with_this_name">Există deja o rețea personalizată cu acest nume</string>
<string name="id_custom_server_settings">Custom Server Settings</string>
<string name="id_custom_servers_and_validation">Custom servers and validation</string>
<string name="id_customize_2fa_expiration_of">Setați expirarea 2FA (Autentificare cu Doi Factori) pentru monedele dvs.</string>
<string name="id_d6_confirmations">%1$d/6 confirmări</string>
<string name="id_d_asset_in_this_account">%1$d posesiuni în acest cont</string>
<string name="id_d_assets">%1$d posesiuni</string>
<string name="id_d_assets_in_this_account">%1$d posesiuni în acest cont</string>
<string name="id_d_assets_in_total">%1$d assets in total</string>
<string name="id_d_coins_selected">(%1$d coins selected)</string>
<string name="id_d_words">%1$d words</string>
<string name="id_data_directory">Data directory</string>
<string name="id_data_not_available">Data not available</string>
<string name="id_date">Dată</string>
<string name="id_day">Zi</string>
<string name="id_days">Zile</string>
<string name="id_days_remaining_s">Zile rămase: %1$s</string>
<string name="id_decoding_error_try_again_by">Decoding error: try again by scanning the QR code with Jade</string>
<string name="id_default_custom_fee_rate">Rată implicită de plată a comisioanelor </string>
<string name="id_default_transaction_priority">Prioritate implicită a tranzacției</string>
<string name="id_delete">Șterge</string>
<string name="id_delete_credentials">Delete credentials</string>
<string name="id_delete_permanently_your_wallet">Delete permanently your wallet from the Blockstream database. You will never be able to log in to it thereafter.</string>
<string name="id_delete_s_twofactor">Ștergere %1$s Autentificare cu Doi Factori</string>
<string name="id_delete_wallet">Șterge portofel</string>
<string name="id_deleting_your_pin_will_remove">Ștergerea PIN-ului va elimina permanent accesul la portofel, dacă nu cumva aveți la dispoziție șirul de cuvinte mnemonice. Apăsați "OK" pentru continuare.</string>
<string name="id_denomination">Denominare</string>
<string name="id_denomination__exchange_rate">Denomination & Exchange Rate</string>
<string name="id_deposit">Depunere</string>
<string name="id_description">Description</string>
<string name="id_descriptor">Descriptor</string>
<string name="id_destination_public_key">Destination Public Key</string>
<string name="id_details">Details</string>
<string name="id_device">Device</string>
<string name="id_device_access_using_faceid">Device access using FaceID.</string>
<string name="id_device_access_using_touchid">Device access using TouchID.</string>
<string name="id_devices">Dispozitive</string>
<string name="id_different_passphrases_generate">Different passphrases generate new wallets!\n\nRemember you can only restore this wallet with both your recovery phrase and the passphrase.</string>
<string name="id_digital_wallets">Digital Wallets</string>
<string name="id_disable">Dezactivare</string>
<string name="id_disable_authenticator">Disable Authenticator</string>
<string name="id_disable_lightning">Disable Lightning</string>
<string name="id_disable_notifications">Disable Notifications</string>
<string name="id_disable_pin_access">Dezactivează PIN</string>
<string name="id_disable_pin_access_for_this">Disable PIN access for this wallet on all devices</string>
<string name="id_disable_s_twofactor">Dezactivare %1$s Autentificare in Doi Factori (2FA)</string>
<string name="id_disabled">Dezactivat</string>
<string name="id_disabling">Disabling...</string>
<string name="id_disconnect">Disconnect</string>
<string name="id_display_values_in_s_and">Display values in %1$s and exchange rate in %2$s using %3$s</string>
<string name="id_displays_the_progress_of_spv">Afișează progresul sincronizării SPV</string>
<string name="id_dispute_twofactor_reset">Disputați Resetarea Autentificării cu Doi Factori</string>
<string name="id_disputed">Disputat</string>
<string name="id_distributed_under_the_s_see">Distribuit sub %1$s, consultați LICENȚA pentru mai multe detalii sau vizitați %2$s</string>
<string name="id_do_you_have_the_backup">Aveți copia?</string>
<string name="id_do_you_want_to_enable_tor_to">Do you want to enable Tor to connect to the PIN oracle server?</string>
<string name="id_domain">Domeniu</string>
<string name="id_done">Realizat</string>
<string name="id_dont_ask_me_again">Nu mă mai întreba</string>
<string name="id_dont_ask_me_again_for_this">Don't ask me again for this oracle</string>
<string name="id_dont_collect_data">Don't collect data</string>
<string name="id_dont_have_a_jade">Don't have a Jade?</string>
<string name="id_dont_have_a_jade_check_our_store">Don't have a Jade? Check our store</string>
<string name="id_dont_have_one_buy_a_jade">Don't have one? Buy a Jade</string>
<string name="id_dont_lose_access_to_your_funds">Don't lose access to your funds.</string>
<string name="id_dont_show_this_again">Don't show this again</string>
<string name="id_dont_store_your_recovery_phrase">Nu salvați fraza de recuperare pe telefon, computer sau online.</string>
<string name="id_dont_take_screenshots_of_your">Nu faceți captura de ecran cu fraza de recuperare!</string>
<string name="id_double_check_spv_with_other">Verificați SPV cu alte servere</string>
<string name="id_double_spend">dublă cheltuire</string>
<string name="id_double_spend_by">Dublă cheltuire prin</string>
<string name="id_download_finished">Descărcare terminată</string>
<string name="id_dust">Dust</string>
<string name="id_edit">Edit</string>
<string name="id_edit_fee">Edit Fee</string>
<string name="id_edit_note">Edit Note</string>
<string name="id_electrum_server_gap_limit">Electrum Server Gap Limit</string>
<string name="id_email">E-mail</string>
<string name="id_email_address">Adresă de e-mail</string>
<string name="id_emergency_recovery_phrase">Emergency Recovery Phrase Restore</string>
<string name="id_empty">Empty</string>
<string name="id_empty_lightning_account">Empty Lightning Account</string>
<string name="id_enable">Activare</string>
<string name="id_enable_2fa">Enable 2FA</string>
<string name="id_enable_2fa_call_method">Enable 2FA Call method</string>
<string name="id_enable_an_extra_layer_of">Enable an extra layer of security when accessing your watch-only.</string>
<string name="id_enable_background_payment">Enable background payment</string>
<string name="id_enable_bluetooth">Activați Bluetooth</string>
<string name="id_enable_bluetooth_from_ios">Enable Bluetooth from iOS settings to continue</string>
<string name="id_enable_bluetooth_from_system">Enable bluetooth from system settings</string>
<string name="id_enable_custom_networks_debug">Activare opțiuni personalizate pentru debugul rețelei</string>
<string name="id_enable_email_notifications_to">Permiteți notificări prin e-mail pentru a schimba nlocktime</string>
<string name="id_enable_experimental_features">Enable Experimental Features</string>
<string name="id_enable_face_id">Permiteți Face ID</string>
<string name="id_enable_faceid">Enable FaceID</string>
<string name="id_enable_lightning">Enable Lightning</string>
<string name="id_enable_limited_usage_data">Enable limited usage data collection</string>
<string name="id_enable_location_services">Enable location services</string>
<string name="id_enable_notifications">Enable Notifications</string>
<string name="id_enable_or_change_your_pin_to">Activați sau schimbați PIN-ul pentru a avea acces rapid la portofel</string>
<string name="id_enable_pin_before_disabling_s">Enable PIN before disabling %1$s</string>
<string name="id_enable_pin_to_protect_your">Enable PIN to protect your wallet</string>
<string name="id_enable_push_notifications_for">Enable push notifications for seamless lightning payments. No need to keep your app open to receive.</string>
<string name="id_enable_spv">Activare SPV</string>
<string name="id_enable_spv_and_modify_spv">Activați SPV și modificați setările SPV</string>
<string name="id_enable_testnet">Enable Testnet</string>
<string name="id_enable_testnet_in_app_settings">Enable testnet in app settings to use Jade</string>
<string name="id_enable_tls">Enable TLS</string>
<string name="id_enable_tls_connection">Enable TLS connection</string>
<string name="id_enable_tor">Enable Tor</string>
<string name="id_enable_touch_id">Activare Touch ID</string>
<string name="id_enable_touchid">Enable TouchID</string>
<string name="id_enable_twofactor_authentication">Activați Autentificare cu Doi Factori (2FA) pentru a vă proteja portofelul de tranzacții neautorizate sau schimbări ale setărilor critice de securitate</string>
<string name="id_enabled">Activat</string>
<string name="id_enabled_1s">Activat: %1$s</string>
<string name="id_enabling">Enabling...</string>
<string name="id_encryption_passphrase">Passphrase de criptare</string>
<string name="id_enhance_security">Enhance Security</string>
<string name="id_enhanced_privacy">Enhanced Privacy</string>
<string name="id_ensure_your_app_is_up_to_date">Ensure your app is up to date.</string>
<string name="id_enter">Introduceți</string>
<string name="id_enter_a_pgp_public_key_to_have">Introduceți o cheie publică PGP pentru a vă cripta e-mailurile, beneficiind astfel de o confidențialitate mai bună</string>
<string name="id_enter_a_private_key_to_sweep">Introduceți o cheie privată pentru a accesa monedele din acest portofel</string>
<string name="id_enter_a_valid_onion_or_ip">Introduceți o adresă .onion sau IP validă (este de preferat cea .onion)</string>
<string name="id_enter_a_valid_username">Introduceți un nume de utilizator valid</string>
<string name="id_enter_amount_in">Enter amount in</string>
<string name="id_enter_an_address">Introduceți o adresă</string>
<string name="id_enter_an_address_or_invoice">Enter an address or invoice</string>
<string name="id_enter_an_address_or_sweep_paper">Introduceți o adresă sau accesați portofel de hârtie (paper wallet)</string>
<string name="id_enter_and_confirm_a_unique_pin">Enter and confirm a unique PIN that will be entered to unlock Jade.</string>
<string name="id_enter_new_email">Introduceți e-mail nou</string>
<string name="id_enter_phone_number">Introduceți numărul de telefon</string>
<string name="id_enter_pin">Introduceți PIN</string>
<string name="id_enter_pin_on_jade">Introduceți PIN din portofelul Jade</string>
<string name="id_enter_the_email_for_which_you">Enter the email for which you want to delete a dispute request</string>
<string name="id_enter_the_matching_words">Introduceți Cuvintele Care Se Potrivesc</string>
<string name="id_enter_the_pin_for_your_hardware">Introduceți PIN-ul portofelului dumneavoastră hardware</string>
<string name="id_enter_your_12_24_or_27_words">Enter your 12, 24 or 27 words recovery phrase</string>
<string name="id_enter_your_24_or_27_words">Introduceți fraza de recuperare din 24 sau 27 de cuvinte.</string>
<string name="id_enter_your_27_words_recovery">Introduceți fraza de recuperare din 27 de cuvinte</string>
<string name="id_enter_your_6digit_pin_to_access">Enter your 6-digit PIN to Access your Wallet</string>
<string name="id_enter_your_code">Enter your code</string>
<string name="id_enter_your_email_address">Introduceți adresa dvs de e-mail</string>
<string name="id_enter_your_pin">Introduceți PIN</string>
<string name="id_enter_your_pin_on_jade_to_unlock">Enter your PIN on Jade to Unlock</string>
<string name="id_enter_your_recovery_phrase">Introduceți fraza de recuperare</string>
<string name="id_enter_your_s_wallet_mnemonic">Introduceți %1$s șirul de cuvinte mnemonice</string>
<string name="id_enter_your_wallet_mnemonic">Introduceți șirul de cuvinte mnemonice al portofelului dumneavoastră</string>
<string name="id_enter_your_xpub">Enter your xpub</string>
<string name="id_enter_your_xpub_to_add_a">Introduceți cheia xPub pentru a adăuga un wallet "watch-only". Veți putea primi fonduri si verifica soldul fara sa adaugați cheile private.</string>
<string name="id_enter_yournrecovery_phrase">Introduceți \nfraza de recuperare</string>
<string name="id_entity">Entitate</string>
<string name="id_ephemeral_wallets">Ephemeral wallets</string>
<string name="id_error">Eroare</string>
<string name="id_error_logging_in_with_hardware">Eroare de logare cu portofelul hardware</string>
<string name="id_error_nfc_tag_not_writable">Eroare: Nu s-a putut scrie pe eticheta NFC</string>
<string name="id_error_nfc_tag_too_small">Eroare: Eticheta NFC este prea mică</string>
<string name="id_error_passphrases_do_not_match">Eroare: passphrase-urile nu se potrivesc</string>
<string name="id_error_setting_fee_rate">Eroare în stabilirea taxei pentru tranzacție</string>
<string name="id_establishing_session">Se inițializează conexiunea</string>
<string name="id_estimated_blocks_until">Blocuri estimate până la confirmarea tranzacției: %1$d</string>
<string name="id_everything_you_need_to_take">Everything you need to take control of your bitcoin.</string>
<string name="id_example_89014283334011612858333">Exemplu: 8.90.14.2:8333, 40.116.12.85:8333</string>
<string name="id_exchange">Exchange</string>
<string name="id_exchange_rate">Exchange Rate</string>
<string name="id_existing_recovery_phrase">Existing recovery phrase</string>
<string name="id_existing_wallets">Existing Wallets</string>
<string name="id_exit_guide">Exit Guide</string>
<string name="id_expand_sidebar">Expand sidebar</string>
<string name="id_experimental">Experimental</string>
<string name="id_experimental_feature">Experimental Feature</string>
<string name="id_experimental_features_might">Experimental features might change, break, or be discontinued at any time, so you agree to use them at your own risk.</string>
<string name="id_expiration">Expiration</string>
<string name="id_explore_your_wallet">Deschideți portofelul</string>
<string name="id_export">Export</string>
<string name="id_export_lightning_key">Export Lightning Key</string>
<string name="id_export_lightning_key_to">Export Lightning Key to Blockstream</string>
<string name="id_export_transactions_to_csv_file">Exportare tranzacții într-un fișier CSV</string>
<string name="id_export_xpub">Export Xpub</string>
<string name="id_exports_an_accounts_extended">Exports an account's extended public key (xPub/yPub/zPub) to view as a watch-only</string>
<string name="id_extended_public_key">Extended Public Key</string>
<string name="id_extended_public_keys">Extended Public Keys</string>
<string name="id_face_id">Face ID</string>
<string name="id_faceid">FaceID</string>
<string name="id_failed">Failed</string>
<string name="id_failed_to_load_asset_icons">Failed to load asset icons</string>
<string name="id_failed_to_load_asset_registry">Failed to Load Asset Registry</string>
<string name="id_fast">Rapid</string>
<string name="id_fast_transactions_on_the">Fast transactions on the Lightning Network, powered by Greenlight.</string>
<string name="id_faster_more_confidential">Tranzacții Bitcoin confidențiale și rapide</string>
<string name="id_fastest">Fastest</string>
<string name="id_feature_unavailable_for_liquid">Feature unavailable for Liquid accounts.</string>
<string name="id_feature_unavailable_in_the_uk">Feature unavailable in the UK. Coming soon.</string>
<string name="id_fee">Taxa pentru tranzactie</string>
<string name="id_fee_amount_size_fee_rate">Valoare comision, dimensiune, rată a comisionului</string>
<string name="id_fee_rate">Rata comisionului</string>
<string name="id_fee_rate_is_above_maximum">Rata comisionului este peste pragul maxim acceptat.</string>
<string name="id_fee_rate_is_below_minimum">Rata comisionului este sub pragul minim acceptat.</string>
<string name="id_fee_rate_must_be_at_least_s">Comisionul trebuie să fie de minim %1$s satoshi/vbyte</string>
<string name="id_fee_rate_must_be_at_most_s">Fee rate must be at most %1$s satoshi/vbyte.</string>
<string name="id_fee_rate_s">Rata comisionului: %1$s</string>
<string name="id_fee_s__s">Comision: %1$s/%2$s</string>
<string name="id_feedback">Feedback</string>
<string name="id_fees_are_collected_by_bitcoin">Fees are collected by bitcoin miners, not Blockstream.</string>
<string name="id_fees_are_not_collected_by">Fees are not collected by Blockstream, but by Bitcoin miners, Liquid functionaries, and Lightning nodes, who include or secure transactions onto the blockchain, granting 24/7 worldwide service availability.\n\nBecause blockchain space, or lightning network liquidity, is limited, network operators will give priority to transactions paying higher fees, especially in periods of intense traffic.</string>
<string name="id_fees_are_too_low">Comisioanele sunt prea mici</string>
<string name="id_fetching_new_firmware">Se descarcă noul firmware</string>
<string name="id_filters">Filters</string>
<string name="id_finishing_up">Aproape gata</string>
<string name="id_firmware">Firmware</string>
<string name="id_firmware_up_to_date">Firmware up to date</string>
<string name="id_firmware_update">Firmware Update</string>
<string name="id_firmware_update_completed">Actualizarea firmware a fost efectuată</string>
<string name="id_firmware_update_failed">Firmware update failed</string>
<string name="id_firmware_upgrade">Firmware Upgrade</string>
<string name="id_firmware_version_s">Firmware Version: %1$s</string>
<string name="id_follow_the_instructions_of_your">Follow the instructions of your hardware wallet before continuing.</string>
<string name="id_follow_the_instructions_on_jade">Follow the instructions on Jade</string>
<string name="id_follow_the_instructions_on_your">Follow the instructions on your device.</string>
<string name="id_for_ease_of_use">For Ease of Use</string>
<string name="id_for_help_visit">For help visit help.blockstream.com\nTo unsubscribe turn off SMS 2FA from the app.\nStandard messages and data rates may apply.</string>
<string name="id_for_higher_security">For Higher Security</string>
<string name="id_for_investors">Pentru Investitori</string>
<string name="id_for_long_term_storage">Pentru păstrare pe termen lung</string>
<string name="id_for_more_information">For more information,</string>
<string name="id_for_more_information_read_more">For more information, Read More</string>
<string name="id_for_most_users">Pentru majoritatea utilizatorilor</string>
<string name="id_format_is_not_supported_or_no">Format is not supported or no data was found.</string>
<string name="id_found_via_bluetooth">Found via Bluetooth</string>
<string name="id_from">From</string>
<string name="id_fully_airgapped_with_qr">Fully air-gapped with QR</string>
<string name="id_funding_transaction_id">Funding Transaction Id</string>
<string name="id_funds_received">Funds Received!</string>
<string name="id_funds_received_in_this">Fondurile primite prin această tranzacție nu sunt confidențiale.</string>
<string name="id_general">General</string>
<string name="id_generate">Generate</string>
<string name="id_generate_a_new_recovery_phrase">Generate a new recovery phrase as your third recovery key.</string>
<string name="id_generate_amp_id">Generate AMP ID</string>
<string name="id_generate_new_address">Generați o adresă nouă</string>
<string name="id_genuine_check">Genuine Check</string>
<string name="id_genuine_check_canceled">Genuine check canceled</string>
<string name="id_genuine_check_is_mandatory_for">Genuine Check is mandatory for first time Jade connection. This way we make sure that you have a safe Jade.</string>
<string name="id_get_code">Obțineți Cod</string>
<string name="id_get_id">Get ID</string>
<string name="id_get_jade">Obțineți Jade</string>
<string name="id_get_started">Get Started</string>
<string name="id_get_support">Get Support</string>
<string name="id_get_watchonly_info_from_jade">Get watch-only info from Jade</string>
<string name="id_get_watchonly_information_from">Get watch-only information from hardware signer</string>
<string name="id_give_bluetooth_permissions">Give Bluetooth Permissions</string>
<string name="id_give_us_your_feedback">Give us your feedback</string>
<string name="id_go_to_account">Mergeți la cont</string>
<string name="id_go_to_receive_to_get_your">Mergeți la meniul "Primire" pentru a obține ID-ul contului.</string>
<string name="id_go_to_wallet">Mergeți la Portofel</string>
<string name="id_got_it_written_down_great_you">Got it written down? Great. You can enter it here. Don't lose it, it'll stay the same.</string>
<string name="id_grant_blockstream_bluetooth">Grant Blockstream Bluetooth permission</string>
<string name="id_great_you_successfully_backed">Great! You successfully backed up your recovery phrase.</string>
<string name="id_green_is_now_the_blockstream_app">Green is now the Blockstream app</string>
<string name="id_green_is_now_thenblockstream_app">Green is now the\nBlockstream app</string>
<string name="id_green_logo">Logo Green</string>
<string name="id_green_mnemonic_qr_code">Codul QR pentru șirul de cuvinte mnemonice Green</string>
<string name="id_green_needs_the_master_blinding">Green needs the master blinding key from Jade</string>
<string name="id_green_only_supports_one_pin_for">Green suportă un singur PIN pentru fiecare rețea. Portofelele nou-create vor necesita introducerea șirului de cuvinte mnemonice de fiecare dată când vă logați.</string>
<string name="id_green_only_supports_one_pin_per">Green suportă un singur PIN pentru fiecare rețea. Pentru a crea un PIN pentru acest portofel, întâi dezactivați PIN-ul din portofelul original.</string>
<string name="id_hardware">Hardware</string>
<string name="id_hardware_devices">Hardware Devices</string>
<string name="id_hardware_security">Hardware Security</string>
<string name="id_hardware_wallet">Hardware wallet</string>
<string name="id_hardware_wallet_support_for">Suportul pentru portofele hardware în cazul trimiterii de Tranzacții Confidențiale va fi disponibil în curând.</string>
<string name="id_hardware_wallets">Hardware wallets</string>
<string name="id_hash">Hash</string>
<string name="id_hash_s">Hash: %1$s</string>
<string name="id_help">Ajutor</string>
<string name="id_help_us_improve">Help Us Improve</string>
<string name="id_helpblockstreamcom">help.blockstream.com</string>
<string name="id_here">aici</string>
<string name="id_heres_the_proof_of_ownership_of">Here's the proof of ownership of the address</string>
<string name="id_hex">HEX</string>
<string name="id_hide_advanced_options">Hide advanced options</string>
<string name="id_hide_amounts">Hide amounts</string>
<string name="id_hide_assets">Ascundere posesiuni</string>
<string name="id_hide_details">Hide details</string>
<string name="id_high">Ridicat</string>
<string name="id_hold_button_to_send">Hold button to Send</string>
<string name="id_hold_the_button_on_the_bottom">Hold the button on the bottom of Jade until it boots up</string>
<string name="id_hold_the_green_button_on_the">Hold the green button on the bottom of Jade until it boots up</string>
<string name="id_hold_your_nfc_tag_close_to_the">Țineți eticheta NFC aproape de dispozitiv</string>
<string name="id_home">Home</string>
<string name="id_hour">oră</string>
<string name="id_hours">ore</string>
<string name="id_how_do_you_want_to_secure_your">How do you want to secure your funds?</string>
<string name="id_how_to_stop_this_reset">Cum să opriți resetarea</string>
<string name="id_i_agree_to_the">Sunt de acord cu</string>
<string name="id_i_agree_to_the_terms_of_service">I agree to the Terms of Service and Privacy Policy</string>
<string name="id_i_confirm_i_have_read_and">Confirm că am citit și înțeles mesajul de mai sus</string>
<string name="id_i_confirm_i_want_to_delete_this">Confirm că vreau să șterg acest portofel.</string>
<string name="id_i_confirm_i_want_to_disable_pin">Confirm că vreau sa dezactivez PIN-ul pe toate dispozitivele.</string>
<string name="id_i_forgot_my_password">Mi-am uitat parola</string>
<string name="id_i_fund_via_an_onchain_bitcoin">(i) Fund via an onchain bitcoin transaction</string>
<string name="id_i_lost_my_2fa">Am pierdut accesul la 2FA</string>
<string name="id_i_lost_my_2fa_method">I lost my 2FA method</string>
<string name="id_i_secured_the_mnemonic_and_i">Mi-am securizat fraza mnemonică și am citit Termenii de Utilizare</string>
<string name="id_i_typed_all_my_recovery_phrase">Am scris toate cuvintele din fraza de recuperare. De ce nu pot continua?</string>
<string name="id_i_understand_amounts_could_be">I understand amounts could be incorrect</string>
<string name="id_i_understand_that_asking_for">I understand that asking for support through Tor will reduce my anonymity</string>
<string name="id_id">ID</string>
<string name="id_ideal_for_longterm_bitcoin">Ideal for long-term bitcoin storage</string>
<string name="id_ideal_for_small_amounts_of">Ideal for small amounts of bitcoin</string>
<string name="id_if_for_any_reason_you_cant">If for any reason you can't login into your wallet, you can recover your recovery phrase using your PIN/Biometrics.</string>
<string name="id_if_jade_is_already_set_up">If Jade is already set up, choose QR Mode > QR PIN Unlock > Continue > Enter your PIN</string>
<string name="id_if_you_agree_blockstream_will">If you agree, Blockstream will collect limited usage data to optimize the user experience. No sensitive user or wallet info is collected.</string>
<string name="id_if_you_are_the_rightful_owner">Dacă sunteți proprietarul de drept al acestui portofel și aveți acces la una dn metodele 2FA, anulați resetarea pentru a putea cheltui monedele.</string>
<string name="id_if_you_did_not_change_your">If you did not change your oracle settings on Jade, do not proceed and contact Blockstream support.</string>
<string name="id_if_you_did_not_request_the">If you did not request the reset, but you cannot cancel the reset process because you can't access any existing Two-Factor Authorization methods, dispute this 2FA reset. This will permanently block your wallet, but you can undo this action.</string>
<string name="id_if_you_forget_it_or_lose_it">If you forget it or lose it, your funds are going to be lost as well.</string>
<string name="id_if_you_forget_your_pin_you_will">If you forget your PIN, you will need to restore with your recovery phrase</string>
<string name="id_if_you_have_access_to_a">Daca aveți acces la o metodă 2FA pentru acest portofel, anulați resetarea pentru a putea cheltui monedele sau asteptați %1$d zile.</string>
<string name="id_if_you_have_some_coins_on_the">If you have some coins on the legacy address type, and you won't spend them shortly, you might need to setup an email and receive your recovery transactions to be sure you are always in control of your funds.</string>
<string name="id_if_you_initiated_the_2fa_reset">Daca ați inițiat contestarea resetării 2FA din greșeală, puteți anula contestarea.</string>
<string name="id_import">Import</string>
<string name="id_import_a_multisig_shield_wallet">Import a Multisig Shield wallet created on Blockstream Green.</string>
<string name="id_import_a_wallet_created_on">Importați un portofel creat cu Blockstream Green.</string>
<string name="id_import_a_wallet_created_with">Importați un portofel creat cu alte aplicații. Valabil doar pentru portofele cu semnatură unică cu fraze de recuperare BIP39 si derivație BIP44, BIP49 sau BIP84.</string>
<string name="id_import_from_file">Import from file</string>
<string name="id_import_pubkey">Import PubKey</string>
<string name="id_import_signed_transaction">Import signed transaction</string>
<string name="id_in_a_watchonly_wallet_your">In a watch-only wallet, your private keys remain offline for maximum security. This allows you to safely monitor your balance, history and create addresses on the go. To send, transactions are signed with your offline keys.</string>
<string name="id_in_progress">In Progress</string>
<string name="id_inbound_liquidity">Inbound Liquidity</string>
<string name="id_incoming">În curs de primire</string>
<string name="id_inconsistent_data_provided_for">Datele oferite pentru activarea Autentificării cu 2 factori 2FA nu corespund</string>
<string name="id_increase_fee">Creștere comision</string>
<string name="id_increase_inbound_capacity_now">Increase inbound capacity now</string>
<string name="id_increase_qr_size">Increase QR Size</string>
<string name="id_increase_security">Increase Security</string>
<string name="id_increase_the_security_of_your">Increase the security of your funds by adding a 2FA</string>
<string name="id_information_not_available">Informația nu este disponibilă.</string>
<string name="id_initialize_and_create_wallet">Initialize and Create wallet</string>
<string name="id_initialize_jade_for_testnet">Initialize Jade for testnet</string>
<string name="id_initialized">Inițializat</string>
<string name="id_initializing_tor">Inițializare Tor...</string>
<string name="id_initiate_oracle_communication">Initiate oracle communication</string>
<string name="id_initiate_refund">Initiate Refund</string>
<string name="id_insert_your_email_to_receive">Insert your email to receive 2FA codes to authorize transfers and other operations.</string>
<string name="id_insert_your_phone_number_to">Insert your phone number to receive 2FA codes to authorize transfers and other operations.</string>
<string name="id_install_version_s">Instalați versiunea: %1$s? </string>
<string name="id_instant">Instant</string>
<string name="id_instant_recovery">Instant recovery</string>
<string name="id_insufficient_funds">Fonduri insuficiente</string>
<string name="id_insufficient_lbtc_for_fees">LBTC insuficient pentru plata comisioanelor de tranzacție</string>
<string name="id_insufficient_lbtc_to_send_a">Nu aveți suficient LBTC pentru a efectua o tranzacție. În rețeaua Liquid, LBTC sunt necesari pentru a plăti comisioanele de tranzacție. Generați o adresă la care să primiți LBTC.</string>
<string name="id_invalid_address">Adresă invalidă</string>
<string name="id_invalid_amount">Cantitate invalidă</string>
<string name="id_invalid_asset_id">Invalid Asset ID</string>
<string name="id_invalid_clipboard_contents">Invalid clipboard contents</string>
<string name="id_invalid_merkle_proof">Invalid Merkle proof</string>
<string name="id_invalid_mnemonic">Frază mnemonică invalidă</string>
<string name="id_invalid_mnemonic_continue">Frază de recuperare invalidă. Continuați sau contactați departamentul suport.</string>
<string name="id_invalid_mnemonic_must_be_24_or">Frază mnemonică invalidă (trebuie să aibă 24 sau 27 de cuvinte)</string>
<string name="id_invalid_network_configuration">Configurația rețelei este invalidă</string>
<string name="id_invalid_payment_request_assetid">Cererea de plată este invalidă, trebuie specificat ID-ul monedei (AssetID) </string>
<string name="id_invalid_pgp_key">Cheie PGP invalidă</string>
<string name="id_invalid_phone_number_format">Format invalid pentru numărul de telefon</string>
<string name="id_invalid_pin">PIN invalid</string>
<string name="id_invalid_pin_remaining_attempts">PIN invalid. Încercări rămase: %1$d.</string>
<string name="id_invalid_pin_you_dont_have_any">PIN invalid, ați rămas fără încercări. Vă rugăm să realizați logarea folosind fraza mnemonică a portofelului.</string>
<string name="id_invalid_pin_you_have_1d">PIN invalid, mai aveți %1$d încercări rămase</string>
<string name="id_invalid_private_key">Cheie privată invalidă</string>
<string name="id_invalid_psbt">Invalid psbt</string>
<string name="id_invalid_recovery_phrase">Invalid recovery phrase</string>
<string name="id_invalid_replacement_fee_rate">Rata de înlocuire a comisionului este invalidă</string>
<string name="id_invalid_session">Invalid session</string>
<string name="id_invalid_spv">Invalid SPV</string>
<string name="id_invalid_status_check_that_your">Status invalid. Verificați dacă dispozitivul dvs este deblocat și apoi încercați din nou.</string>
<string name="id_invalid_subaccount">Invalid subaccount</string>
<string name="id_invalid_swap_proposal">Invalid swap proposal</string>
<string name="id_invalid_twofactor_code">Cod de autentificare cu 2 factori (2FA) invalid</string>
<string name="id_invalid_url">URL invalid</string>
<string name="id_invalid_xpub">Invalid xpub</string>
<string name="id_invoice">Invoice</string>
<string name="id_invoice_description">Invoice Description</string>
<string name="id_invoice_expired">Invoice expired</string>
<string name="id_invoices">Invoices</string>
<string name="id_is_a_noncustodial">este un portofel non-custodial</string>
<string name="id_issue_description">Issue description</string>
<string name="id_issuer">Emițător</string>
<string name="id_issuer_domain_s">Proprietar domeniu: %1$s</string>
<string name="id_it_looks_like_you_have_no">Se pare că nu aveți niciun portofel. Click mai jos ca să adăugați unul.</string>
<string name="id_jade_already_unlocked">Jade already unlocked</string>
<string name="id_jade_is_a_specialized_device">Jade is a specialized device designed to securely store the keys needed to spend your bitcoin.</string>
<string name="id_jade_is_an_isolated_device_not">Jade is an isolated device not connected to the internet, which means your funds are protected from a hacked or compromised phone.</string>
<string name="id_jade_is_an_opensource_hardware">Jade is an open-source hardware wallet for Bitcoin and Liquid assets.</string>
<string name="id_jade_is_trying_to_connect_to_a">Jade is trying to connect to a non-default blind PIN oracle. Contact support immediately for further information.</string>
<string name="id_jade_unlocked">Jade a fost deblocat</string>
<string name="id_jade_was_initialized_for_testnet">Jade was initialized for testnet</string>
<string name="id_jade_will_securely_create_and">Jade will securely create and transfer a new key to your Green app. Jade will not be needed to authorize lightning transactions, because Green will use this new key for your lightning transactions.\n\nDon't worry about any new backups, your existing recovery phrase backup will be sufficient to restore both your funds onchain and on lightning.</string>
<string name="id_just_a_few_more_steps_to_get">Cîțiva pași și inițializarea este gata.</string>
<string name="id_keep_your_keys_encrypted_on">Keep your keys encrypted on Jade, easily accessible with PIN</string>
<string name="id_keep_your_recovery_phrase_fully">Keep your recovery phrase fully offline and stored somewhere secret. Anyone with a copy of these words can steal your funds.</string>
<string name="id_keys_stored_on_mobile_device">Keys stored on mobile device</string>
<string name="id_keys_stored_on_specialized">Keys stored on specialized device</string>
<string name="id_label">Label</string>
<string name="id_language">Limbă</string>
<string name="id_last_attempt_if_failed_you_will">Last attempt: if failed, you will have to restore your wallet with your recovery phrase.</string>
<string name="id_last_ping_1d_ms">Ultimul ping: %1$d ms</string>
<string name="id_later">MAI TÂRZIU</string>
<string name="id_latest_transactions">Latest transactions</string>
<string name="id_lbtc_has_no_issuer_and_is">LBTC nu are o entitate emitentă și este creat de către rețea atunci când bitcoini de pe lanțul principal sunt transferați în rețea.</string>
<string name="id_learn_more">Află mai mult</string>
<string name="id_learn_more_about_amp_the_assets">Learn more about AMP, the assets and your eligibility</string>
<string name="id_learn_more_about_s">Învățați mai mult despre %1$s.</string>
<string name="id_learn_more_about_using_qr_mode">Learn more about using QR Mode with Jade</string>
<string name="id_ledger_bitcoin_app_detected">Ledger Bitcoin app detected, please open the Bitcoin Legacy app to access.</string>
<string name="id_ledger_dashboard_detected">Ledger Dashboard a fost detectat, vă rugăm să deschideți aplicația corectă pentru a avea acces.</string>
<string name="id_ledger_devices">Dispozitive Ledger</string>
<string name="id_ledger_supports_a_limited_set">Ledger oferă suport pentru un număr limitat de monede: apăsați aici pentru a verifica lista.</string>
<string name="id_legacy">Legacy</string>
<string name="id_legacy_account">Legacy Account</string>
<string name="id_legacy_bip44">Legacy (BIP44)</string>
<string name="id_legacy_script_coins">Legacy script coins</string>
<string name="id_legacy_segwit">Legacy SegWit</string>
<string name="id_legacy_segwit_account">Legacy SegWit Account</string>
<string name="id_legacy_segwit_bip49">Legacy SegWit (BIP49)</string>
<string name="id_lets_get_you_set_up">Haideți să facem setările inițiale.</string>
<string name="id_lightning">Lightning</string>
<string name="id_lightning_account">Lightning Account</string>
<string name="id_lightning_account_shortcut">Lightning Account Shortcut</string>
<string name="id_lightning_disabled_successfully">Lightning disabled successfully</string>
<string name="id_lightning_invoice">Lightning Invoice</string>
<string name="id_lightning_invoice__lnurl">Lightning Invoice / LNURL</string>
<string name="id_lightning_invoice_is_expired">Lightning invoice is expired</string>
<string name="id_lightning_network">Lightning Network</string>
<string name="id_lightning_network_account">Lightning Network account powered by Greenlight. Portable onto your own CLN node.</string>
<string name="id_lightning_network_not_enabled">Lightning Network not enabled</string>
<string name="id_lightning_notifications">Lightning Notifications</string>
<string name="id_lightning_service_is_undergoing">Lightning service is undergoing maintenance, but it will be back soon.</string>
<string name="id_lightning_shortcut">Lightning shortcut</string>
<string name="id_lightning_shortcut_activated">Lightning Shortcut Activated</string>
<string name="id_limits_s__s">Limits: %1$s - %2$s</string>
<string name="id_liquid_electrum_server">Liquid Electrum server</string>
<string name="id_liquid_is_a_sidechainbased">Liquid este un sidechain al Bitcoin, conceput pentru traderi si exchange-uri care permite tranzacții rapide și confidențiale dar și emiterea de active digitale. </string>
<string name="id_liquid_securities">Acțiuni Liquid</string>
<string name="id_liquid_testnet_electrum_server">Liquid Testnet Electrum server</string>
<string name="id_liquid_testnet_wallets">Liquid testnet wallets</string>
<string name="id_liquid_wallet">Liquid Wallet</string>
<string name="id_liquid_wallets">Portofele Liquid</string>
<string name="id_list_of_addresses">List of Addresses</string>
<string name="id_loading">Se încarcă</string>
<string name="id_loading_accounts">Se încarcă conturile...</string>
<string name="id_loading_assets">Se încarcă activele...</string>
<string name="id_loading_transactions">Se încarcă tranzacțiile...</string>
<string name="id_loading_wallet">Se incarcă portofelul...</string>
<string name="id_location_services_are_disabled">Location services are disabled, do you want to enable them?</string>
<string name="id_lock">Lock</string>
<string name="id_lock_after_1_minute">Lock after 1 minute</string>
<string name="id_lock_immediately">Lock immediately</string>
<string name="id_locked">Locked</string>
<string name="id_locked_coins_will_not_be_spent">Locked coins will not be spent nor included in your balance.</string>
<string name="id_locking_coins">Locking coins</string>
<string name="id_locking_coins_can_help_protect">Locking coins can help protect your privacy and save on transaction fees. Locked coins are deducted from your balance and are not used when sending transactions. You can only lock coins labeled as dust and unlock them later at any time.</string>
<string name="id_log_file">Log file</string>
<string name="id_log_in">Logare </string>
<string name="id_log_in_into_your_s_wallet">Logare în portofelul %1$s</string>
<string name="id_log_in_to_your_multisig_shield">Logați-vă in portofelul Multisig cu credențialele watch-only. Vă puteți crea credențialele după ce vă logați in portofelul Multisig.</string>
<string name="id_log_in_using_mnemonic">Logare folosind fraza mnemonică</string>
<string name="id_log_in_via_watchonly_to_receive">Logare în modul Watch-only pentru a primi monede și pentru a verifica soldul.</string>
<string name="id_log_in_with_biometrics">Log In with Biometrics</string>
<string name="id_log_in_with_bip39_passphrase">Log In with BIP39 Passphrase</string>
<string name="id_log_out">Log Out</string>
<string name="id_logged_in_wallets">Logat în portofele</string>
<string name="id_logging_in">Se realizează logarea...</string>
<string name="id_login_failed">Logarea a eșuat</string>
<string name="id_login_options">Opțiuni de logare</string>
<string name="id_logout">Delogare</string>
<string name="id_logout_and_switch">Delogare și Schimbare</string>
<string name="id_look_at_the_device_for_the">Priviți ecranul dispozitivului pentru a identifica pozițiile numerelor</string>
<string name="id_looking_for_device">Looking for device...</string>
<string name="id_looking_for_wallets">Looking for wallets…</string>
<string name="id_looks_like_you_havent_used_a">Nu ați folosit pînă acum un portofel. Creați unul acum.</string>
<string name="id_low">Scăzut</string>
<string name="id_main_account">Contul principal</string>
<string name="id_make_sure_to_be_in_a_private">Make sure to be in a private and safe space</string>
<string name="id_make_sure_you_are_alone_and_no">Make sure you are alone and no camera is recording you or the screen.</string>
<string name="id_make_sure_you_got_everything">Make sure you got everything right.</string>
<string name="id_make_sure_you_have_enabled_otg">Asigurați-vă ca ați activat opțiunea OTG in setările dispozitivului.</string>
<string name="id_make_sure_you_made_a_proper">Asigurați-vă că aveți o copie de protecție corespunzătoare pentru fraza mnemonică a portofelului dvs.</string>
<string name="id_malleated">Maleat</string>
<string name="id_managed_assets">Monede gestionate</string>
<string name="id_managed_assets_account">Contul monedelor gestionate</string>
<string name="id_managed_assets_accounts_are">Conturile pentru monedele gestionate sunt disponibile doar în portofelele Liquid. Ar putea fi nevoie să oferiți ID-ul de cont către emițători pentru a primi moneda gestionată.</string>
<string name="id_manual_backup">Manual Backup</string>
<string name="id_manual_coin_selection">Manual coin selection</string>
<string name="id_manual_restore">Manual Restore</string>
<string name="id_market">Market</string>
<string name="id_max_limit_s">Max Limit: %1$s</string>
<string name="id_max_payable_amount">Max Payable Amount</string>
<string name="id_max_payment_amount">Max Payment Amount</string>
<string name="id_max_receivable_amount">Max Receivable Amount</string>
<string name="id_max_single_payment_amount">Max Single Payment Amount</string>
<string name="id_maybe_later">Maybe later</string>
<string name="id_medium">Mediu</string>
<string name="id_memo">Memo</string>
<string name="id_message">Message</string>
<string name="id_message_frequency_varies">Message frequency varies according to the number of 2FA SMS requests you make.</string>
<string name="id_message_from_recipient_s">Message from recipient: %1$s</string>
<string name="id_message_hash">Message hash</string>
<string name="id_migrate_another_wallet">Importați un alt portofel</string>
<string name="id_migrating_to_blockstream_green">Migrating to Blockstream Green? Have an existing Blockstream Green wallet you'd like to import? Let's go!</string>
<string name="id_minimum">Minimum</string>
<string name="id_minute">Minut</string>
<string name="id_minutes">Minute</string>
<string name="id_mitigates_common_attacks_risks">Mitigates common attacks risks</string>
<string name="id_mnemonic">Frază mnemonică</string>
<string name="id_mnemonic_not_available">Fraza mnemonică nu este disponibilă</string>
<string name="id_mobile">Mobile</string>
<string name="id_mobile_wallet">Mobile Wallet</string>
<string name="id_model">Model</string>
<string name="id_month">Lună</string>
<string name="id_months">Luni</string>
<string name="id_more_actions">More actions</string>
<string name="id_more_details">More Details</string>
<string name="id_more_info">Mai multe informații</string>
<string name="id_more_options">Mai multe opțiuni</string>
<string name="id_move_across_accounts">Move across accounts</string>
<string name="id_move_to_2fa_protected">Move to 2FA Protected</string>
<string name="id_multi_server_validation">Multi Server Validation</string>
<string name="id_multiple_addresses">Multiple addresses</string>
<string name="id_multiple_assets">Monede multiple</string>
<string name="id_multisig">Multisig</string>
<string name="id_multisig__s">Multisig / %1$s</string>
<string name="id_multisig_shield">Multisig Shiled</string>
<string name="id_my_assets">My Assets</string>
<string name="id_my_notes">NOTELE MELE</string>
<string name="id_my_wallets">My Wallets</string>
<string name="id_name">Nume</string>
<string name="id_native_segwit">Native SegWit</string>
<string name="id_navigate_on_your_hardware">Navigate on your hardware device and export the the singlesig xpub with derivation path m/84'/0'/0' for your Native Segwit account</string>
<string name="id_navigate_on_your_jade_to">Navigate on your Jade to Options > Wallet > Export Xpub (ensure the derivation path is m/84'/0'/0')</string>
<string name="id_need_help">Aveți nevoie de ajutor?</string>
<string name="id_network">Rețea</string>
<string name="id_network_configuration">Configurare Rețea</string>
<string name="id_network_fee">Network Fee</string>
<string name="id_network_fees">Network fees</string>
<string name="id_network_monitor">Monitorizare Rețea</string>
<string name="id_networks">Networks</string>
<string name="id_new_account_created">New account created</string>
<string name="id_new_accounts_functionality">În curând vor fi disponibile noi funcții pentru contul dvs!</string>
<string name="id_new_fee">Comision nou</string>
<string name="id_new_incoming_transaction_in">O nouă tranzacție este în curs de primire în contul %1$s (%2$s).</string>
<string name="id_new_jade_firmware_available">Este disponibilă o nouă versiune a firmware-ului pentru Jade</string>
<string name="id_new_jade_firmware_required">Este necesar noul firmware pentru Jade</string>
<string name="id_new_jade_plus_connected">New Jade Plus Connected</string>
<string name="id_new_outgoing_transaction_from">O nouă tranzacție trimisă din contul %1$s (%2$s).</string>
<string name="id_new_recovery_phrase">New recovery phrase</string>
<string name="id_new_s_transaction_of_s_in">O nouă tranzacție %1$s de %2$s în contul %3$s.</string>
<string name="id_new_transaction">Tranzacție nouă</string>
<string name="id_new_transaction_involving">O tranzacție nouă care vizează conturile %1$s.</string>
<string name="id_new_version">Versiune nouă</string>
<string name="id_new_wallet">Portofel nou</string>
<string name="id_next">Următorul</string>
<string name="id_nfc_logo">Logo NFC</string>
<string name="id_nfc_tags_written">Etichete NFC Scrise:</string>
<string name="id_no_addresses">No addresses</string>
<string name="id_no_amount_specified">Nu a fost specificată cantitatea</string>
<string name="id_no_archived_accounts">No archived accounts</string>
<string name="id_no_asset_in_this_account">No asset in this account</string>
<string name="id_no_attempts_remaining">Ați rămas fără încercări</string>
<string name="id_no_available_accounts">No available accounts</string>
<string name="id_no_coins_selected">(No coins selected)</string>
<string name="id_no_data_available_try_again">No data available, try again</string>
<string name="id_no_device_connected">Niciun dispozitiv conectat</string>
<string name="id_no_existing_wallet_could_be">No existing wallet could be found.\nTry manually restoring your wallet.</string>
<string name="id_no_ill_repeat_the_setup">No, I'll repeat the setup</string>
<string name="id_no_lsp_connected">No LSP connected</string>
<string name="id_no_more_assets">Nu mai există monede.</string>
<string name="id_no_multisig_shield_wallet">No multisig shield wallet exists for this recovery phrase.</string>
<string name="id_no_peers_connected">Nu există participanți conectați</string>
<string name="id_no_personal_data_will_be_shared">No personal data will be shared with this service.</string>
<string name="id_no_pin_provided_exiting">Nu a fost oferit PIN-ul, se efectuează ieșirea.</string>
<string name="id_no_quotes_available_for_this">No quotes available for this amount</string>
<string name="id_no_recipients">Nu există destinatari</string>
<string name="id_no_registered_name_for_this">Nu există un nume înregistrat pentru această monedă.</string>
<string name="id_no_registered_ticker_for_this">Nu există simbol înregistrat pentru această monedă.</string>
<string name="id_no_utxos_found">Nu au fost găsite UTXO-uri</string>
<string name="id_node_info">Node Info</string>
<string name="id_non_confidential">Non Confidential</string>
<string name="id_non_confidential_transaction">Non Confidential Transaction</string>
<string name="id_nonconfidential_addresses_not">Adresele non-confidențiale nu sunt suportate</string>